/*
Theme Name: Healthy Moments
Theme URI: https://example.com/
Author: Healthy Moments
Description: Custom theme for the Healthy Moments site.
Version: 0.7.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: healthy-moments
*/

:root {
  color-scheme: light;
  --healthy-moments-canvas: #f4efe8;
  --healthy-moments-surface: #fffaf5;
  --healthy-moments-cream: #fff7ef;
  --healthy-moments-ink: #182224;
  --healthy-moments-muted: #5f696c;
  --healthy-moments-accent: #c96a4a;
  --healthy-moments-accent-strong: #9f4d33;
  --healthy-moments-forest: #24423d;
  --healthy-moments-peach: #e8b092;
  --healthy-moments-soft-charcoal: #203537;
  --healthy-moments-sand: #d6c3ad;
  --healthy-moments-border: rgba(24, 34, 36, 0.12);
  --healthy-moments-border-strong: rgba(24, 34, 36, 0.18);
  --healthy-moments-shadow: 0 24px 60px rgba(24, 34, 36, 0.08);
  --healthy-moments-shadow-lifted: 0 28px 80px rgba(24, 34, 36, 0.12);
  --healthy-moments-radius-card: 1.5rem;
  --healthy-moments-radius-panel: 2rem;
  --healthy-moments-section-gap: clamp(2.5rem, 6vw, 5rem);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--wp--preset--font-family--sans, system-ui, sans-serif);
  background: radial-gradient(
    circle at top,
    #fffaf5 0%,
    var(--healthy-moments-canvas) 52%,
    #efe5da 100%
  );
  color: var(--healthy-moments-ink);
}

::selection {
  background: rgba(201, 106, 74, 0.22);
  color: var(--healthy-moments-ink);
}

a {
  color: var(--healthy-moments-accent-strong);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--healthy-moments-accent);
}

.wp-site-blocks {
  min-height: 100vh;
}

header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-block-start: 0;
  margin-block-end: 0;
  background: var(--healthy-moments-ink);
}

.wp-site-blocks > header.wp-block-template-part,
.wp-site-blocks > main {
  margin-block-start: 0;
}

.hm-header-shell {
  position: relative;
  z-index: 1;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #203133 0%, #182224 100%);
}

.hm-site-header {
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
}

.hm-site-brand {
  gap: 0.8rem;
  min-width: 0;
}

.hm-site-brand .wp-block-site-logo {
  flex-shrink: 0;
}

.hm-site-brand .wp-block-site-title {
  margin: 0;
  line-height: 1;
}

.hm-site-brand .wp-block-site-title a,
.hm-site-brand .wp-block-site-title a:visited {
  color: var(--healthy-moments-surface);
}

.hm-site-brand .wp-block-site-title a:hover,
.hm-site-brand .wp-block-site-title a:focus {
  color: var(--wp--preset--color--sand);
}

.hm-site-header-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
  gap: 0.7rem;
  min-width: 0;
}

.hm-primary-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.hm-primary-nav .wp-block-navigation {
  display: flex;
  align-items: center;
}

.hm-primary-nav .wp-block-navigation__container {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hm-primary-nav .wp-block-navigation-item__content {
  color: var(--healthy-moments-surface);
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.8rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.hm-primary-nav .wp-block-navigation-item__content,
.hm-primary-nav .wp-block-navigation-item__content:visited,
.hm-primary-nav .wp-block-navigation-item > a,
.hm-primary-nav .wp-block-navigation-item > a:visited,
.hm-primary-nav .wp-block-navigation-item__label {
  color: var(--healthy-moments-surface);
}

.hm-primary-nav .wp-block-navigation-item__content:hover,
.hm-primary-nav .wp-block-navigation-item__content:focus,
.hm-primary-nav .wp-block-navigation-item > a:hover,
.hm-primary-nav .wp-block-navigation-item > a:focus {
  background: rgba(255, 255, 255, 0.04);
  color: var(--wp--preset--color--sand);
}

.hm-primary-nav
  .wp-block-navigation-item__content:hover
  .wp-block-navigation-item__label,
.hm-primary-nav
  .wp-block-navigation-item__content:focus
  .wp-block-navigation-item__label {
  color: var(--wp--preset--color--sand);
}

.hm-primary-nav
  .wp-block-navigation-item.current-menu-item
  > .wp-block-navigation-item__content,
.hm-primary-nav
  .wp-block-navigation-item.current_page_item
  > .wp-block-navigation-item__content {
  background: rgba(201, 106, 74, 0.18);
  color: var(--wp--preset--color--sand);
}

.hm-primary-nav .wp-block-navigation-item.current-menu-item > a,
.hm-primary-nav .wp-block-navigation-item.current_page_item > a,
.hm-primary-nav
  .wp-block-navigation-item.current-menu-item
  > .wp-block-navigation-item__content,
.hm-primary-nav
  .wp-block-navigation-item.current_page_item
  > .wp-block-navigation-item__content {
  color: var(--wp--preset--color--sand);
}

.hm-primary-nav
  .wp-block-navigation-item.current-menu-item
  > .wp-block-navigation-item__content
  .wp-block-navigation-item__label,
.hm-primary-nav
  .wp-block-navigation-item.current_page_item
  > .wp-block-navigation-item__content
  .wp-block-navigation-item__label {
  color: var(--wp--preset--color--sand);
}

.hm-footer .wp-block-navigation-item__content,
.hm-footer .wp-block-navigation-item__content:visited,
.hm-footer .wp-block-navigation-item > a,
.hm-footer .wp-block-navigation-item > a:visited,
.hm-footer .wp-block-navigation-item__label {
  color: var(--healthy-moments-surface);
}

.hm-footer .wp-block-navigation-item__content:hover,
.hm-footer .wp-block-navigation-item__content:focus,
.hm-footer .wp-block-navigation-item > a:hover,
.hm-footer .wp-block-navigation-item > a:focus {
  color: var(--wp--preset--color--sand);
}

.hm-footer
  .wp-block-navigation-item__content:hover
  .wp-block-navigation-item__label,
.hm-footer
  .wp-block-navigation-item__content:focus
  .wp-block-navigation-item__label {
  color: var(--wp--preset--color--sand);
}

.hm-header-booking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 195, 173, 0.32);
  background: rgba(214, 195, 173, 0.08);
  color: var(--healthy-moments-surface);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.hm-header-booking-link:hover,
.hm-header-booking-link:focus {
  color: var(--wp--preset--color--sand);
  background: rgba(201, 106, 74, 0.18);
  border-color: rgba(201, 106, 74, 0.32);
}

.hm-primary-nav .wp-block-navigation__responsive-container {
  background: linear-gradient(180deg, #203133 0%, #182224 100%);
}

.hm-primary-nav .wp-block-navigation__responsive-dialog {
  padding: 0;
}

.hm-primary-nav .wp-block-navigation__responsive-container-content {
  padding: 0.7rem 0 0.5rem;
}

.hm-primary-nav .wp-block-navigation__responsive-container-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
}

.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__container {
  display: grid;
  gap: 0.35rem;
  justify-items: stretch;
}

.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item__content {
  display: block;
  width: 100%;
  padding: 0.9rem 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--healthy-moments-surface);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item__content:hover,
.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item__content:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--wp--preset--color--sand);
}

.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item.current-menu-item
  > .wp-block-navigation-item__content,
.hm-primary-nav
  .wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation-item.current_page_item
  > .wp-block-navigation-item__content {
  background: rgba(201, 106, 74, 0.16);
  color: var(--wp--preset--color--sand);
}

@media (min-width: 782px) {
  .hm-primary-nav .wp-block-navigation__responsive-container-open {
    display: none;
  }

  .hm-primary-nav
    .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: block;
    background: transparent;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}

.hm-kicker {
  margin: 0;
  color: var(--healthy-moments-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hm-section-lead {
  max-width: 44rem;
  color: var(--healthy-moments-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hm-section-intro {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.hm-section-intro > * {
  margin: 0;
}

.hm-section-intro-centered {
  margin-inline: auto;
  text-align: center;
}

.hm-dark-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--healthy-moments-radius-panel);
  background: linear-gradient(135deg, #24423d 0%, #182224 52%, #9f4d33 100%);
  color: var(--healthy-moments-surface);
}

.hm-dark-section::before {
  content: '';
  position: absolute;
  inset: -10% auto auto 62%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(232, 176, 146, 0.22) 0%,
    rgba(232, 176, 146, 0) 72%
  );
  pointer-events: none;
}

.hm-dark-section > * {
  position: relative;
  z-index: 1;
}

.hm-dark-section .hm-kicker,
.hm-dark-section .hm-soft-note {
  color: var(--healthy-moments-sand);
}

.hm-dark-section p:not(.hm-kicker):not(.hm-soft-note),
.hm-dark-section li,
.hm-dark-section .wp-block-list,
.hm-dark-section .hm-section-lead {
  color: rgba(255, 250, 245, 0.82);
}

.hm-card-grid,
.hm-check-grid,
.hm-process-grid,
.hm-signal-grid,
.hm-gallery-grid {
  display: grid;
  gap: 1.5rem;
}

:root
  :where(
    .hm-card-grid,
    .hm-card-grid-2up,
    .hm-check-grid,
    .hm-process-grid,
    .hm-signal-grid,
    .hm-gallery-grid,
    .hm-process-list,
    .hm-process-item,
    .hm-home-routeboard,
    .hm-signal-card,
    .hm-card,
    .hm-surface,
    .hm-glass-panel,
    .hm-hero-panel
  ).is-layout-constrained
  > *,
:root
  :where(
    .hm-card-grid,
    .hm-card-grid-2up,
    .hm-check-grid,
    .hm-process-grid,
    .hm-signal-grid,
    .hm-gallery-grid,
    .hm-process-list,
    .hm-process-item,
    .hm-home-routeboard,
    .hm-signal-card,
    .hm-card,
    .hm-surface,
    .hm-glass-panel,
    .hm-hero-panel
  )
  > * {
  max-width: none !important;
  margin-block-start: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: stretch;
}

.hm-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hm-check-grid,
.hm-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hm-signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hm-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hm-card {
  height: 100%;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  border: 1px solid var(--healthy-moments-border);
  border-radius: var(--healthy-moments-radius-card);
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.96) 0%,
    #f7f0e9 100%
  );
  box-shadow: var(--healthy-moments-shadow);
}

.hm-card > *:first-child,
.hm-card p,
.hm-card ul,
.hm-card ol,
.hm-card h3,
.hm-card h4 {
  margin-top: 0;
}

.hm-card > *:last-child {
  margin-bottom: 0;
}

.hm-card h3,
.hm-card h4 {
  margin-bottom: 0.5rem;
}

.hm-card p,
.hm-card li {
  color: var(--healthy-moments-muted);
}

.hm-card .wp-block-buttons {
  margin-top: 0.75rem;
}

.hm-card-accent {
  background: linear-gradient(180deg, #fff8f1 0%, #efe2d4 100%);
}

.hm-card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #203537 0%, #182224 100%);
  box-shadow: 0 28px 70px rgba(9, 17, 18, 0.16);
}

.hm-card-dark h3,
.hm-card-dark h4,
.hm-card-dark p,
.hm-card-dark li {
  color: var(--healthy-moments-surface);
}

.hm-card-dark .hm-kicker,
.hm-card-dark .hm-soft-note {
  color: var(--healthy-moments-sand);
}

.hm-signal-card {
  display: grid;
  gap: 0.2rem;
  height: 100%;
  padding: 0.25rem 0.2rem 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hm-signal-card:not(:last-child) {
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hm-signal-card-value,
.hm-signal-card-label {
  margin: 0;
}

.hm-signal-card-value {
  color: var(--healthy-moments-surface);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hm-signal-card-label {
  color: rgba(255, 250, 245, 0.76);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hm-process-card {
  display: grid;
  gap: 0.85rem;
}

.hm-process-list {
  display: grid;
  gap: 0;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, #203537 0%, #182224 100%);
  box-shadow: 0 28px 70px rgba(9, 17, 18, 0.16);
}

.hm-process-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hm-process-item:first-child {
  padding-top: 0;
}

.hm-process-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-process-copy > * {
  margin-top: 0;
  margin-bottom: 0;
}

.hm-process-copy h3 {
  color: var(--healthy-moments-surface);
  margin-bottom: 0.35rem;
}

.hm-process-copy p {
  color: rgba(255, 250, 245, 0.82);
}

.hm-process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(201, 106, 74, 0.12);
  color: var(--healthy-moments-accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hm-check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.hm-check-list li::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--healthy-moments-accent);
  box-shadow: 0 0 0 6px rgba(201, 106, 74, 0.08);
}

.hm-feature-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-feature-list li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--healthy-moments-border);
}

.hm-feature-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-feature-list strong {
  font-size: 1rem;
}

.hm-feature-list span,
.hm-feature-list p {
  color: var(--healthy-moments-muted);
}

.hm-card-grid-2up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hm-media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: var(--healthy-moments-shadow-lifted);
}

.hm-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hm-media-frame-landscape img {
  aspect-ratio: 16 / 11;
}

.hm-media-frame-portrait img {
  aspect-ratio: 4 / 5;
}

.hm-soft-band {
  border: 1px solid var(--healthy-moments-border);
  border-radius: var(--healthy-moments-radius-panel);
  background: linear-gradient(135deg, #f6efe6 0%, #e4d5c6 100%);
  box-shadow: var(--healthy-moments-shadow);
}

.hm-soft-band .wp-block-columns,
.hm-dark-section .wp-block-columns {
  margin-bottom: 0;
}

.hm-hero {
  overflow: hidden;
  padding-top: clamp(1rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.hm-hero-media .wp-block-cover__image-background {
  object-position: center;
  transform: scale(1.02);
}

.hm-hero-media::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: min(34rem, 48vw);
  height: min(18rem, 34vw);
  background: linear-gradient(
    135deg,
    rgba(255, 250, 245, 0.12) 0%,
    rgba(255, 250, 245, 0) 75%
  );
  pointer-events: none;
}

.hm-hero .wp-block-cover__inner-container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
  padding-top: clamp(5rem, 12vw, 8rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.hm-home-hero .wp-block-cover__inner-container {
  padding-top: clamp(5.5rem, 10vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}

.hm-home-hero .has-display-font-size {
  max-width: 9ch;
  font-size: clamp(3.05rem, 6vw, 4.95rem) !important;
  line-height: 0.95;
}

.hm-home-hero .has-medium-font-size {
  max-width: 32rem;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem) !important;
}

.hm-home-hero-metrics {
  margin-top: 2.25rem;
  row-gap: 0.85rem;
}

.hm-home-metric {
  display: grid;
  gap: 0.2rem;
}

.hm-home-metric-value {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hm-home-metric-label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  opacity: 0.84;
  text-transform: uppercase;
}

.hm-glass-panel {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.12) 0%,
    rgba(255, 250, 245, 0.05) 100%
  );
  box-shadow: 0 24px 60px rgba(6, 12, 14, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--healthy-moments-surface);
}

.hm-glass-panel p,
.hm-glass-panel li,
.hm-glass-panel strong,
.hm-glass-panel a {
  color: inherit;
}

.hm-glass-panel a:hover,
.hm-glass-panel a:focus {
  color: var(--wp--preset--color--sand);
}

.hm-glass-panel .hm-kicker {
  color: var(--wp--preset--color--sand);
}

.hm-glass-panel .hm-hero-panel-list li,
.hm-home-routeboard .hm-feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.hm-glass-panel .hm-hero-panel-list span,
.hm-glass-panel .hm-soft-note,
.hm-home-routeboard .hm-feature-list span,
.hm-home-routeboard .hm-feature-list p {
  color: rgba(255, 250, 245, 0.84);
}

.hm-home-routeboard .wp-block-heading,
.hm-home-routeboard .hm-feature-list strong {
  color: var(--healthy-moments-surface);
}

.hm-home-routeboard {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.5rem, 2.3vw, 2rem);
}

.hm-home-routegrid {
  display: grid;
  gap: 0.9rem;
}

.hm-home-routecard {
  display: grid;
  gap: 0.65rem;
  padding: 0 0 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.hm-home-routecard:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-home-routecard p {
  margin: 0;
}

.hm-home-routegrid .wp-block-buttons {
  margin-top: 0.15rem;
}

.hm-home-routegrid .wp-block-button {
  width: fit-content;
}

.hm-home-routegrid .wp-block-button.is-style-outline .wp-element-button {
  border: 0;
}

.hm-home-routegrid .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0.1rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--wp--preset--color--sand);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hm-home-routegrid .wp-block-button__link:hover,
.hm-home-routegrid .wp-block-button__link:focus {
  transform: none;
  box-shadow: none;
  color: var(--healthy-moments-surface);
}

.hm-home-signal-shell {
  padding-top: 1.5rem;
}

.hm-home-signal-band {
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(24, 34, 36, 0.1);
}

.hm-home-signal-grid {
  align-items: end;
}

.hm-home-signal-item {
  display: grid;
  gap: 0.2rem;
}

.hm-home-signal-value,
.hm-home-signal-label {
  margin: 0;
}

.hm-home-signal-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hm-home-signal-label {
  color: var(--healthy-moments-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-home-intro {
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.hm-home-pathway-panel {
  height: 100%;
  overflow: hidden;
  border-radius: var(--healthy-moments-radius-panel);
}

.hm-home-pathway-panel-light {
  border: 1px solid rgba(24, 34, 36, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.94) 0%,
    #efe3d6 100%
  );
  box-shadow: 0 24px 60px rgba(24, 34, 36, 0.08);
}

.hm-home-pathway-panel-dark {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #203133 0%, #182224 100%);
  box-shadow: 0 28px 70px rgba(9, 17, 18, 0.16);
}

.hm-home-pathway-image {
  margin: 0;
}

.hm-home-pathway-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hm-home-pathway-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 2vw, 1.8rem);
}

.hm-home-pathway-copy p {
  margin: 0;
}

.hm-home-editorial {
  position: relative;
}

.hm-home-editorial::before {
  content: '';
  position: absolute;
  inset: 6% auto auto 0;
  width: min(20rem, 28vw);
  height: min(20rem, 28vw);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(201, 106, 74, 0.12) 0%,
    rgba(201, 106, 74, 0) 72%
  );
  pointer-events: none;
}

.hm-home-editorial-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 28px 72px rgba(24, 34, 36, 0.12);
}

.hm-home-editorial-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hm-home-note-stack {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hm-home-note {
  padding-left: 1rem;
  border-left: 2px solid rgba(24, 34, 36, 0.12);
}

.hm-home-note h3,
.hm-home-note p {
  margin: 0;
}

.hm-home-note h3 {
  margin-bottom: 0.25rem;
}

.hm-home-proof-frame {
  padding: clamp(1rem, 1.5vw, 1.25rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hm-home-franchise-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 28px 72px rgba(24, 34, 36, 0.16);
}

.hm-home-franchise-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hm-home-franchise-panel {
  min-height: 100%;
  padding: clamp(1.6rem, 2.4vw, 2.2rem);
  border-radius: var(--healthy-moments-radius-panel);
}

.hm-home-franchise-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-home-franchise-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hm-home-franchise-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-home-franchise-list li span {
  color: rgba(255, 250, 245, 0.76);
}

.hm-home-faq {
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.hm-home-proof .hm-feedback-shell {
  gap: 2.25rem;
}

.hm-home-proof .hm-feedback-heading {
  max-width: 62rem;
}

.hm-home-proof .hm-feedback-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hm-home-proof .hm-feedback-card {
  min-height: 100%;
  padding: 2rem;
  border-radius: 1.75rem;
}

.hm-home-proof .hm-feedback-content {
  font-size: 1rem;
}

.hm-hero-panel {
  position: relative;
  overflow: hidden;
}

.hm-hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -10% -35% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(201, 106, 74, 0.16) 0%,
    rgba(201, 106, 74, 0) 72%
  );
  pointer-events: none;
}

.hm-hero-panel-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-hero-panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--healthy-moments-border);
}

.hm-hero-panel-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hm-hero-panel-list span {
  color: var(--healthy-moments-muted);
  font-size: 0.95rem;
}

.hm-hero-panel-list strong {
  font-size: 1rem;
}

.hm-soft-note {
  margin: 0;
  color: var(--healthy-moments-muted);
  font-size: 0.95rem;
}

.hm-section-shell {
  padding-top: var(--healthy-moments-section-gap);
  padding-bottom: var(--healthy-moments-section-gap);
}

.hm-post-shell {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hm-surface,
.hm-stat-grid > .wp-block-group,
.hm-card-grid > .wp-block-group,
.hm-query-card {
  height: 100%;
  border: 1px solid var(--healthy-moments-border);
  border-radius: var(--healthy-moments-radius-card);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--healthy-moments-shadow);
}

.hm-surface {
  padding: clamp(1.5rem, 2vw, 2rem);
}

.hm-story-card-media,
.hm-pattern-image {
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid var(--healthy-moments-border);
  border-radius: var(--healthy-moments-radius-card);
  box-shadow: var(--healthy-moments-shadow);
}

.hm-story-card-media img,
.hm-pattern-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hm-story-card-media-compact img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hm-pattern-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hm-pattern-image-short img {
  aspect-ratio: 16 / 10;
}

.hm-query-card {
  padding: 1.5rem;
}

.hm-location-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hm-location-sidebar,
.hm-location-map-note {
  position: sticky;
  top: 6rem;
}

.hm-location-map-note {
  position: relative;
  margin-top: 2rem;
}

.hm-cta-band {
  overflow: hidden;
  border-radius: var(--healthy-moments-radius-panel);
}

.hm-cta-band > * {
  position: relative;
  z-index: 1;
}

.hm-cta-band::before {
  content: '';
  position: absolute;
  inset: -20% auto auto 65%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 250, 245, 0.18) 0%,
    rgba(255, 250, 245, 0) 72%
  );
}

.hm-entry-meta {
  color: var(--healthy-moments-muted);
  font-size: 0.95rem;
}

.hm-footer {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.hm-footer-contact-list,
.hm-location-links {
  line-height: 1.9;
}

.hm-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hm-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--healthy-moments-surface);
  font-size: 0.85rem;
  font-weight: 600;
}

.hm-footer-link {
  color: inherit;
}

.hm-footer .wp-block-navigation__container {
  gap: 0.75rem;
}

.wp-block-button .wp-element-button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.wp-block-button .wp-element-button:hover,
.wp-block-button .wp-element-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(24, 34, 36, 0.14);
}

.wp-block-button.is-style-outline .wp-element-button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.hm-location-actions {
  gap: 0.75rem;
}

.hm-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.hm-location-chip,
.hm-location-coordinate {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(201, 106, 74, 0.12);
  color: var(--healthy-moments-accent-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.hm-location-chip-active {
  background: rgba(36, 66, 61, 0.12);
  color: var(--healthy-moments-forest);
}

.hm-location-chip-muted,
.hm-location-chip-inactive {
  background: rgba(24, 34, 36, 0.08);
  color: var(--healthy-moments-muted);
}

.hm-location-finder {
  display: grid;
  gap: 1.75rem;
}

.hm-location-finder__intro {
  max-width: 50rem;
}

.hm-location-finder__description,
.hm-location-finder__summary,
.hm-location-finder__empty {
  color: var(--healthy-moments-muted);
}

.hm-location-finder__filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hm-location-finder__field {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.hm-location-finder__field span {
  color: var(--healthy-moments-muted);
}

.hm-location-finder__select,
.hm-location-finder__search {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--healthy-moments-border);
  border-radius: 1rem;
  background: rgba(255, 250, 245, 0.92);
  color: var(--healthy-moments-ink);
  font: inherit;
}

.hm-location-finder__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.hm-location-finder__map-shell {
  position: sticky;
  top: 7rem;
  overflow: hidden;
  min-height: 32rem;
  border: 1px solid var(--healthy-moments-border);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 245, 0.98) 0%,
    rgba(239, 229, 218, 0.96) 100%
  );
  box-shadow: var(--healthy-moments-shadow);
}

.hm-location-finder__map {
  position: relative;
  min-height: 32rem;
}

.hm-location-finder__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 34, 36, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 34, 36, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hm-location-finder__map::after {
  content: 'Mapa studiów';
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.92);
  color: var(--healthy-moments-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hm-location-finder__map-inner {
  position: absolute;
  inset: 0;
}

.hm-location-finder__marker {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--healthy-moments-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(24, 34, 36, 0.16);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hm-location-finder__marker.is-active {
  background: var(--healthy-moments-forest);
  transform: translate(-50%, -50%) scale(1.08);
}

.hm-location-finder__map-empty {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 250, 245, 0.92);
  color: var(--healthy-moments-muted);
}

.hm-location-finder__cards {
  display: grid;
  gap: 1rem;
}

.hm-location-finder__card {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hm-location-finder__card.is-active {
  transform: translateY(-2px);
  box-shadow: 0 30px 64px rgba(24, 34, 36, 0.14);
}

.hm-location-finder__card[hidden] {
  display: none;
}

.hm-location-finder__card-title {
  margin: 0;
  font-size: 1.4rem;
}

.hm-location-finder__card-title a {
  color: inherit;
  text-decoration: none;
}

.hm-location-finder__card-body > :first-child {
  margin-top: 0;
}

.hm-location-finder__card-body > :last-child {
  margin-bottom: 0;
}

.hm-location-finder__card-actions .wp-block-buttons {
  gap: 0.75rem;
}

.hm-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hm-inline-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.hm-feedback-shell,
.hm-faq-shell {
  display: grid;
  gap: 2rem;
}

.hm-feedback-heading,
.hm-faq-heading {
  max-width: 48rem;
}

.hm-feedback-description,
.hm-faq-description {
  color: var(--healthy-moments-muted);
  font-size: 1.05rem;
}

.hm-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.hm-feedback-card {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--healthy-moments-border);
  border-radius: 1.5rem;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--healthy-moments-shadow);
}

.hm-feedback-rating {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #d19a2f;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hm-feedback-name {
  margin: 0;
  font-size: 1.45rem;
}

.hm-feedback-meta {
  color: var(--healthy-moments-muted);
  margin: -0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.hm-feedback-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(201, 106, 74, 0.12);
  color: var(--healthy-moments-accent-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.hm-feedback-chip-muted {
  background: rgba(24, 34, 36, 0.08);
  color: var(--healthy-moments-muted);
}

.hm-feedback-content > :first-child,
.hm-faq-answer > :first-child {
  margin-top: 0;
}

.hm-feedback-content > :last-child,
.hm-faq-answer > :last-child {
  margin-bottom: 0;
}

.hm-feedback-archive,
.hm-faq-archive,
.hm-feedback-single,
.hm-faq-single {
  display: grid;
  gap: 2rem;
}

.hm-feedback-archive__grid,
.hm-faq-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.hm-feedback-archive__card,
.hm-faq-archive__card {
  display: grid;
  gap: 1rem;
}

.hm-feedback-archive__card p,
.hm-faq-archive__card p {
  margin: 0;
}

.hm-feedback-single__summary,
.hm-faq-single__summary {
  max-width: 44rem;
}

.hm-feedback-single__rating {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(36, 66, 61, 0.12);
  color: var(--healthy-moments-forest);
  font-size: 0.95rem;
  font-weight: 700;
}

.hm-feedback-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hm-feedback-single__body,
.hm-faq-single__body {
  max-width: 52rem;
}

.hm-faq-single__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hm-form-shell {
  display: grid;
  gap: 1rem;
}

.hm-form-shell p {
  margin: 0;
}

.hm-contact-stack {
  display: grid;
  gap: 0.9rem;
}

.hm-contact-stack p,
.hm-contact-stack > div {
  margin: 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--healthy-moments-border);
}

.hm-contact-stack p:last-child,
.hm-contact-stack > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wpcf7-form {
  display: grid;
  gap: 1rem;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--healthy-moments-ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--healthy-moments-border);
  border-radius: 1rem;
  background: #fff;
  color: var(--healthy-moments-ink);
  font: inherit;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-textarea:focus,
.hm-location-finder__select:focus,
.hm-location-finder__search:focus {
  outline: 0;
  border-color: rgba(201, 106, 74, 0.34);
  box-shadow: 0 0 0 4px rgba(201, 106, 74, 0.12);
}

.wpcf7-form .wpcf7-textarea {
  min-height: 9rem;
  resize: vertical;
}

.wpcf7-form .wpcf7-acceptance label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.9rem;
  font-weight: 500;
}

.wpcf7-form .wpcf7-submit {
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--healthy-moments-accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  margin: 0;
  border-radius: 1rem;
}

.hm-faq-list {
  display: grid;
  gap: 1rem;
}

.hm-faq-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--healthy-moments-border);
  border-radius: 1.25rem;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: var(--healthy-moments-shadow);
}

.hm-faq-question {
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.hm-faq-question::-webkit-details-marker {
  display: none;
}

.hm-faq-answer {
  margin-top: 1rem;
  color: var(--healthy-moments-muted);
}

@media (max-width: 781px) {
  .hm-header-shell {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hm-site-header {
    gap: 0.75rem;
  }

  .hm-site-brand {
    gap: 0.65rem;
  }

  .hm-site-brand .wp-block-site-logo img {
    width: 44px;
    height: auto;
  }

  .hm-site-brand .wp-block-site-title {
    font-size: 1.15rem !important;
  }

  .hm-site-header-nav {
    flex-shrink: 0;
  }

  .hm-header-cta {
    display: none;
  }

  .hm-primary-nav .wp-block-navigation__container {
    flex-wrap: initial;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hm-primary-nav
    .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none;
  }

  .hm-primary-nav .wp-block-navigation__responsive-container-open,
  .hm-primary-nav .wp-block-navigation__responsive-container-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--healthy-moments-surface);
  }

  .hm-primary-nav .wp-block-navigation__responsive-container-content {
    padding: 0.7rem 0 0.5rem;
  }

  .hm-hero .wp-block-cover__inner-container {
    width: min(100% - 2rem, 1200px);
    padding-top: 3.5rem;
    padding-bottom: 2.75rem;
  }

  .hm-home-hero-metrics {
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .hm-home-routeboard,
  .hm-home-pathway-copy,
  .hm-home-proof-frame,
  .hm-home-franchise-panel {
    padding: 1.2rem;
  }

  .hm-home-pathway-panel,
  .hm-home-editorial-media,
  .hm-home-franchise-visual,
  .hm-home-proof-frame {
    border-radius: 1.4rem;
  }

  .hm-card-grid,
  .hm-check-grid,
  .hm-process-grid,
  .hm-signal-grid,
  .hm-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hm-card-grid-2up {
    grid-template-columns: 1fr;
  }

  .hm-section-intro {
    margin-bottom: 1.5rem;
  }

  .hm-section-lead {
    font-size: 1rem;
  }

  .hm-home-editorial::before {
    display: none;
  }

  .hm-home-editorial-media img,
  .hm-home-franchise-visual img {
    aspect-ratio: 16 / 11;
  }

  .hm-home-signal-shell {
    padding-top: 1rem;
  }

  .hm-home-intro {
    margin-bottom: 1.5rem;
  }

  .hm-section-shell,
  .hm-post-shell,
  .hm-footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hm-hero .has-display-font-size {
    font-size: clamp(2.35rem, 11vw, 3.5rem) !important;
    line-height: 1.02;
  }

  .hm-home-hero .has-display-font-size {
    max-width: none;
    font-size: clamp(2.45rem, 11vw, 3.45rem) !important;
  }

  .hm-hero .has-medium-font-size {
    font-size: 1rem !important;
  }

  .hm-home-hero .has-medium-font-size {
    max-width: none;
  }

  .hm-hero-panel-list li {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .hm-section-shell,
  .hm-post-shell {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hm-section-shell .wp-block-columns,
  .hm-post-shell .wp-block-columns,
  .hm-footer .wp-block-columns {
    gap: 1rem;
  }

  .hm-surface,
  .hm-query-card,
  .hm-feedback-card,
  .hm-faq-item,
  .hm-card,
  .hm-signal-card {
    padding: 1.2rem;
  }

  .hm-story-card-media,
  .hm-pattern-image {
    margin-bottom: 0.75rem;
  }

  .hm-hero .wp-block-buttons,
  .hm-cta-band .wp-block-buttons,
  .hm-footer .wp-block-buttons,
  .hm-location-actions,
  .hm-location-finder__card-actions .wp-block-buttons {
    display: grid;
    gap: 0.75rem;
  }

  .hm-hero .wp-block-button,
  .hm-cta-band .wp-block-button,
  .hm-footer .wp-block-button,
  .hm-location-actions .wp-block-button,
  .hm-location-finder__card-actions .wp-block-button {
    width: 100%;
  }

  .hm-hero .wp-block-button__link,
  .hm-cta-band .wp-block-button__link,
  .hm-footer .wp-block-button__link,
  .hm-location-actions .wp-block-button__link,
  .hm-location-finder__card-actions .wp-block-button__link,
  .wpcf7-form .wpcf7-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hm-feedback-name,
  .hm-location-finder__card-title {
    font-size: 1.25rem;
  }

  .hm-feedback-description,
  .hm-faq-description,
  .hm-entry-meta,
  .hm-soft-note {
    font-size: 0.95rem;
  }

  .hm-stat-grid .has-display-font-size,
  .hm-section-shell .has-display-font-size:not(.wp-block-post-title) {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }

  .hm-footer {
    margin-top: 2rem;
  }

  .hm-footer-badges {
    gap: 0.5rem;
  }

  .hm-footer-badges span {
    min-height: 2rem;
    font-size: 0.8rem;
  }

  .hm-footer .wp-block-navigation,
  .hm-footer .wp-block-navigation__container {
    width: 100%;
  }

  .hm-location-sidebar,
  .hm-location-map-note {
    position: relative;
    top: 0;
  }

  .hm-feedback-grid {
    grid-template-columns: 1fr;
  }

  .hm-home-proof .hm-feedback-grid {
    grid-template-columns: 1fr;
  }

  .hm-feedback-archive__grid,
  .hm-faq-archive__grid {
    grid-template-columns: 1fr;
  }

  .hm-location-finder__filters,
  .hm-location-finder__layout {
    grid-template-columns: 1fr;
  }

  .hm-location-finder__map-shell {
    position: relative;
    top: 0;
    min-height: 24rem;
  }

  .hm-location-finder__map {
    min-height: 24rem;
  }
}
