/* TeleTherapyCounsellors — assets/css/main.css v8.0.0 */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

body.ttc-cursor-active { cursor: none; }
body.ttc-cursor-active a,
body.ttc-cursor-active button,
body.ttc-cursor-active .faq-item,
body.ttc-cursor-active .filter-pill,
body.ttc-cursor-active .service-tile,
body.ttc-cursor-active .therapist-card,
body.ttc-cursor-active .pricing-card,
body.ttc-cursor-active .p-cta,
body.ttc-cursor-active .form-submit,
body.ttc-cursor-active .lm-btn,
body.ttc-cursor-active .book-link,
body.ttc-cursor-active .btn,
body.ttc-cursor-active .btn-ghost,
body.ttc-cursor-active .nav-hamburger,
body.ttc-cursor-active .footer-legal a,
body.ttc-cursor-active .footer-links a,
body.ttc-cursor-active .social-btn { cursor: none; }

@media (max-width: 768px) { body { cursor: auto; } }

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

/* ── Custom Cursor ───────────────────────────────────────────── */
.ttc-cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
  mix-blend-mode: multiply;
}
.ttc-cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}
.ttc-cursor.hover { width: 22px; height: 22px; background: var(--forest); }
.ttc-cursor-ring.hover { width: 50px; height: 50px; opacity: 0.2; }
@media (max-width: 768px) { .ttc-cursor, .ttc-cursor-ring { display: none; } }

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

section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

/* ── Grain / Texture Overlay ────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  mix-blend-mode: multiply;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── Typography Globals ─────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--terra);
  display: block;
}
.eyebrow.gold { color: var(--ochre); }
.eyebrow.gold::before { background: var(--ochre); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title .gold-em { font-style: italic; color: var(--ochre); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
  border-radius: inherit;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary::before { background: var(--terra); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(45,74,53,0.25); }

.btn-secondary { background: var(--ochre); color: var(--white); }
.btn-secondary::before { background: var(--terra); }
.btn-secondary:hover { box-shadow: 0 12px 32px rgba(201,150,74,0.3); }

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline::before { background: var(--terra); }
.btn-outline:hover { color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  transition: color 0.2s, gap 0.3s;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { color: var(--terra); gap: 0.9rem; }

.btn-light {
  background: var(--cream);
  color: var(--terra);
}
.btn-light::before { background: var(--ochre-bg); }
.btn-light:hover { box-shadow: 0 12px 32px rgba(28,22,18,0.18); }

/* ── Navigation ──────────────────────────────────────────────── */
#ttc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
#ttc-nav.scrolled {
  background: rgba(251, 248, 244, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1rem var(--gutter);
  box-shadow: 0 1px 0 rgba(184,96,58,0.08);
}

.nav-logo {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-logo em { font-style: italic; color: var(--terra); }

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover { color: var(--terra); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta-link {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 100px;
  transition: background 0.3s !important;
  letter-spacing: 0.05em !important;
}
.nav-cta-link:hover { background: var(--terra) !important; }
.nav-cta-link::after { display: none !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero-section {
  min-height: 85svh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Background organic shapes */
.hero-bg-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}
.hero-bg-blob-1 {
  top: -15%; right: -10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,150,74,0.12) 0%, rgba(93,126,99,0.08) 55%, transparent 75%);
  animation: morphBlob 14s ease-in-out infinite alternate;
}
.hero-bg-blob-2 {
  bottom: -10%; left: -5%;
  width: 38vw; height: 38vw;
  background: radial-gradient(ellipse, rgba(184,96,58,0.08) 0%, transparent 65%);
  animation: morphBlob2 16s ease-in-out infinite alternate;
}
@keyframes morphBlob {
  0%   { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
  100% { border-radius: 43% 57% 36% 64% / 45% 68% 32% 55%; }
}
@keyframes morphBlob2 {
  0%   { border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%; }
  100% { border-radius: 57% 43% 64% 36% / 68% 32% 68% 32%; }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gap) var(--gutter) var(--gap) var(--gutter);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-headline em { font-style: italic; color: var(--terra); }
.hero-headline .line-gold { color: var(--ochre); display: block; }

.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bone-mid);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.1s forwards;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) 0.2s forwards;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bone) 0%, var(--bone-mid) 50%, var(--sage-bg) 100%);
}

/* Large decorative letter */
.hero-deco-letter {
  position: absolute;
  bottom: 2%; right: 3%;
  font-family: var(--display);
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 300;
  color: rgba(184,96,58,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

/* Floating UI cards */
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(184,96,58,0.1), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(184,96,58,0.08);
}
.hero-card-1 { bottom: 32%; left: 8%; animation: float1 6s ease-in-out infinite; }
.hero-card-2 { top: 22%; right: 6%; animation: float2 7s ease-in-out infinite; }
.hero-card-3 { bottom: 14%; right: 8%; animation: float1 8s ease-in-out 1s infinite; }
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hcard-icon { font-size: 1.3rem; margin-bottom: 0.3rem; display: block; }
.hcard-main { font-size: 0.78rem; font-weight: 500; color: var(--forest); line-height: 1.3; }
.hcard-sub { font-size: 0.66rem; color: var(--terra); margin-top: 0.12rem; }

/* Rotating ring */
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border-radius: 50%;
  border: 1px solid rgba(184,96,58,0.12);
  animation: rotateSlow 22s linear infinite;
}
.hero-ring::before {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: var(--ochre);
  border-radius: 50%;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(201,150,74,0.5);
}
.hero-ring-2 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44%; height: 44%;
  border-radius: 50%;
  border: 1px solid rgba(201,150,74,0.1);
  animation: rotateSlow 16s linear infinite reverse;
}
@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 2.5rem; left: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.6s forwards;
}
.scroll-ind-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--terra), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-ind-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  writing-mode: vertical-lr;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee-bar {
  background: var(--forest);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  flex-shrink: 0;
}
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--ochre-l);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Problem / Why Section ───────────────────────────────────── */
.why-section {
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '"';
  position: absolute;
  top: -2rem; left: 2%;
  font-family: var(--display);
  font-size: clamp(10rem, 22vw, 20rem);
  color: rgba(184,96,58,0.04);
  line-height: 1;
  pointer-events: none;
  font-weight: 300;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.why-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  border-left: 2px solid var(--terra);
  padding-left: 1.5rem;
}
.why-quote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--terra);
}
.why-body {
  font-size: 0.95rem;
  line-height: 1.82;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.stat-block {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--terra);
}
.stat-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 160px;
}

/* ── Services Section ────────────────────────────────────────── */
.services-section { background: var(--cream); }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--bone-mid);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(184,96,58,0.04);
}

.service-tile {
  background: var(--cream);
  padding: clamp(1.8rem, 2.8vw, 2.6rem);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}
.service-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-tile:hover::after { transform: scaleX(1); }
.service-tile:hover { background: var(--sage-bg); transform: translateY(-2px); z-index: 1; }

.service-index {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(184,96,58,0.08);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}
.service-tile:hover .service-index { color: rgba(184,96,58,0.15); }

.service-ico {
  width: 42px; height: 42px;
  background: var(--terra-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  transition: background 0.3s;
}
.service-tile:hover .service-ico { background: rgba(184,96,58,0.12); }

.service-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  transition: color 0.2s;
}
.service-tile:hover .service-name { color: var(--terra); }

.service-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.2rem;
}
.service-arrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.service-tile:hover .service-arrow { gap: 0.9rem; }

/* ── How It Works ────────────────────────────────────────────── */
.how-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(ellipse, rgba(184,96,58,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.how-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 35vw; height: 35vw;
  background: radial-gradient(ellipse, rgba(201,150,74,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.how-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
}
.how-title em { color: var(--ochre-l); font-style: italic; }
.how-sub {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(251,248,244,0.55);
  font-weight: 300;
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
  transition: padding-left 0.3s var(--ease);
  cursor: default;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 0.5rem; }
.step-n {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  transition: color 0.3s;
  padding-top: 0.2rem;
}
.step:hover .step-n { color: var(--ochre-l); }
.step-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}
.step-desc {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(251,248,244,0.55);
  font-weight: 300;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--bone); overflow: hidden; }
.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.testimonials-track-outer {
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter) 1rem;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  animation: slideLeft 35s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes slideLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t-card {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 380px);
  background: var(--cream);
  border-radius: 10px;
  padding: 1.8rem 2rem;
  position: relative;
  border: 1px solid var(--bone-mid);
}
.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 2px;
  background: var(--terra);
  opacity: 0.5;
}
.t-stars { color: var(--ochre); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.t-quote {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--forest);
  font-style: italic;
  margin-bottom: 1.4rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-ava {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--terra-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--terra);
  font-weight: 500;
  flex-shrink: 0;
}
.t-name { font-size: 0.8rem; font-weight: 500; color: var(--forest); }
.t-loc  { font-size: 0.68rem; color: var(--ochre); margin-top: 0.1rem; }

/* ── Therapists ──────────────────────────────────────────────── */
.therapists-section { background: var(--cream); }
.therapists-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.therapist-card {
  background: var(--bone);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28,22,18,0.08);
}
.thera-photo {
  height: 190px;
  background: var(--terra-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.thera-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.therapist-card:hover .thera-photo img { transform: scale(1.05); }
.thera-initials {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terra-l), var(--terra));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
}
.thera-badge {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 100px;
}
.thera-info { padding: 1.3rem; }
.thera-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.thera-cred {
  font-size: 0.7rem;
  color: var(--ochre);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.thera-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.tag {
  font-size: 0.63rem;
  font-weight: 500;
  color: var(--terra);
  background: var(--terra-bg);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.thera-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--bone-mid);
}
.thera-rate { font-size: 0.78rem; font-weight: 500; color: var(--forest); }
.thera-rate-sub { font-size: 0.63rem; color: var(--ink-soft); font-weight: 300; }
.book-link {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
  cursor: pointer;
}
.book-link:hover { gap: 0.6rem; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section {
  background: var(--ochre-bg);
  position: relative;
  overflow: hidden;
}
.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -15%; right: -5%;
  width: 45vw; height: 45vw;
  background: radial-gradient(ellipse, rgba(201,150,74,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.pricing-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto clamp(2rem, 3vw, 3rem);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,22,18,0.08);
}
.pricing-card.featured {
  background: var(--forest);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card.featured::before {
  content: 'Most Chosen';
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
}
.p-plan {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.4rem;
  display: block;
}
.pricing-card.featured .p-plan { color: rgba(255,255,255,0.65); }
.p-price {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-card.featured .p-price { color: var(--white); }
.p-period {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  font-weight: 300;
}
.pricing-card.featured .p-period { color: rgba(255,255,255,0.55); }
.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.p-features li {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.4;
}
.pricing-card.featured .p-features li { color: rgba(255,255,255,0.75); }
.p-features li::before {
  content: '✓';
  font-weight: 600;
  color: var(--ochre);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.06rem;
}
.p-cta {
  display: block;
  text-align: center;
  padding: 0.88rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--terra-bg);
  color: var(--terra);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  cursor: pointer;
}
.p-cta:hover { background: var(--terra); color: var(--white); transform: translateY(-1px); }
.pricing-card.featured .p-cta { background: var(--ochre); color: var(--white); }
.pricing-card.featured .p-cta:hover { background: var(--ochre-l); }
.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-soft);
  font-style: italic;
}

/* ── Lead Magnet ─────────────────────────────────────────────── */
.lm-section { background: var(--bone-mid); padding: clamp(3rem, 5vw, 5rem) 0; }
.lm-box {
  background: var(--forest);
  border-radius: 14px;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lm-box::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 50%; height: 130%;
  background: radial-gradient(ellipse, rgba(184,96,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lm-box::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 35%;
  width: 35%; height: 100%;
  background: radial-gradient(ellipse, rgba(201,150,74,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.lm-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}
.lm-title em { color: var(--ochre-l); font-style: italic; }
.lm-sub {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(251,248,244,0.6);
  font-weight: 300;
}
.lm-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.lm-input {
  padding: 0.95rem 1.4rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.lm-input::placeholder { color: rgba(251,248,244,0.35); }
.lm-input:focus { border-color: var(--ochre-l); background: rgba(255,255,255,0.1); }
.lm-btn {
  padding: 0.95rem 1.8rem;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.04em;
}
.lm-btn:hover { background: var(--forest-mid); transform: translateY(-2px); }
.lm-fine {
  font-size: 0.68rem;
  color: rgba(251,248,244,0.35);
  text-align: center;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.faq-sticky { position: sticky; top: 6.5rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--bone-mid);
  cursor: pointer;
}
.faq-q-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  gap: 1rem;
  user-select: none;
}
.faq-q-text {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: var(--terra); }
.faq-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--bone-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: background 0.3s, border-color 0.3s, transform 0.35s, color 0.3s;
}
.faq-item.open .faq-ico {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-ans-inner {
  padding: 0 0 1.4rem;
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--terra);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'begin';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.cta-band-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  position: relative;
}
.cta-band-title em { font-style: italic; color: var(--ochre-l); }
.cta-band-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.crisis-note {
  margin-top: 2.2rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  position: relative;
}
.crisis-note a { color: rgba(255,255,255,0.65); text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 6rem) 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.9rem;
  display: block;
}
.footer-logo em { font-style: italic; color: var(--terra); }
.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  max-width: 230px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.7rem; }
.social-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: pointer;
}
.social-btn:hover { border-color: var(--terra-l); color: var(--terra-l); background: rgba(184,96,58,0.12); }
.footer-col-head {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
  cursor: pointer;
}
.footer-links a:hover { color: var(--ochre-l); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-legal a:hover { color: var(--white); }

/* ── Single Pages ────────────────────────────────────────────── */
/* About page */
.about-hero {
  background: linear-gradient(155deg, var(--sage-bg) 0%, var(--bone) 60%, var(--ochre-bg) 100%);
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
}
.about-mission {
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--forest);
  font-style: italic;
}
.about-mission strong { color: var(--terra); font-style: normal; font-weight: 600; }
.impact-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bone-mid);
}
.impact-item { text-align: center; }
.impact-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  display: block;
}
.impact-label { font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.2rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bone);
  border-radius: 16px;
  padding: 2rem;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--terra); transform: translateY(-4px); }
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.value-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.82rem; line-height: 1.7; color: var(--ink-soft); font-weight: 300; }

/* Find-a-therapist */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bone);
  border-radius: 16px;
}
.filter-pill {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  border: 1.5px solid var(--bone-mid);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.filter-pill:hover,
.filter-pill.active { border-color: var(--terra); background: var(--terra); color: var(--white); }

/* Book a session */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.booking-form { background: var(--white); border-radius: 14px; padding: 2.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 1.5px solid var(--bone-mid);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--terra); background: var(--white); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1.05rem;
  background: var(--terra);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  letter-spacing: 0.04em;
}
.form-submit:hover { background: var(--forest-mid); transform: translateY(-2px); }
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--bone);
  border-radius: 16px;
  padding: 1.5rem;
}
.sidebar-widget-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1rem;
}
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.checklist li {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 300;
}
.checklist li::before { content: '✓'; color: var(--terra); font-weight: 600; flex-shrink: 0; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(184,96,58,0.1); }
.blog-thumb {
  height: 180px;
  background: var(--terra-bg);
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
  display: block;
}
.blog-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--terra); }
.blog-excerpt {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
}
.blog-meta {
  font-size: 0.7rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.blog-meta span::before { content: '·'; margin-right: 0.5rem; }
.blog-meta span:first-child::before { display: none; }

/* ── Page Hero (used on inner pages) ───────────────────────── */
.page-hero {
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(155deg, var(--sage-bg), var(--bone));
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(184,96,58,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--forest);
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.page-hero-title em { font-style: italic; color: var(--terra); }
.page-hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 560px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--terra); text-decoration: none; }
.breadcrumb span { color: var(--bone-mid); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .therapists-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: scale(1); }
  .lm-box { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; }
  .therapists-head { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-sticky { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-menu { display: none; }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
  .nav-menu.mobile-open a {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
  .nav-hamburger { display: flex; z-index: 201; }
  .services-grid { grid-template-columns: 1fr; }
  .therapists-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem var(--gutter) 3rem; }
  .testimonials-track { animation: none; flex-direction: column; }
  .t-card { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Reading Progress Bar ──────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(to right, var(--terra), var(--ochre));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Single Blog Post ──────────────────────────────────────── */
.single-hero {
  padding: clamp(7rem, 14vw, 12rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(155deg, var(--sage-bg) 0%, var(--bone) 60%, var(--ochre-bg) 100%);
  position: relative;
  overflow: hidden;
}
.single-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(184,96,58,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.single-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.single-meta span::before { content: '·'; margin-right: 0.6rem; }
.single-meta span:first-child::before { display: none; }
.single-cat {
  background: var(--terra-bg);
  color: var(--terra);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.single-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.single-excerpt {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 640px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}
.article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--forest);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin: 2rem 0 0.8rem;
}
.article-body blockquote {
  border-left: 3px solid var(--terra);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--forest);
  background: var(--sage-bg);
  border-radius: 0 12px 12px 0;
}
.article-body img {
  border-radius: 16px;
  margin: 2rem 0;
}
.article-body a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--forest); }

/* Mid-article lead magnet */
.article-lm {
  background: var(--forest);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  color: var(--cream);
}
.article-lm-title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.article-lm-title em { color: var(--ochre-l); font-style: italic; }
.article-lm-sub {
  font-size: 0.86rem;
  color: rgba(245,239,228,0.7);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.article-lm-form {
  display: flex;
  gap: 0.7rem;
}
.article-lm-input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.85rem;
  outline: none;
}
.article-lm-input::placeholder { color: rgba(245,239,228,0.4); }
.article-lm-btn {
  padding: 0.8rem 1.5rem;
  background: var(--terra);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.article-lm-btn:hover { background: var(--ochre); }

/* Author bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--bone);
  border-radius: 16px;
  margin: 3rem 0;
}
.author-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--forest);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
}
.author-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-top: 0.3rem;
}

/* Related posts */
.related-posts {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--sage-bg);
}

/* ── Service Child Pages ───────────────────────────────────── */
.service-hero {
  padding: clamp(7rem, 14vw, 12rem) 0 clamp(3rem, 5vw, 5rem);
  background: linear-gradient(155deg, var(--sage-bg) 0%, var(--bone) 60%, var(--terra-bg) 100%);
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(ellipse, rgba(45,74,53,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.service-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-hero-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--forest);
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.service-hero-title em { font-style: italic; color: var(--terra); }
.service-hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 560px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.service-detail-img {
  border-radius: 14px;
  overflow: hidden;
  height: 400px;
  background: var(--bone);
}
.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-what-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1rem;
}
.service-what-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
}
.service-approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.service-approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
}
.service-approach-list li::before {
  content: '✓';
  color: var(--terra);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* Signs / symptoms grid */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.sign-card {
  background: var(--bone);
  border-radius: 16px;
  padding: 1.5rem;
  border-left: 3px solid var(--terra);
  transition: transform 0.3s var(--ease);
}
.sign-card:hover { transform: translateY(-4px); }
.sign-card p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Therapist recommendation on service pages */
.service-therapists-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

/* Service CTA band */
.service-cta {
  background: var(--forest);
  border-radius: 14px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-cta::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 130%;
  background: radial-gradient(ellipse, rgba(201,150,74,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.service-cta-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
}
.service-cta-title em { color: var(--ochre-l); font-style: italic; }
.service-cta-sub {
  font-size: 0.92rem;
  color: rgba(245,239,228,0.7);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ── Privacy Page ──────────────────────────────────────────── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
.legal-body h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin: 2.5rem 0 0.8rem;
}
.legal-body p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.legal-body ul {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}
.legal-body ul li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.legal-updated {
  font-size: 0.78rem;
  color: var(--sage);
  margin-bottom: 2rem;
}

/* ── Thank You Page ────────────────────────────────────────── */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gutter);
  background: linear-gradient(155deg, var(--sage-bg) 0%, var(--cream) 100%);
}
.thankyou-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.thankyou-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
}
.thankyou-title em { color: var(--terra); font-style: italic; }
.thankyou-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── 404 Page ──────────────────────────────────────────────── */
.error404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--gutter);
  background: var(--cream);
}
.error404-num {
  font-family: var(--display);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 300;
  color: var(--bone-mid);
  line-height: 1;
  margin-bottom: 1rem;
}
.error404-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
}
.error404-body {
  font-size: 0.94rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Service page responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .signs-grid { grid-template-columns: 1fr 1fr; }
  .article-lm-form { flex-direction: column; }
}
@media (max-width: 680px) {
  .signs-grid { grid-template-columns: 1fr; }
  .author-bio { flex-direction: column; text-align: center; }
}
