/* ═══════════════════════════════════════════════════════════════
   TeleTherapyCounsellors — main.css v7.0.0
   Design system: forest / sage / terra / cream / deep
   Built by PerceivedContent.com
   ═══════════════════════════════════════════════════════════════ */

/* ── 0. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette */
  --forest:       #3D6B47;
  --forest-dark:  #2A4D32;
  --forest-light: #4E7D5A;
  --sage:         #7A9E7E;
  --sage-light:   #A8C5AC;
  --sage-mist:    #EAF2EB;
  --terra:        #C4785A;
  --terra-light:  #E8A88E;
  --terra-mist:   #FAF0EC;
  --gold:         #C9A96E;
  --gold-mist:    #FDF8EE;
  --cream:        #FAF6EF;
  --cream-dark:   #F0E9DC;
  --deep:         #2C2416;
  --mid:          #5C4F3A;
  --muted:        #8A7F72;
  --border:       #E2DAD0;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Layout */
  --container:  1200px;
  --gutter:     clamp(1rem, 4vw, 2rem);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(44,36,22,0.08);
  --shadow-md:  0 4px 16px rgba(44,36,22,0.10);
  --shadow-lg:  0 8px 32px rgba(44,36,22,0.12);
  --shadow-xl:  0 16px 48px rgba(44,36,22,0.14);

  /* Transitions */
  --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;

  /* Header height */
  --header-h:   70px;
}

/* ── 1. RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--deep);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--forest-dark); }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

/* ── Accessibility ────────────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top var(--dur-fast);
}
.skip-to-content:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── 2. TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: var(--sage-light); }
.eyebrow--terra { color: var(--terra); }

blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  border-left: 3px solid var(--sage);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--mid);
}

/* ── 3. LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.section-header--light { }
.section-header .eyebrow { margin-bottom: 0.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── 4. NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,246,239,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--dur-base) var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo, .footer-logo {
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: -0.01em;
}
.logo-text strong {
  color: var(--forest);
  font-weight: 700;
}

.primary-nav { margin-left: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-menu a:hover { color: var(--forest); background: var(--sage-mist); }
.nav-menu .nav-cta-wrap { margin-left: 0.5rem; }

.btn-nav-cta {
  font-size: 0.875rem !important;
  padding: 0.5rem 1.25rem !important;
  background: var(--forest);
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast);
  display: inline-block;
}
.btn-nav-cta:hover { background: var(--forest-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 5. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,107,71,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--forest);
  background: var(--sage-mist);
  color: var(--forest);
}

.btn-terra {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}
.btn-terra:hover {
  background: #b36849;
  border-color: #b36849;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,120,90,0.35);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2.25rem;
}
.btn-sm {
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
}
.btn-full { width: 100%; }

/* ── 6. HERO ──────────────────────────────────────────────────── */
.home-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #EFF7F0 50%, var(--cream) 100%);
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(122,158,126,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.home-hero__left { position: relative; z-index: 1; }

.home-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 1.25rem;
}
.home-hero__title em {
  font-style: italic;
  color: var(--forest);
}

.home-hero__sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stat-chip {
  display: flex;
  flex-direction: column;
}
.stat-chip strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-chip span {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Hero visual */
.home-hero__visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: relative;
  width: 240px;
  height: 240px;
}
.hero-orb__inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 20px 60px rgba(61,107,71,0.3);
}
.hero-orb__ring {
  position: absolute;
  inset: -16px;
  border: 2px dashed var(--sage-light);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  opacity: 0.6;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--deep);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.hero-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-card--session { top: 10%; left: -10%; animation: float 6s ease-in-out infinite; }
.hero-card--specialty { bottom: 20%; right: -5%; animation: float 6s ease-in-out infinite 2s; }
.hero-card--award { top: 30%; right: -8%; animation: float 6s ease-in-out infinite 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── 7. TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
  background: var(--forest);
  padding: 1rem 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
}
.trust-icon { font-size: 1rem; }

/* ── 8. HOME PROBLEM ──────────────────────────────────────────── */
.home-problem {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.home-problem__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.home-problem__stat-card {
  background: var(--sage-mist);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(122,158,126,0.3);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.stat-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-big span { font-size: 2.5rem; }
.home-problem__stat-card p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.home-problem__stat-card cite {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: normal;
}
.home-problem__copy h2 { margin-bottom: 1.25rem; }
.home-problem__copy p { font-size: 1.05rem; color: var(--mid); margin-bottom: 1rem; }

/* ── 9. SERVICES ──────────────────────────────────────────────── */
.home-services {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--deep);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--forest);
  margin-top: auto;
}
.service-card__link:hover { color: var(--forest-dark); }

/* Services full page */
.service-formats { padding: var(--space-3xl) 0; background: var(--cream); }
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.format-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  text-align: center;
}
.format-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.format-card h3 { margin-bottom: 0.5rem; }
.format-card p { font-size: 0.9rem; color: var(--mid); }

.services-full { padding: var(--space-4xl) 0; background: var(--white); }
.services-grid--full { grid-template-columns: repeat(2,1fr); }
.service-card--full { flex-direction: row; gap: 1.5rem; align-items: flex-start; }
.service-card--full .service-card__icon-wrap { flex-shrink: 0; }
.service-card--full .service-card__icon { font-size: 2.5rem; margin: 0; }
.service-card--full .service-card__content { flex: 1; }
.service-card__keywords {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.service-card__actions { display: flex; gap: 0.75rem; margin-top: 1rem; }

/* ── 10. HOW IT WORKS ─────────────────────────────────────────── */
.home-how {
  padding: var(--space-4xl) 0;
  background: var(--forest);
}
.home-how .section-header h2 { color: #fff; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}
.how-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}
.how-step__num {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}
.how-step h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.75rem; }
.how-step p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.how-step__arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.75rem;
  flex-shrink: 0;
}

/* ── 11. THERAPISTS ───────────────────────────────────────────── */
.home-therapists {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.therapist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}
.therapist-card__photo {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--sage-mist);
  overflow: hidden;
}
.therapist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapist-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.therapist-card__photo-placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sage);
  font-weight: 600;
  opacity: 0.7;
}
.therapist-card__rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255,255,255,0.95);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.therapist-card__body { padding: 1.25rem; }
.therapist-card__header { margin-bottom: 0.75rem; }
.therapist-card__header h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.therapist-card__creds { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.therapist-card__bio {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.therapist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.therapist-card__tags li {
  background: var(--sage-mist);
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(122,158,126,0.3);
}
.therapist-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.meta-badge {
  font-size: 0.73rem;
  background: var(--cream);
  color: var(--mid);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.meta-badge--location { border-color: rgba(196,120,90,0.3); background: var(--terra-mist); color: var(--terra); }
.therapist-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.therapist-card__price { font-size: 0.82rem; font-weight: 600; color: var(--forest); }

/* Filter bar */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-group { display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  min-width: 80px;
  padding-top: 0.35rem;
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.filter-pill {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.filter-pill:hover { border-color: var(--forest); color: var(--forest); background: var(--sage-mist); }
.filter-pill.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.filter-count { font-size: 0.82rem; color: var(--muted); padding-left: 0.25rem; }

.therapist-directory { padding: var(--space-3xl) 0; background: var(--cream); }
.directory-cta { text-align: center; margin-top: 2rem; font-size: 0.95rem; color: var(--mid); }

/* ── 12. TESTIMONIALS ─────────────────────────────────────────── */
.home-testimonials {
  padding: var(--space-4xl) 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--deep);
  line-height: 1.65;
  flex: 1;
}
.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimonial-card__footer strong { font-size: 0.9rem; color: var(--deep); }
.testimonial-card__footer span { font-size: 0.8rem; color: var(--muted); }
.testimonial-card__service {
  font-size: 0.75rem !important;
  background: var(--sage-mist);
  color: var(--forest);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(122,158,126,0.3);
  width: fit-content;
}

/* ── 13. PRICING ──────────────────────────────────────────────── */
.home-pricing {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-card__header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: inherit;
}
.pricing-card--featured .pricing-card__header h3 { color: #fff; }
.pricing-card__sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }
.pricing-card--featured .pricing-card__sub { color: rgba(255,255,255,0.7); }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card--featured .pricing-card__price { border-color: rgba(255,255,255,0.2); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.pricing-card--featured .price-amount { color: #fff; }
.price-period { font-size: 0.875rem; color: var(--muted); }
.pricing-card--featured .price-period { color: rgba(255,255,255,0.7); }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.pricing-card__features li { font-size: 0.875rem; color: var(--mid); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.9); }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── 14. LEAD MAGNET ──────────────────────────────────────────── */
.home-lead-magnet {
  padding: var(--space-4xl) 0;
  background: var(--terra-mist);
  border-top: 1px solid rgba(196,120,90,0.15);
  border-bottom: 1px solid rgba(196,120,90,0.15);
}
.lm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lm-split__copy h2 { margin-bottom: 1rem; }
.lm-split__copy p { color: var(--mid); font-size: 1.05rem; }

.lead-magnet-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(196,120,90,0.2);
  box-shadow: var(--shadow-md);
}
.lead-magnet-form.lm-inline {
  background: linear-gradient(135deg, var(--sage-mist) 0%, var(--cream) 100%);
  border: 1px solid rgba(122,158,126,0.25);
  border-left: 4px solid var(--forest);
}
.lm-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.lm-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.lm-sub { font-size: 0.9rem; color: var(--mid); margin-bottom: 1rem; }
.lm-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lm-fields input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep);
  background: var(--white);
  transition: border-color var(--dur-fast);
}
.lm-fields input:focus { outline: none; border-color: var(--forest); }
.lm-privacy {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: center;
  margin-bottom: 0;
}
.lm-thumb {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* Blog lead magnet injection */
.blog-lm-injection {
  grid-column: 1 / -1;
  padding: 0;
}
.inline-lm-section { padding: var(--space-3xl) 0; background: var(--cream); }

/* ── 15. FAQ ──────────────────────────────────────────────────── */
.home-faq { padding: var(--space-4xl) 0; background: var(--white); }
.faq-list {
  max-width: 760px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--forest); }
.faq-question[aria-expanded="true"] { color: var(--forest); }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform var(--dur-base);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  animation: fadeIn var(--dur-base) var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ── 16. CTA BAND ─────────────────────────────────────────────── */
.home-cta-band {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  text-align: center;
}
.home-cta-band .eyebrow { color: var(--sage-light); }
.home-cta-band h2 { color: #fff; margin-bottom: 1rem; }
.home-cta-band p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ── 17. PAGE HEROES ──────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
}
.page-hero--cream { background: var(--cream); }
.page-hero--sage  { background: linear-gradient(135deg, var(--sage-mist) 0%, var(--cream) 100%); }
.page-hero--forest { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__sub { font-size: 1.05rem; color: var(--mid); max-width: 600px; }
.page-hero--forest .page-hero__sub { color: rgba(255,255,255,0.85); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span[aria-current="page"] { color: var(--forest); font-weight: 500; }
.breadcrumb--light a { color: rgba(255,255,255,0.6); }
.breadcrumb--light span { color: rgba(255,255,255,0.9); }

/* ── 18. ABOUT PAGE ───────────────────────────────────────────── */
.about-mission {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.about-mission__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-mission__copy h2 { margin-bottom: 1.25rem; }
.about-mission__copy p { font-size: 1.05rem; color: var(--mid); }
.about-mission__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.impact-stat {
  background: var(--sage-mist);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(122,158,126,0.2);
}
.impact-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.impact-stat span { font-size: 0.78rem; color: var(--mid); }

.about-values {
  padding: var(--space-4xl) 0;
  background: var(--forest);
}
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--dur-base);
}
.value-card:hover { background: rgba(255,255,255,0.13); }
.value-card__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.value-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.6; margin: 0; }

.about-reality { padding: var(--space-4xl) 0; background: var(--cream); }
.about-reality__inner { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: center; }
.about-reality__copy h2 { margin-bottom: 1.25rem; }
.about-reality__copy p { font-size: 1.05rem; color: var(--mid); }
.about-reality__cta { display: flex; flex-direction: column; gap: 1rem; }

.about-join { padding: var(--space-4xl) 0; background: var(--white); }

/* ── 19. MATCH PROMISE ────────────────────────────────────────── */
.match-promise { padding: var(--space-3xl) 0; background: var(--white); border-bottom: 1px solid var(--border); }
.match-promise__inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.match-promise__item { text-align: center; }
.match-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.match-promise__item h3 { margin-bottom: 0.5rem; }
.match-promise__item p { font-size: 0.875rem; color: var(--mid); }

/* ── 20. BOOKING FORM ─────────────────────────────────────────── */
.booking-success {
  background: var(--sage-mist);
  border-bottom: 1px solid rgba(122,158,126,0.3);
  padding: 2rem 0;
}
.booking-success__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.booking-success__icon {
  font-size: 2.5rem;
  color: var(--forest);
  flex-shrink: 0;
}
.booking-success h2 { color: var(--forest); margin-bottom: 0.5rem; }
.booking-error { background: #FFF5F5; border-bottom: 1px solid #FED7D7; padding: 1.5rem 0; }
.booking-error p { color: #C53030; }

.booking-expect { padding: var(--space-3xl) 0; background: var(--cream); }
.expect-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.expect-step { text-align: center; }
.expect-step__num {
  width: 52px;
  height: 52px;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.expect-step h3 { margin-bottom: 0.5rem; }
.expect-step p { font-size: 0.875rem; color: var(--mid); }

.booking-form-section { padding: var(--space-4xl) 0; background: var(--white); }
.booking-form-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.booking-form-card h2 { margin-bottom: 0.25rem; }
.booking-form-card__sub { color: var(--muted); font-size: 0.875rem; margin-bottom: 2rem; }

.booking-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep);
  background: var(--white);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,107,71,0.12);
}
.form-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem; margin-bottom: 0; }
.required { color: var(--terra); }

.form-field--consent { }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--mid);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input { flex-shrink: 0; margin-top: 2px; accent-color: var(--forest); }
.form-reassurance {
  font-size: 0.78rem;
  text-align: center;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Sidebar */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: calc(var(--header-h) + 2rem); }
.booking-sidebar__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.booking-sidebar__card h3 { font-size: 1rem; margin-bottom: 1rem; }
.booking-sidebar__list { display: flex; flex-direction: column; gap: 0.5rem; }
.booking-sidebar__list li { font-size: 0.875rem; color: var(--mid); }
.booking-sidebar__list strong { color: var(--deep); }
.booking-sidebar__card--testimonial { background: var(--sage-mist); border-color: rgba(122,158,126,0.3); }
.mini-testimonial { }
.mini-testimonial__stars { color: var(--gold); font-size: 0.875rem; margin-bottom: 0.5rem; }
.mini-testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.mini-testimonial__author { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin: 0; }
.booking-sidebar__card--crisis { background: #FFF5F5; border-color: #FED7D7; }
.booking-sidebar__card--crisis p { font-size: 0.875rem; color: var(--mid); margin-bottom: 0.5rem; }
.crisis-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C53030;
  text-decoration: none;
  margin: 0.25rem 0;
}
.crisis-phone:hover { color: #9B2C2C; }
.crisis-note { font-size: 0.75rem !important; color: var(--muted) !important; margin: 0 !important; }

/* ── 21. BLOG ─────────────────────────────────────────────────── */
.blog-section { padding: var(--space-4xl) 0; background: var(--cream); }
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.cat-pill {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.cat-pill:hover { border-color: var(--forest); color: var(--forest); }
.cat-pill.active { background: var(--forest); color: #fff; border-color: var(--forest); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card.is-hidden { display: none; }
.blog-card__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--sage-mist);
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow); }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-mist), var(--cream-dark));
}
.blog-card__thumb-icon { font-size: 2.5rem; opacity: 0.5; }
.blog-card__body { padding: 1.25rem; }
.blog-card__cat {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.blog-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.blog-card__title a { text-decoration: none; color: var(--deep); }
.blog-card__title a:hover { color: var(--forest); }
.blog-card__excerpt { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }
.blog-card__meta { display: flex; gap: 0.75rem; align-items: center; }
.blog-card__date, .blog-card__read { font-size: 0.75rem; color: var(--muted); }
.blog-card__read::before { content: '·'; margin-right: 0.35rem; }

.blog-newsletter {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.blog-newsletter__inner { max-width: 560px; margin: 0 auto; }
.blog-newsletter .eyebrow { color: var(--sage-light); }
.blog-newsletter h3 { color: #fff; margin-bottom: 0.5rem; }
.blog-newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

/* ── 22. SINGLE POST ──────────────────────────────────────────── */
.single-post { max-width: 720px; margin: 0 auto; }
.single-post__header { margin-bottom: 2rem; }
.single-post__header h1 { margin-bottom: 0.75rem; }
.single-post__meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--muted); }
.single-post__content { font-size: 1.05rem; line-height: 1.75; }
.single-post__content h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.single-post__content h3 { margin: 2rem 0 0.75rem; }
.single-post__content p { margin-bottom: 1.25rem; }
.single-post__content ul, .single-post__content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.single-post__content li { margin-bottom: 0.4rem; }

/* ── 23. FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-logo .logo-text strong { color: var(--sage-light); }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 1rem 0 1rem;
  color: rgba(255,255,255,0.6);
}
.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}
.footer-trust span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.social-row {
  display: flex;
  gap: 0.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--sage-light); }
.footer-crisis {
  margin-top: 1.5rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--terra);
}
.footer-crisis p { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 0.25rem; }
.footer-crisis a { color: var(--terra-light) !important; font-weight: 600; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ── 24. SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── 25. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-hero__inner   { grid-template-columns: 1fr; }
  .home-hero__visual  { display: none; }
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .therapists-grid    { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2,1fr); }
  .pricing-grid       { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .home-problem__inner{ grid-template-columns: 1fr; }
  .home-problem__stat-card { position: static; }
  .lm-split           { grid-template-columns: 1fr; }
  .about-mission__inner { grid-template-columns: 1fr; }
  .about-mission__stats { position: static; }
  .about-reality__inner { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2,1fr); }
  .booking-form-wrap  { grid-template-columns: 1fr; }
  .booking-sidebar    { position: static; }
  .services-grid--full { grid-template-columns: 1fr; }
  .service-card--full { flex-direction: column; }
  .formats-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  /* Nav */
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--cream);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    z-index: 999;
  }
  .primary-nav.is-open { transform: none; }
  .nav-menu { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .nav-menu a { font-size: 1.1rem; padding: 0.75rem 1rem; width: 100%; }
  .nav-menu .nav-cta-wrap { margin: 1rem 0 0; }
  .btn-nav-cta { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }

  /* Grids → single column */
  .services-grid      { grid-template-columns: 1fr; }
  .therapists-grid    { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .match-promise__inner { grid-template-columns: 1fr; }
  .expect-steps       { grid-template-columns: 1fr; }
  .how-steps          { flex-direction: column; align-items: center; }
  .how-step__arrow    { transform: rotate(90deg); }
  .form-row--two      { grid-template-columns: 1fr; }
  .blog-grid          { grid-template-columns: 1fr; }

  .home-hero__actions { flex-direction: column; }
  .home-hero__actions .btn { width: 100%; }
  .section-header { text-align: left; }

  .pricing-card--featured { transform: none; order: -1; }
}

@media (max-width: 480px) {
  .home-hero__stats { flex-direction: column; gap: 0.75rem; }
  .trust-strip__inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .filter-group { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .filter-label { min-width: unset; }
}
