/* ============================================================
   Confidra — site.css
   Brand system per the identity specification: flat fills only.
   Navy #1A2B4A · Teal #2D7A6B · Coral #D4522A (single accent) · Sand #FAF9F7
   Playfair Display 500 (display) · DM Sans 400/500 (UI). No other fonts.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokens ---------- */
:root {
  --navy: #1A2B4A;
  --teal: #2D7A6B;
  --teal-text: #2A7363;      /* 5.4:1 on Sand — AA for small text */
  --teal-on-navy: #7FC9B6;   /* 7.3:1 on Navy */
  --coral: #D4522A;          /* decorative accent only, never type */
  --sand: #FAF9F7;
  --paper: #FFFFFF;
  --line: #E6E2D7;
  --line-strong: #D8D3C5;
  --ink: #1A2B4A;
  --ink-soft: #54607A;       /* 5.9:1 on Sand */
  --ink-faint: #656E82;      /* 4.9:1 on Sand */
  --navy-line: #34456A;
  --sand-soft: #C9CEDA;      /* 8.9:1 on Navy */
  --navy-faint: #949FB5;     /* 5.3:1 on Navy */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --maxw: 1120px;
  --radius: 4px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.005em;
}
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- a11y ---------- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--sand);
  padding: 12px 20px; font-size: 15px; font-weight: 500;
}
.skip-link:focus { left: 8px; top: 8px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@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;
  }
}

/* ---------- logo ---------- */
.seal { width: 34px; height: 34px; flex: none; }
.seal .disc { fill: var(--logo-fill, var(--navy)); }
.brand { display: flex; align-items: center; gap: 12px; }
.wordmark {
  font-family: var(--serif); font-weight: 500; font-size: 23px;
  letter-spacing: 0.015em; color: var(--logo-text, var(--navy)); line-height: 1;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: .01em;
  padding: 14px 22px; border: 1.5px solid transparent; border-radius: 2px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center; cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--sand); border-color: var(--navy); }
.btn-primary:hover { background: var(--teal); border-color: var(--teal); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: var(--sand); }
.btn-onnavy { background: transparent; color: var(--sand); border-color: var(--navy-line); }
.btn-onnavy:hover { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 64px 0; }
.band-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-text); margin-bottom: 22px;
}
.eyebrow .num { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.eyebrow .tick { width: 18px; height: 1.5px; background: var(--teal); }
.lead { font-size: 18px; color: var(--ink-soft); max-width: 60ch; }
.sec-head { max-width: 32ch; }
.sec-head h1, .sec-head h2 { font-size: clamp(26px, 5.2vw, 38px); }
.sec-head.wide { max-width: 38ch; }
.sec-head p.lead { margin-top: 18px; max-width: 62ch; }
.note {
  font-size: 15px; color: var(--ink-soft); border-left: 2px solid var(--teal);
  padding: 6px 0 6px 20px; max-width: 70ch;
}
.note strong { color: var(--navy); font-weight: 600; }

/* ---------- nav ---------- */
header.nav { position: sticky; top: 0; z-index: 50; background: var(--sand); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav-links { display: none; align-items: center; gap: 26px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-cta { display: none; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 16px; font-size: 14px; }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); display: block; }
.mobile-panel { display: none; border-top: 1px solid var(--line); background: var(--sand); padding: 14px 22px 26px; }
.mobile-panel.open { display: block; }
.mobile-panel ul { margin-bottom: 14px; }
.mobile-panel li a { display: block; padding: 11px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-panel .btn { margin-top: 10px; }
.mobile-panel .mp-note { font-size: 13px; color: var(--ink-faint); margin-top: 16px; text-align: center; }

/* ---------- hero ---------- */
.hero { padding-top: 54px; padding-bottom: 56px; }
.hero h1 {
  font-size: clamp(30px, 6.6vw, 50px); font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.1; overflow-wrap: break-word;
}
.hero h1 .teal { color: var(--teal-text); }
.hero .subhead { margin-top: 26px; font-size: 17.5px; color: var(--ink-soft); max-width: 46ch; }
.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.hero-microcopy { margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--ink-faint); }
.hero-visual {
  margin-top: 44px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 48px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.seal-hero { width: 148px; height: 148px; }
.hero-points { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.hero-points span { font-size: 14.5px; font-weight: 500; color: var(--navy); line-height: 1.45; max-width: 32ch; }
.hero-points span:nth-child(2) { color: var(--ink-soft); }
.assurance {
  display: inline-block; border: 1.5px solid var(--navy); border-radius: 999px;
  color: var(--navy); font-weight: 500; line-height: 1.45;
}
.assurance-sm { margin-top: 14px; font-size: 13px; padding: 9px 16px; }
.assurance-lg { margin-top: 22px; font-size: 15px; padding: 13px 22px; }

/* ---------- trust strip ---------- */
.trust-strip { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.trust-strip li { font-size: 13px; font-weight: 500; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 9px; }
.trust-strip li::before { content: ""; width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex: none; }

/* ---------- governance band ---------- */
.gov-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; }
.gov-band .wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.gov-label { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-text); margin-bottom: 18px; }
.gov-text {
  font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 2.7vw, 21px);
  line-height: 1.5; color: var(--navy); max-width: 66ch;
}

/* ---------- generic card grids ---------- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 38px; }
.pcard { background: var(--paper); padding: 28px 26px; }
.pcard .pc-num { font-size: 12px; font-weight: 600; color: var(--teal-text); letter-spacing: .1em; font-variant-numeric: tabular-nums; }
.pcard h3 { font-size: 19px; margin-top: 14px; }
.pcard p { font-size: 14.5px; color: var(--ink-soft); margin-top: 9px; }

.inc-list { margin-top: 38px; display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.inc-item { background: var(--paper); padding: 26px; }
.inc-item .inc-svc { display: flex; align-items: baseline; gap: 12px; }
.inc-item .inc-no { font-size: 12px; font-weight: 600; color: var(--ink-faint); font-variant-numeric: tabular-nums; flex: none; }
.inc-item h3 { font-size: 18px; }
.inc-item p { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; padding-left: 30px; }
.includes-intro { font-size: clamp(20px, 3.4vw, 25px); font-family: var(--serif); color: var(--navy); max-width: 26ch; line-height: 1.25; }

/* ---------- timeline ---------- */
.timeline { margin-top: 40px; display: grid; grid-template-columns: 1fr; }
.tstep { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding-bottom: 34px; }
.tstep:last-child { padding-bottom: 0; }
.tmark { display: flex; flex-direction: column; align-items: center; }
.tdot { width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 3px solid var(--sand); outline: 1px solid var(--navy); margin-top: 5px; flex: none; }
.tstep:not(:last-child) .tline { width: 1.5px; flex: 1; background: var(--line-strong); margin-top: 6px; }
.tstep .tday { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-text); }
.tstep h3 { font-size: 19px; margin-top: 6px; }
.tstep p { font-size: 14.5px; color: var(--ink-soft); margin-top: 8px; max-width: 46ch; }

/* ---------- daily rhythm ---------- */
.rhythm { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.rslot { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.rslot .rtime { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-text); }
.rslot h3 { font-size: 18px; margin-top: 10px; }
.rslot ul { margin-top: 14px; display: grid; gap: 9px; }
.rslot li { font-size: 14.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.rslot li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

/* ---------- who / lists ---------- */
.who { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; margin-top: 36px; }
.who h3 { font-size: 19px; margin-bottom: 18px; }
.traits { display: grid; gap: 13px; }
.traits li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.traits li::before { content: ""; width: 7px; height: 7px; background: var(--teal); margin-top: 9px; flex: none; }
.traits.negative li::before { background: var(--line-strong); }
.who-split { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
.emergency { margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; font-size: 14px; color: var(--ink-soft); }
.emergency strong { color: var(--navy); font-weight: 600; }

/* ---------- tiers ---------- */
.tiers { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 38px; align-items: start; }
.tier {
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; height: 100%;
}
.tier.featured { border-color: var(--navy); border-width: 2px; }
.tier-badge {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sand); background: var(--navy);
  padding: 5px 10px; border-radius: 2px; margin-bottom: 14px; align-self: flex-start;
}
.tier h3 { font-size: 21px; }
.tier .tier-price { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--navy); margin-top: 14px; line-height: 1; }
.tier .tier-price small { display: block; font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink-soft); margin-top: 9px; letter-spacing: .01em; }
.tier .tier-perday { font-size: 13px; color: var(--ink-faint); margin-top: 6px; font-weight: 500; }
.tier ul { margin-top: 20px; display: grid; gap: 10px; flex: 1; }
.tier li { font-size: 14.5px; color: var(--ink-soft); padding-left: 20px; position: relative; line-height: 1.5; }
.tier li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.tier .btn { margin-top: 22px; }
/* reserve the badge's height on unbadged tiers so all three prices align */
@media (min-width: 680px) {
  .tier:not(.featured)::before { content: ""; display: block; height: 28px; margin-bottom: 14px; }
}
.tier .tier-sub { font-size: 12.5px; color: var(--ink-faint); margin-top: 10px; text-align: center; }
.tiers-foot { margin-top: 28px; }

/* ---------- pricing ---------- */
.reserve-card { background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 38px 28px; margin-top: 8px; }
.reserve-card .cohort-line { font-weight: 500; font-size: 15px; color: var(--teal-text); margin-bottom: 16px; }
.reserve-card .price { font-family: var(--serif); font-size: clamp(38px, 8vw, 56px); font-weight: 600; color: var(--navy); line-height: 1; }
.reserve-card .price small { font-size: 17px; color: var(--ink-soft); font-family: var(--sans); font-weight: 500; display: block; margin-top: 10px; }
.reserve-card p.rbody { margin-top: 22px; font-size: 16px; color: var(--ink-soft); max-width: 54ch; }
.reserve-card .rfee { margin-top: 18px; font-size: 15px; color: var(--navy); font-weight: 500; }
.reserve-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.terms-list { margin-top: 24px; display: grid; gap: 11px; }
.terms-list li { font-size: 14.5px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.terms-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

/* ---------- leadership ---------- */
.lead-grid { margin-top: 38px; display: grid; grid-template-columns: 1fr; gap: 18px; }
.lcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.lcard .lc-role { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-text); }
.avatar {
  width: 62px; height: 62px; border-radius: 50%; background: var(--navy); color: var(--sand);
  display: flex; align-items: center; justify-content: center; margin-top: 16px;
  font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: .02em;
}
.lcard h3 { font-size: 20px; margin-top: 16px; }
.lcard .lc-quals { font-size: 14px; color: var(--ink-soft); margin-top: 9px; }
.lcard .lc-title { font-size: 14.5px; color: var(--navy); font-weight: 500; margin-top: 8px; }
.lcard .lc-reg { font-size: 13px; color: var(--ink-faint); margin-top: 8px; font-variant-numeric: tabular-nums; }
.lcard .lc-post { font-size: 13px; color: var(--ink-faint); margin-top: 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.lead-foot { margin-top: 24px; font-size: 15px; color: var(--ink-soft); font-style: italic; }

/* ---------- steps ---------- */
.steps-grid { margin-top: 38px; display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step-cell { background: var(--paper); padding: 30px 26px; }
.step-num { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--sand); font-family: var(--serif); font-weight: 600; font-size: 19px; display: flex; align-items: center; justify-content: center; }
.step-cell h3 { font-size: 19px; margin-top: 18px; }
.step-cell p { font-size: 14.5px; color: var(--ink-soft); margin-top: 9px; max-width: 36ch; }

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding: 22px 2px; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy);
}
.faq-icon { width: 18px; height: 18px; flex: none; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--teal); transition: transform .22s ease; }
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { left: 8px; top: 0; height: 18px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15.5px; color: var(--ink-soft); padding: 0 2px 22px; max-width: 62ch; }
.faq-a p + p { padding-top: 12px; }

/* ---------- prose (legal pages) ---------- */
.prose { max-width: 72ch; margin-top: 34px; }
.prose h2 { font-size: 23px; margin-top: 40px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin-top: 26px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-soft); margin-top: 14px; line-height: 1.68; }
.prose ul { margin-top: 8px; }
.prose li { padding-left: 20px; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--teal-text); text-decoration: underline; text-underline-offset: 2px; }
.prose .updated { font-size: 14px; color: var(--ink-faint); margin-top: 0; }
.prose dl { margin-top: 16px; }
.prose dt { font-weight: 600; color: var(--navy); margin-top: 16px; font-size: 16px; }
.prose dd { font-size: 16px; color: var(--ink-soft); margin-top: 4px; line-height: 1.68; }

/* ---------- final CTA ---------- */
.final-cta { background: var(--navy); color: var(--sand); padding: 64px 0; --logo-fill: var(--sand); }
.final-cta h2 { color: var(--sand); font-size: clamp(26px, 5vw, 36px); max-width: 20ch; }
.final-cta p { color: var(--sand-soft); font-size: 17px; margin-top: 18px; max-width: 52ch; }
.final-cta .cta-row { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.final-cta .cta-row .btn-primary { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.final-cta .cta-row .btn-primary:hover { background: var(--teal-on-navy); border-color: var(--teal-on-navy); color: var(--navy); }
.final-cta .cta-note { font-size: 13px; color: var(--navy-faint); margin-top: 14px; }

/* ---------- footer ---------- */
footer.site {
  background: var(--navy); color: var(--sand); padding: 54px 0 40px;
  --logo-fill: var(--sand); --logo-text: var(--sand);
}
footer.site .brand { margin-bottom: 26px; }
footer.site .f-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
footer.site h2 { color: var(--sand); font-size: 13px; font-family: var(--sans); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
footer.site .f-contact { font-size: 14.5px; color: var(--sand-soft); line-height: 1.85; }
footer.site .f-contact strong { color: var(--sand); font-weight: 600; }
footer.site .f-contact a { text-decoration: underline; text-underline-offset: 2px; }
footer.site nav ul { display: grid; gap: 9px; }
footer.site nav a { font-size: 14.5px; color: var(--sand-soft); }
footer.site nav a:hover { color: var(--sand); }
footer.site .entity-line { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--navy-line); font-size: 12.5px; line-height: 1.7; color: var(--sand-soft); max-width: 88ch; }
footer.site .compliance-line { margin-top: 14px; font-size: 12.5px; line-height: 1.7; color: var(--navy-faint); max-width: 88ch; }
footer.site .disclaimer { margin-top: 14px; font-size: 12.5px; line-height: 1.7; color: var(--sand-soft); max-width: 88ch; }
footer.site .f-bottom { margin-top: 24px; font-size: 12.5px; color: var(--navy-faint); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--sand); border-top: 1px solid var(--line); padding: 10px 14px;
  display: flex; gap: 10px;
}
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 14.5px; }
.sticky-cta .btn-call { flex: 0 0 auto; padding: 13px 18px; }
body { padding-bottom: 72px; }

/* ---------- responsive ---------- */
@media (min-width: 680px) {
  .card-grid, .inc-list, .tiers, .lead-grid, .who-split { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-cta, .reserve-cta, .final-cta .cta-row { flex-direction: row; flex-wrap: wrap; }
  .rhythm { grid-template-columns: 1fr 1fr; }
  footer.site .f-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 900px) {
  section { padding: 84px 0; }
  .hamburger { display: none; }
  .nav-links, .nav-cta { display: flex; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .tiers, .lead-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .tstep { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .tmark { flex-direction: row; align-items: center; width: 100%; margin-bottom: 20px; }
  .tstep:not(:last-child) .tline { height: 1.5px; width: auto; flex: 1; margin: 0 0 0 12px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .hero-visual { margin-top: 0; padding: 60px 40px; }
  .seal-hero { width: 180px; height: 180px; }
  .reserve-card { padding: 52px 46px; }
  .reserve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
  .rhythm { grid-template-columns: repeat(4, 1fr); }
}
