/* ---------- tokens ---------- */
:root{
  --navy:#0b2545;
  --navy-2:#123763;
  --navy-3:#1d4d8a;
  --blue:#2d6cdf;
  --blue-ink:#1d4d8a;
  --ink:#0f2340;
  --text:#2b3a55;
  --muted:#5a6a85;
  --line:#e3e9f2;
  --bg:#ffffff;
  --band:#eef4fb;
  --band-2:#f4f8fd;
  --leaf:#8fc7e8;
  --sand:#e8d9b8;
  --sun:#f0a35e;
  --card:#ffffff;
  --shadow:0 1px 2px rgba(11,37,69,.05), 0 8px 24px rgba(11,37,69,.06);
  --radius:14px;
  --serif:"Fraunces", Georgia, "Times New Roman", serif;
  --sans:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --script:"Caveat", cursive;
  --gutter: clamp(1.1rem, 4vw, 2.75rem);
  --maxw: 1220px;
  --measure: 40rem;
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  font-family:var(--sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg,video{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
:focus-visible{outline:2px solid var(--blue-ink);outline-offset:3px}

.wrap{max-width:var(--maxw);margin:0 auto;padding-inline:var(--gutter)}
.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;
}

/* ---------- typography ---------- */
h1,h2,h3,h4{font-family:var(--serif);color:var(--navy);font-weight:500;line-height:1.1;letter-spacing:-.01em;margin:0}
h1{font-size:clamp(1.9rem, 5.2vw, 3.05rem)}
h2{font-size:clamp(1.7rem, 4.4vw, 2.6rem);line-height:1.15}
h3{font-size:clamp(1.1rem, 2.2vw, 1.35rem);font-weight:600;letter-spacing:-.005em}
h4{font-size:1rem;font-weight:600;color:var(--navy)}
p{margin:0 0 1rem}
.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.72rem;
  font-weight:500;
  color:var(--navy);
}
.muted{color:var(--muted)}
.tm{font-size:.55em;vertical-align:super;font-weight:400;margin-left:.05em}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.55rem;
  padding:.95rem 1.35rem;
  min-height:48px;
  border-radius:999px;
  font-weight:600;font-size:.95rem;
  white-space:normal;text-align:center;line-height:1.3;
  transition:transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  width:100%;
}
@media (min-width:640px){ .btn{width:auto} }
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--navy-2)}
.btn-secondary{background:#fff;color:var(--navy);border:1px solid var(--line)}
.btn-secondary:hover{border-color:var(--navy);}
.btn-ghost{color:var(--blue-ink);font-weight:600}
.btn-ghost:hover{color:var(--navy)}
.arrow{display:inline-block;transition:transform .15s ease}
.btn:hover .arrow{transform:translateX(3px)}
.play{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:999px;background:var(--blue-ink);color:#fff;
  font-size:.7rem;
}

/* ---------- header ---------- */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease, background .2s ease;
}
header.scrolled{border-color:var(--line)}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding-block:.9rem;gap:1rem;
}
.brand{display:flex;flex-direction:column;align-items:flex-start;gap:.15rem;min-width:0}
.brand-logo{height:40px;width:auto;flex:0 0 auto}
.brand-text{display:flex;flex-direction:column;line-height:1;min-width:0}
.brand-name{font-family:var(--serif);font-size:1.55rem;color:var(--navy);font-weight:500;letter-spacing:-.01em}
.brand-tag{font-size:.62rem;color:var(--muted);letter-spacing:.02em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nav-links{display:none;gap:1.75rem;align-items:center}
.nav-links a{font-size:.92rem;color:var(--ink);font-weight:500}
.nav-links a:hover{color:var(--blue-ink)}
.nav-links a.is-current{color:var(--navy);box-shadow:inset 0 -2px 0 var(--navy)}
.nav-cta{display:none}
@media (min-width:960px){
  .nav-links{display:flex}
  .nav-cta{display:inline-flex}
}
.hamburger{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:10px;
  color:var(--navy);
}
@media (min-width:960px){ .hamburger{display:none} }
.hamburger .bars{position:relative;width:22px;height:14px}
.hamburger .bars span{position:absolute;left:0;right:0;height:2px;background:currentColor;border-radius:2px;transition:transform .25s ease, top .25s ease, opacity .2s ease}
.hamburger .bars span:nth-child(1){top:0}
.hamburger .bars span:nth-child(2){top:6px}
.hamburger .bars span:nth-child(3){top:12px}
.hamburger.is-open .bars span:nth-child(1){top:6px;transform:rotate(45deg)}
.hamburger.is-open .bars span:nth-child(2){opacity:0}
.hamburger.is-open .bars span:nth-child(3){top:6px;transform:rotate(-45deg)}

.m-menu{
  position:fixed;inset:0;background:rgba(11,37,69,.35);
  opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:60;
}
.m-menu.open{opacity:1;pointer-events:auto}
.m-panel{
  position:absolute;top:0;right:0;bottom:0;
  width:min(88vw, 360px);
  background:#fff;padding:1.25rem;
  display:flex;flex-direction:column;gap:.25rem;
  transform:translateX(100%);transition:transform .25s ease;
  box-shadow:-10px 0 30px rgba(11,37,69,.15);
}
.m-menu.open .m-panel{transform:translateX(0)}
.m-close{align-self:flex-end;width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;color:var(--navy);font-size:1.4rem}
.m-panel a.m-link{
  padding:.95rem .5rem;border-bottom:1px solid var(--line);
  font-size:1.05rem;color:var(--navy);font-weight:500;min-height:48px;display:flex;align-items:center;
}
.m-panel a.m-link.is-current{font-weight:600}
.m-panel .btn{margin-top:1.25rem}

/* ---------- hero (home) ---------- */
.hero{
  position:relative;overflow:hidden;
  min-height:clamp(520px, 52vw, 640px);
  display:flex;align-items:center;
  padding-block:clamp(2rem, 5vw, 4rem);
}
.hero-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:78% 42%;
  z-index:0;max-width:none;
}
.hero::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.88) 28%,rgba(255,255,255,.35) 52%,rgba(255,255,255,0) 68%);
}
.hero-inner{position:relative;z-index:2;width:100%}
.hero-copy{max-width:40rem}
.hero-copy > *{min-width:0}
.hero-eyebrow{margin-bottom:1.1rem}
.hero h1{margin-bottom:1.1rem}
.hero-lede{font-size:clamp(1.05rem, 1.6vw, 1.2rem);color:var(--ink);max-width:38ch;margin-bottom:1.25rem;line-height:1.45}
.hero-body{color:var(--text);max-width:46ch;margin-bottom:1.75rem}
.hero-ctas{display:flex;flex-direction:column;align-items:flex-start;gap:.75rem}
@media (min-width:520px){ .hero-ctas{flex-direction:row;flex-wrap:wrap} }
.hero .btn{width:auto}
.hero-script{
  position:absolute;right:clamp(1.25rem, 8vw, 7rem);bottom:clamp(1.5rem, 8vw, 4.5rem);
  z-index:2;
  font-family:var(--script);color:var(--navy);
  font-size:clamp(1.1rem, 2.3vw, 1.55rem);line-height:1.15;
  text-shadow:0 1px 0 rgba(255,255,255,.75);
  max-width:9ch;text-align:left;
}
.hero-script::after{
  content:"";display:block;width:70%;height:6px;margin-top:2px;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'><path d='M2 5 Q 25 1 50 4 T 98 3' stroke='%230b2545' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
}
@media (max-width:699px){
  .hero{
    min-height:clamp(560px, 150vw, 700px);
    align-items:center;
    padding-top:1.5rem;
    padding-bottom:2rem;
  }
  .hero-bg{object-position:92% 38%}
  .hero::after{
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 40%,rgba(255,255,255,.28) 70%,rgba(255,255,255,0) 88%);
  }
  .hero-script{right:6%;bottom:14%}
}

/* ---------- pilot evaluation strip ---------- */
.strip{background:var(--band);padding-block:2rem}
.strip-inner{display:grid;grid-template-columns:1fr;gap:1.5rem;align-items:start}
@media (min-width:820px){ .strip-inner{grid-template-columns:.9fr 2.1fr;gap:2rem;align-items:center} }
.strip-title{font-family:var(--serif);color:var(--navy);font-size:1.05rem;line-height:1.35}
.strip-items{
  display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem 1rem;
}
@media (min-width:560px){ .strip-items{grid-template-columns:repeat(3,1fr)} }
@media (min-width:820px){ .strip-items{grid-template-columns:repeat(6,1fr);gap:1rem} }
.pill-icon{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:.55rem;
  color:var(--navy);font-size:.82rem;font-weight:500;line-height:1.3;min-width:0;
}
.pill-icon .ic{
  width:44px;height:44px;border-radius:999px;background:#dbe8f6;color:var(--blue-ink);
  display:inline-flex;align-items:center;justify-content:center;
}

/* ---------- section: clinician ---------- */
section:not(.hero):not(.strip):not(.sunset):not(.page-intro):not(.closer):not(.doc-hero){padding-block:clamp(3rem, 6vw, 5rem)}
.split{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center}
@media (min-width:900px){ .split{grid-template-columns:1fr 1.15fr;gap:3rem} }
.clinician-copy h2 span.emph{display:block}
.clinician-copy .lede{font-size:clamp(1.05rem,1.5vw,1.2rem);color:var(--ink);margin:1rem 0 1rem;max-width:34ch;line-height:1.4}
.clinician-copy p.body{max-width:44ch}

.three-pillars{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;margin-top:1.5rem}
.pillar{display:flex;flex-direction:column;gap:.6rem;align-items:flex-start}
.pillar .ic{
  width:44px;height:44px;border-radius:999px;background:#dbe8f6;color:var(--blue-ink);
  display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;
}
.pillar h4{font-size:.92rem;line-height:1.3}

.mock{position:relative;background:linear-gradient(180deg,#f4f8fd,#eef4fb);padding:1.2rem;border-radius:22px;box-shadow:var(--shadow)}
.mock-note{
  font-size:.75rem;color:var(--muted);text-align:center;margin-top:.9rem;line-height:1.5;
  max-width:52ch;margin-inline:auto;
}

/* ---------- 4-col feature strip ---------- */
.features{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding-block:clamp(2.5rem,5vw,4rem)}
.feat-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media (min-width:640px){ .feat-grid{grid-template-columns:1fr 1fr;gap:2rem} }
@media (min-width:1000px){ .feat-grid{grid-template-columns:repeat(4,1fr);gap:2rem} }
.feat{display:flex;flex-direction:column;gap:.85rem;min-width:0}
.feat .ic{
  width:44px;height:44px;border-radius:10px;background:#eaf3fb;color:var(--blue-ink);
  display:inline-flex;align-items:center;justify-content:center;
}
.feat h3{font-family:var(--serif);font-weight:500;font-size:1.15rem;color:var(--navy)}
.feat ul{list-style:disc;padding-left:1.15rem;margin:0;color:var(--text);font-size:.92rem;line-height:1.6}
.feat ul li{margin-bottom:.15rem}
.feat p{font-size:.92rem;line-height:1.55;color:var(--text)}
.check-list{list-style:none;padding:0;margin:0;font-size:.92rem;color:var(--text)}
.check-list li{display:flex;gap:.55rem;padding:.15rem 0;line-height:1.5}
.check-list li::before{content:"✓";color:var(--blue-ink);font-weight:700;flex:0 0 auto}
.feat a.inline-link{color:var(--blue-ink);font-weight:600;font-size:.92rem;display:inline-flex;align-items:center;gap:.3rem}
.feat a.inline-link:hover{color:var(--navy)}

/* ---------- evidence + shared goal ---------- */
.evidence{background:var(--band-2)}
.evidence-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
@media (min-width:900px){ .evidence-grid{grid-template-columns:1fr 1fr;gap:3.5rem} }
.ev-block{display:flex;flex-direction:column;gap:.75rem}
.ev-block .ic{
  width:44px;height:44px;border-radius:10px;background:#dbe8f6;color:var(--blue-ink);
  display:inline-flex;align-items:center;justify-content:center;margin-bottom:.25rem;
}
.ev-block h2{margin-bottom:.35rem}
.ev-block p{max-width:52ch;line-height:1.6;color:var(--text)}

/* ---------- sunset CTA ---------- */
.sunset{
  position:relative;overflow:hidden;color:var(--navy);
  min-height:clamp(360px, 40vw, 520px);
  display:flex;align-items:flex-start;
  padding-top:clamp(2.75rem, 6vw, 4.75rem);
  padding-bottom:clamp(6.5rem, 16vw, 10rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 38%),
    url("../assets/sunset.jpg") center center / cover no-repeat;
}
.sunset-inner{position:relative;z-index:2;width:100%;display:grid;grid-template-columns:1fr;gap:1.75rem;align-items:start}
@media (min-width:820px){ .sunset-inner{grid-template-columns:1.35fr .85fr;gap:2rem;align-items:start} }
.sunset h2{
  font-family:var(--serif);color:var(--navy);font-weight:500;line-height:1.15;
  font-size:clamp(1.6rem,3.6vw,2.4rem);
  text-shadow:0 1px 12px rgba(255,255,255,.55);
}
.sunset-tag{color:var(--navy);margin-top:1rem;max-width:44ch;font-size:1.05rem;text-shadow:0 1px 8px rgba(255,255,255,.5)}
.sunset-right{display:flex;flex-direction:column;align-items:flex-start;gap:1.25rem}
@media (min-width:820px){ .sunset-right{align-items:flex-end} }
.sunset-brand{display:flex;flex-direction:column;align-items:flex-start;gap:.2rem}
@media (min-width:820px){ .sunset-brand{align-items:flex-end} }
.sunset-brand .brand-logo{height:46px;width:auto}
.sunset-brand .brand-tag{color:var(--navy);font-size:.7rem}
.sunset .btn{width:auto;min-width:12.5rem;box-shadow:0 8px 24px rgba(11,37,69,.18)}

/* ---------- footer ---------- */
footer{background:#fff;border-top:1px solid var(--line);padding-block:1.5rem;color:var(--muted);font-size:.85rem}
.foot{display:flex;flex-direction:column;gap:.75rem;align-items:flex-start;justify-content:space-between}
@media (min-width:640px){ .foot{flex-direction:row;align-items:center} }
.foot-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.foot-links a:hover{color:var(--navy)}
.foot-note{margin-top:.85rem;max-width:62ch;line-height:1.5;font-size:.78rem}

.feat + .feat{position:relative}
@media (min-width:1000px){
  .feat + .feat::before{
    content:"";position:absolute;left:-1rem;top:0;bottom:0;width:1px;background:var(--line)
  }
}

/* ============================================================
   Inner pages
   ============================================================ */
.page-intro{
  padding-top:clamp(2.75rem, 6vw, 4.75rem);
  padding-bottom:clamp(2.25rem, 5vw, 3.5rem);
  border-bottom:1px solid var(--line);
}
.page-intro.has-photo{
  position:relative;overflow:hidden;
  min-height:clamp(480px, 48vw, 600px);
  display:flex;align-items:center;
  border-bottom:0;
  padding-top:clamp(2.5rem, 5vw, 4.25rem);
  padding-bottom:clamp(2.5rem, 5vw, 4.25rem);
}
.page-intro-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:80% 42%;
  z-index:0;max-width:none;
}
.page-intro.has-photo::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 30%,rgba(255,255,255,.42) 54%,rgba(255,255,255,0) 72%);
}
.page-intro.has-photo .wrap{position:relative;z-index:2;width:100%}
.page-intro.has-photo .page-copy{max-width:40rem}
.page-intro.has-photo .page-copy > *{min-width:0}
.page-intro.has-photo .btn{width:auto}
@media (max-width:699px){
  .page-intro.has-photo{min-height:clamp(520px, 145vw, 680px);align-items:center}
  .page-intro-bg{object-position:92% 40%}
  .page-intro.has-photo::after{
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.92) 42%,rgba(255,255,255,.32) 72%,rgba(255,255,255,0) 90%);
  }
}
.page-intro .eyebrow{margin-bottom:.9rem}
.page-intro h1{max-width:18ch;margin-bottom:1.1rem}
.page-lede{
  font-size:clamp(1.05rem, 1.7vw, 1.22rem);
  color:var(--ink);
  max-width:42rem;
  line-height:1.5;
  margin-bottom:0;
}
.page-intro .page-lede + .page-lede,
.page-intro .page-body{margin-top:1rem}
.page-body{max-width:46rem;color:var(--text);line-height:1.65}
.page-intro .hero-ctas{margin-top:1.75rem}

.prose{max-width:var(--measure)}
.prose p,
.prose li{line-height:1.65}
.section-kicker{
  font-family:var(--serif);
  color:var(--navy);
  font-size:clamp(1.05rem, 1.6vw, 1.25rem);
  line-height:1.4;
  max-width:36ch;
  margin:0 0 1rem;
}

.band{background:var(--band)}
.band-2{background:var(--band-2)}
.band-navy{
  background:var(--navy);
  color:#d7e3f2;
}
.band-navy h2,
.band-navy h3{color:#fff}
.band-navy p{color:#d7e3f2;max-width:44rem}
.band-navy .muted{color:#9db0c8}

.narrow{max-width:44rem}

.cap-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-top:1px solid var(--line);
}
@media (min-width:800px){ .cap-grid{grid-template-columns:1fr 1fr} }
.cap{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.9rem 1.1rem;
  padding:1.4rem 0;
  border-bottom:1px solid var(--line);
}
@media (min-width:800px){
  .cap{padding:1.55rem 1.6rem 1.55rem 0}
  .cap:nth-child(odd){padding-right:2rem;border-right:1px solid var(--line)}
  .cap:nth-child(even){padding-left:2rem}
  .cap:nth-last-child(-n+2){border-bottom:0}
}
.cap-num{
  font-family:var(--serif);
  color:var(--blue-ink);
  font-size:1.15rem;
  font-weight:500;
  line-height:1.2;
  padding-top:.1rem;
}
.cap p{margin:0;font-size:.98rem}

.notice{
  border-left:3px solid var(--navy);
  background:var(--band-2);
  padding:1.25rem 1.4rem 1.15rem;
  border-radius:0 12px 12px 0;
}
.notice h3{font-size:1.15rem;margin-bottom:.45rem}
.notice p:last-child{margin-bottom:0}
.notice-urgent{
  border-left-color:#9a3b2f;
  background:#fbf4f2;
}
.notice-urgent h3{color:#5c221c}

.compare{
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
}
@media (min-width:760px){ .compare{grid-template-columns:1fr 1fr} }
.compare-col{background:#fff;padding:1.6rem 1.7rem}
.compare-col.is-limit{background:var(--band-2)}
.compare-col h3{margin-bottom:1rem}
.compare-col ul{margin:0;padding:0;list-style:none}
.compare-col li{
  padding:.55rem 0 .55rem 1.15rem;
  position:relative;
  border-top:1px solid var(--line);
  font-size:.95rem;
  line-height:1.5;
}
.compare-col li:first-of-type{border-top:0}
.compare-col.is-do li::before{content:"";position:absolute;left:0;top:.95rem;width:7px;height:7px;border-radius:50%;background:var(--blue-ink)}
.compare-col.is-limit li::before{content:"";position:absolute;left:0;top:.95rem;width:7px;height:1.5px;background:var(--navy)}

.spec{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-top:1px solid var(--line);
}
.spec-row{
  display:grid;
  grid-template-columns:1fr;
  gap:.35rem;
  padding:1.1rem 0;
  border-bottom:1px solid var(--line);
}
@media (min-width:700px){
  .spec-row{grid-template-columns:14rem 1fr;gap:1.5rem;align-items:baseline}
}
.spec-row strong{color:var(--navy);font-weight:600;font-size:.95rem}
.spec-row p{margin:0;font-size:.95rem}

.steps{
  display:grid;
  grid-template-columns:1fr;
  gap:1.75rem;
  counter-reset:step;
}
@media (min-width:860px){ .steps{grid-template-columns:repeat(3,1fr);gap:2rem} }
.step{position:relative;padding-top:.25rem}
.step h3{margin:.15rem 0 .65rem}
.step p{margin:0;font-size:.95rem}
.step-label{
  display:block;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
  margin-bottom:.55rem;
}

.essay{
  display:grid;
  grid-template-columns:1fr;
  gap:2.25rem;
}
.essay-item{padding-top:2rem;border-top:1px solid var(--line)}
.essay-item:first-child{padding-top:0;border-top:0}
.essay-index{
  font-family:var(--serif);
  color:var(--blue-ink);
  font-size:.95rem;
  margin-bottom:.5rem;
}
.essay-item h2{font-size:clamp(1.35rem, 2.6vw, 1.75rem);margin-bottom:.75rem}
.essay-item p{max-width:48rem}

.cat-list{list-style:none;padding:0;margin:0;border-top:1px solid var(--line)}
.cat-list li{
  padding:.95rem 0;
  border-bottom:1px solid var(--line);
  color:var(--navy);
  font-weight:500;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  align-items:baseline;
}
.cat-list span{color:var(--muted);font-weight:400;font-size:.85rem}

.quote-block{
  max-width:34rem;
}
.quote-block p{
  font-family:var(--serif);
  font-size:clamp(1.45rem, 3vw, 2rem);
  color:var(--navy);
  line-height:1.25;
  margin:0;
}
.north-star{
  text-align:center;
  padding-block:clamp(3.5rem, 8vw, 6rem);
}
.north-star .script-line{
  font-family:var(--script);
  font-size:clamp(1.8rem, 4vw, 2.6rem);
  color:var(--navy);
  line-height:1.2;
}
.north-star .script-line::after{
  content:"";display:block;width:5.5rem;height:6px;margin:8px auto 0;
  background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8'><path d='M2 5 Q 25 1 50 4 T 98 3' stroke='%230b2545' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
}

/* legal / document pages */
.doc-hero{padding-top:clamp(2.5rem, 5vw, 4rem);padding-bottom:1.25rem}
.doc-layout{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
  padding-bottom:clamp(3rem, 6vw, 5rem);
}
@media (min-width:920px){
  .doc-layout{grid-template-columns:15.5rem minmax(0, 44rem);gap:4rem;align-items:start}
}
.doc-toc{
  position:sticky;top:5.25rem;
  padding-top:.25rem;
}
.doc-toc p{
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
  margin-bottom:.65rem;
}
.doc-toc ol{list-style:none;margin:0;padding:0}
.doc-toc a{
  display:block;
  padding:.42rem 0;
  font-size:.9rem;
  color:var(--ink);
  border-bottom:1px solid var(--line);
}
.doc-toc a:hover{color:var(--blue-ink)}
.doc-section{padding-top:2.25rem;scroll-margin-top:5.5rem}
.doc-section:first-child{padding-top:.25rem}
.doc-section + .doc-section{border-top:1px solid var(--line);margin-top:2.25rem}
.doc-section h2{font-size:clamp(1.35rem, 2.4vw, 1.7rem);margin-bottom:.85rem}
.doc-section ul{margin:.25rem 0 1rem;padding-left:1.15rem}
.doc-section li{margin:.35rem 0;line-height:1.55}
.doc-meta{font-size:.85rem;color:var(--muted);margin-top:.75rem}

/* contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:2.5rem;
  align-items:start;
}
@media (min-width:900px){
  .contact-grid{grid-template-columns:1fr 1.15fr;gap:3.5rem}
  .contact-grid .form-card{order:2}
}
.reasons{
  display:grid;
  grid-template-columns:1fr;
  gap:.5rem;
}
@media (min-width:520px){ .reasons{grid-template-columns:1fr 1fr} }
.reason{
  display:block;
  border:1px solid var(--line);
  border-radius:12px;
  padding:.8rem .95rem;
  cursor:pointer;
  font-size:.9rem;
  font-weight:500;
  color:var(--navy);
  background:#fff;
  transition:border-color .15s ease, background .15s ease;
}
.reason:hover{border-color:#c5d3e6}
.reason:has(input:checked){
  border-color:var(--navy);
  background:var(--band);
}
.reason input{position:absolute;opacity:0;pointer-events:none}
.fields{display:grid;gap:1rem;margin-top:1.25rem}
.field{display:flex;flex-direction:column;gap:.4rem}
.field-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media (min-width:560px){ .field-row{grid-template-columns:1fr 1fr} }
.field label{font-size:.85rem;font-weight:600;color:var(--navy)}
.field .hint{font-size:.78rem;color:var(--muted);font-weight:400}
.field input,
.field textarea,
.field select{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:.85rem 1rem;
  color:var(--ink);
  min-height:48px;
}
.field textarea{min-height:140px;resize:vertical;line-height:1.5}
.field input:focus,
.field textarea:focus,
.field select:focus{outline:2px solid var(--blue-ink);outline-offset:1px;border-color:transparent}
.check-ack{
  display:flex;gap:.65rem;align-items:flex-start;
  font-size:.88rem;color:var(--text);line-height:1.45;
}
.check-ack input{margin-top:.25rem;accent-color:var(--navy);width:16px;height:16px;flex:0 0 auto}
.form-status{
  display:none;
  margin-top:1rem;
  padding:1rem 1.1rem;
  border-radius:12px;
  background:var(--band);
  color:var(--navy);
  font-size:.95rem;
}
.form-status.show{display:block}
.form-card{
  background:var(--band-2);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.35rem 1.35rem 1.5rem;
}

.closer{
  padding-block:clamp(3rem, 6vw, 4.5rem);
  border-top:1px solid var(--line);
}
.closer-inner{display:flex;flex-direction:column;gap:1.25rem;align-items:flex-start;max-width:40rem}
.closer h2{font-size:clamp(1.45rem, 3vw, 2rem)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none !important}
}
