/* ════════════════════════════════
   TOKENS
   ════════════════════════════════ */
:root {
  --bg:           #FAFAF7;
  --bg-warm:      #F4F2EC;
  --bg-dark:      #1F1D1A;
  --text:         #1F1D1A;
  --text-mid:     #4A4741;
  --text-soft:    #9B9690;
  --divider:      #E8E5DE;
  --accent:       #3D6B52;
  --accent-light: #DFF0E8;
  --accent-dark:  #2A4D3A;
  --white:        #FFFFFF;

  --font-serif:   'Fraunces', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --max:   1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════════
   RESET
   ════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }
ul, ol { list-style: none; }

/* ════════════════════════════════
   UTILITY
   ════════════════════════════════ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-pad {
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}
.body-lg {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}
.body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 400;
}

/* Invisible until JS reveals */
.js-reveal { opacity: 0; transform: translateY(24px); }

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.2s, color 0.2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,107,82,0.22); }
.btn:active { transform: translateY(0); }
.btn-accent  { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-ghost   { background: transparent; color: var(--text); border: 1.5px solid var(--divider); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-white   { background: #fff; color: var(--text); }
.btn-white:hover { background: var(--bg-warm); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* Focus states */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ════════════════════════════════
   PHOTO PLACEHOLDER
   ════════════════════════════════ */
.photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-warm),
    var(--bg-warm) 2px,
    var(--divider) 2px,
    var(--divider) 12px
  );
}
.photo-ph span {
  background: rgba(255,255,255,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-style: italic;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
  max-width: 80%;
}

/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(250,250,247,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--divider);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-glyph {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-glyph::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
}
.nav-hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
  display: block;
}

/* ════════════════════════════════
   SECTION 2: HERO
   ════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%,
    #E2EDE6 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%,
    #E8F0EB 0%, transparent 60%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroBgShift {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.05); }
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(31,29,26,0.12);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ════════════════════════════════
   SECTION 3: WORRY
   ════════════════════════════════ */
#worry { background: var(--bg-warm); }
.worry-intro {
  max-width: 540px;
  margin-bottom: 3.5rem;
}
.worry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.worry-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.worry-card:hover {
  box-shadow: 0 12px 40px rgba(31,29,26,0.08);
  transform: translateY(-3px);
}
.worry-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.worry-card:hover .worry-card-bar { transform: scaleX(1); }
.worry-q {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.45;
}
.worry-a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-dark);
  line-height: 1.55;
}

/* ════════════════════════════════
   SECTION 4: HOW IT WORKS
   ════════════════════════════════ */
#how { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.steps-track {
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--divider);
  pointer-events: none;
}
.steps-track-fill {
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
}
.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.step-bubble svg { stroke: var(--text-soft); transition: stroke 0.3s; }
.step.active .step-bubble { border-color: var(--accent); background: var(--accent-light); }
.step.active .step-bubble svg { stroke: var(--accent); }
.step-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ════════════════════════════════
   SECTION 5: FOUR STAGES (PINNED)
   ════════════════════════════════ */
#stages-outer {
  background: var(--bg-dark);
}
#stages-pin {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stages-inner {
  width: 100%;
  max-width: var(--max);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.stages-left { position: relative; }
.stages-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(61,107,82,0.8);
  margin-bottom: 1rem;
}
.stages-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.18;
  color: rgba(250,250,247,0.92);
  margin-bottom: 3rem;
  letter-spacing: -0.015em;
}
/* SVG Ring illustration */
.stages-ring-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.stages-ring-wrap svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
/* Progress bar */
.stages-progress {
  margin-top: 3rem;
  position: relative;
}
.stages-progress-track {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: visible;
  position: relative;
}
.stages-progress-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.5s var(--ease-out);
}
.stages-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.stage-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  cursor: default;
}
.stage-label.active { color: var(--accent); }
/* Appliance placeholders inside stage descriptions */
.appliance-ph {
  margin-top: 2rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(61,107,82,0.2);
  background: rgba(61,107,82,0.06);
  overflow: hidden;
}
.appliance-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.appliance-ph-inner span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(61,107,82,0.6);
  font-family: var(--font-sans);
}

/* Stage descriptions (right side) */
.stages-right {
  position: relative;
  min-height: 180px;
}
.stage-desc-block {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.stage-desc-block.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.stage-desc-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  margin-bottom: -1.5rem;
  letter-spacing: -0.04em;
}
.stage-desc-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(250,250,247,0.95);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.stage-desc-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,250,247,0.55);
  line-height: 1.7;
  max-width: 400px;
}

/* Mobile stages */
.stages-mobile {
  display: none;
  background: var(--bg-dark);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.stages-mobile-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
}
.stages-mobile-num { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.stages-mobile-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: rgba(250,250,247,0.9); margin-bottom: 0.5rem; }
.stages-mobile-text { font-size: 0.875rem; font-weight: 300; color: rgba(250,250,247,0.5); line-height: 1.65; }

/* ════════════════════════════════
   SECTION 6: PROMISES
   ════════════════════════════════ */
#promises { background: var(--bg); }
.promises-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.promise-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  border: 1px solid var(--divider);
}
.promise-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-icon-wrap svg { stroke: var(--accent-dark); }
.promise-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  padding-top: 0.1rem;
}

/* ════════════════════════════════
   SECTION 7: BEFORE VS AFTER
   ════════════════════════════════ */
#timeline-section { background: var(--bg-warm); }
.timeline-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.timeline-col { }
.timeline-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
}
.timeline-col:first-child .timeline-col-label { background: #EDE0D8; color: #8B5E4A; }
.timeline-col:last-child .timeline-col-label { background: #D8EDE0; color: #3A6B4F; }
.timeline-svg-wrap { width: 100%; }
.timeline-caption {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ════════════════════════════════
   SECTION 8: TEEN
   ════════════════════════════════ */
#teen { background: var(--bg); }
.teen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.teen-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  letter-spacing: -0.015em;
}
.teen-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.teen-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.teen-badge {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  background: var(--bg-warm);
  border: 1px solid var(--divider);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.teen-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 48px rgba(31,29,26,0.1);
}

/* ════════════════════════════════
   SECTION 9: COMPARISON
   ════════════════════════════════ */
#comparison { background: var(--bg-warm); }
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: 0 8px 32px rgba(31,29,26,0.06);
}
.comp-col {
  padding: 2.75rem;
}
.comp-col:first-child {
  background: var(--bg);
  border-right: 1px solid var(--divider);
}
.comp-col:last-child {
  background: var(--bg-dark);
}
.comp-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.comp-col:first-child .comp-label { background: var(--divider); color: var(--text-soft); }
.comp-col:last-child .comp-label { background: rgba(61,107,82,0.15); color: var(--accent); }
.comp-list { display: flex; flex-direction: column; gap: 1.1rem; }
.comp-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
}
.comp-col:first-child .comp-item { color: var(--text-soft); }
.comp-col:last-child .comp-item { color: rgba(250,250,247,0.65); }
.comp-col:last-child .comp-item strong { color: rgba(250,250,247,0.92); font-weight: 500; }
.comp-ico { flex-shrink: 0; margin-top: 1px; }
.ico-bad { color: #C0786A; }
.ico-good { color: #6B9E82; }

/* ════════════════════════════════
   SECTION 10: LOCATOR
   ════════════════════════════════ */
#locator {
  background: var(--bg);
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}
.locator-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 2.5rem;
}
.locator-controls {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}
.search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-soft);
}
.search-input, .filter-select {
  height: 44px;
  border-radius: 100px;
  border: 1.5px solid var(--divider);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus, .filter-select:focus { border-color: var(--accent); }
.search-input {
  width: 100%;
  padding: 0 1rem 0 2.75rem;
}
.search-input::placeholder { color: var(--text-soft); }
.filter-select {
  padding: 0 1rem;
  cursor: pointer;
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239B9690' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.loc-btn {
  height: 44px;
  padding: 0 1.125rem;
  border-radius: 100px;
  border: 1.5px solid var(--divider);
  background: var(--bg);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.loc-btn:hover { border-color: var(--accent); color: var(--accent-dark); }
.map-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
#map {
  width: 100%;
  height: 460px;
  border-radius: var(--r-xl);
  border: 1px solid var(--divider);
  overflow: hidden;
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.6s;
}
#map.loaded { opacity: 1; }
.doctor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.doctor-card {
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s, border-color 0.2s;
}
.doctor-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(31,29,26,0.1); }
.doctor-card.is-active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }
.doctor-photo { aspect-ratio: 3/2; border-radius: var(--r-md); overflow: hidden; }
.doctor-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: var(--text); }
.doctor-clinic { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-soft); }
.doctor-addr { font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }
.doctor-langs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.lang-chip {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent-dark);
}
.doctor-book {
  margin-top: auto;
  padding: 0.65rem 1rem;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
}
.doctor-book:hover { background: var(--accent-dark); transform: translateY(-1px); }
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md) !important;
  font-family: var(--font-sans) !important;
  box-shadow: 0 8px 32px rgba(31,29,26,0.14) !important;
}
.popup-name { font-weight: 600; font-size: 0.875rem; color: var(--text); margin-bottom: 2px; }
.popup-clinic { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 8px; }
.popup-cta {
  display: block;
  text-align: center;
  padding: 0.45rem 0.875rem;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
}
.popup-cta:hover { background: var(--accent-dark); }

/* ════════════════════════════════
   SECTION 11: TESTIMONIALS
   ════════════════════════════════ */
#testimonials { background: var(--bg-warm); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.t-quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: block;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}
.t-author { display: flex; align-items: center; gap: 0.875rem; }
.t-photo { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.t-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.t-role { font-size: 0.75rem; color: var(--text-soft); }

/* ════════════════════════════════
   SECTION 12: FAQ
   ════════════════════════════════ */
#faq { background: var(--bg); }
.faq-list {
  margin-top: 3.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--divider);
}
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  gap: 1.5rem;
  cursor: pointer;
  transition: background 0.18s;
  background: var(--bg);
}
.faq-btn:hover { background: var(--bg-warm); }
.faq-q-text {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.is-open .faq-icon {
  background: var(--accent-light);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease-out);
  background: var(--bg);
}
.faq-answer {
  padding: 0 2rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
}

/* ════════════════════════════════
   SECTION 13: FINAL CTA
   ════════════════════════════════ */
#final-cta {
  background: var(--accent);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  position: relative;
  overflow: hidden;
}
#final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/final-cta-bg.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.13;
  pointer-events: none;
}
.final-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.final-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.final-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.25rem;
}
#map-mini {
  width: 100%;
  max-width: 720px;
  height: 280px;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: 3rem auto 0;
  opacity: 0.9;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer {
  background: var(--bg-dark);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(250,250,247,0.9);
  margin-bottom: 0.75rem;
}
.footer-brand .footer-logo .nav-logo-glyph {
  border-color: rgba(201,123,92,0.7);
}
.footer-brand .footer-logo .nav-logo-glyph::after {
  background: rgba(201,123,92,0.7);
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 240px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1.25rem;
}
.footer-links-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-list a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
}
.footer-links-list a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.2);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: background 0.2s, color 0.2s;
}
.social-ico:hover { background: var(--accent); color: #fff; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .worry-layout { grid-template-columns: 1fr !important; }
  .worry-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { display: none; }
  #stages-outer { display: none; }
  .stages-mobile { display: block; }
  .promises-grid { grid-template-columns: 1fr; }
  .timeline-cols { grid-template-columns: 1fr; }
  .teen-inner { grid-template-columns: 1fr; }
  .teen-visual { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comp-col:first-child { border-right: none; border-bottom: 1px solid var(--divider); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .doctor-list { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .scroll-line { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js-reveal { opacity: 1 !important; transform: none !important; }
}
