/* ============================================================
   LaunchPoint Advising — design system v2
   Editorial: warm cream + ink, Fraunces serif display, real photos.
   Built to read hand-made, not templated.
   ============================================================ */

:root {
  /* Surfaces */
  --ink:        #0b0f17;   /* deep near-black for dark sections */
  --ink-2:      #11161f;
  --ink-3:      #18202c;   /* dark cards */
  --paper:      #f7f4ee;   /* warm cream — the signature light surface */
  --paper-2:    #efe8db;   /* deeper cream for alternating sections */
  --paper-card: #fffdf8;   /* warm near-white card */

  /* Brand */
  --accent:     #045184;   /* exact brand blue */
  --accent-2:   #2E80C2;   /* brighter blue for dark backgrounds */
  --accent-ink: #00263f;
  --clay:       #b07d4f;   /* warm secondary, used sparingly for rules/marks */

  /* Text */
  --text-dark:  #eef1f6;   /* on dark */
  --muted-dark: #97a4b4;
  --text-light: #15202e;   /* on cream */
  --muted-light:#586475;

  /* Lines */
  --line-dark:  rgba(255,255,255,.13);
  --line-light: rgba(21,32,46,.14);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 5px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-light);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.015em; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }

/* Anchor jumps land below the 76px sticky nav instead of underneath it */
section[id], footer[id] { scroll-margin-top: 76px; }
.container-narrow { max-width: 820px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 88px 0; }
.section.light { background: var(--paper); color: var(--text-light); }
.section.cream { background: var(--paper-2); color: var(--text-light); }
.section.dark  { background: var(--ink); color: var(--text-dark); }

/* Editorial section label: number + word, left aligned, no shouty all-caps band */
.kicker {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: .02em; color: var(--accent);
  margin-bottom: 20px;
}
.dark .kicker { color: var(--accent-2); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 50px); }
.section-head .lead { margin-top: 18px; font-size: 19px; color: var(--muted-light); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }
.dark .section-head .lead { color: var(--muted-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; line-height: 1;
  padding: 16px 28px; min-height: 44px; justify-content: center; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #033f68; }
.btn-outline { background: transparent; color: var(--text-light); border-color: var(--line-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.dark .btn-outline { color: var(--text-dark); border-color: var(--line-dark); }
.dark .btn-outline:hover { border-color: rgba(255,255,255,.5); color:#fff; }
.btn-sm { padding: 12px 18px; font-size: 14px; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; padding: 15px 0; margin: -15px 0; }
.link-arrow span { color: var(--accent-2); transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* Skip link — keyboard users jump past the nav; invisible until focused */
.skip-link {
  position: fixed; left: 16px; top: -64px; z-index: 60;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 15px;
  padding: 13px 20px; border-radius: var(--radius);
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* Keyboard focus — visible ring on every interactive element (never remove without replacement) */
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,15,23,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-dark);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 40px; width: auto; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; color: #EAF0F6; white-space: nowrap; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { position: relative; font-size: 15px; color: var(--muted-dark); transition: color .15s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px; background: var(--accent-2); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: none; color: #EAF0F6; font-size: 24px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

/* ---------- Hero ---------- */
.hero { background: var(--ink); color: var(--text-dark); position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 92px 0 100px;
}
.hero-eyebrow { font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--accent-2); margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 5.6vw, 74px); font-weight: 400; line-height: 1.02; }
.hero h1 em { color: #EAF0F6; font-weight: 500; position: relative; white-space: nowrap; }
.accent-underline { position: absolute; left: -1%; bottom: -0.16em; width: 109%; height: 0.42em; overflow: visible; pointer-events: none; }
.accent-underline path { fill: none; stroke: var(--accent-2); stroke-width: 3; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.hero h1 .quiet { color: var(--muted-dark); }
.hero-sub { margin-top: 26px; font-size: 19px; line-height: 1.6; color: var(--muted-dark); max-width: 520px; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-pledge { margin-top: 30px; font-size: 14.5px; color: var(--muted-dark); letter-spacing: .01em; }
.hero-pledge b { color: var(--text-dark); font-weight: 600; }

.hero-figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.hero-figure img {
  width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius);
  filter: grayscale(1) contrast(1.06) brightness(.95);
}
.hero-figure::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(4,81,132,.18) 0%, rgba(11,15,23,.5) 100%);
  mix-blend-mode: multiply;
}
.hero-figure .figcap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(255,255,255,.82);
}

/* Hero Option B (punch-list #2, explored 2026-07-01 — currently INERT/unused):
   photo anchored top-left, compass mark anchored bottom-right of an invisible
   square. Option A (full-bleed) won; to try B, add .hero-figure-b + the markup
   documented in index.html's hero comment. */
.hero-figure-b { aspect-ratio: 1 / 1; border-radius: 0; overflow: visible; }
.hero-figure-b::after { content: none; }
.hero-figure-b .ph { position: absolute; top: 0; left: 0; right: 17%; bottom: 17%; border-radius: var(--radius); overflow: hidden; }
.hero-figure-b .ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06) brightness(.95); }
.hero-figure-b .ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,81,132,.18) 0%, rgba(11,15,23,.5) 100%);
  mix-blend-mode: multiply;
}
.hero-figure-b .compass { position: absolute; right: 0; bottom: 0; width: 14%; height: auto; filter: none; }
.hero-figure-b .figcap { bottom: calc(17% + 14px); }

/* ---------- Credibility strip — the TEAM's own playing/coaching stops ---------- */
.creds { background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 36px 0 38px; color: var(--text-dark); }
.creds-label { text-align: center; font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--muted-dark); margin-bottom: 16px; }
.creds-label em { color: #EAF0F6; }
.creds-inner { display: flex; align-items: center; gap: 12px 26px; flex-wrap: wrap; justify-content: center; }
.creds-inner .school { font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: .01em; color: rgba(255,255,255,.88); }
.creds-inner .sep { color: var(--clay); }

/* ---------- Editorial two-column compare ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: var(--paper-card); }
.compare-col { padding: 40px 40px 44px; }
.compare-col.them { background: transparent; border-right: 1px solid var(--line-light); }
.compare-col.us { background: #0b0f17; color: var(--text-dark); }
.compare-col h3 { font-size: 24px; margin-bottom: 6px; }
.compare-col .tag { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-light); }
.compare-col.us .tag { color: var(--accent-2); }
.cmp-list { list-style: none; margin-top: 24px; display: grid; gap: 15px; }
.cmp-list li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.5; }
.them .cmp-list li { color: var(--muted-light); }
.them .cmp-list li::before { content: "—"; position: absolute; left: 0; top: -1px; color: #b9c0c9; font-weight: 600; }
.us .cmp-list li { color: var(--text-dark); }
.us .cmp-list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 9px; height: 9px; background: var(--accent-2); border-radius: 1px; transform: rotate(45deg); }
.compare-note { margin-top: 30px; font-size: 16.5px; color: var(--muted-light); max-width: 760px; }
.compare-note b { color: var(--text-light); font-weight: 600; }
/* ---------- Program comparison table ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.compare-programs { margin-top: 34px; }
.compare-programs summary {
  list-style: none; cursor: pointer; position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 10px 34px 10px 0;
  font-family: var(--font-display); font-size: 21px; font-weight: 500;
  color: var(--text-light);
}
.compare-programs summary::-webkit-details-marker { display: none; }
.compare-programs summary::after {
  content: "+"; position: absolute; right: 6px;
  font-family: var(--font-body); font-size: 24px; font-weight: 400;
  color: var(--accent);
}
.compare-programs[open] summary::after { content: "–"; }

.compare-table-wrap { overflow-x: auto; margin-top: 18px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper-card); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 15px; }
.compare-table th, .compare-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line-light); vertical-align: top; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--text-light); padding-top: 20px; padding-bottom: 14px; }
.compare-table .ct-price { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--muted-light); margin-top: 2px; }
.compare-table tbody th { font-weight: 500; color: var(--text-light); max-width: 300px; }
.compare-table td { color: var(--muted-light); }
.compare-table td .visually-hidden + * { margin: 0; }
.compare-table thead th.ct-featured, .compare-table td.ct-featured { background: #0b0f17; color: var(--text-dark); }
.compare-table thead th.ct-featured { color: var(--text-dark); }
.compare-table thead th.ct-featured .ct-price { color: var(--accent-2); }
.compare-table td.ct-featured { border-bottom-color: rgba(234,240,246,0.12); }

/* Solo variant: LaunchPoint card alone, no "them" column (Max's call, 2026-07-13) */
.compare-solo { grid-template-columns: 1fr; }
.compare-solo .compare-col { padding: 44px 48px 48px; }
.compare-solo .cmp-list { grid-template-columns: 1fr 1fr; column-gap: 44px; }

/* ---------- Process: editorial numbered list ---------- */
.steps { border-top: 1px solid var(--line-light); }
.step-row { display: grid; grid-template-columns: 120px 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--line-light); align-items: baseline; }
.step-row .n { font-family: var(--font-display); font-size: 46px; font-weight: 400; color: var(--clay); line-height: 1; }
.step-row .body h3 { font-size: 25px; margin-bottom: 8px; }
.step-row .body p { font-size: 17px; color: var(--muted-light); max-width: 640px; }

/* ---------- What we do: numbered editorial columns ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.pillar { border-top: 2px solid var(--ink); padding-top: 22px; }
.pillar .p-num { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--clay); }
.pillar h3 { font-size: 23px; margin: 8px 0 12px; }
.pillar > p { font-size: 16px; color: var(--muted-light); margin-bottom: 16px; }
.pillar-list { list-style: none; display: grid; gap: 9px; }
.pillar-list li { position: relative; padding-left: 18px; font-size: 15.5px; color: var(--text-light); line-height: 1.45; }
.pillar-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border: 1.5px solid var(--accent); border-radius: 50%; }

/* Inline text link on light sections (e.g. the timeline bullet → free guide) */
.in-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.in-link:hover { color: #033f68; }

/* ---------- Who we fit ---------- */
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.fit-item { padding: 30px 26px 30px 0; border-bottom: 1px solid var(--line-light); }
.fit-item .fn { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--clay); display: block; margin-bottom: 12px; }
.fit-item h3 { font-size: 19px; line-height: 1.3; font-weight: 500; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.member { perspective: 900px; }
.member .portrait {
  aspect-ratio: 4 / 5; width: 100%; overflow: hidden; border-radius: var(--radius);
  background: var(--paper-2); margin-bottom: 18px; will-change: transform;
}
.member .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) sepia(.10) contrast(1.04);
  transition: filter .4s ease, transform .6s ease;
}
.member:hover .portrait img { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }
.member h3 { font-size: 23px; }
.member .role { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin: 5px 0 12px; }
.member p { font-size: 15.5px; color: var(--muted-light); line-height: 1.55; }

.specialists { margin-top: 72px; border-top: 1px solid var(--line-light); padding-top: 44px; }
.specialists .s-label { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--text-light); margin-bottom: 28px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.spec .portrait { aspect-ratio: 1 / 1; width: 100%; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); margin-bottom: 14px; }
.spec .portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) sepia(.10) contrast(1.04); transition: filter .4s ease; }
.spec:hover .portrait img { filter: grayscale(0); }
.spec h4 { font-size: 18px; }
.spec .role { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--accent); margin: 4px 0 8px; }
.spec p { font-size: 14px; color: var(--muted-light); line-height: 1.5; }
.specialists-note { margin-top: 30px; font-size: 16px; color: var(--muted-light); max-width: 680px; }

/* ---------- Photo band (stadium) ---------- */
.band {
  position: relative; color: #EAF0F6; padding: 96px 0;
  background: var(--ink); overflow: hidden;
}
.band .band-bg { position: absolute; left: 0; right: 0; top: -12%; height: 124%; z-index: 0; will-change: transform; }
.band .band-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.4) contrast(1.1); }
.band .band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,15,23,.86) 0%, rgba(11,15,23,.55) 100%); }
.band .container { position: relative; z-index: 1; }
.band-quote { max-width: 760px; }
.band-quote p { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.22; }
.band-quote p em { color: var(--accent-2); }
.band-foot { margin-top: 26px; font-size: 16px; color: var(--muted-dark); }
.band-foot b { color: #EAF0F6; font-weight: 600; }
.band-cta { margin-top: 24px; }

/* ---------- Trust items ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px; }
.trust-item { display: grid; grid-template-columns: 40px 1fr; gap: 4px 18px; }
.trust-item .ti-n { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--clay); grid-row: span 2; }
.trust-item h3 { font-size: 20px; margin-bottom: 6px; }
.trust-item p { font-size: 16px; color: var(--muted-light); }

/* ---------- Programs ---------- */
.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: var(--paper-card); }
.program { padding: 38px 32px 36px; border-right: 1px solid var(--line-light); position: relative; }
.program:last-child { border-right: none; }
.program.featured { background: var(--ink); color: var(--text-dark); }
.program .p-tag { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--clay); }
.program.featured .p-tag { color: var(--accent-2); }
.program h3 { font-size: 25px; margin: 8px 0 12px; }
.program .for { font-size: 16px; color: var(--muted-light); line-height: 1.55; margin-bottom: 26px; min-height: 84px; }
.program.featured .for { color: var(--muted-dark); }
.program .p-price { margin: -8px 0 24px; display: flex; align-items: baseline; gap: 8px; font-size: 15px; color: var(--muted-light); }
.program .p-price .amt { font-family: var(--font-display); font-size: 30px; font-weight: 500; color: var(--text-light); letter-spacing: -.01em; }
.program .p-price .note { font-size: 14px; }
.program.featured .p-price { color: var(--muted-dark); }
.program.featured .p-price .amt { color: #EAF0F6; }
.pledge-line { margin-top: 30px; font-size: 16px; color: var(--muted-light); }
.pledge-line b { color: var(--text-light); font-weight: 600; }
.accel-note { margin-top: 14px; font-size: 15.5px; color: var(--muted-light); }
.accel-note b { color: var(--text-light); font-weight: 600; }

/* ---------- Free tools (lead magnets — deliberately a big moment) ---------- */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.tool { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 48px 44px; background: var(--ink-2); }
.tool .t-tag { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--accent-2); }
.tool h3 { font-size: clamp(26px, 2.6vw, 34px); color: #EAF0F6; margin: 10px 0 14px; }
.tool p { font-size: 17px; color: var(--muted-dark); margin-bottom: 26px; max-width: 460px; }

/* Cursor spotlight on dark cards (class added by JS; pointer-fine devices only) */
.spotlight { position: relative; overflow: hidden; }
.spotlight::after {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(46,128,194,.13), transparent 65%);
  transition: opacity .35s ease;
}
.spotlight:hover::after { opacity: 1; }

/* Guide form (in the Timeline tool card) — name + email only */
.guide-form { display: grid; gap: 14px; margin-top: 2px; }
.guide-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.guide-form label { display: grid; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.guide-form input {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: #EAF0F6;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 12px 14px; min-height: 44px; transition: border-color .15s ease;
}
.guide-form input:focus { border-color: var(--accent-2); }
.guide-form .btn { justify-self: start; }
.guide-note { font-size: 13.5px; color: var(--muted-dark); }
@media (max-width: 560px) { .guide-form .row { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative; font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--text-light); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 22px; font-family: var(--font-body); font-size: 24px; font-weight: 400; color: var(--accent); transition: transform .2s ease; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 40px 26px 0; font-size: 16.5px; color: var(--muted-light); max-width: 760px; }

/* ---------- Contact ---------- */
.contact-band { background: var(--ink); color: var(--text-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-copy h2 { font-size: clamp(30px, 3.8vw, 46px); color: #EAF0F6; }
.contact-copy p { margin-top: 18px; font-size: 18px; color: var(--muted-dark); max-width: 460px; }
.contact-info { list-style: none; margin-top: 32px; display: grid; gap: 16px; }
.contact-info li { display: flex; flex-direction: column; gap: 3px; }
.contact-info span { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-dark); }
.contact-info a { font-family: var(--font-display); font-size: 20px; color: #EAF0F6; }
.contact-form { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 34px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: #EAF0F6;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 13px 15px; transition: border-color .15s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #5d6b7c; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-2); }
.contact-form button { margin-top: 6px; justify-content: center; }
.or-book { margin-top: 26px; font-size: 15px; color: var(--muted-dark); font-family: var(--font-display); font-style: italic; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--muted-dark); border-top: 1px solid var(--line-dark); padding: 56px 0 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: center; }
.footer .brand-name { font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { font-size: 14.5px; color: var(--muted-dark); display: inline-block; padding: 15px 0; margin: -15px 0; }
.footer-links a:hover { color: #fff; }
.footer-legal { width: 100%; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; font-size: 13.5px; }
.footer-legal a:hover { color: #fff; }
.footer-legal span { color: #5d6b7c; }

/* ============================================================
   Legal pages (privacy / terms) — keep compatible, restyle warm
   ============================================================ */
.legal-head { background: var(--ink); color: var(--text-dark); padding: 64px 0 60px; }
.legal-head h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 400; color: #EAF0F6; }
.legal-head p { color: var(--muted-dark); font-size: 17px; margin-top: 12px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap h2 { font-size: 26px; font-weight: 500; color: var(--text-light); margin: 38px 0 12px; }
.legal-wrap h3 { font-size: 19px; font-weight: 600; font-family: var(--font-body); color: var(--text-light); margin: 22px 0 8px; }
.legal-wrap p { font-size: 16.5px; color: var(--muted-light); line-height: 1.7; margin-bottom: 12px; }
.legal-wrap ul { margin: 0 0 16px 0; padding-left: 22px; }
.legal-wrap li { font-size: 16.5px; color: var(--muted-light); line-height: 1.65; margin-bottom: 6px; }
.legal-wrap strong { color: var(--text-light); font-weight: 700; }
.legal-wrap a { color: var(--accent); }
.legal-lead { font-size: 17px; color: var(--muted-light); border-left: 3px solid var(--clay); padding-left: 18px; margin-bottom: 8px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 64px 0 72px; }
  .hero-figure img { height: 360px; }
  .pillars { grid-template-columns: 1fr; gap: 34px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .programs { grid-template-columns: 1fr; }
  .program { border-right: none; border-bottom: 1px solid var(--line-light); }
  .program.featured { border-bottom: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* Compact brand + CTA so nothing collides; name truncates instead of wrapping */
  .container.nav-inner { padding: 0 16px; }
  .nav-inner { gap: 10px; }
  .brand { min-width: 0; flex: 1; gap: 9px; }
  .brand-mark { height: 34px; }
  .brand-name { font-size: 17px; overflow: hidden; text-overflow: ellipsis; }
  .nav-cta { flex: none; }
  .nav-cta .btn-sm { padding: 11px 13px; font-size: 13.5px; }
  .nav.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 8px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink); border-top: 1px solid var(--line-dark);
    padding: 14px 30px 20px;
  }
  .nav.nav-open .nav-links a { display: flex; align-items: center; min-height: 44px; font-size: 16px; color: #EAF0F6; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.them { border-right: none; border-bottom: 1px solid var(--line-light); }
  .compare-solo .compare-col { padding: 36px 30px 40px; }
  .compare-solo .cmp-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-row .n { font-size: 24px; }
}
