/* preeclampsia.fyi — Enviro-inspired structure with brand palette */

:root {
  --plum: #4a2f4a;
  --plum-deep: #3d2438;
  --plum-dark: #2a1828;
  --teal: #2a9d8f;
  --teal-dark: #1f7f73;
  --teal-light: #d4ebe8;
  --pink: #e8b4c8;
  --pink-soft: #f5e4ec;
  --lavender: #e8d8ea;
  --cream: #faf7f2;
  --beige: #f3ebe3;
  --ink: #2d242d;
  --ink-soft: #6b5f6b;
  --line: #e8dfd6;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-fluid: cubic-bezier(0.33, 1, 0.68, 1);

  --nav-h: 80px;
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --maxw: 1280px;
  --shadow-sm: 0 4px 16px rgba(45, 24, 40, 0.06);
  --shadow-md: 0 12px 32px rgba(45, 24, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(45, 24, 40, 0.12);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: max(clamp(1.25rem, 4vw, 2.5rem), var(--safe-left));
  padding-right: max(clamp(1.25rem, 4vw, 2.5rem), var(--safe-right));
}

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--plum);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  max-width: 100%;
}
.h-display em,
.h-display .accent {
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
}
.h-hero { font-size: clamp(2rem, 11vw, 6.5rem); }
.h-xl { font-size: clamp(1.75rem, 6.5vw, 4.25rem); }
.h-lg { font-size: clamp(1.5rem, 4.5vw, 3rem); }
.h-md { font-size: clamp(1.25rem, 3vw, 1.9rem); }

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--plum);
  text-transform: none;
}
.pill-label--on-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--pink-soft);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: min(60ch, 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.4s var(--ease-fluid); flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px) rotate(-2deg); }
.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  color: inherit;
}
.btn-arrow svg { stroke: var(--plum); }

.btn-plum {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(74, 47, 74, 0.28);
}
.btn-plum:hover { background: var(--plum-deep); box-shadow: 0 16px 36px rgba(74, 47, 74, 0.38); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(42, 157, 143, 0.32);
}
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 16px 36px rgba(42, 157, 143, 0.42); }

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-outline:hover { background: var(--plum); color: var(--white); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

.btn-pill-icon {
  position: relative;
  padding-right: 0.55rem;
}
.btn-pill-icon .btn-pill-icon__wrap {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  color: var(--plum);
  margin-left: 0.35rem;
  transition: transform 0.45s var(--ease-fluid);
}
.btn-pill-icon:hover .btn-pill-icon__wrap { transform: rotate(45deg); }

.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px rgba(45, 24, 40, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: max(clamp(1.25rem, 4vw, 2.5rem), var(--safe-left));
  padding-right: max(clamp(1.25rem, 4vw, 2.5rem), var(--safe-right));
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--plum);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
  min-width: 0;
  flex-shrink: 1;
  max-width: 100%;
}
.brand .fyi { color: var(--teal); font-style: italic; font-weight: 500; }
.brand .brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-right: 0.45rem;
  vertical-align: middle;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}
.nav__links a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--plum); background: var(--pink-soft); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.65rem 0.65rem 1.2rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.3s ease, transform 0.3s var(--ease-fluid);
}
.nav__cta:hover { background: var(--plum-deep); transform: translateY(-2px); }
.nav__cta__circle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  transition: transform 0.45s var(--ease-fluid);
}
.nav__cta:hover .nav__cta__circle { transform: rotate(45deg); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(45, 24, 40, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1999;
}
.nav.open ~ .nav-backdrop { opacity: 1; visibility: visible; }

/* ---------- Section base ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.section--alt { background: var(--beige); }
.section--cream { background: var(--cream); }
.section--lavender { background: var(--lavender); }
.section--plum {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.86);
  overflow-x: clip;
}
.section--plum .h-display { color: var(--white); }
.section--plum .h-display em,
.section--plum .h-display .accent { color: var(--pink); }
.section--plum .lead { color: rgba(255, 255, 255, 0.75); }
.section--plum .eyebrow { color: var(--pink); }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
#form.section--tight { padding-bottom: clamp(1.5rem, 3vw, 2rem); }

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  min-width: 0;
}
.section__head > * {
  min-width: 0;
  max-width: 100%;
}
.section__head .h-display {
  text-wrap: balance;
}
.section__head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section__head--centered .lead { margin: 0 auto; text-align: center; }
.section__head .pill-label { margin-bottom: 1.25rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(170deg, var(--cream) 0%, var(--beige) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 180, 200, 0.35), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.2), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  min-width: 0;
}
.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--teal);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.hero__heading { margin-bottom: 1.5rem; }
.hero__copy .lead { margin-bottom: 2rem; max-width: min(48ch, 100%); }

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--pink-soft), var(--lavender));
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45, 24, 40, 0.25) 100%);
  pointer-events: none;
}

.hero__counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
}
.counter {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
}
a.counter {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
a.counter:hover { opacity: 0.82; }
a.counter:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}
.counter__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--plum);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  letter-spacing: -0.02em;
}
.counter__num .counter__digit { display: inline-block; }
.counter__num .counter__suffix {
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
}
.counter__label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ---------- About intro (Section #2) ---------- */
.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}
.about-intro__lead .h-xl { margin-bottom: 1.5rem; }
.about-intro__copy { display: flex; flex-direction: column; gap: 1.25rem; }
.about-intro__copy p { color: var(--ink-soft); line-height: 1.8; }
.about-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.about-intro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
a.about-intro__stat {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
a.about-intro__stat:hover { opacity: 0.82; }
a.about-intro__stat:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}
.about-intro__stat .counter__num { font-size: clamp(2rem, 4vw, 2.8rem); }
.about-intro__stat .counter__label { font-size: 0.88rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease-fluid), box-shadow 0.5s var(--ease-fluid), background 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 280px;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-fluid), transform 0.6s var(--ease-fluid);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; transform: scale(1.1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.service-card__icon--pink { background: var(--pink-soft); color: var(--plum); }
.service-card__icon--lavender { background: var(--lavender); color: var(--plum); }
.service-card__icon--cream { background: var(--beige); color: var(--plum); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.service-card__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  position: relative;
  z-index: 2;
}
.service-card__link svg { transition: transform 0.35s var(--ease-fluid); }
.service-card__link:hover svg { transform: translateX(4px); }
.service-card--featured {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.86);
  border-color: var(--plum);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255, 255, 255, 0.75); }
.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--pink);
}
.service-card--featured .service-card__link { color: var(--pink); }

/* ---------- Numbered list (projects) ---------- */
.num-list { list-style: none; border-top: 1px solid var(--line); }
.num-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.9fr) minmax(0, 1.4fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.4s var(--ease-fluid), background 0.4s ease;
  position: relative;
}
.num-row:hover { padding-left: 1rem; padding-right: 1rem; background: rgba(255, 255, 255, 0.4); }
.num-row__index {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--teal);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.num-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 2rem);
  color: var(--plum);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.num-row__desc { color: var(--ink-soft); line-height: 1.6; }
.num-row__arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--plum);
  color: var(--plum);
  transition: background 0.35s ease, color 0.35s ease, transform 0.45s var(--ease-fluid);
  flex-shrink: 0;
}
.num-row:hover .num-row__arrow { background: var(--plum); color: var(--white); transform: rotate(-45deg); }

/* Numbered list accordion (resources deeper reads) */
.num-accordion > li { border-bottom: 1px solid var(--line); }
.num-accordion .num-row { border-bottom: none; text-decoration: none; color: inherit; }
.num-accordion summary.num-row { list-style: none; }
.num-accordion summary.num-row::-webkit-details-marker { display: none; }
.num-accordion details[open] > summary.num-row {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255, 255, 255, 0.4);
}
.num-accordion details[open] > summary.num-row .num-row__arrow {
  background: var(--plum);
  color: var(--white);
  transform: rotate(90deg);
}
.num-accordion__panel {
  padding: 0 1rem 1.75rem clamp(5rem, 12vw, 7.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.num-accordion__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  width: fit-content;
  transition: gap 0.3s var(--ease-fluid), color 0.3s ease;
}
.num-accordion__link:hover { gap: 0.55rem; color: var(--plum); }

/* ---------- Testimonials marquee ---------- */
.marquee-track {
  position: relative;
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track--reverse { animation-direction: reverse; animation-duration: 44s; }
.marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 0.5rem 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee-wrap + .marquee-wrap { margin-top: 1.25rem; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quote-card {
  flex: 0 0 min(420px, 80vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-card__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--plum);
  position: relative;
  padding-top: 0.5rem;
}
.quote-card__quote::before {
  content: "\201C";
  font-size: 2.5rem;
  color: var(--pink);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
  opacity: 0.7;
}
.quote-card__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--lavender);
  flex-shrink: 0;
}
.quote-card__name {
  font-weight: 600;
  color: var(--plum);
  font-size: 0.95rem;
  line-height: 1.2;
}
.quote-card__role {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.faq-grid--single { grid-template-columns: minmax(0, 1fr); }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--plum);
  font-weight: 600;
  line-height: 1.35;
  min-width: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--plum);
  color: var(--plum);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.35s var(--ease-fluid), background 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; background: var(--plum); color: var(--white); }
.faq-item__answer {
  padding: 0 0 1.75rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 65ch;
}

/* Numbered accordion (postpartum window) */
.num-accordion__head {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  min-width: 0;
}
.num-accordion__index {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: transparent;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-feature-settings: "lnum" 1, "tnum" 1;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.faq-item[open] .num-accordion__index {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.num-accordion .faq-item__answer { padding-left: clamp(4rem, 7vw, 4.85rem); }
.story-read p { margin: 0 0 0.9rem; }
.story-read p:last-child { margin-bottom: 0; }
.story-read__meta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1rem !important;
}

.faq-side {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  background: var(--plum);
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  overflow: hidden;
}
.faq-side::before {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(232, 180, 200, 0.25), transparent 70%);
}
.faq-side h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
}
.faq-side > p { color: rgba(255, 255, 255, 0.65); position: relative; }
.faq-side__stat {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}
.faq-side__stat .counter__num { color: var(--white); }
.faq-side__stat .counter__num .counter__suffix { color: var(--pink); }
.faq-side__stat .counter__label { color: rgba(255, 255, 255, 0.7); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius);
}
.contact-info__phone__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}
.contact-info__phone__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info__phone__number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.contact-info__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info__panel h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-info__panel small { color: var(--ink-soft); }
.contact-info__panel ul {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-info__panel li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.contact-info__panel li strong { color: var(--plum); }
.contact-info__panel li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.contact-form--embed {
  padding: 0;
  overflow: hidden;
  line-height: 0;
}
.contact-form--embed iframe {
  display: block;
  width: 100%;
  margin: 0;
  min-height: 600px;
  border: 0;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field label {
  font-weight: 600;
  color: var(--plum);
  font-size: 0.88rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.15);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field-grid .field { margin-bottom: 0; }
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 1.25rem;
}
.field-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--teal); }

.form-success {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  color: var(--ink);
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-fluid), box-shadow 0.4s var(--ease-fluid);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--beige);
}
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-fluid); }
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.blog-card__cat {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--plum);
  font-weight: 600;
  font-size: 0.78rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  color: var(--plum);
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.blog-card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  margin-top: auto;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--plum-dark);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4rem);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.cta-banner::before { background: rgba(232, 180, 200, 0.4); top: -40%; left: -10%; }
.cta-banner::after { background: rgba(42, 157, 143, 0.45); bottom: -40%; right: -10%; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  max-width: min(22ch, 100%);
  margin: 0 auto 1.25rem;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}
.cta-banner h2 em { color: var(--pink); font-style: italic; font-weight: 500; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); max-width: 50ch; margin: 0 auto 2rem; }
.cta-banner .actions { justify-content: center; }

/* ---------- Subpage hero (no parallax) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(170deg, var(--cream) 0%, var(--beige) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 180, 200, 0.3), transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-width: 0;
}
.page-hero__inner > * {
  min-width: 0;
  max-width: 100%;
}
.page-hero--single .page-hero__inner { grid-template-columns: 1fr; max-width: 820px; }
.crumbs {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.crumbs a:hover { color: var(--teal); }
.crumbs span { color: var(--plum); font-weight: 500; }

.page-hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--pink-soft), var(--lavender));
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Prose / info blocks ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--plum);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}
.prose p { margin-bottom: 1rem; color: var(--ink-soft); line-height: 1.8; }
.prose ul { margin: 0 0 1.25rem 1.25rem; }
.prose li { margin-bottom: 0.5rem; color: var(--ink-soft); }
.prose strong { color: var(--plum); }
.prose blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--plum);
  border-left: 4px solid var(--teal);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 18px 18px 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.callout h4 {
  color: var(--plum);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.callout p { color: var(--ink); margin: 0; }

.emergency {
  background: #fce8ec;
  border: 1.5px solid var(--pink);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.emergency__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--plum-dark);
  font-weight: 700;
}
.emergency h3 { color: #b23a52; margin-bottom: 0.35rem; font-family: var(--font-display); font-size: 1.2rem; }
.emergency p { color: #7a3340; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 157, 143, 0.18), transparent 70%);
  pointer-events: none;
}
.site-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: end;
  position: relative;
}
.site-footer__cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  max-width: 100%;
}
.site-footer__cta h2 em { color: var(--pink); font-style: italic; font-weight: 500; }
.site-footer__newsletter h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.site-footer__newsletter p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.site-footer__newsletter form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
}
.site-footer__newsletter input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  min-width: 0;
}
.site-footer__newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.site-footer__newsletter input:focus { outline: none; }
.site-footer__newsletter button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.site-footer__newsletter button:hover { background: var(--teal-dark); }
.site-footer__instagram-link {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.site-footer__instagram-link:hover { background: var(--teal-dark); color: var(--white); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(3rem, 5vw, 4rem) 0;
  position: relative;
}
.site-footer__brand .brand { color: var(--white); font-size: 1.6rem; }
.site-footer__brand p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 32ch;
  line-height: 1.6;
}
.site-footer__col h5 {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.site-footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  transition: color 0.25s;
}
.site-footer__col a:hover { color: var(--pink); }
.site-footer__col li svg { vertical-align: middle; margin-right: 0.45rem; color: var(--teal); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom a { color: rgba(255, 255, 255, 0.65); }
.site-footer__bottom a:hover { color: var(--pink); }

.disclaimer {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  position: relative;
}
.disclaimer strong { color: var(--white); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-fluid), transform 0.95s var(--ease-fluid);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Stat cards (about page) ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: left;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--plum);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat .lbl { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner,
  .page-hero__inner,
  .about-intro__grid,
  .faq-grid,
  .contact-grid,
  .site-footer__cta {
    grid-template-columns: 1fr;
  }
  .section__head {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }
  .about-intro__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-side { position: static; }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .hero__counters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__media {
    aspect-ratio: auto;
    height: auto;
    max-height: min(72vh, 34rem);
    overflow: hidden;
  }
  .hero__media video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: top center;
  }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 88vw);
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding:
      calc(5.5rem + var(--safe-top))
      max(1.5rem, var(--safe-right))
      calc(2rem + var(--safe-bottom))
      1.5rem;
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    box-shadow: -12px 0 40px rgba(45, 24, 40, 0.18);
    z-index: 2001;
    overflow-y: auto;
    gap: 0.25rem;
  }
  .nav__links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__toggle { display: flex; order: 3; }
  .nav__cta { display: none; }
  .num-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.85rem 1rem;
  }
  .num-row__desc { display: none; }
  .num-row:hover {
    padding-left: 0;
    padding-right: 0;
  }
  .num-accordion details[open] > summary.num-row {
    padding-left: 0;
    padding-right: 0;
  }
  .num-accordion__panel {
    padding: 0 0 1.5rem clamp(3.25rem, 10vw, 4.5rem);
  }
}

@media (max-width: 760px) {
  :root { --nav-h: 68px; }
  body { font-size: 1rem; }
  .hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); }
  .page-hero__media { aspect-ratio: 5/4; }
  .hero__counters {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 1.75rem;
    margin-top: 1.75rem;
  }
  .counter__num { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .about-intro__stats { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .site-footer__newsletter form {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
    padding: 0.75rem;
    gap: 0.65rem;
  }
  .site-footer__newsletter button {
    width: 100%;
    padding: 0.8rem 1rem;
  }
  .field-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .btn { white-space: normal; }
  .emergency { flex-direction: column; }
  .num-row {
    grid-template-columns: 36px minmax(0, 1fr) 38px;
    gap: 0.65rem 0.85rem;
    padding: 1.15rem 0;
    align-items: start;
  }
  .num-row__index { font-size: 1.1rem; line-height: 1.3; }
  .num-row__title { font-size: clamp(1.05rem, 4.2vw, 1.35rem); }
  .num-row__arrow {
    width: 38px;
    height: 38px;
    align-self: center;
  }
  .num-accordion__panel {
    padding: 0 0 1.25rem 2.75rem;
  }
  .quote-card {
    padding: 1.35rem;
    flex: 0 0 min(300px, 88vw);
  }
  .quote-card__quote { font-size: 1.05rem; }
  .marquee-track { animation-duration: 28s; }
  .marquee-track--reverse { animation-duration: 32s; }
  .nav__inner { gap: 0.75rem; }
  .brand { font-size: 1.2rem; }
  .section { padding: clamp(3.25rem, 8vw, 5rem) 0; }
  .section__head { margin-bottom: 2rem; }
  .blog-card__meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .contact-info__phone__number {
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
    overflow-wrap: break-word;
  }
  .faq-item summary::after {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .cta-banner {
    padding: clamp(2.25rem, 6vw, 3rem) clamp(1.15rem, 4vw, 1.75rem);
    border-radius: var(--radius-lg);
  }
  .service-card {
    padding: 1.5rem;
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .brand { font-size: 1.05rem; }
  .brand .brand-dot {
    width: 7px;
    height: 7px;
    margin-right: 0.35rem;
  }
  .container {
    padding-left: max(1rem, var(--safe-left));
    padding-right: max(1rem, var(--safe-right));
  }
  .nav__inner {
    padding-left: max(1rem, var(--safe-left));
    padding-right: max(1rem, var(--safe-right));
  }
  .h-hero { font-size: clamp(1.85rem, 10vw, 2.35rem); line-height: 1.18; }
  .h-xl { font-size: clamp(1.55rem, 7.5vw, 2rem); line-height: 1.2; }
  .counter__num { font-size: 1.75rem; }
  .counter__label { font-size: 0.84rem; }
  .contact-info__panel,
  .contact-form:not(.contact-form--embed) { padding: 1.25rem; }
  .pill-label {
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .crumbs {
    flex-wrap: wrap;
    font-size: 0.8rem;
  }
  .site-footer__brand .brand { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none; }
}
