/* ==========================================================================
   Pedro Henrique dos Santos — Executive Therapy Program
   Design system: black / charcoal / graphite / off-white. Editorial, premium.
   ========================================================================== */

:root {
  --black: #0A0A0A;
  --ink: #111111;
  --charcoal: #161616;
  --graphite: #1E1E1E;
  --steel: #2A2A2A;
  --line-dark: rgba(244, 241, 234, 0.10);
  --line-dark-strong: rgba(244, 241, 234, 0.18);
  --line-light: rgba(10, 10, 10, 0.12);
  --paper: #F5F2EC;
  --paper-2: #EDE9E1;
  --white: #FFFFFF;
  --text-light: #F4F1EA;
  --muted-light: #96928A;
  --muted-dark: #6E6A62;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark, #0A0A0A);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p, h1, h2, h3, h4 { margin: 0; }
:focus-visible { outline: 1px solid var(--steel); outline-offset: 3px; }
::selection { background: var(--black); color: var(--paper); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow { max-width: 860px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow-num { color: currentColor; opacity: 0.45; }
.eyebrow-light { color: var(--muted-light); }

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--paper); color: var(--black); }
.section-dark { background: var(--black); color: var(--text-light); }

.section-head { max-width: 880px; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.section-title-light { color: var(--text-light); }
.section-intro {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted-dark);
  max-width: 640px;
}
.section-intro-light { color: var(--muted-light); }

.lead {
  margin-top: clamp(1.75rem, 4vw, 3rem);
  max-width: 640px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted-dark);
}
.lead::first-letter { font-family: var(--serif); font-size: 1.6em; }

.section-close {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.5;
  max-width: 720px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--text-light);
  color: var(--black);
  border-color: var(--text-light);
}
.btn-primary:hover { background: transparent; color: var(--text-light); }
.section-light .btn-primary, .section-dark .btn-primary { background: var(--text-light); color: var(--black); }
.section-light .btn-primary:hover { background: transparent; color: var(--black); border-color: var(--black); }

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: var(--line-dark-strong);
}
.btn-ghost:hover { border-color: var(--text-light); }
.section-light .btn-ghost, .section-dark .btn-ghost { border-color: var(--line-dark-strong); color: var(--text-light); }
.section-light .btn-ghost:hover { border-color: var(--text-light); }
.section-light .btn-ghost { color: var(--black); border-color: var(--line-light); }
.section-light .btn-ghost:hover { border-color: var(--black); }

.btn:active { transform: translateY(1px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-light);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled { background: rgba(10, 10, 10, 0.95); border-bottom-color: var(--line-dark-strong); }
.nav-inner {
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.8rem; }
.nav-brand-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark-strong);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.02em; }
.nav-brand-sub { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-light); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a:not(.nav-cta) {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--muted-light);
  transition: color 0.25s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--text-light); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--text-light);
  padding: 0.65rem 1.2rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover { background: transparent; color: var(--text-light); outline: 1px solid var(--text-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
}
.nav-toggle-line { width: 22px; height: 1px; background: var(--text-light); transition: transform 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--black);
  color: var(--text-light);
  padding: 2rem var(--gutter);
  border-bottom: 1px solid var(--line-dark-strong);
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text-light);
  color: var(--black);
  padding: 1rem 1.4rem;
  display: inline-flex;
  justify-content: center;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--text-light);
  padding: calc(var(--nav-h) + clamp(3rem, 8vh, 6rem)) 0 clamp(5rem, 12vh, 8rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 72% 42%, rgba(244, 241, 234, 0.06) 0%, transparent 60%),
    radial-gradient(50% 45% at 12% 80%, rgba(244, 241, 234, 0.04) 0%, transparent 55%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.03;
}
.hero-inner { position: relative; z-index: 1; max-width: 1240px; }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 17em;
  text-wrap: balance;
}
.hero-sub {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted-light);
}
.hero-meta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-meta-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
}
.hero-meta-divider { width: 1px; height: 26px; background: var(--line-dark-strong); }
.hero-actions { margin-top: clamp(2rem, 4vw, 2.8rem); display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-foot { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.hero-foot-note {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-light);
  opacity: 0.7;
}

.hero-scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.hero-scroll-line { width: 44px; height: 1px; background: var(--line-dark-strong); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--text-light);
  transform: translateX(-100%);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* ==========================================================================
   01 PROBLEM
   ========================================================================== */
.situation-list {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-light);
}
.situation-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2.6vw, 1.8rem) 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}
.situation-index {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: var(--muted-dark);
}

/* ==========================================================================
   02 CONTRADICTION
   ========================================================================== */
.distinction-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.distinction {
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.012);
  transition: background 0.4s var(--ease);
}
.distinction:hover { background: rgba(255, 255, 255, 0.03); }
.distinction-a { font-family: var(--serif); font-size: 1.25rem; color: var(--text-light); }
.distinction-arrow { font-family: var(--serif); font-size: 1.4rem; line-height: 1; color: var(--muted-light); }
.distinction-b { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--muted-light); }
.distinction-note { font-size: 0.85rem; line-height: 1.7; color: var(--muted-light); margin-top: 0.6rem; }

.pullquote {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-dark-strong);
  max-width: 760px;
}
.pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.pullquote p + p { color: var(--muted-light); margin-top: 0.5rem; }

/* ==========================================================================
   03 PROGRAM CARDS
   ========================================================================== */
.card-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.card {
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
  transition: background 0.35s var(--ease);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.card:hover { background: var(--paper-2); }
.card-head { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1rem; }
.card-index { font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.16em; color: var(--muted-dark); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; letter-spacing: -0.01em; }
.card p { font-size: 0.875rem; line-height: 1.75; color: var(--muted-dark); margin-top: auto; }

/* ==========================================================================
   04 STRUCTURE / TIMELINE
   ========================================================================== */
.timeline {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line-dark);
}
.phase {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.phase::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--text-light);
  transition: width 1.2s var(--ease);
}
.phase.in-view::before { width: 100%; }
.phase-meta { display: flex; flex-direction: column; gap: 0.4rem; }
.phase-label {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.phase-range {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  opacity: 0.65;
}
.phase-title { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; letter-spacing: -0.01em; }
.phase-body p { margin-top: 0.75rem; max-width: 560px; line-height: 1.8; color: var(--muted-light); font-size: 0.95rem; }

.structure-note {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border: 1px solid var(--line-dark-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.structure-note-stats { display: flex; gap: clamp(1.5rem, 3vw, 2.5rem); }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.stat-num { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--text-light); }
.stat-label { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); }
.structure-note-text { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.6; color: var(--muted-light); }

/* ==========================================================================
   05 WHY STRUCTURE
   ========================================================================== */
.benefit-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.benefit {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}
.benefit h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; letter-spacing: -0.01em; }
.benefit p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted-dark); }

/* ==========================================================================
   06 ALIGNMENT
   ========================================================================== */
.alignment-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.alignment-head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.check-list li, .x-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.2rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-light);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 1.45rem;
  width: 0.85rem;
  height: 0.5rem;
  border-left: 1px solid var(--text-light);
  border-bottom: 1px solid var(--text-light);
  transform: rotate(-45deg);
}
.x-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.72rem;
  color: var(--muted-light);
  font-family: var(--mono);
}
.alignment-require-label {
  margin-top: 2.25rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.require-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.require-row span {
  border: 1px solid var(--line-dark-strong);
  padding: 0.45rem 1rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ==========================================================================
   07 THERAPIST
   ========================================================================== */
.therapist {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.therapist-portrait { position: relative; }
.portrait-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(80% 60% at 50% 20%, rgba(10, 10, 10, 0.5) 0%, transparent 70%),
    var(--graphite);
  border: 1px solid var(--line-light);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.portrait-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
}
.portrait-monogram {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--paper);
  letter-spacing: 0.02em;
  opacity: 0.9;
  position: relative;
}
.portrait-tag {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  background: var(--paper);
  padding: 0.35rem 0.7rem;
}

.therapist-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.01em; }
.therapist-role {
  margin-top: 0.35rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.therapist-bio {
  margin-top: 1.5rem;
  font-size: 0.975rem;
  line-height: 1.85;
  color: var(--muted-dark);
  max-width: 60ch;
}
.therapist-facts {
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
}
.fact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
}
.fact dt {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.fact dd { margin: 0; font-size: 0.9rem; line-height: 1.7; }
.fact dd .editable { border-bottom: 1px dashed transparent; }
.fact dd .editable[contenteditable="true"] { border-bottom-color: var(--line-light); outline: none; }

/* ==========================================================================
   08 CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  background: var(--charcoal);
  color: var(--text-light);
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 80% at 50% 110%, rgba(244, 241, 234, 0.07) 0%, transparent 60%);
}
.cta-inner { position: relative; text-align: center; max-width: 820px; }
.cta-inner .eyebrow { justify-content: center; }
.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.cta-sub {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: var(--muted-light);
}
.cta-text {
  margin: 1.25rem auto 0;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted-light);
}
.cta-actions { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   09 FAQ
   ========================================================================== */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  line-height: 1.4;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--muted-dark); }
.faq-toggle { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-toggle::before { width: 14px; height: 1px; }
.faq-toggle::after { width: 1px; height: 14px; }
.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p {
  padding: 0 0 1.5rem;
  max-width: 620px;
  font-size: 0.925rem;
  line-height: 1.85;
  color: var(--muted-dark);
}

/* ==========================================================================
   10 CONTACT FORM
   ========================================================================== */
#contact { background: var(--black); color: var(--text-light); }
.contact-form {
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  border: 1px solid var(--line-dark-strong);
  background: rgba(255, 255, 255, 0.015);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 2.5vw, 2rem); }
.field { margin-bottom: 1.75rem; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.6rem;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark-strong);
  padding: 0.65rem 0;
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 0.975rem;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 241, 234, 0.28); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--text-light); }
.field input.invalid, .field textarea.invalid { border-bottom-color: #8a6b6b; }
.form-foot { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.form-note { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); }
.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line-dark-strong);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--black); color: var(--text-light); border-top: 1px solid var(--line-dark); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 2rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--line-dark-strong);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-light);
}
.footer-name { font-size: 0.875rem; font-weight: 500; }
.footer-role { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-light); margin-top: 0.2rem; }
.footer-note { font-size: 0.8rem; line-height: 1.8; color: var(--muted-light); max-width: 46ch; }
.footer-legal { font-family: var(--mono); font-size: 0.5625rem; letter-spacing: 0.14em; color: var(--muted-light); opacity: 0.7; text-align: right; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-legal { text-align: left; grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 92svh; }
  .hero-scroll { display: none; }
  .distinction-grid { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 1fr; gap: 0.9rem; }
  .structure-note { grid-template-columns: 1fr; }
  .structure-note-stats { justify-content: space-between; }
  .alignment-grid { grid-template-columns: 1fr; gap: 3rem; }
  .therapist { grid-template-columns: 1fr; }
  .portrait-panel { aspect-ratio: 16 / 10; }
  .fact { grid-template-columns: 1fr; gap: 0.25rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .situation-item { grid-template-columns: 2.6rem 1fr; }
  .btn { padding: 1rem 1.4rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
