/* Shared site styles: layered on top of styles/tokens.css */

* { box-sizing: border-box; }

html { overflow-x: clip; }

body {
  background: var(--white);
  color: var(--fg-1);
  font-family: var(--font-body);
}

/* ============================================================
   White-page override: every section below the hero sits on
   the same white as .hero-v2 (component cards stay cream).
   The clarity section is intentionally cream to frame the photo.
   ============================================================ */
.who-section,
.wtr-section,
.hiw-section,
.section-cream,
.parent-stories { background: var(--white); }

/* Paper grain overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PScwIDAgMjAwIDIwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDAuMTIgMCAwIDAgMCAwLjE2IDAgMCAwIDAgMC4xNCAwIDAgMCAwLjQgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
  opacity: 0.04;
  mix-blend-mode: multiply;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-sm {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  transform: translateY(0);
  transition: transform 560ms cubic-bezier(0.32, 0.72, 0.24, 1);
  background: white;
}
.nav { border-bottom: 1px solid var(--border-subtle); }

.nav.nav-hide { transform: translateY(-100%); }
.nav-inner {
  width: 100%;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 96px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--sage-700);
  flex-shrink: 0;
}
.nav-brand img {
  width: 125px; height: 125px;
  object-fit: contain;
  /* Promote to its own layer + snap to pixel grid so subpixel positioning doesn't soften it */
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media (max-width: 720px) {
  .nav-brand img { width: 102px; height: 102px; }
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
@media (max-width: 1150px) { .nav .nav-links { display: none; } }
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-900);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms var(--ease-out);
}
.nav-links a.active {
  color: var(--ink-900);
  text-decoration: underline;
  text-decoration-color: var(--ink-900);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.nav-links a:hover {
  color: var(--sage-700);
  text-decoration: underline;
  text-decoration-color: var(--sage-700);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
/* Desktop "For Families" dropdown */
.nav-item-drop { position: relative; display: inline-flex; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; padding: 0; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink-900); white-space: nowrap; transition: color 180ms var(--ease-out); }
.nav-drop-btn svg { transition: transform 180ms var(--ease-out); }
.nav-drop-btn:hover, .nav-item-drop.open .nav-drop-btn { color: var(--sage-700); text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--sage-400); text-decoration-thickness: 1px; }
.nav-item-drop.open .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; opacity: 0; visibility: hidden; transition: opacity 160ms var(--ease-out), visibility 160ms var(--ease-out); z-index: 80; }
.nav-item-drop.open .nav-drop { opacity: 1; visibility: visible; }
.nav-drop-panel { background: var(--white); border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: 0 22px 48px -20px rgba(45,58,35,.4); padding: 10px; display: flex; flex-direction: column; gap: 2px; min-width: 240px; }
.nav-links .nav-drop-panel a { padding: 9px 12px; border-radius: 10px; font-size: 14px; white-space: nowrap; }
.nav-links .nav-drop-panel a:hover { background: var(--sage-100); text-decoration: none; }
.nav-sub { position: relative; }
.nav-sub-btn { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; background: none; border: 0; cursor: pointer; padding: 9px 12px; border-radius: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink-900); white-space: nowrap; transition: background 160ms var(--ease-out); }
.nav-sub-btn:hover, .nav-sub.open > .nav-sub-btn { background: var(--sage-100); }
.nav-sub-panel { position: absolute; left: 100%; top: -11px; padding-left: 12px; opacity: 0; visibility: hidden; transition: opacity 160ms var(--ease-out), visibility 160ms var(--ease-out); }
.nav-sub.open > .nav-sub-panel { opacity: 1; visibility: visible; }
.nav-sub-panel-inner { background: var(--white); border: 1px solid var(--border-subtle); border-radius: 16px; box-shadow: 0 22px 48px -20px rgba(45,58,35,.4); padding: 10px; display: flex; flex-direction: column; gap: 2px; min-width: 264px; }

.nav-cta {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--ink-900);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  padding: 12px 4px;
  border-radius: 0;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: rgba(31, 42, 35, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  transition: color 200ms var(--ease-out), text-decoration-color 200ms var(--ease-out);
}
.nav-cta:hover {
  background: transparent;
  color: var(--clay-500);
  text-decoration-color: var(--clay-500);
  transform: none;
}
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta { text-decoration: none; }
.nav-cta .nav-cta-pre, .nav-cta .nav-cta-num { font-family: var(--font-hand); font-size: 20px; font-weight: 600; }

.nav-cta-primary {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clay-500);
  color: var(--cream-50);
  font-weight: 600; font-size: 12.5px;
  letter-spacing: 0;
  text-transform: none;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 24px -14px rgba(199, 84, 31, 0.55),
              0 3px 8px -4px rgba(199, 84, 31, 0.35);
  text-decoration: none;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.nav-cta-primary:hover {
  background: var(--clay-600);
  transform: translateY(-1px);
  color: var(--cream-50);
  box-shadow: 0 16px 30px -14px rgba(199, 84, 31, 0.6),
              0 5px 12px -4px rgba(199, 84, 31, 0.4);
}
.nav-cta-primary svg {
  width: 15px; height: 15px; flex-shrink: 0;
  transition: transform 240ms var(--ease-spring, ease);
}
.nav-cta-primary:hover svg { transform: translateX(3px); }

/* Social icons in header */
.nav-socials {
  display: flex; align-items: center; gap: 14px;
  margin-right: 8px;
}
.nav-social {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink-700);
  border-radius: 999px;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), transform 200ms var(--ease-out);
}
.nav-social:hover { color: var(--sage-700); background: var(--sage-100); transform: translateY(-1px); }
@media (max-width: 980px) { .nav-socials { display: none; } }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}

@media (max-width: 720px) {
  .nav-links, .nav-cta, .nav-cta-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white;
    padding: 24px 32px;
    gap: 18px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-mobile-open .nav-cta { display: inline-flex; align-self: flex-start; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  transition: all 220ms var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--sage-500); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage-600); transform: translateY(-1px); }
.btn-accent  { background: var(--clay-400); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.btn-accent:hover { background: var(--clay-500); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink-900); border: 2px solid var(--ink-900); padding: 12px 22px; }
.btn-outline:hover { background: var(--ink-900); color: var(--cream-50); }
.btn-ghost { background: transparent; color: var(--ink-900); padding: 12px 18px; }
.btn-ghost:hover { background: var(--sage-100); }
.btn-soft { background: var(--cream-100); color: var(--ink-900); border: 1px solid var(--cream-300); }
.btn-soft:hover { background: var(--cream-200); }

.btn .btn-arrow { transition: transform 220ms var(--ease-spring); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ EYEBROW ============ */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: var(--clay-100);
  color: var(--clay-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}
.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--clay-400); }

.eyebrow-sage {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage-600);
}

/* ============ HERO (home) ============ */
.hero {
  position: relative;
  padding: 48px 32px 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center, var(--sage-100) 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* ---- Image-overlay hero (homepage) ---- */
.hero.hero-image {
  padding: 0;
  min-height: clamp(560px, 78vh, 820px);
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero.hero-image::before { display: none; }

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: var(--cream-50);
  z-index: 0;
}
/* Soft cream fade on the left so the headline reads cleanly over the watercolor wash */
.hero-image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(251, 248, 241, 0.96) 0%,
      rgba(251, 248, 241, 0.78) 22%,
      rgba(251, 248, 241, 0.42) 42%,
      rgba(251, 248, 241, 0.06) 58%,
      rgba(251, 248, 241, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
/* Bottom fade so any section below blends in cleanly */
.hero-image-fade::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(251, 248, 241, 0) 0%, var(--cream-50) 92%);
}

.hero-image-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 96px 32px 120px;
  /* Constrain text to the left half so the watercolor figures stay visible on the right */
  max-width: min(1240px, 100%);
}
.hero-image-inner > * { max-width: 580px; }
.hero-image-inner .hero-ctas,
.hero-image-inner .hero-badges { max-width: 640px; }

.hero.hero-image h1 {
  /* slight text shadow keeps headline readable over the soft wash */
  text-shadow: 0 1px 0 rgba(251, 248, 241, 0.4);
}
.hero.hero-image .hero-lead {
  color: var(--ink-900);
  font-weight: 500;
}

@media (max-width: 960px) {
  .hero.hero-image {
    min-height: 0;
    display: block;
  }
  .hero-image-bg {
    /* On tablet, push the image down as a band below the text */
    background-position: center right;
    background-size: cover;
  }
  /* Stronger fade so text always reads */
  .hero-image-fade {
    background:
      linear-gradient(180deg,
        rgba(251, 248, 241, 0.96) 0%,
        rgba(251, 248, 241, 0.78) 30%,
        rgba(251, 248, 241, 0.35) 60%,
        rgba(251, 248, 241, 0.08) 80%,
        rgba(251, 248, 241, 0) 100%);
  }
  .hero-image-inner { padding: 64px 24px 380px; }
  .hero-image-inner > * { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-image-inner { padding: 48px 20px 320px; }
  /* On mobile, simplify: scale background down, soften further so it doesn't fight copy */
  .hero-image-bg {
    background-size: 180% auto;
    background-position: bottom right;
    opacity: 0.72;
  }
  .hero-image-fade {
    background:
      linear-gradient(180deg,
        rgba(251, 248, 241, 0.98) 0%,
        rgba(251, 248, 241, 0.86) 35%,
        rgba(251, 248, 241, 0.5) 65%,
        rgba(251, 248, 241, 0.1) 88%,
        rgba(251, 248, 241, 0) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .voice-bubble { animation: none; }
}
.hero-grid {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  z-index: 2;
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--sage-800);
  margin: 20px 0 24px;
}
.hero h1 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  color: var(--clay-400);
  font-size: 0.95em;
  display: inline-block;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-badges {
  margin-top: 36px;
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: var(--fg-2);
}
.hero-badge { display: flex; align-items: center; gap: 8px; }
.hero-stars { color: var(--sun-500); letter-spacing: 2px; font-size: 14px; }

/* Hero portrait: young child finding her voice */
.hero-portrait {
  position: relative;
}
.hero-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
  border-radius: 62% 38% 58% 42% / 55% 55% 45% 45%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg, var(--sage-200), var(--cream-200));
}
.hero-portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

/* Floating speech bubble words coming from child */
.voice-bubble {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--sage-700);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  white-space: nowrap;
  animation: voiceFloat 6s ease-in-out infinite;
}
.voice-bubble::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--white);
  border-right: 1px solid var(--sage-100);
  border-bottom: 1px solid var(--sage-100);
  transform: rotate(45deg);
}
.voice-b1 { top: 6%;  left: -6%; transform: rotate(-4deg); animation-delay: 0s; }
.voice-b1::after { bottom: -6px; right: 30px; }
.voice-b2 { top: 28%; right: -4%; transform: rotate(3deg); animation-delay: 1.2s;
  background: var(--clay-400); color: var(--cream-50); border-color: var(--clay-500); }
.voice-b2::after { background: var(--clay-400); border-color: var(--clay-500); bottom: -6px; left: 24px; }
.voice-b3 { bottom: 24%; left: -10%; transform: rotate(2deg); animation-delay: 2.4s;
  background: var(--sage-500); color: var(--cream-50); border-color: var(--sage-600); }
.voice-b3::after { background: var(--sage-500); border-color: var(--sage-600); top: -6px; right: 26px; transform: rotate(225deg); }

@keyframes voiceFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, -4deg)); }
  50%      { transform: translateY(-8px) rotate(var(--r, -4deg)); }
}

.hero-card {
  position: absolute;
  bottom: -16px; left: -12px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; gap: 12px; align-items: center;
}
.hero-card .avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--sage-200); overflow: hidden;
}
.hero-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .label {
  font-family: var(--font-hand);
  font-size: 18px;
  color: var(--clay-500);
  line-height: 1;
  transform: rotate(-2deg);
}
.hero-card .name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
}
.hero-card .cred { font-size: 12px; color: var(--fg-3); }

.hero-tag {
  position: absolute;
  top: 18px; right: -10px;
  background: var(--sage-500);
  color: var(--cream-50);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  transform: rotate(4deg);
  box-shadow: var(--shadow-md);
}

/* ============ SECTION / BANDS ============ */
.section { padding: 56px 32px; position: relative; z-index: 2; }
.section-sage { background: var(--sage-800); color: var(--cream-50); }
.section-sage h2 { color: var(--cream-50); }
.section-cream { background: var(--cream-100); }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--brand-ink);
  margin: 12px 0 12px;
}
.section-sage .section-head h2 { color: var(--cream-50); }
.section-head p { color: var(--fg-2); font-size: 17px; max-width: 640px; }
.section-sage .section-head p { color: rgba(251, 248, 241, 0.85); }

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ============ STATS STRIP ============ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--cream-100);
  border-radius: 28px;
  padding: 28px;
  margin: 0 auto;
}
.stat {
  padding: 8px 20px;
  border-right: 1px solid var(--cream-300);
  text-align: left;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--sage-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 8px;
}

/* ============ SERVICES PREVIEW ============ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.svc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 22px;
  color: var(--ink-900);
  transition: all 240ms var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-200);
}
.svc-card .dot {
  width: 10px; height: 10px;
  background: var(--clay-400);
  border-radius: 999px;
  margin-bottom: 14px;
}
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 600;
  color: var(--brand-ink);
  margin: 0 0 6px;
}
.svc-card p { font-size: 14px; color: var(--fg-2); margin: 0; }
.svc-card .arrow { margin-top: 14px; color: var(--clay-500); font-size: 14px; font-weight: 600; }

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  transition: transform 240ms var(--ease-out);
}
.process-card.accent {
  background: var(--sage-500);
  color: var(--cream-50);
  border: 0;
  box-shadow: var(--shadow-lg);
}
.process-card:hover { transform: translateY(-3px); }
.process-card .num {
  font-family: var(--font-hand);
  font-size: 40px;
  color: var(--clay-400);
  line-height: 1;
  margin-bottom: 14px;
}
.process-card.accent .num { color: var(--sun-300); }
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 600;
  color: var(--brand-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.process-card.accent h3 { color: var(--cream-50); }
.process-card p { font-size: 15px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.process-card.accent p { color: rgba(251, 248, 241, 0.9); }

/* ============ WHO WE HELP ============ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
}
.who-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(251,248,241,0.16); }
.who-list li {
  padding: 22px 4px;
  border-bottom: 1px solid rgba(251, 248, 241, 0.16);
  display: grid;
  grid-template-columns: 40px 1fr 2fr;
  gap: 20px;
  align-items: baseline;
}
.who-list .idx { font-family: var(--font-hand); font-size: 24px; color: var(--sun-300); }
.who-list h3 {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 500;
  color: var(--cream-50); margin: 0;
  letter-spacing: -0.01em;
}
.who-list p {
  font-size: 15px;
  color: rgba(251, 248, 241, 0.82);
  margin: 0;
}

/* ============ QUOTE ============ */
.quote {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 44px 52px;
  box-shadow: var(--shadow-md);
}
.quote::before {
  content: '"';
  position: absolute;
  top: -20px; right: 40px;
  font-family: var(--font-display);
  font-size: 130px;
  color: var(--sage-100);
  line-height: 1;
}
.quote p {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0 0 24px;
}
.quote-attr { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--clay-300);
  color: var(--cream-50);
  font-family: var(--font-heading);
  font-weight: 700;
  display: grid; place-items: center;
}
.quote-name { font-weight: 700; font-size: 15px; color: var(--ink-900); }
.quote-meta { font-size: 13px; color: var(--fg-3); }

/* ============ FAQ ============ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-default);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  background: none; border: 0;
  padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-q .chev {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--sage-100); color: var(--sage-600);
  display: grid; place-items: center;
  transition: transform 240ms var(--ease-out), background 200ms;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--sage-500); color: var(--cream-50); }
/* On a sage-filled surface the circle inverts to white so it stays visible. */
.section-sage .faq-q .chev{background:var(--white);color:var(--sage-700)}
.section-sage .faq-item.open .faq-q .chev{background:var(--white);color:var(--sage-700)}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-out), padding 240ms var(--ease-out);
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.65;
  padding: 0 48px 0 4px;
}
.faq-item.open .faq-a { padding-bottom: 22px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--sage-100);
  color: var(--sage-800);
  padding: 80px 32px 36px;
  margin-top: 0;
  position: relative; z-index: 2;
}
.footer a { color: var(--sage-700); transition: color .2s var(--ease-out); }
.footer a:hover { color: var(--clay-500); text-decoration-color: var(--clay-500); }
/* Match the final CTA phone treatment: handwriting face, footer colours unchanged */
.footer a.foot-phone { font-family: var(--font-hand); font-size: 20px; font-weight: 600; }

/* Neutralise a handwriting accent so it matches the surrounding heading.
   Class is doubled so it outranks the page-level .tz-hand / .sz-hand /
   .fq-hand / .ct-hand rules, which live in each page's inline <style>
   and therefore load after this file. Specificity escalation was not
   enough: page rules range from .tz-hand (0-1-0) to
   .ab-hero .ab-hero-h .ab-hand (0-3-0), so this uses !important to stay
   authoritative regardless of how a page scopes its accent. */
.no-hand { font-family: var(--font-heading) !important; font-style: normal !important; font-weight: inherit !important; color: inherit !important; font-size: inherit !important; letter-spacing: inherit !important; line-height: inherit !important; transform: none !important; display: inline !important; }

/* Headings kept to a single line on desktop. text-wrap is set as well as
   white-space because the pages set text-wrap: balance, which overrides
   the text-wrap component of the white-space shorthand. */
@media (min-width: 861px) {
  .ab-believe-head h2,
  .fq-hero-h.fq-hero-h,
  .ct-hero h1 {
    white-space: nowrap !important;
    text-wrap: nowrap !important;
  }
}
.footer-grid {
  max-width: 1680px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(45, 58, 35, 0.14);
}
.footer h4.footer-h4-stack { margin-top: 22px; }
.footer-grid > div:first-child { text-align: center; }
.footer-grid > div:first-child .foot-socials { justify-content: center; }
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clay-500);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer .foot-brand-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer .foot-brand-link img {
  width: 96px; height: 96px;
  object-fit: contain;
}
.foot-socials {
  display: flex; gap: 12px;
  margin-top: 18px;
}
.foot-socials a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(45, 58, 35, 0.08);
  display: grid; place-items: center;
  color: var(--sage-800);
  transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.foot-socials a:hover { background: var(--sage-700); color: var(--cream-50); transform: translateY(-2px); }
.footer .tagline { color: var(--fg-2); max-width: 320px; font-size: 14px; line-height: 1.55; }
.footer .footer-tagline-bottom { grid-column: 1 / -1; max-width: none; text-align: center; margin: 8px 0 0; }
.footer .hand-sign {
  font-family: var(--font-hand);
  font-size: 34px;
  color: var(--clay-500);
  margin-top: 20px;
  transform: rotate(-3deg);
  display: inline-block;
}
.footer-base {
  max-width: 1680px; margin: 28px auto 0;
  display: flex; justify-content: space-between;
  color: rgba(45, 58, 35, 0.65);
  font-size: 13px;
  flex-wrap: wrap; gap: 10px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.foot-contact-mobile { display: none; }

/* ============ CTA BANNER ============ */
.cta-banner {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--clay-400);
  color: var(--cream-50);
  border-radius: 36px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--sun-300) 0%, transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream-50);
  margin: 0 0 14px;
}
.cta-banner p { color: rgba(251, 248, 241, 0.92); margin: 0 0 20px; font-size: 17px; }
.cta-banner .btn-soft { background: var(--cream-50); color: var(--ink-900); border: 0; }
.cta-banner .btn-soft:hover { background: var(--white); }
.cta-banner .btn-outline-light {
  background: transparent; color: var(--cream-50);
  border: 2px solid rgba(251, 248, 241, 0.5);
  padding: 12px 22px;
}
.cta-banner .btn-outline-light:hover {
  background: var(--cream-50); color: var(--ink-900); border-color: var(--cream-50);
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-hero {
  padding: 80px 32px 60px;
  position: relative;
  z-index: 2;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--border-subtle);
}
.page-hero-inner { max-width: 1000px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--sage-800);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.page-hero h1 em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--clay-400);
  font-size: 0.95em;
}
.page-hero .lead {
  font-size: 20px;
  color: var(--fg-2);
  max-width: 640px;
  line-height: 1.55;
}

/* ============ BREADCRUMBS ============ */
.crumbs { font-size: 13px; color: var(--fg-3); display: flex; gap: 8px; }
.crumbs a { color: var(--fg-3); }
.crumbs a:hover { color: var(--sage-700); }
.crumbs .sep { color: var(--ink-300); }

/* ============ GENERAL RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-portrait-frame { margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--cream-300); padding-bottom: 18px; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 32px; }
  .quote { padding: 32px 28px; }
  .quote p { font-size: 20px; }
  .section { padding: 44px 24px; }
  .hero { padding: 32px 24px 80px; }
}
@media (max-width: 560px) {
  .container, .container-sm { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > div:nth-child(2) { grid-column: 1; grid-row: 2; }
  .footer-grid > div:nth-child(3) { grid-column: 2; grid-row: 2 / span 2; }
  .footer-grid > div:nth-child(4) { grid-column: 1; grid-row: 3; align-self: start; margin-top: -10px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; column-gap: 20px; row-gap: 12px; text-align: center; }
  .footer-grid > div:first-child .foot-brand-link img { width: 96px; height: 96px; }
  .footer-grid > div:first-child .foot-socials a { width: 32px; height: 32px; }
  .footer-grid > div:first-child .foot-brand-link { grid-column: 1; grid-row: 1 / span 2; }
  .footer-grid > div:first-child .hand-sign { grid-column: 2; grid-row: 1; justify-self: center; align-self: end; margin: 0; font-size: 24px; white-space: nowrap; }
  .footer-grid > div:first-child .foot-socials { grid-column: 2; grid-row: 2; justify-self: center; align-self: start; margin: 0; }
  .foot-contact-mobile { display: block; grid-column: 1 / -1; margin: 6px 0 0; text-align: center; }
  .foot-contact-mobile ul { align-items: center; }
  .footer .foot-contact-mobile h4.footer-h4-stack { margin-top: 0; }
  .foot-contact-desktop { display: none; }
  .footer-base { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
  .footer-base .footer-legal { order: -1; }
  .footer-legal { justify-content: center; }
  .stats-strip { grid-template-columns: 1fr; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ============ EVALUATION CALLOUT (services + evaluations pages) ============ */
.eval-callout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 28px;
  padding: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.eval-tag {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.eval-meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--clay-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eval-body {
  margin: 18px 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
}
.eval-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.eval-price-card {
  background: var(--sage-500);
  color: var(--cream-50);
  border-radius: 22px;
  padding: 32px;
  text-align: center;
}
.eval-price-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun-300);
}
.eval-price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}
.eval-price-note {
  font-size: 13px;
  color: rgba(251, 248, 241, 0.86);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .eval-callout { grid-template-columns: 1fr; padding: 28px; }
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.price-card-feature {
  background: var(--sage-500);
  color: var(--cream-50);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.price-card-feature h3,
.price-card-feature .price-card-sub { color: var(--cream-50); }
.price-card-feature .price-card-icon { background: rgba(251,248,241,0.18); color: var(--cream-50); }
.price-card-feature .price-row { border-color: rgba(251,248,241,0.22); }
.price-card-feature .price-row .amt { color: var(--sun-300); }

.price-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
}
.price-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sage-100); color: var(--sage-700);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.price-card-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.price-card-sub {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 4px;
}
.price-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-subtle);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.price-row:last-child { border-bottom: 0; }
.price-row .dur {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.price-card-feature .price-row .dur { color: rgba(251,248,241,0.78); }
.price-row .amt {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--sage-700);
  letter-spacing: -0.02em;
}

.pricing-includes {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 24px;
}
.pricing-includes h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.pricing-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.45;
}
.pricing-includes li svg { flex-shrink: 0; margin-top: 3px; }

.pricing-promise {
  background: var(--clay-100);
  color: var(--ink-900);
  padding: 20px 24px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.55;
  border-left: 0;
}
.pricing-promise strong { color: var(--clay-600); }

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-includes ul { grid-template-columns: 1fr; }
}

/* ============ EVAL PAGE ============ */
.eval-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.eval-h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.eval-p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 14px;
}
.eval-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.eval-bullets li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed var(--border-default);
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.5;
}
.eval-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--sage-200);
  border: 2px solid var(--sage-500);
}
.eval-bullets li:last-child { border-bottom: 0; }
.eval-bullets a { color: var(--clay-500); text-decoration: underline; text-decoration-color: rgba(195, 122, 91, 0.4); }
.eval-bullets a:hover { color: var(--clay-600); text-decoration-color: var(--clay-600); }

.eval-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.eval-check {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}
.eval-check:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.eval-check-num {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--clay-400);
  line-height: 1;
  margin-bottom: 12px;
}
.eval-check h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.eval-check p {
  font-size: 14px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.55;
}
.eval-check-feature {
  background: var(--sage-500);
  color: var(--cream-50);
  border-color: transparent;
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.eval-check-feature .eval-check-num { color: var(--sun-300); margin: 0; font-size: 44px; }
.eval-check-feature h3 { color: var(--cream-50); font-size: 22px; margin: 0 0 6px; }
.eval-check-feature p { color: rgba(251, 248, 241, 0.88); font-size: 15px; }

@media (max-width: 880px) {
  .eval-two-col { grid-template-columns: 1fr; gap: 40px; }
  .eval-checklist { grid-template-columns: 1fr; }
  .eval-check-feature { grid-column: span 1; grid-template-columns: 1fr; gap: 8px; }
}

/* ============ NAV: Services dropdown + always-visible hamburger ============ */
.nav-inner { gap: 96px; }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }

/* Burger is the only menu: shown at every width */
.nav-burger {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink-900);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms, color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.nav-burger.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), visibility 0s linear 0s, color 180ms var(--ease-out), background 180ms var(--ease-out);
}
.nav-burger:hover { color: var(--sage-700); background: transparent; }
.nav-burger svg { display: block; width: 24px; height: 24px; transition: transform 480ms cubic-bezier(0.55, 0.06, 0.28, 1); }
.nav-burger.is-open svg { transform: rotate(360deg); }
.nav-burger svg polyline, .nav-burger svg line { transform-box: fill-box; transform-origin: center; transition: transform 280ms var(--ease-out), opacity 220ms var(--ease-out); }
.nav-burger.is-open svg polyline, .nav-burger.is-open svg line { transition-delay: 230ms; }
.nav-burger.is-open svg .bi-roof, .nav-burger.is-open svg .bi-door { opacity: 0; transform: translateY(4px) scale(0.5); }
.nav-burger.is-open svg .bi-w1 { transform: translate(7px, -2.8px) rotate(45deg); }
.nav-burger.is-open svg .bi-w2 { transform: translate(-7px, -2.8px) rotate(-45deg); }
.nav-burger.is-open svg .bi-l3 { opacity: 0; transform: scaleX(0.2); }
.nav-burger.is-open, .nav-burger.is-open.visible { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 1150px) {
  .nav-burger, .nav-burger.visible { position: static; top: auto; right: auto; opacity: 1; visibility: visible; transform: none; border: 0; background: transparent; box-shadow: none; width: 42px; height: 42px; }
}

/* Hide old nav-toggle now that we use nav-burger everywhere */
.nav-toggle { display: none !important; }

/* Compact nav-links spacing */
.nav-links { gap: 26px; }

/* Tablet/mobile: hide inline links, keep CTA + burger */
@media (max-width: 720px) {
  .nav-links, .nav-cta, .nav-cta-primary { display: none !important; }
  .nav-mobile-open .nav-links { display: none !important; }
}

/* ============ MENU: dropdown panel below the nav (nav stays visible) ============ */
.menu-overlay {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  top: var(--nav-h, 130px);
  z-index: 39;
  background: rgba(41, 47, 38, 0.34);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease-out), visibility 0s linear 240ms;
}
.menu-overlay.from-top { top: 0; }
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms var(--ease-out);
}
.menu-overlay:focus, .menu-overlay:focus-visible { outline: none; }
.menu-overlay-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 26px 24px 34px;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  overflow-y: auto;
  background: radial-gradient(120% 130% at 88% 0%, color-mix(in srgb, var(--sage-100) 55%, white) 0%, rgba(255,255,255,0) 52%),
              radial-gradient(110% 130% at 8% 100%, color-mix(in srgb, var(--clay-100) 55%, white) 0%, rgba(255,255,255,0) 55%),
              #fff;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 34px 60px -28px rgba(30, 36, 28, 0.4);
  transform: translateY(-14px);
  transition: transform 300ms var(--ease-out);
}
.menu-overlay.open .menu-overlay-inner { transform: translateY(0); }

.menu-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding-top: 4px;
  text-align: center;
}
.menu-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
.menu-col h4 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay-500);
  margin: 0 0 14px;
  text-align: center;
}
.menu-primary { list-style: none; padding: 0; margin: 0; width: 100%;
  display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.menu-primary a {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--brand-ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 0;
  transition: color 200ms var(--ease-out), transform 240ms var(--ease-spring);
}
.menu-primary a:hover {
  color: var(--clay-500);
}
.menu-primary a .arr { display: none; }
/* Overlay accordion (For Families) */
.menu-acc { width: 100%; display: flex; flex-direction: column; align-items: center; }
.menu-acc-btn { background: none; border: 0; cursor: pointer; font-family: var(--font-heading); font-size: clamp(26px, 3vw, 36px); font-weight: 500; color: var(--brand-ink); letter-spacing: -0.025em; line-height: 1.1; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 7px 0; transition: color 200ms var(--ease-out); }
.menu-acc-btn:hover { color: var(--clay-500); }
.menu-acc-chev { flex-shrink: 0; transition: transform 240ms var(--ease-out); }
.menu-acc.open > .menu-acc-btn .menu-acc-chev { transform: rotate(180deg); }
.menu-acc-panel { list-style: none; margin: 0; padding: 0; max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease-out); display: flex; flex-direction: column; align-items: center; width: 100%; }
.menu-primary .menu-acc-panel a { font-family: var(--font-body); font-size: 17px; font-weight: 500; letter-spacing: 0; color: var(--ink-700); padding: 8px 0; }
.menu-primary .menu-acc-panel a:hover { color: var(--clay-500); }
.menu-acc-panel li:last-child { padding-bottom: 8px; }
.menu-primary .menu-acc-btn-sub { font-family: var(--font-body); font-size: 17px; font-weight: 500; letter-spacing: 0; color: var(--ink-700); gap: 8px; padding: 8px 0; }
.menu-primary .menu-acc-btn-sub:hover { color: var(--clay-500); }
.menu-acc-sub.open > .menu-acc-btn-sub { color: var(--clay-600); }
/* Nested group reads as belonging to its parent item */
.menu-acc > .menu-acc-panel { border-radius: 18px; background: var(--sage-100); width: min(360px, 86vw); align-self: center; }
.menu-acc > .menu-acc-panel > li { width: 100%; display: flex; flex-direction: column; align-items: center; }
.menu-acc > .menu-acc-panel > li:first-child { margin-top: 10px; }
.menu-acc > .menu-acc-panel > li:last-child { margin-bottom: 10px; }
.menu-acc-sub { width: 100%; }
.menu-acc-sub > .menu-acc-panel { background: var(--white); border: 1px solid var(--border-subtle); width: min(300px, 78vw); align-items: stretch; }
.menu-acc-sub > .menu-acc-panel > li { width: 100%; align-items: center; text-align: center; }
.menu-acc-sub .menu-acc-panel a { font-size: 15.5px; color: var(--fg-2); padding: 6px 18px; justify-content: center; text-align: center; width: 100%; }

.menu-services {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.menu-services a {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
}
.menu-services a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--sage-300);
  flex-shrink: 0;
}
.menu-services a:hover { background: var(--white); color: var(--sage-700); }
.menu-services a:hover::before { background: var(--clay-400); }

.menu-extras {
  width: 100%;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 4px 12px; align-items: center; justify-content: center;
}
.menu-extras-dot { color: var(--clay-400); font-size: 15px; line-height: 1; }
.menu-extras a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-2);
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 180ms;
}
.menu-extras a:hover { color: var(--sage-700); }

.menu-foot {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 24px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--fg-3);
}
.menu-foot > div { line-height: 2; }
.menu-foot > div span { display: none; }
.menu-foot > div a { display: block; }
.menu-foot > div .menu-foot-loc { display: block; }
.menu-foot > div .menu-foot-loc a { display: inline; }
.menu-foot a { color: var(--ink-900); font-weight: 500; }
.menu-foot a:hover { color: var(--clay-500); }
.menu-foot .menu-foot-cta {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--clay-500); color: var(--cream-50);
  padding: 11px 20px; border-radius: 999px;
  font-weight: 600; font-size: 12.5px; letter-spacing: 0;
  width: auto; align-self: center;
  box-shadow: 0 12px 24px -14px rgba(199, 84, 31, 0.55), 0 3px 8px -4px rgba(199, 84, 31, 0.35);
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.menu-foot .menu-foot-cta:hover { background: var(--clay-600); color: var(--cream-50); transform: translateY(-1px); }

body.menu-open { overflow: hidden; }
body.menu-open { position: fixed; left: 0; right: 0; width: 100%; }

@media (max-width: 860px) {
  .menu-overlay-inner { padding: 20px 22px 30px; }
  .menu-primary a { font-size: clamp(24px, 6.6vw, 30px); padding: 7px 0; }
  .menu-acc-btn { font-size: clamp(24px, 6.6vw, 30px); padding: 7px 0; }
  .menu-primary .menu-acc-btn-sub { font-size: 16px; padding: 7px 0; }
  .menu-acc-sub .menu-acc-chev { width: 14px; height: 14px; }
  .menu-acc-sub .menu-acc-panel a { font-size: 15px; padding: 6px 0; }
  .menu-acc-chev { width: 20px; height: 20px; }
  .menu-primary .menu-acc-panel a { font-size: 16px; padding: 7px 0; }
  .menu-extras a { padding: 7px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-overlay-inner,
  .nav-burger svg,
  .nav-burger svg polyline,
  .nav-burger svg line,
  .menu-primary a,
  .menu-extras a { transition-duration: 0ms !important; transition-delay: 0ms !important; }
}


/* ============ HERO V2: matches reference site ============ */
.hero-v2 {
  position: relative;
  z-index: 2;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  overflow: visible;
}
@media (max-width: 720px) {
  .hero.hero-v2 { padding: 0; }
}
.hero-v2-frame {
  max-width: 1320px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 32px 52px 16px;
  position: relative;
  overflow: visible;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
}
.hero-v2-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-v2-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 44px;
  align-items: center;
  min-height: auto;
  z-index: 2;
  width: 100%;
}
.hero-v2-text { position: relative; z-index: 3; }
.hero-v2-text { z-index: 2; }
.hero-v2 .hero-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin: 0 0 16px;
  line-height: 1.4;
}
.hero-v2 .hero-v2-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--clay-400);
  border-radius: 2px;
  flex: none;
}
.hero-v2-display {
  font-family: var(--font-heading);
  font-weight: 500;
  /* Scales with the LEFT column so the headline always fits at three lines, never wraps */
  font-size: clamp(27px, 4.1vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--sage-800);
  margin: 0 0 24px;
  text-wrap: nowrap;
  max-width: 100%;
}
/* Each line is its own block so the three-line shape is locked, never reflows */
.hero-v2-display .hero-v2-line {
  display: block;
  white-space: nowrap;
}
.hero-v2-display .accent-clay {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.15em;
  color: var(--clay-500);
  white-space: nowrap;
}
.hero-v2-lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-700);
  max-width: 58ch;
  margin: 0 0 18px;
}
.hero-v2-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.hero-v2-phone-pre { display: inline; }
.hero-v2-phone-cta svg { display: none; }
.hero-v2-points {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
}
.hero-v2-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-v2-points svg {
  width: 16px;
  height: 16px;
  color: var(--sage-600);
  flex-shrink: 0;
}
.hero-v2 .hiw-step-cta {
  padding: 14px 24px;
  font-size: 13px;
  gap: 10px;
}
.hero-v2 .hiw-step-cta svg {
  width: 16px;
  height: 16px;
}
.hero-v2-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}
.hero-v2-phone-cta span:last-child { transition: color 200ms var(--ease-out); }
.hero-v2-phone-cta svg {
  width: 16px;
  height: 16px;
  color: var(--sage-700);
  flex-shrink: 0;
}
.hero-v2-phone-cta:hover {
  color: var(--clay-500);
  background: transparent;
  text-decoration: none;
}
.hero-v2-phone-cta .hero-v2-phone-pre,
.hero-v2-phone-cta svg,
.hero-v2-phone-cta span:last-child { transition: color 180ms var(--ease-out); }
.hero-v2-phone-cta:hover .hero-v2-phone-pre,
.hero-v2-phone-cta:hover svg,
.hero-v2-phone-cta:hover span:last-child { color: var(--clay-500); }
.hero-v2-phone-pre { font-family: var(--font-hand); font-size: 20px; font-weight: 600; }
.hero-v2-phone-cta span:last-child { font-family: var(--font-hand); font-size: 20px; font-weight: 600; }
.hero-v2 .btn-primary {
  background: var(--sage-700);
  color: var(--cream-50);
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}
.hero-v2 .btn-primary:hover { background: var(--sage-800); }
.hero-v2 .btn-ghost {
  color: var(--ink-900);
  font-weight: 500;
  padding: 16px 8px;
}
.hero-v2 .btn-ghost:hover {
  background: transparent;
  color: var(--sage-700);
}

/* Image: sits in the right column of the hero, aligned with the text */
.hero-v2-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-left: auto;
  z-index: 1;
}
.hero-v2-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
@media (max-width: 960px) {
  .hero-v2 { overflow-x: clip; }
  .hero-v2-image {
    display: block;
    position: absolute;
    top: 50%;
    left: auto;
    right: -15%;
    transform: translateY(-50%);
    width: 95%;
    max-width: none;
    aspect-ratio: 1 / 1;
    margin: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-v2-image img { opacity: 0.50; }
  .hero-v2-display .hero-v2-line {
    white-space: normal;
  }
  .hero-v2-display {
    text-wrap: balance;
    font-size: clamp(26px, 5.6vw, 44px);
  }
}

/* Feature strip: full-bleed at hero bottom */
.hero-v2-feats {
  width: 100%;
  flex: 0 0 auto;
  background: var(--sage-700);
  background-image: linear-gradient(135deg, var(--sage-700) 0%, var(--sage-800) 100%);
  color: var(--cream-50);
  padding: 18px 52px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-v2-feats-inner {
  max-width: 1680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
}
.hero-v2-feats-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.hf-item {
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  text-align: left;
}
.hf-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: var(--sun-300);
  flex-shrink: 0;
}
.hf-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-50);
  line-height: 1.25;
  letter-spacing: 0.005em;
}
.hf-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.18);
}
.hero-v2-feats-tag {
  display: flex; gap: 14px; align-items: center;
  color: rgba(251, 248, 241, 0.82);
  font-size: 14px;
  line-height: 1.5;
}
.hero-v2-feats-tag svg { flex-shrink: 0; opacity: 0.85; color: var(--sun-300); }
.hero-v2-feats-tag strong {
  color: var(--cream-50);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.005em;
}

@media (max-width: 960px) {
  .hero-v2-frame { padding: 8px 22px 28px; }
  .hero-v2-inner { grid-template-columns: 1fr; gap: 8px; min-height: auto; }
  .hero-v2-feats { padding: 18px 22px; }
  .hero-v2-feats-inner { grid-template-columns: 1fr; gap: 14px; }
  .hero-v2-feats-icons { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .hero-v2 { min-height: 100vh; }
  .hero-v2-frame { padding: 8px 20px 28px; border-radius: 0; }
  .hero-v2-feats { padding: 20px; }
  .hero-v2-feats-icons { grid-template-columns: repeat(2, 1fr); gap: 14px 18px; }
  .hf-label { font-size: 12px; }
  .hero-v2-feats-tag { font-size: 13px; }
  .hero-v2-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-v2 .hiw-step-cta { justify-content: center; width: auto; align-self: center; }
  .hero-v2-phone-cta { display: inline-flex; }
  .hero-v2-points { grid-template-columns: repeat(2, max-content); gap: 10px 18px; align-items: flex-start; justify-content: center; }
}

/* ============ PARENT STORIES: 2x2 GRID ============ */
.parent-stories {
  position: relative;
  padding: 72px 32px 80px;
  background: var(--cream-50);
}

.ps-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}
.ps-head-left { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.ps-head-hand {
  font-family: var(--font-hand);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--clay-500);
  line-height: 1.15;
  transform: rotate(-2deg);
  display: inline-block;
  max-width: 320px;
  text-align: right;
  justify-self: end;
  align-self: end;
  padding-bottom: 8px;
}
@media (max-width: 760px) {
  .ps-head { grid-template-columns: 1fr; }
  .ps-head-hand { justify-self: start; text-align: left; max-width: 100%; }
}
.ps-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--sage-800);
  margin: 4px 0 0;
  text-wrap: balance;
}
.ps-tagline {
  font-size: 16px;
  color: var(--fg-2);
  margin: 0;
  line-height: 1.5;
}

.ps-head-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}
.ps-rating-card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.ps-rating-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.ps-rating-stars {
  color: var(--sun-500);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 2px;
}
.ps-rating-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-ink);
  letter-spacing: -0.02em;
}
.ps-rating-label {
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.01em;
}
.ps-rating-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-subtle);
}
.ps-verified-badge {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.ps-verified-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--brand-ink);
  line-height: 1;
}
.ps-rating-foot {
  font-size: 12px;
  color: var(--fg-3);
  font-style: italic;
  margin: 0;
  text-align: right;
}

/* Grid */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ps-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.ps-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-200);
}
.ps-card-tinted {
  background: var(--cream-100);
  border-color: var(--cream-300);
}
.ps-stars {
  color: var(--sun-500);
  letter-spacing: 3px;
  font-size: 14px;
}
.ps-body {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--brand-ink);
  margin: 0;
  text-wrap: pretty;
  quotes: none;
  flex: 1;
}
.ps-body::before, .ps-body::after { content: none; }

.ps-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.ps-card-tinted .ps-attr { border-top-color: var(--cream-300); }
.ps-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  color: var(--cream-50);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ps-avatar-clay { background: var(--clay-400); }
.ps-avatar-sage { background: var(--sage-400, #9aae8c); color: var(--cream-50); }
.ps-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.2;
}
.ps-meta {
  font-size: 13px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* Footer */
.ps-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.ps-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage-100);
  color: var(--sage-800);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms var(--ease-out), transform 160ms var(--ease-out);
}
.ps-cta:hover {
  background: var(--sage-200);
  transform: translateY(-1px);
}
.ps-cta svg { color: var(--sage-700); }
.ps-foot-hand {
  font-family: var(--font-hand);
  font-size: 20px;
  color: var(--clay-500);
  transform: rotate(-1.5deg);
  display: inline-block;
}

@media (max-width: 880px) {
  .parent-stories { padding: 56px 24px 64px; }
  .ps-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ps-head-right {
    align-items: flex-start;
    justify-self: start;
    max-width: 100%;
  }
  .ps-rating-foot { text-align: left; }
  .ps-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ============================================================
   WHEN TO SEEK HELP (merged with What we treat)
   ============================================================ */
.wts-section { position: relative; }

/* Header: heading + reassurance card side by side */
.wts-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.wts-head-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--brand-ink);
  margin: 14px 0 18px;
  max-width: 16ch;
}
.wts-head-text .wts-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0;
}

/* Reassurance side card */
.wts-reassure {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 22px 24px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.wts-reassure::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 24px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--clay-400);
}
.wts-reassure-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-ink);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.wts-reassure-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wts-reassure-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.4;
}
.wts-reassure-list li span {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.wts-reassure-foot {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--clay-500);
  line-height: 1;
  padding-top: 10px;
  border-top: 1px dashed var(--border-default);
}

/* Grid */
.wts-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wts-grid > li { display: flex; }

/* Concern card */
.wts-card {
  width: 100%;
}
.wts-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px 22px 20px;
  text-decoration: none;
  color: var(--fg-1);
  transition: transform 240ms var(--ease-out),
              box-shadow 240ms var(--ease-out),
              border-color 240ms var(--ease-out);
  height: 100%;
}
.wts-card-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-200);
  color: var(--fg-1);
}
.wts-num {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.wts-dot {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sage-500);
}
.wts-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brand-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.wts-sign {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 16px;
  flex: 1;
}
.wts-treat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-default);
  margin-bottom: 14px;
}
.wts-treat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.wts-treat-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-700);
  line-height: 1.3;
}
.wts-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--clay-500);
  transition: transform 200ms var(--ease-out);
}
.wts-card-link:hover .wts-arrow {
  color: var(--clay-600);
}

/* CTA card (last cell of grid) */
.wts-card-cta {
  grid-column: span 1;
}
.wts-card-cta .wts-cta-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--sage-700);
  color: var(--cream-50);
  border-radius: 20px;
  padding: 26px 24px 24px;
  position: relative;
  overflow: hidden;
}
.wts-card-cta .wts-cta-inner::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 140px; height: 140px;
  background: var(--sage-600);
  border-radius: var(--radius-blob);
  opacity: 0.6;
}
.wts-cta-title {
  position: relative;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream-50);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.wts-cta-text {
  position: relative;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(251, 248, 241, 0.85);
  margin: 0 0 auto;
  padding-bottom: 18px;
}
.wts-cta-btn {
  position: relative;
  align-self: flex-start;
  background: var(--clay-400);
  color: var(--cream-50);
  font-size: 14px;
  padding: 10px 16px;
}
.wts-cta-btn:hover { background: var(--clay-500); }
.wts-cta-link {
  position: relative;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(251, 248, 241, 0.78);
  text-decoration: none;
  font-weight: 500;
}
.wts-cta-link:hover { color: var(--cream-50); }

/* Footer line */
.wts-foot {
  margin: 36px auto 0;
  text-align: center;
  font-size: 16px;
  color: var(--fg-2);
  max-width: 60ch;
}
.wts-foot strong { color: var(--brand-ink); font-weight: 600; }

/* Responsive */
@media (max-width: 1100px) {
  .wts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wts-head {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .wts-grid { grid-template-columns: 1fr; gap: 12px; }
  .wts-card-link { padding: 22px 20px 18px; }
  .wts-title { font-size: 18px; }
}

/* ============ ACCENT WORDS: handwritten Caveat for warm emphasis ============ */
.accent-forest,
.accent-sage,
.accent-clay {
  font-family: var(--font-hand); /* Caveat: same as .wtr-column-title */
  font-weight: 700;              /* heaviest Caveat ships */
  -webkit-text-stroke: 0.6px currentColor; /* extra thickness ≈ "2x" the column title's 400 */
  font-style: normal;
  letter-spacing: 0;
  /* Caveat has a small x-height: bump up so it visually matches surrounding heading */
  font-size: 1.18em;
  line-height: 0.95;
}

.accent-forest { color: var(--sage-800); }
.accent-sage   { color: var(--sage-600); }
.accent-clay   { color: var(--clay-500); }

/* ============ HERO QUOTES (inline social proof) ============ */
.hero-v2-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 42, 35, 0.10);
  max-width: 720px;
}
.hv2q { margin: 0; }
.hv2q blockquote {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-900);
  letter-spacing: -0.005em;
}
.hv2q figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero-v2-quotes { grid-template-columns: 1fr; gap: 18px; margin-top: 22px; padding-top: 18px; }
}

/* ============ HERO REVIEWS BAND (matches feats band green) ============ */
.hero-v2-reviews {
  width: 100%;
  background: var(--sage-700);
  background-image: linear-gradient(135deg, var(--sage-700) 0%, var(--sage-800) 100%);
  color: var(--cream-50);
  padding: 26px 64px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-v2-reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}
.hv2r-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.18);
  justify-self: center;
}
.hv2r-quote {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.hv2r-quote blockquote {
  align-self: stretch;
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream-50);
  letter-spacing: -0.005em;
  flex: 1 1 auto;
}
.hv2r-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hv2r-quote figcaption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(251, 248, 241, 0.82);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hv2r-source {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-50);
  border-radius: 50%;
  flex-shrink: 0;
}
.hv2r-source svg { width: 18px; height: 18px; }

@media (max-width: 960px) {
  .hero-v2-reviews { padding: 22px 28px; }
  .hero-v2-reviews-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hv2r-divider { width: 56px; height: 1px; justify-self: center; }
  .hv2r-quote { flex-direction: column; align-items: flex-end; gap: 12px; }
  .hv2r-meta { flex-direction: row; align-items: center; }
  .hv2r-quote blockquote { font-size: 14px; }
}

/* ============================================================
   Consistent compact header across all pages (matches home).
   site.js injects .nav-inner with an inline height; override it
   here so every page renders the same header as index.html.
   ============================================================ */
#navEl > .nav-inner { height: 75px !important; }
#navEl .nav-brand img { width: 80px !important; height: 80px !important; }
@media (max-width: 720px) {
  #navEl .nav-brand img { width: 72px !important; height: 72px !important; }
}
