/* =========================================================================
   Capital Therapy Project — main.css
   Ported from the approved design source. Values are exact.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Fonts — LICENSED Klim Untitled Sans & Untitled Serif (order 26070210),
   self-hosted, subset to Latin + the symbols the page uses (~175KB / 8 faces).
   Untitled Serif's lightest licensed weight is Regular (400), so the big $110
   numeral uses 400 (Light was never licensed; the design was approved on
   Regular). → ↓ ≈ aren't in these fonts by design and fall back to the system
   UI font, as they already did.
   ---------------------------------------------------------------------- */
@font-face{font-family:"Untitled Sans";font-weight:300;font-style:normal;src:url("../fonts/untitled-sans-light.woff2")   format("woff2");font-display:swap}
@font-face{font-family:"Untitled Sans";font-weight:400;font-style:normal;src:url("../fonts/untitled-sans-regular.woff2") format("woff2");font-display:swap}
@font-face{font-family:"Untitled Sans";font-weight:400;font-style:italic;src:url("../fonts/untitled-sans-italic.woff2")  format("woff2");font-display:swap}
@font-face{font-family:"Untitled Sans";font-weight:500;font-style:normal;src:url("../fonts/untitled-sans-medium.woff2")  format("woff2");font-display:swap}
@font-face{font-family:"Untitled Sans";font-weight:700;font-style:normal;src:url("../fonts/untitled-sans-bold.woff2")    format("woff2");font-display:swap}
@font-face{font-family:"Untitled Serif";font-weight:400;font-style:normal;src:url("../fonts/untitled-serif-regular.woff2") format("woff2");font-display:swap}
@font-face{font-family:"Untitled Serif";font-weight:400;font-style:italic;src:url("../fonts/untitled-serif-italic.woff2")  format("woff2");font-display:swap}
@font-face{font-family:"Untitled Serif";font-weight:700;font-style:normal;src:url("../fonts/untitled-serif-bold.woff2")    format("woff2");font-display:swap}

/* -------------------------------------------------------------------------
   Tokens
   ---------------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-stone:        #E6E5DD;
  --bg-chalk:        #F3F2EB;
  --bg-slate:        #DCE3E3;
  --bg-teal-band:    #35AED4;
  --bg-cta-base:     #52637E;
  --bg-card:         #F7F6F1;
  --bg-chip:         #FBFAF6;
  --bg-footer:       #20262B;

  /* Text */
  --ink:             #20262B;
  --ink-teal:        #0E2833;
  --body:            #5A6269;
  --body-2:          #5C646B;
  --muted:           #5C646A;
  --muted-2:         #60645D;
  --muted-3:         #5F6368;
  --muted-4:         #8A949C;
  --nav-idle:        #41494F;
  --footer-copy:     #869096;

  /* Accents */
  --teal:            #35AED4;
  --teal-btn:        #267D98; /* darkened teal for white button text — WCAG AA (bright --teal kept for accents) */
  --teal-text:       #216F87; /* dark teal for teal-COLORED TEXT — WCAG AA on light bg */
  --link-blue:       #1766A5;
  --scribble:        #EC008C;
  --diagram-purple:  #92278F;
  --diagram-orange:  #F7941E;
  --life-green:      #39B54A;
  --love-red:        #ED1C24;
  --career-blue:     #1B75BC;
  --univ-american:   #C41230;
  --univ-gw:         #033C5A;

  /* Borders */
  --border-card:     #DEDCD2;
  --border-panel:    #E2E0D6;
  --border-section:  #DBD9CD;
  --border-faq:      #EDEAE4;

  /* Type families */
  --font-sans: 'Untitled Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Untitled Serif', Georgia, serif;

  /* Spacing / layout */
  --pad-section: 130px;
  --pad-x: 32px;
  --maxw-wide: 1180px;
  --maxw-1120: 1120px;
  --maxw-1080: 1080px;
  --maxw-fees: 880px;
  --maxw-faq: 740px;
  --maxw-cta: 720px;
  --maxw-office: 1440px;

  /* Radii */
  --r-button: 6px;
  --r-card: 8px;
  --r-card-lg: 10px;
  --r-cta: 14px;
  --r-panel: 16px;

  /* Shadows */
  --sh-nav:    0 1px 10px rgba(30,40,50,0.06);
  --sh-navbtn: 0 6px 16px rgba(53,174,212,0.28);
  --sh-panel:  0 12px 34px rgba(60,55,40,0.06);
  --sh-cta:    0 24px 60px rgba(0,0,0,0.2);

  /* Gradient rule */
  --grad-spectrum: linear-gradient(90deg,#F7941E,#ED1C24,#EC008C,#92278F,#1B75BC,#35AED4,#39B54A);
}

/* -------------------------------------------------------------------------
   Global
   ---------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

.ctp-root {
  font-family: var(--font-sans);
  color: var(--nav-idle);
  background: var(--bg-stone);
}

.ctp-root a { text-decoration: none; }

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* Shared button */
.ctp-btn--primary {
  font-family: var(--font-sans);
  font-weight: 700;
  color: #fff;
  background: var(--teal-btn);
  border-radius: var(--r-button);
  text-decoration: none;
  display: inline-block;
}

/* Photo placeholders (muted, no label text) */
.ctp-photo {
  background: #E4E2D9;
  border: 1px solid var(--border-card);
}
.ctp-photo--therapist {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  margin: 0 auto;
}
.ctp-photo--faculty {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 0 auto;
}
.ctp-photo--office {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}
/* Real headshot/office images fill their slot; size + shape come from the
   modifier classes above. */
img.ctp-photo { object-fit: cover; display: block; }

/* -------------------------------------------------------------------------
   §1 Nav
   ---------------------------------------------------------------------- */
.ctp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238,237,229,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--sh-nav);
}
.ctp-nav__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 15px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ctp-nav__logo {
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.ctp-nav__logo img { height: 15px; display: block; }
.ctp-nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ctp-nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--nav-idle);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ctp-nav__cta {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  background: var(--teal-btn);
  padding: 11px 22px;
  border-radius: var(--r-button);
  box-shadow: var(--sh-navbtn);
}
/* Mobile toggle — hidden on desktop */
.ctp-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.ctp-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* -------------------------------------------------------------------------
   §2 Hero
   ---------------------------------------------------------------------- */
.ctp-hero {
  position: relative;
  background: var(--bg-stone);
  padding: 120px var(--pad-x) 130px;
  overflow: hidden;
}
.ctp-hero__rays {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32%;
  min-width: 280px;
  max-width: 480px;
  overflow: hidden;
  pointer-events: none;
}
.ctp-hero__rays img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ctp-hero__inner {
  position: relative;
  max-width: var(--maxw-wide);
  margin: 0 auto;
}
.ctp-hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin: 0 0 24px;
}
.ctp-hero__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 26px;
  letter-spacing: -0.015em;
  max-width: 760px;
}
.ctp-hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--body);
  max-width: 540px;
  margin: 0 0 42px;
  font-weight: 300;
}
/* Just the opening regard clause is medium so it stands out from the rest of the subhead, per Brad (no 600 in the licensed subset). */
.ctp-hero__sub-lead { font-weight: 500; }
.ctp-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ctp-hero__actions .ctp-btn--primary {
  font-size: 15px;
  padding: 17px 34px;
}
.ctp-hero__jump {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

/* -------------------------------------------------------------------------
   §3 Fees
   ---------------------------------------------------------------------- */
.ctp-fees {
  background: var(--bg-chalk);
  border-top: 1px solid var(--border-section);
  padding: 130px var(--pad-x);
}
.ctp-fees__inner {
  max-width: var(--maxw-fees);
  margin: 0 auto;
  text-align: center;
}
.ctp-fees__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 60px;
}
.ctp-fees__num {
  font-family: var(--font-serif);
  font-weight: 400; /* Untitled Serif's lightest licensed weight (no Light 300) */
  font-size: 180px;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.03em;
}
.ctp-fees__rule {
  height: 4px;
  width: 0;
  margin: 30px auto 26px;
  background: var(--grad-spectrum);
}
.ctp-fees__caption {
  font-size: 17px;
  color: var(--body);
  margin: 0 0 10px;
}
.ctp-fees__flat {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--nav-idle);
  margin: 0 0 30px;
}
.ctp-fees__compare {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
.ctp-fees__strike {
  position: relative;
  display: inline-block;
  padding: 2px 8px;
}
.ctp-fees__strike-num {
  font-weight: 700;
  color: var(--body);
}
.ctp-fees__scribble {
  position: absolute;
  inset: -7px -8px;
  width: calc(100% + 16px);
  height: calc(100% + 14px);
  pointer-events: none;
}
.ctp-fees__compare strong {
  font-weight: 700;
  color: var(--ink);
}
.ctp-fees__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
  text-align: left;
}
.ctp-fees__card {
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--teal);
  border-radius: var(--r-card);
  padding: 32px 34px;
}
.ctp-fees__card-h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
}
.ctp-fees__card-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-2);
  margin: 0;
}

/* Estimator */
.ctp-est {
  border: 1px solid var(--border-card);
  border-radius: var(--r-card);
  padding: 40px 44px;
  margin-top: 32px;
  text-align: left;
}
.ctp-est__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ctp-est__h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 10px;
}
.ctp-est__intro {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body-2);
  margin: 0 0 26px;
}
.ctp-est__slider {
  width: 100%;
  accent-color: var(--teal);
}
.ctp-est__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.ctp-est__label-min {
  font-size: 14px;
  color: var(--muted-3);
}
.ctp-est__label-pct {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-text);
}
.ctp-est__right {
  text-align: center;
  border-left: 1px solid var(--border-card);
  padding-left: 56px;
}
.ctp-est__math {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--muted);
}
.ctp-est__value {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
}
.ctp-est__sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted-3);
}
.ctp-est__disclaimer {
  font-size: 14px;
  color: var(--body-2); /* raised out of fine-print; WCAG AA on cream (item 11) */
  margin: 24px 0 0;
}

/* -------------------------------------------------------------------------
   §4 Why
   ---------------------------------------------------------------------- */
.ctp-why {
  background: var(--bg-slate);
  padding: 130px var(--pad-x) 0;
}
.ctp-why__grid {
  max-width: var(--maxw-1080);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 110px;
}
.ctp-why__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 24px;
}
.ctp-why__p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  margin: 0 0 18px;
}
.ctp-why__text .ctp-why__p:last-of-type { margin: 0; }
.ctp-why__p a { color: var(--link-blue); }
.ctp-why__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--body);
  margin: 44px 0 0;
}
.ctp-why__diagram {
  text-align: center;
}
.ctp-why__diagram svg { max-width: 100%; }
.ctp-why__office {
  max-width: var(--maxw-office);
  margin: 0 auto;
}
.ctp-why__caption {
  text-align: center;
  font-size: 14.5px;
  color: var(--body-2);
  margin: 20px 0 0;
}
.ctp-why__caption strong {
  font-weight: 700;
  color: var(--nav-idle);
}
.ctp-why__spacer { height: 110px; }

/* -------------------------------------------------------------------------
   §5 Issues
   ---------------------------------------------------------------------- */
.ctp-issues {
  background: var(--bg-chalk);
  border-top: 1px solid var(--border-section);
  padding: 130px var(--pad-x);
}
.ctp-issues__inner {
  max-width: var(--maxw-1080);
  margin: 0 auto;
}
.ctp-issues__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px; /* tight to the standfirst below — they read as one title unit */
  text-align: center;
}
.ctp-issues__intro {
  font-family: var(--font-serif);
  font-style: italic;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
}
/* Short brand accent under the standfirst — echoes the gradient rule beneath the
 * "$110" numeral, giving the line a visual base and separating it from the cards. */
.ctp-issues__rule {
  height: 4px;
  width: 64px;
  margin: 0 auto 52px;
  border-radius: 2px;
  background: var(--grad-spectrum);
}
.ctp-issues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.ctp-issues__card {
  border: 1px solid var(--border-card);
  border-radius: var(--r-card);
  padding: 40px 34px;
}
.ctp-issues__card--life   { border-top: 3px solid var(--life-green); }
.ctp-issues__card--love   { border-top: 3px solid var(--love-red); }
.ctp-issues__card--career { border-top: 3px solid var(--career-blue); }
.ctp-issues__card-h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 23px;
  color: var(--ink);
  margin: 0 0 12px;
}
.ctp-issues__card-p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-2);
}
.ctp-issues__list {
  margin: 0 auto;
  text-align: center;
  font-size: 15px; /* elevated: highest-info line, not a footnote (item 15) */
  line-height: 2;
  color: var(--body-2);
  max-width: 780px;
}

/* -------------------------------------------------------------------------
   §6 How
   ---------------------------------------------------------------------- */
.ctp-how {
  background: var(--bg-teal-band);
  padding: 130px var(--pad-x) 120px;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
}
.ctp-how__inner {
  max-width: var(--maxw-1120);
  margin: 0 auto;
}
.ctp-how__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink-teal);
  margin: 0 0 56px;
  text-align: center;
}
.ctp-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ctp-how__card {
  background: var(--bg-card);
  border-radius: var(--r-card-lg);
  padding: 32px 28px;
}
.ctp-how__step {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin: 0 0 12px;
}
.ctp-how__card-h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 10px;
}
.ctp-how__card-p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--body-2);
  margin: 0;
}

/* -------------------------------------------------------------------------
   §7 Therapists
   ---------------------------------------------------------------------- */
.ctp-ther {
  background: var(--bg-stone);
  padding: 130px var(--pad-x);
}
.ctp-ther__inner {
  max-width: var(--maxw-1120);
  margin: 0 auto;
}
.ctp-ther__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 18px;
  text-align: center;
}
.ctp-ther__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-2);
}
.ctp-ther__intro span {
  color: var(--ink);
  font-weight: 500;
}
.ctp-ther__cards {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ctp-ther__card {
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  border-radius: var(--r-card-lg);
  padding: 36px 32px;
  text-align: center;
  width: 300px;
}
.ctp-ther__name {
  margin: 22px 0 4px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.ctp-ther__role {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.ctp-ther__chip {
  display: inline-block;
  margin: 16px auto 0;
  padding: 9px 18px;
  border: 1px solid var(--border-card);
  border-radius: var(--r-button);
  background: var(--bg-chip);
  text-align: center;
}
.ctp-ther__chip--american { border-left: 3px solid var(--univ-american); }
.ctp-ther__chip--gw       { border-left: 3px solid var(--univ-gw); }
.ctp-ther__chip-degree {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--ink);
}
.ctp-ther__chip-univ {
  display: block;
  white-space: nowrap;
  margin-top: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--body-2);
}
.ctp-ther__panel {
  margin-top: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-panel);
  border-radius: var(--r-panel);
  padding: 58px 44px;
  box-shadow: var(--sh-panel);
}
.ctp-ther__panel-eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 10px;
}
.ctp-ther__panel-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-2);
}
.ctp-ther__faculty {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.ctp-ther__fac {
  text-align: center;
  width: 160px;
}
.ctp-ther__fac-name {
  margin: 14px 0 3px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.ctp-ther__fac-role {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted-2);
}
.ctp-ther__fac-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--link-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(27,117,188,0.3);
}
.ctp-ther__transition {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-2); /* raised out of fine-print (item 20) */
}

/* -------------------------------------------------------------------------
   §8 FAQ
   ---------------------------------------------------------------------- */
.ctp-faq {
  background: var(--bg-chalk);
  border-top: 1px solid var(--border-section);
  padding: 130px var(--pad-x);
}
.ctp-faq__inner {
  max-width: var(--maxw-faq);
  margin: 0 auto;
}
.ctp-faq__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 40px;
  color: var(--ink);
  margin: 0 0 44px;
  text-align: center;
}
.ctp-faq__item {
  border-bottom: 1px solid var(--border-faq);
}
.ctp-faq__q {
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.ctp-faq__plus {
  color: var(--teal-text);
  font-size: 20px;
  flex-shrink: 0;
}
.ctp-faq__a {
  margin: 0;
  padding: 0 4px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-2);
}
.ctp-faq__grad {
  margin: 48px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-3);
  text-align: center;
}
.ctp-faq__grad strong {
  font-weight: 700;
  color: var(--body-2);
}
.ctp-faq__grad a {
  color: var(--link-blue);
  font-weight: 500;
}

/* -------------------------------------------------------------------------
   §9 CTA
   ---------------------------------------------------------------------- */
.ctp-cta {
  position: relative;
  overflow: hidden;
  padding: 110px var(--pad-x);
  background: var(--bg-cta-base);
}
.ctp-cta__rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctp-cta__card {
  position: relative;
  max-width: var(--maxw-cta);
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--r-cta);
  padding: 64px 60px;
  text-align: center;
  box-shadow: var(--sh-cta);
}
.ctp-cta__h2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 38px;
  color: var(--ink);
  margin: 0 0 12px;
}
.ctp-cta__sub {
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-2);
}
.ctp-cta__btn {
  font-size: 16px;
  padding: 18px 40px;
}

/* -------------------------------------------------------------------------
   §10 Footer
   ---------------------------------------------------------------------- */
.ctp-footer {
  background: var(--bg-footer);
  padding: 42px var(--pad-x);
  text-align: center;
}
.ctp-footer__wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--muted-4);
  margin: 0 0 12px;
}
/* Address + phone read as one quiet contact block (item 32): on-brand muted
 * text, no persistent underline (the indigo UA link color is gone); the link
 * affordance appears on hover/focus. */
.ctp-footer__addr {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--muted-4);
}
.ctp-footer__phone {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted-4);
}
.ctp-footer__addr a,
.ctp-footer__phone a {
  color: var(--muted-4);
  text-decoration: none;
}
.ctp-footer__addr a:hover,
.ctp-footer__phone a:hover,
.ctp-footer__addr a:focus-visible,
.ctp-footer__phone a:focus-visible {
  color: var(--footer-copy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ctp-footer__mission {
  margin: 0 auto 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-4);
  max-width: 520px;
}
.ctp-footer__mission a {
  color: #C9D0D5;
  font-weight: 500;
  text-decoration: underline;
}
.ctp-footer__copy {
  margin: 0;
  font-size: 13px;
  color: var(--footer-copy);
}

/* -------------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 900px) {
  .ctp-hero__title { font-size: clamp(38px, 8vw, 64px); }
  .ctp-fees__num { font-size: clamp(96px, 22vw, 180px); }
  .ctp-why__grid { grid-template-columns: 1fr; gap: 48px; }
  .ctp-issues__grid { grid-template-columns: 1fr; }
  .ctp-how__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* Nav → mobile menu.
     No-JS default: the menu is a visible stacked list that wraps below the
     logo and the hamburger stays hidden, so every link + the CTA remain
     reachable without JavaScript. With JS (html.js) it collapses to a
     hamburger-triggered dropdown. The `js` class is set by an inline <head>
     script so there is no flash of the expanded menu. */
  .ctp-nav__inner { position: relative; flex-wrap: wrap; }
  .ctp-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 6px;
  }
  .ctp-nav__link { padding: 14px 0; }
  .ctp-nav__cta { margin-top: 10px; text-align: center; }

  html.js .ctp-nav__toggle { display: flex; }
  html.js .ctp-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    padding: 8px var(--pad-x) 20px;
    background: rgba(238,237,229,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
  }
  html.js .ctp-nav__menu.is-open { display: flex; }
}

@media (max-width: 720px) {
  .ctp-hero {
    padding: 88px 20px 96px;
  }
  .ctp-hero__rays { display: none; }
  .ctp-fees,
  .ctp-why,
  .ctp-issues,
  .ctp-how,
  .ctp-ther,
  .ctp-faq { padding-left: 20px; padding-right: 20px; }
  .ctp-fees,
  .ctp-issues,
  .ctp-ther,
  .ctp-faq { padding-top: 80px; padding-bottom: 80px; }
  .ctp-why { padding-top: 80px; }
  .ctp-how { padding: 80px 20px 72px; }
  .ctp-cta { padding: 80px 20px; }

  .ctp-fees__cards { grid-template-columns: 1fr; }
  .ctp-est__grid { grid-template-columns: 1fr; gap: 0; }
  .ctp-est__right {
    border-left: none;
    padding-left: 0;
    margin-top: 32px;
    text-align: left;
  }
  .ctp-est__value { font-size: clamp(40px, 12vw, 56px); }
  .ctp-how__grid { grid-template-columns: 1fr; }
  .ctp-photo--office { height: clamp(240px, 50vw, 600px); }
  .ctp-cta__card { padding: 44px 28px; }
  .ctp-issues__intro { font-size: 18px; }
}

/* Reduced motion — fee rule shows resting (no wipe needed; JS respects this too) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------
   Accessibility + mobile readability pass (2026-07-06)
   ---------------------------------------------------------------------- */

/* Skip link — visible on keyboard focus only */
.ctp-skip {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}
.ctp-skip:focus { top: 8px; }

/* Visible focus indicator (keyboard only) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Anchor jumps clear the sticky nav; guard horizontal overflow */
html { scroll-padding-top: 84px; }
.ctp-root { overflow-x: clip; } /* clip (not hidden) guards against horizontal overflow WITHOUT breaking the sticky nav — `hidden` makes .ctp-root a scroll container and disables position:sticky for descendants */
.ctp-photo--office { max-width: 100%; }

/* Range slider: taller touch hit-area (all viewports) */
.ctp-est__slider { height: 44px; }

@media (max-width: 760px) {
  .ctp-nav__toggle { width: 44px; height: 44px; }
  .ctp-nav__cta { padding: 13px 22px; }
}

@media (max-width: 720px) {
  /* Body copy up to 16px for comfortable phone reading */
  .ctp-fees__card-p,
  .ctp-issues__card-p,
  .ctp-faq__a,
  .ctp-fees__compare,
  .ctp-est__intro,
  .ctp-how__card-p,
  .ctp-ther__intro,
  .ctp-ther__panel-intro { font-size: 16px; line-height: 1.7; }
  .ctp-issues__list { font-size: 16px; line-height: 1.9; }

  /* (small subtext base sizes were raised to 13–14px, so no mobile floor needed) */
  .ctp-footer__addr,
  .ctp-footer__mission { font-size: 14px; }

  /* Tighter uppercase tracking (0.24em over-tracks on a phone) */
  .ctp-hero__eyebrow { letter-spacing: 0.14em; font-size: 12px; margin-bottom: 18px; }
  .ctp-ther__panel-eyebrow,
  .ctp-footer__wordmark { letter-spacing: 0.12em; }

  /* Tap targets >= 44px */
  .ctp-hero__jump { display: inline-block; padding: 10px 0; }
  .ctp-ther__fac-link { display: inline-block; padding: 8px 4px; }
  .ctp-footer__mission a { display: inline-block; padding: 6px 2px; }

  /* Roomier cards on narrow screens */
  .ctp-fees__card,
  .ctp-issues__card,
  .ctp-how__card { padding: 28px 22px; }
  .ctp-ther__panel { padding: 40px 24px; }
  .ctp-est { padding: 28px 22px; }
  .ctp-ther__card { width: 100%; max-width: 340px; }
}
