/* ==========================================================================
   CAA.com - "The Charter" design system (concept r2-charter, ported to prod)
   Archetype: Neo-Classic Heritage (navy / gold editorial authority)
   Display: Spectral   Body/UI: Hanken Grotesk   CTA fill: Ember
   Legacy class + token NAMES are kept so every page inherits the new skin;
   their VALUES now carry the Charter palette. Source of truth, never hand-edit
   design/. Rebuild: node build/build.mjs
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette (named) */
  --navy:        #081D3B;   /* Charter Navy: structure, hero, dark bands, footer */
  --navy-deep:   #061632;   /* deeper navy: footer floor */
  --navy-panel:  #0C264B;   /* one step up, panels on navy */
  --parchment:   #F3EDE1;   /* warm cream canvas */
  --paper:       #FBF8F2;   /* lighter paper: cards, inputs, alt bands */
  --card:        #FBF8F2;
  --sand:        #EDE5D4;   /* deeper warm alt band (banding contrast) */
  --sand-soft:   #F6EFDF;
  --ink:         #20232B;   /* deep warm charcoal text on light */
  --slate:       #5F6470;   /* muted secondary text */
  --gold:        #C9A227;   /* Aged Gold: hairlines, rules, numerals, seal */
  --gold-lt:     #EACB86;   /* light gold: on-navy kickers + rules */
  --gold-deep:   #9A7B18;   /* readable gold text on light (cred, small accent) */
  --ember:       #F0561E;   /* THE CTA fill (single conversion color) */
  --ember-dk:    #D2440F;   /* ember hover */
  --fog:         #E3DBCB;   /* warm dividers on light */
  --hairline:    #E3DBCB;
  --line:        #E3DBCB;
  --line-2:      #D8CFBC;
  --bone:        #F1EADB;   /* warm ivory text on navy */
  --bone-mut:    #A9B2C4;   /* muted text on navy */
  --navy-line:   rgba(233,203,134,.24); /* gold hairline on navy */
  /* legacy aliases still referenced by inline styles */
  --clay:        #9A7B18;   /* small accent text on light -> deep gold */
  --caa-navy:    #081D3B;
  --caa-gold:    #EACB86;   /* used only on navy bands (must stay legible on navy) */
  --green-lite:  #EACB86;

  /* type */
  --f-display: "Spectral", Georgia, "Times New Roman", serif;
  --f-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-hero: clamp(2.7rem, 1.2rem + 5.4vw, 4.6rem);
  --fs-h1:   clamp(2.2rem, 1.2rem + 3.4vw, 3.4rem);
  --fs-h2:   clamp(1.7rem, 1.15rem + 1.9vw, 2.4rem);
  --fs-h3:   clamp(1.2rem, 1.02rem + 0.7vw, 1.45rem);
  --fs-lead: clamp(1.08rem, 1rem + 0.4vw, 1.22rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --fs-small: 0.9rem;
  --fs-kicker: 0.75rem;

  /* spacing */
  --s1:4px; --s2:8px; --s3:12px; --s4:16px; --s5:24px; --s6:32px;
  --s7:48px; --s8:64px; --s9:96px; --s10:128px;

  /* radius (editorial, near-sharp) */
  --r1:6px; --r2:8px; --r3:10px; --r-pill:999px;
  --r-sm:8px; --r-md:12px; --r-lg:16px;

  /* shadow */
  --sh1: 0 1px 2px rgba(8,29,59,.06), 0 4px 14px rgba(8,29,59,.06);
  --sh2: 0 2px 6px rgba(8,29,59,.08), 0 18px 40px rgba(8,29,59,.14);
  --sh-glass: 0 4px 12px rgba(8,29,59,.10), 0 24px 56px rgba(8,29,59,.18);

  /* motion */
  --t-fast: 150ms; --t-base: 240ms; --t-slow: 520ms;
  --ease: cubic-bezier(.22,.61,.36,1);

  --wrap: 1220px;
}

/* ---------- 2. Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--parchment);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img,svg,video { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
svg:not([class]) { width: 1.15em; height: 1.15em; }
a { color: inherit; text-decoration: none; }
strong,b { font-weight: 700; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; color: var(--ink); }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--gold-lt); color: var(--navy); }

/* ---------- 3. Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 26px; }
.wrap-narrow { max-width: 820px; }
.section { padding-block: clamp(60px, 4vw + 40px, 104px); }
.section--tight { padding-block: clamp(44px, 3vw + 28px, 72px); }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--bone); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--bone); }
.section--navy p { color: var(--bone-mut); }
.measure { max-width: 68ch; }
.center { text-align: center; }

.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600;
  font-size: var(--fs-kicker); letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.kicker::before, .eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; flex-shrink: 0; }
.kicker--plain::before { display: none; }
.center .kicker::before, .center .eyebrow::before, .kicker.center::before { display: none; }
.section--navy .kicker, .caa-band .kicker, .cta-band .kicker, .setpiece .kicker, .on-navy .kicker { color: var(--gold-lt); }
.section--navy .kicker::before, .caa-band .kicker::before, .cta-band .kicker::before, .setpiece .kicker::before { background: var(--gold-lt); }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--slate); }
.tnum { font-variant-numeric: tabular-nums; }

/* ==========================================================================
   4. HEADER  (utility bar + sticky masthead; navy variant on .navytop home)
   ========================================================================== */
.topbar { background: var(--navy-deep); color: var(--bone-mut); font-size: var(--fs-small); border-bottom: 1px solid var(--navy-line); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: var(--s4); min-height: 44px; }
.topbar__nav { display: flex; align-items: stretch; }
.topbar__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  color: var(--bone); font-weight: 600; padding: 11px 13px; white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.topbar__nav .topbar__link:first-child { padding-left: 0; }
.topbar__link:hover { color: var(--gold-lt); }
.topbar__link svg { width: 14px; height: 14px; color: var(--gold-lt); }
.topbar__link.is-active { color: var(--gold-lt); }
.topbar__link.is-active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 0; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.topbar__nav .topbar__link:first-child.is-active::after { left: 0; }
.topbar__end { display: flex; align-items: center; }
.topbar__verify { padding-right: 0; }

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--parchment); border-bottom: 1px solid var(--fog);
  box-shadow: 0 0 0 rgba(8,29,59,0);
  transition: box-shadow .3s var(--ease);
}
.masthead.is-scrolled { box-shadow: 0 6px 24px rgba(8,29,59,.08); }
.masthead__row { display: flex; align-items: center; gap: var(--s5); min-height: 78px; transition: min-height .3s var(--ease); }
.masthead.is-scrolled .masthead__row { min-height: 62px; }

/* Logo: dark lockup (light bar) / white lockup (navy bar) / mark (scrolled) */
.logo { display: inline-flex; align-items: center; flex-shrink: 0; overflow: hidden; }
.logo__img { height: 48px; width: auto; display: block; transition: max-width .3s var(--ease), opacity .3s var(--ease); }
.logo__lockup { max-width: 200px; opacity: 1; }
.logo__lockup-white { max-width: 0; opacity: 0; }
.logo__mark { max-width: 0; opacity: 0; }
/* Logo stays the full lockup at full size at every scroll position (no collapse-to-mark). */
.masthead.is-scrolled .logo__lockup { max-width: 200px; opacity: 1; }
.masthead.is-scrolled .logo__mark { max-width: 0; opacity: 0; }
/* navy-top homepage: white lockup always, no collapse (keeps contrast on navy) */
.navytop .masthead { background: var(--navy); border-bottom: 1px solid var(--navy-line); }
.navytop .masthead.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.28); }
.navytop .logo__lockup { max-width: 0 !important; opacity: 0 !important; }
.navytop .logo__lockup-white { max-width: 200px; opacity: 1; }
.navytop .masthead.is-scrolled .logo__lockup-white { max-width: 200px; opacity: 1; }
.navytop .masthead.is-scrolled .logo__mark { max-width: 0; opacity: 0; }

.mainnav { margin-left: auto; }
.mainnav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.mainnav__item { display: flex; }
.mainnav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px;
  font-family: var(--f-body); font-size: .96rem; font-weight: 600; color: var(--ink);
  background: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.mainnav__link::after { content: ""; position: absolute; left: 12px; right: 100%; bottom: 2px; height: 2px; background: var(--gold); transition: right var(--t-base) var(--ease); }
.mainnav__link:hover::after, .mainnav__item.is-active > .mainnav__link::after { right: 12px; }
.mainnav__link:hover, .mainnav__item.is-active > .mainnav__link { color: var(--navy); }
.navytop .mainnav__link { color: var(--bone); }
.navytop .mainnav__link:hover, .navytop .mainnav__item.is-active > .mainnav__link { color: var(--gold-lt); }
.navytop .mainnav__link::after { background: var(--gold-lt); }
.mega__chev { display: inline-flex; }
.mega__chev svg { width: 15px; height: 15px; transition: transform var(--t-fast) var(--ease); }
.has-mega.is-open > .mainnav__link .mega__chev svg { transform: rotate(180deg); }

.masthead__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: var(--s5); }

/* Mega panel (kept for parity; current IA renders flat links, panels inert) */
.mega__panel {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 60;
  background: var(--paper); border-top: 1px solid var(--fog); border-bottom: 1px solid var(--fog);
  box-shadow: var(--sh2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-mega.is-open > .mega__panel { opacity: 1; visibility: visible; transform: none; }
.mega__btn { position: relative; }
.has-mega.is-open > .mega__btn::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 30px; }
.mega__inner { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 48px; padding-block: 44px 46px; align-items: start; }
.mega__col { min-width: 0; }
.mega__col--lead { padding-right: 48px; border-right: 1px solid var(--fog); }
.mega__eyebrow { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: var(--s4); line-height: 1; }
.mega__lead { display: inline-block; font-family: var(--f-display); font-size: 1.24rem; font-weight: 600; color: var(--ink); line-height: 1.2; letter-spacing: -.01em; }
.mega__lead svg { display: inline-block; vertical-align: -2px; width: 17px; height: 17px; margin-left: 6px; color: var(--ember); }
.mega__desc { color: var(--slate); font-size: .92rem; line-height: 1.6; margin-top: var(--s3); }
.mega__leadlinks { list-style: none; padding: 0; margin: var(--s5) 0 0; display: flex; flex-direction: column; gap: 12px; }
.mega__leadlinks a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.mega__leadlinks a svg { width: 15px; height: 15px; color: var(--ember); }
.mega__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.mega__links a { display: block; padding: 9px 10px; margin: 0 -10px; border-radius: var(--r1); color: var(--ink); font-weight: 500; font-size: .95rem; line-height: 1.35; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease); }
.mega__links a:hover { background: rgba(8,29,59,.05); color: var(--navy); }

.burger { display: none; }
.mobile { display: none; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: var(--r1); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; text-align: center;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(.975); }
.btn--primary { background: var(--ember); color: #fff; box-shadow: var(--sh1); }
.btn--primary:hover { background: var(--ember-dk); color: #fff; }
.btn--dark { background: var(--navy); color: var(--bone); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy-panel); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { border-color: var(--gold); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--ink); border-color: transparent; padding-inline: 6px; }
.btn--ghost:hover { color: var(--navy); }
.btn--ghost-navy { background: transparent; color: var(--bone); border-color: var(--navy-line); }
.btn--ghost-navy:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn--gold { background: #C9A227; color: #20232B; border-color: #C9A227; }
.btn--gold:hover { background: #d8b647; color: #20232B; }
.btn--navy-out { background: transparent; color: var(--bone); border-color: var(--navy-line); }
.btn--navy-out:hover { background: rgba(255,255,255,.08); border-color: var(--gold-lt); color: var(--gold-lt); }
.btn--yellow { background: #C9A227; color: #20232B; border-color: #C9A227; }
.btn--yellow:hover { background: #d8b647; color: #20232B; }
.btn--light-out { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--light-out:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--sm { padding: 11px 18px; font-size: .88rem; }
.btn--pill { border-radius: var(--r1); }
.btn--pill.btn--sm { padding: 10px 16px; font-size: .86rem; }
.btn--block { width: 100%; }

.link-arrow, .linkarrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-body); font-weight: 700; font-size: .95rem; color: var(--navy); }
.link-arrow svg, .linkarrow svg { width: 17px; height: 17px; color: var(--ember); transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg, .linkarrow:hover svg { transform: translateX(4px); }
.section--navy .link-arrow, .section--navy .linkarrow, .setpiece .link-arrow { color: var(--gold-lt); }

/* ==========================================================================
   6. HERO B - Designation DNA (framed inset) + stat rail
   ========================================================================== */
.herob { position: relative; min-height: 92vh; display: flex; flex-direction: column; background: var(--navy); color: var(--bone); overflow: hidden; }
.herob::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(120% 92% at 88% 6%, rgba(28,55,104,.5) 0%, rgba(8,29,59,0) 56%); pointer-events: none; }
/* Full-bleed hero background: the poster still is the LCP paint and the reduced-motion
   fallback; the muted video loop plays over it. The scrim keeps the left copy on
   near-solid navy while the video shows through on the right. */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .hero-still, .hero-bg .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero-bg .hero-video { z-index: 1; }
@media (prefers-reduced-motion: reduce) { .hero-bg .hero-video { display: none; } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(90deg, #061632 0%, rgba(8,29,59,.90) 34%, rgba(8,29,59,.42) 66%, rgba(8,29,59,.15) 100%),
  linear-gradient(0deg, #061632 2%, rgba(8,29,59,.30) 42%, rgba(8,29,59,.40) 100%); }
.herob .wrap { position: relative; z-index: 2; }
/* Body flexes to fill the hero and vertically centers the copy; the stat rail
   sits at the bottom INSIDE .herob so the full-bleed video + scrim continue
   behind it (no separate navy slab). */
.herob__body { position: relative; z-index: 2; flex: 1 1 auto; display: flex; align-items: center; }
.herob__grid { position: relative; display: grid; grid-template-columns: minmax(0, 620px); gap: 64px; align-items: center; padding: 86px 0 98px; }
.herob__copy { max-width: 620px; }
.hero__eyebrow { color: var(--gold-lt); }
.hero__title { font-size: var(--fs-hero); font-weight: 600; color: var(--bone); line-height: 1.05; letter-spacing: -.015em; }
.hero__title em { font-style: italic; font-weight: 600; color: var(--gold-lt); }
.hero__lead { margin-top: 24px; font-size: var(--fs-lead); color: #C6CFDE; max-width: 56ch; }
.hero__cta { margin-top: 34px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--bone); font-weight: 700; }
.hero__phone svg { width: 19px; height: 19px; color: var(--gold-lt); }
.hero__phone b { font-variant-numeric: tabular-nums; }
.herob__media { position: relative; }
.herob__frame { position: relative; margin: 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--navy-line); box-shadow: 0 2px 8px rgba(0,0,0,.35), 0 34px 72px rgba(0,0,0,.5); }
.herob__frame::after { content: ""; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(233,203,134,.16); pointer-events: none; }
.herob__img { display: block; width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; }
.herob__chip { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: flex-start; gap: 11px; padding: 14px 16px; border-radius: 11px; background: rgba(6,22,50,.86); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); border: 1px solid var(--navy-line); color: var(--bone); font-size: .94rem; line-height: 1.4; }
.herob__chip svg { width: 20px; height: 20px; color: var(--gold-lt); flex-shrink: 0; margin-top: 1px; }
.herob__chip b { font-weight: 700; color: #fff; }

.statrail { background: var(--navy); }
/* Inside the hero the rail is transparent so the video/scrim shows behind it. */
.herob .statrail { position: relative; z-index: 2; background: transparent; }
.statrail__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--navy-line); }
.statrail__cell { padding: 34px 34px 36px; border-left: 1px solid var(--navy-line); }
.statrail__cell:first-child { border-left: 0; padding-left: 0; }
.statrail__num { display: block; font-family: var(--f-display); font-weight: 600; font-size: clamp(2.7rem, 2rem + 2.6vw, 3.5rem); line-height: .95; letter-spacing: -.02em; color: var(--gold-lt); }
.statrail__cell span { display: block; margin-top: 14px; color: var(--bone-mut); font-size: .9rem; line-height: 1.5; max-width: 30ch; }
/* Contact variant: the rail carries contact methods, so the value is a phone/
   email/hours line, not a headline stat. Scale it down so it fits, and make the
   phone + email tappable in gold. */
.statrail--contact { padding-top: 6px; }
.statrail--contact .statrail__num { font-size: clamp(1.35rem, 1.05rem + 1vw, 1.75rem); line-height: 1.1; }
.statrail--contact .statrail__num a { color: var(--gold-lt); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .18s ease; }
.statrail--contact .statrail__num a:hover { border-bottom-color: var(--gold-lt); }

/* ---------- 7. Section headers ---------- */
.sec-head { max-width: 680px; margin-bottom: var(--s7); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: var(--fs-h2); margin-top: 4px; }
.sec-head p { margin-top: 14px; color: var(--slate); font-size: var(--fs-lead); line-height: 1.55; }
.section--navy .sec-head p { color: var(--bone-mut); }

/* ---------- 8. Cards, grids, features ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.card { background: var(--paper); border: 1px solid var(--fog); border-top: 3px solid var(--gold); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); }
.card--link { transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease); color: var(--ink); display: block; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-top-color: var(--gold); border-color: var(--gold); color: var(--ink); }
.card h3 { font-size: var(--fs-h3); margin-bottom: var(--s2); }
.card p { color: var(--slate); font-size: .97rem; }
.card__ico { width: 48px; height: 48px; border-radius: var(--r2); background: rgba(8,29,59,.05); color: var(--navy); display: grid; place-items: center; margin-bottom: var(--s4); }
.card__ico svg { width: 24px; height: 24px; }

.feature { display: grid; grid-template-columns: 1.02fr 1fr; gap: 64px; align-items: center; }
.feature--flip .feature__media { order: -1; }
.feature__copy .lead { margin-top: 16px; color: var(--slate); font-size: var(--fs-lead); }
.feature__media { position: relative; }
.feature__media img { border-radius: var(--r3); box-shadow: var(--sh2); width: 100%; }
.feature__cap { text-align: center; color: var(--slate); font-size: .9rem; margin-top: 16px; font-style: italic; font-family: var(--f-display); }

/* directory verification mock */
.verifycard { background: var(--paper); border: 1px solid var(--fog); border-radius: var(--r3); box-shadow: var(--sh2); padding: 26px; position: relative; }
.verifycard::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--gold); border-radius: var(--r3) var(--r3) 0 0; }
.verifycard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.verifycard__head .kicker { margin: 0; }
.verifycard__ico { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--fog); display: grid; place-items: center; color: var(--navy); }
.verifycard__ico svg { width: 19px; height: 19px; }
.verifycard__row { display: flex; align-items: center; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--fog); }
.verifycard__body { min-width: 0; }
.verifycard__body h4 { font-size: 1.2rem; margin: 0; line-height: 1.2; }
.verifycard__cred { color: var(--gold-deep); font-weight: 600; font-size: .9rem; margin-top: 3px; letter-spacing: .02em; }
.verifycard__badge { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; background: rgba(44,94,79,.1); color: #2C5E4F; font-size: .8rem; font-weight: 700; padding: 6px 11px; border-radius: var(--r-pill); }
.verifycard__badge svg { width: 15px; height: 15px; }
.verifycard__facts { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 13px; }
.verifycard__facts li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: .94rem; }
.verifycard__facts svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold-lt); display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; flex-shrink: 0; letter-spacing: .02em; }

/* ---------- 9. Breadcrumbs ---------- */
/* Legacy standalone band (no longer emitted; kept for compatibility). */
.crumbs { font-size: var(--fs-small); color: var(--slate); padding-block: var(--s5) 0; background: var(--parchment); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--navy); }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* In-header breadcrumb: sits inside the header band, on-color, above a gold hairline
   that echoes the stat-rail treatment. Color adapts to the header's background. */
.pgh-crumbs { position: relative; z-index: 2; font-size: var(--fs-small); padding-bottom: 16px; margin-bottom: clamp(20px, 2.4vw, 30px); border-bottom: 1px solid rgba(201,162,39,.34); }
.pgh-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pgh-crumbs a { color: var(--slate); transition: color var(--t-fast) var(--ease); }
.pgh-crumbs a:hover { color: var(--gold-deep); }
.pgh-crumbs [aria-current] { color: var(--ink); font-weight: 600; }
.pgh-crumbs__sep { display: inline-flex; }
.pgh-crumbs__sep svg { width: 13px; height: 13px; color: var(--gold-deep); opacity: .8; transform: rotate(-90deg); }
/* On the navy A1 band: muted-bone links, gold hover, gold-on-navy hairline. */
.pgh--navy .pgh-crumbs { border-bottom-color: var(--navy-line); }
.pgh--navy .pgh-crumbs a { color: var(--bone-mut); }
.pgh--navy .pgh-crumbs a:hover { color: var(--gold-lt); }
.pgh--navy .pgh-crumbs [aria-current] { color: var(--bone); }
.pgh--navy .pgh-crumbs__sep svg { color: var(--gold-lt); }

/* ---------- 10. Article / guide prose ---------- */
.doc { display: grid; grid-template-columns: 250px 1fr; gap: var(--s8); align-items: start; }
.toc { position: sticky; top: 92px; font-size: .9rem; display: flex; flex-direction: column; gap: var(--s5); }
.toc__label { font-size: var(--fs-kicker); letter-spacing: .14em; text-transform: uppercase; color: var(--slate); font-weight: 700; margin-bottom: var(--s3); }
.toc ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.toc ol a { display: block; padding: 8px 12px; border-left: 2px solid var(--fog); color: var(--slate); }
.toc ol a:hover, .toc ol a.is-active { color: var(--navy); border-left-color: var(--gold); background: rgba(8,29,59,.04); }

.prose { max-width: 74ch; }
.prose > * + * { margin-top: var(--s5); }
.prose h2 { font-size: var(--fs-h2); margin-top: var(--s8); scroll-margin-top: 92px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-h3); margin-top: var(--s6); }
.prose p, .prose li { font-size: 1.07rem; line-height: 1.72; color: #33373f; }
.prose ul, .prose ol { padding-left: var(--s5); display: flex; flex-direction: column; gap: var(--s2); }
.prose li::marker { color: var(--gold-deep); }
.prose a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(201,162,39,.6); text-underline-offset: 3px; font-weight: 600; }
.prose a:hover { text-decoration-color: var(--gold); }
.analogy-open {
  font-family: var(--f-display); font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
  font-weight: 400; font-style: italic; line-height: 1.4; color: var(--navy);
  padding-left: var(--s5); border-left: 3px solid var(--gold);
}
.analogy-open em { font-style: italic; color: var(--gold-deep); }
.doc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s5); }

/* pros / cons */
.proscons { margin-block: var(--s6); border: 1px solid var(--fog); border-radius: var(--r-md); overflow: hidden; background: var(--paper); }
.proscons table { width: 100%; border-collapse: collapse; }
.proscons thead th { background: var(--navy); color: var(--bone); font-family: var(--f-display); font-weight: 600; font-size: 1rem; text-align: left; padding: 15px var(--s5); width: 50%; }
.proscons thead th + th { border-left: 1px solid var(--navy-line); }
.proscons td { padding: 12px var(--s5); font-size: .96rem; color: #33373f; vertical-align: top; border-top: 1px solid var(--fog); width: 50%; }
.proscons td + td { border-left: 1px solid var(--fog); }
.proscons td span { display: inline-flex; gap: 9px; align-items: flex-start; }
.proscons td svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.proscons .pro svg { color: #2C5E4F; }
.proscons .con svg { color: #B4451F; }

/* considerations checklist */
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s4); }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.checklist svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.checklist b { font-weight: 700; color: var(--navy); }
.checklist span { color: var(--ink); }
/* checklist on navy bands (editorial "what you will never find here") */
.section--navy .checklist span, .checklist--navy span { color: var(--bone); }
.section--navy .checklist b, .checklist--navy b { color: #fff; }
.section--navy .checklist svg, .checklist--navy svg { color: var(--gold-lt); }

/* ---------- rich-page helpers (bespoke company/trust pages) ---------- */
.pagehero { max-width: 900px; }
.pagehero__title { font-size: var(--fs-h1); margin-top: 4px; text-wrap: balance; }
.pagehero__lead { margin-top: 16px; max-width: 68ch; }
/* numbered flow cards */
.flowcard { position: relative; background: var(--paper); border: 1px solid var(--fog); border-top: 3px solid var(--gold); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); }
.flowcard__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold-lt); font-family: var(--f-display); font-weight: 600; font-size: 1.35rem; line-height: 1; margin-bottom: var(--s4); font-variant-numeric: tabular-nums; }
.flowcard h3 { font-size: var(--fs-h3); margin-bottom: var(--s2); }
.flowcard p { color: var(--slate); font-size: .97rem; line-height: 1.6; }

/* freshness stamp */
.stamp { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-small); font-weight: 500; color: var(--slate); background: var(--paper); border: 1px solid var(--fog); border-radius: var(--r-pill); padding: 6px 14px; font-variant-numeric: tabular-nums; }
.stamp svg { width: 16px; height: 16px; color: var(--gold-deep); }
.stamp b { color: var(--ink); font-weight: 700; }

/* rates tables (navy header band) */
.table-scroll { border: 1px solid var(--fog); border-radius: var(--r-md); background: var(--paper); overflow: hidden; box-shadow: var(--sh1); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.rates { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; min-width: 560px; }
table.rates thead th { background: var(--navy); color: var(--bone); text-align: left; font-family: var(--f-body); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 15px var(--s5); white-space: nowrap; }
table.rates thead th + th { border-left: 1px solid var(--navy-line); }
table.rates tbody tr { border-bottom: 1px solid var(--fog); transition: background var(--t-fast); }
table.rates tbody tr:last-child { border-bottom: none; }
table.rates tbody tr:hover { background: rgba(8,29,59,.03); }
table.rates td { padding: 16px var(--s5); font-size: .95rem; vertical-align: middle; }
table.rates .carrier { font-weight: 600; color: var(--ink); }
table.rates .carrier small { display: block; font-weight: 400; color: var(--slate); font-size: .82rem; margin-top: 2px; }
table.rates .rate { font-family: var(--f-display); font-size: 1.35rem; font-weight: 600; color: var(--navy); }
.ambest { display: inline-flex; align-items: center; font-size: .78rem; font-weight: 700; color: var(--navy); background: rgba(8,29,59,.06); border: 1px solid var(--fog); border-radius: 5px; padding: 2px 9px; letter-spacing: .02em; }
.rates-note { font-size: var(--fs-small); color: var(--slate); margin-top: var(--s4); }
.rates-note.center { text-align: center; }
.rates-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ---------- 11. Author byline ---------- */
.byline { display: flex; flex-wrap: wrap; gap: var(--s5); align-items: center; padding-block: var(--s4); border-block: 1px solid var(--fog); margin-block: var(--s6); font-size: .9rem; }
.byline__person { display: flex; align-items: center; gap: var(--s3); }
.byline__person b { display: block; color: var(--ink); }
.byline__person span { color: var(--slate); }

/* ==========================================================================
   12. HOMEPAGE  (Hero B + premise + belief trio + steps + navy set-piece)
   ========================================================================== */
/* honest-premise editorial statement + belief trio */
.v3believe__lead { max-width: 900px; margin-inline: auto; margin-bottom: clamp(38px, 4.5vw, 60px); text-align: center; }
.v3believe__lead .kicker { margin-inline: auto; }
.v3believe__statement { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.5rem, 1.05rem + 1.7vw, 2.15rem); line-height: 1.34; letter-spacing: -.01em; color: var(--ink); margin-top: 6px; }
.v3believe__statement em { font-style: italic; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.v3beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v3belief { background: var(--paper); border: 1px solid var(--fog); border-top: 3px solid var(--gold); border-radius: var(--r3); padding: 32px 28px; box-shadow: var(--sh1); }
.v3belief__ico { width: 48px; height: 48px; border-radius: var(--r2); background: rgba(8,29,59,.05); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; }
.v3belief__ico svg { width: 24px; height: 24px; }
.v3belief h3 { font-size: var(--fs-h3); margin-bottom: 10px; }
.v3belief p { color: var(--slate); font-size: .98rem; line-height: 1.6; }

/* editorial numbered steps, gold numerals */
.v2steps { max-width: 820px; counter-reset: v2s; }
.v2srow { display: grid; grid-template-columns: 62px 1fr; gap: var(--s5); align-items: start; padding-block: 26px; border-top: 1px solid var(--fog); }
.v2srow:first-child { border-top: 0; }
.v2snum { counter-increment: v2s; font-family: var(--f-display); font-weight: 600; font-size: 2.4rem; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; position: relative; padding-right: 28px; }
.v2snum::before { content: counter(v2s, decimal-leading-zero); }
.v2srow h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.v2srow p { color: var(--slate); font-size: 1rem; line-height: 1.62; max-width: 58ch; }

.how-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.how-media { border-radius: var(--r3); overflow: hidden; position: relative; box-shadow: var(--sh2); }
.how-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.how-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(8,29,59,.10); border-radius: var(--r3); }

/* navy set-piece (homepage; office-interior) */
.setpiece { position: relative; }
.setpiece__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.setpiece__seal { width: 84px; height: 84px; margin-bottom: 22px; }
.setpiece__copy h2 { color: var(--bone); font-size: var(--fs-h2); }
.setpiece__copy p { color: var(--bone-mut); margin-top: 14px; max-width: 46ch; font-size: var(--fs-lead); }
.setpiece__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.setpiece__media { margin: 0; position: relative; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); }
.setpiece__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.setpiece__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(233,203,134,.16); border-radius: var(--r3); }

/* ---------- 12b. Standard set-piece (navy, roman-numeral, ported from Charter concept) ---------- */
.standard { position: relative; }
.standard__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.standard__intro .standard__seal { width: 70px; height: 70px; margin-bottom: 24px; }
.standard__intro h2 { color: var(--bone); font-size: var(--fs-h2); }
.standard__intro > p { color: var(--bone-mut); margin-top: 14px; max-width: 48ch; font-size: var(--fs-lead); }
.standard__list { list-style: none; margin: 26px 0 0; padding: 0; }
.standard__item { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 22px 0; border-top: 1px solid var(--navy-line); }
.standard__item:last-child { border-bottom: 1px solid var(--navy-line); }
.standard__num { font-family: "Spectral", Georgia, serif; font-weight: 600; font-size: 1.5rem; color: var(--gold-lt); line-height: 1; padding-top: 2px; font-variant-numeric: tabular-nums; }
.standard__item h3 { font-size: 1.22rem; color: var(--bone); }
.standard__item p { margin-top: 7px; color: var(--bone-mut); font-size: .98rem; }
.standard__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.standard__media { margin: 0; position: relative; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); }
.standard__media img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.standard__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(233,203,134,.16); border-radius: var(--r3); }
.standard__quote { position: absolute; left: 24px; right: 24px; bottom: 24px; background: rgba(6,22,50,.78); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); border: 1px solid var(--navy-line); border-radius: var(--r2); padding: 18px 20px; }
.standard__quote p { font-family: "Spectral", Georgia, serif; font-style: italic; color: var(--bone); font-size: 1.02rem; line-height: 1.4; }
@media (max-width: 860px) {
  .standard__grid { grid-template-columns: 1fr; gap: 40px; }
  .standard__media img { min-height: 340px; }
}

/* ---------- 13. CAA trust band (navy + gold) ---------- */
.caa-band { color: var(--bone); }
.caa-band__grid {
  position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  background: var(--navy); border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px);
}
.caa-band__grid::before { content: ""; position: absolute; top: -100px; right: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(233,203,134,.14), transparent 70%); pointer-events: none; }
.caa-band__seal { position: relative; width: 116px; height: 116px; flex-shrink: 0; }
.caa-band__seal img { width: 100%; height: 100%; }
.caa-band h2 { color: var(--bone); font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); position: relative; }
.caa-band p { color: var(--bone-mut); margin-top: var(--s3); max-width: 52ch; position: relative; }
.caa-band__actions { position: relative; display: flex; flex-direction: column; gap: var(--s3); }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; border-top: 1px solid var(--fog); margin-top: var(--s5); }
.faq details { border-bottom: 1px solid var(--fog); }
.faq summary { list-style: none; cursor: pointer; padding: 22px var(--s1); display: flex; justify-content: space-between; align-items: center; gap: var(--s4); font-family: var(--f-display); font-size: 1.14rem; font-weight: 600; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details > div { padding: 0 var(--s1) var(--s5); color: var(--slate); font-size: 1.01rem; line-height: 1.7; max-width: 70ch; }

/* ---------- 15. CTA band (navy closer) ---------- */
.cta-band { background: var(--navy); color: var(--bone); }
.cta-band__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta-band h2 { color: var(--bone); font-size: var(--fs-h2); }
.cta-band p { color: var(--bone-mut); margin-top: var(--s4); max-width: 46ch; }
.cta-band__box { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r-lg); padding: var(--s6); }
.close-row { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
.close-phone { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; color: var(--bone); font-variant-numeric: tabular-nums; }
.close-phone svg { width: 24px; height: 24px; color: var(--gold-lt); }
.close-note { font-size: var(--fs-small); color: var(--bone-mut); margin-top: var(--s3); }

/* ---------- 16. Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--fog); border-top: 4px solid var(--gold); border-radius: var(--r3); padding: var(--s6); box-shadow: var(--sh2); }
.form-card.on-dark { background: transparent; border: 0; padding: 0; box-shadow: none; }
.form-card h3 { color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--fog); border-radius: var(--r1); padding: 12px 14px; min-height: 48px; width: 100%;
  transition: border-color var(--t-fast); font-variant-numeric: tabular-nums;
}
.field textarea { min-height: auto; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.16); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.consent { font-size: .78rem; color: var(--slate); margin-top: 12px; line-height: 1.5; }
.consent code { font-family: ui-monospace, monospace; font-size: .9em; background: rgba(8,29,59,.05); padding: 1px 5px; border-radius: 4px; }
.form-msg { display: none; padding: var(--s5); background: var(--sand-soft); border: 1px solid var(--gold); border-radius: var(--r-md); text-align: center; }
.form-msg.is-visible { display: block; }
.form-msg svg { width: 40px; height: 40px; color: #2C5E4F; margin: 0 auto var(--s3); }
.form-msg b { font-family: var(--f-display); font-size: 1.2rem; color: var(--ink); display: block; }
.form-msg p { margin-top: 6px; color: var(--slate); font-size: .94rem; }
.form-msg a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.on-dark .field label { color: var(--bone); }
.on-dark .field input, .on-dark .field select { background: rgba(255,255,255,.08); border-color: var(--navy-line); color: #fff; }
/* Native <option> popups are OS-rendered (usually white bg); force dark-on-white so Chrome/Linux doesn't paint the select's light text on white = invisible. */
.field select option { color: #081D3B; background: #fff; }
.on-dark .consent { color: var(--bone-mut); }
.on-dark .consent code { background: rgba(255,255,255,.12); }
.form-fail { display: block; margin-top: var(--s4); padding: var(--s4); border: 1px solid #E7B4B4; background: #FBEDED; border-radius: var(--r-sm); color: #8A2A2A; font-size: .9rem; }

/* ---------- 17. Booking (Calendly-style scheduler) ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 300px) 1fr; border: 1px solid var(--fog); border-radius: var(--r-lg); background: var(--paper); box-shadow: var(--sh2); overflow: hidden; }
.booking__side { padding: var(--s6); border-right: 1px solid var(--fog); background: var(--sand); }
.booking__host { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s5); }
.booking__avatar { width: 48px; height: 48px; border-radius: var(--r-pill); object-fit: cover; flex: none; }
.booking__avatar--initials { display: grid; place-items: center; background: var(--navy); color: var(--gold-lt); font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; }
.booking__hostname { font-weight: 600; color: var(--ink); }
.booking__hosttitle { font-size: .85rem; color: var(--slate); }
.booking__mtitle { font-size: 1.35rem; line-height: 1.2; margin-bottom: var(--s4); color: var(--ink); }
.booking__meta { list-style: none; padding: 0; margin: 0 0 var(--s4); display: flex; flex-direction: column; gap: 8px; }
.booking__meta li { display: flex; align-items: center; gap: 8px; color: var(--slate); font-weight: 500; }
.booking__ico { width: 18px; height: 18px; color: var(--gold-deep); flex: none; display: inline-grid; place-items: center; }
.booking__ico svg { width: 18px; height: 18px; }
.booking__desc { color: var(--slate); line-height: 1.6; font-size: .95rem; margin-bottom: var(--s4); }
.booking__tz { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: .9rem; }
.booking__main { padding: var(--s6); position: relative; min-width: 0; }
.booking__step { display: none; }
.booking__step.is-active { display: block; }
.booking__calhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s4); }
.booking__month { font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.booking__navs { display: flex; gap: 6px; }
.booking__nav { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid var(--fog); background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast); }
.booking__nav:hover:not(:disabled) { border-color: var(--gold); color: var(--navy); }
.booking__nav:disabled { opacity: .35; cursor: not-allowed; }
.booking__navico { display: inline-flex; align-items: center; justify-content: center; }
.booking__navico svg { width: 18px; height: 18px; }
[data-cal-prev] .booking__navico svg { transform: scaleX(-1); }
.booking__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.booking__dow span { text-align: center; font-size: .72rem; font-weight: 600; color: var(--slate); text-transform: uppercase; letter-spacing: .04em; }
.booking__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.booking__day { aspect-ratio: 1; border: 0; background: var(--sand); color: var(--ink); border-radius: var(--r-sm); font-family: var(--f-body); font-weight: 600; font-size: .95rem; cursor: pointer; transition: background var(--t-fast), color var(--t-fast); }
.booking__day:hover:not(:disabled) { background: var(--navy); color: #fff; }
.booking__day.is-selected { background: var(--navy); color: #fff; }
.booking__day:disabled { background: transparent; color: var(--line-2); cursor: default; font-weight: 400; }
.booking__day--empty { background: transparent; cursor: default; }
.booking__hint { margin-top: var(--s4); font-size: .85rem; color: var(--slate); }
.booking__daylabel, .booking__chosen { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: var(--s4); }
.booking__slots { display: flex; flex-direction: column; gap: 8px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
.booking__slot { padding: 12px; border: 1.5px solid var(--navy); border-radius: var(--r-sm); background: var(--paper); color: var(--navy); font-family: var(--f-body); font-weight: 600; font-size: 1rem; cursor: pointer; transition: background var(--t-fast), color var(--t-fast); }
.booking__slot:hover { background: var(--navy); color: #fff; }
.booking__back { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; color: var(--slate); font-weight: 600; cursor: pointer; padding: 0; margin-bottom: var(--s4); }
.booking__back:hover { color: var(--navy); }
.booking__back svg { width: 18px; height: 18px; transform: scaleX(-1); }
.booking__err { color: #8A2A2A; font-size: .85rem; margin-top: var(--s3); }
.booking__err a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.booking__step[data-step="done"] { text-align: center; padding: var(--s5) 0; }
.booking__doneico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: var(--r-pill); background: var(--sand-soft); color: #2C5E4F; margin-bottom: var(--s4); }
.booking__doneico svg { width: 40px; height: 40px; }
.booking__donetime { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); margin-top: 8px; }
.booking__donename { color: var(--slate); margin-top: 6px; }
.booking__donenote { color: var(--slate); max-width: 42ch; margin: var(--s4) auto 0; }
@media (max-width: 760px) {
  .booking { grid-template-columns: 1fr; }
  .booking__side { border-right: 0; border-bottom: 1px solid var(--fog); }
  /* On mobile the engraved guilloche sits quietly behind the copy; the glow stays. */
  .pgh__deco { width: 78%; opacity: .5; -webkit-mask-image: linear-gradient(to left, #000 18%, transparent 82%); mask-image: linear-gradient(to left, #000 18%, transparent 82%); }
  .pgh__guilloche--arcs { top: -60px; right: -140px; width: 460px; height: 460px; }
  .pgh__guilloche--rosette { top: -180px; right: -220px; width: 480px; height: 480px; }
  .pgh__seal { top: -80px; right: -170px; width: 380px; height: 380px; opacity: .05; }
  .splith__glow { inset: -6% -6% 40% -6%; }
}

/* ---------- 18. Notices ---------- */
.notice { background: var(--paper); border: 1px solid var(--fog); border-left: 3px solid var(--gold); border-radius: var(--r-md); padding: var(--s5); font-size: .96rem; color: #33373f; }
.notice b { color: var(--navy); }
.notice a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.todo { background: var(--sand-soft); border: 1px dashed var(--gold); border-radius: var(--r-md); padding: var(--s5); font-size: .92rem; color: #6b5a1a; }
.todo b { color: var(--gold-deep); }
.soon-tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate); background: rgba(8,29,59,.06); border: 1px solid var(--fog); border-radius: var(--r-pill); padding: 3px 9px; margin-left: 8px; }

/* ---------- 19. Footer (navy) ---------- */
.site-footer { background: var(--navy-deep); color: var(--bone-mut); padding-block: var(--s9) 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s7); }
.brand__mark { font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; letter-spacing: .04em; color: #fff; }
.brand__mark em { font-style: italic; color: var(--gold-lt); }
.footer-brand__logo { height: 50px; width: auto; display: block; }
.site-footer p { margin-top: var(--s4); max-width: 38ch; line-height: 1.6; color: var(--bone-mut); }
.footer-col h4 { font-family: var(--f-body); font-size: .78rem; color: var(--gold-lt); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--bone-mut); }
.footer-col a:hover { color: var(--gold-lt); }
.footer-disclosure { margin-top: var(--s8); padding-top: var(--s6); border-top: 1px solid var(--navy-line); font-size: .78rem; color: #7E88A0; line-height: 1.6; display: flex; flex-direction: column; gap: var(--s3); }
.footer-disclosure p { max-width: none; margin: 0; }
.footer-disclosure b { color: var(--bone-mut); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s4); margin-top: var(--s5); padding-block: var(--s5) var(--s7); font-size: .82rem; color: #7E88A0; border-top: 1px solid var(--navy-line); }
.footer-bottom a { color: #7E88A0; }
.footer-bottom a:hover { color: var(--gold-lt); }
.footer-partner { background: var(--navy); border-top: 1px solid var(--navy-line); }
.footer-partner .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); padding-block: var(--s5); }
.footer-partner span { font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: #fff; }

.sticky-cta { display: none; }

/* ---------- 19b. Directory lookup (verify a CAA) ---------- */
.lookup-form .lookup-modes { display: flex; flex-direction: column; gap: var(--s4); }
.lookup-mode { border: 0; padding: 0; margin: 0; min-width: 0; }
.lookup-mode legend { font-family: var(--f-body); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); padding: 0; margin-bottom: var(--s3); }
.lookup-or { display: flex; align-items: center; text-align: center; color: var(--slate); font-size: .82rem; }
.lookup-or::before, .lookup-or::after { content: ""; flex: 1; height: 1px; background: var(--fog); }
.lookup-or span { padding: 0 14px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.lookup-note { display: flex; gap: 10px; align-items: flex-start; margin-top: var(--s4); font-size: .84rem; color: var(--slate); line-height: 1.55; }
.lookup-note svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; color: var(--gold-deep); }
.lookup-note b { color: var(--navy); }

.lk-result { margin-top: var(--s6); }
.lk-card { background: var(--paper); border: 1px solid var(--fog); border-top: 4px solid var(--gold); border-radius: var(--r-md); padding: var(--s6); box-shadow: var(--sh-md, 0 12px 34px rgba(8,29,59,.08)); }
.lk-card__head { display: flex; gap: 18px; align-items: center; }
.lk-card__avatar { width: 64px; height: 64px; font-size: 1.4rem; flex-shrink: 0; background: var(--navy); color: #fff; }
.lk-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--gold-lt); border-radius: var(--r-pill); padding: 4px 11px; }
.lk-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1f7a4d; }
.lk-card__head h3 { margin: 8px 0 2px; font-size: 1.5rem; }
.lk-card__status { color: var(--slate); font-size: .92rem; }
.lk-card__meta { margin-top: var(--s5); padding-top: var(--s5); border-top: 1px solid var(--fog); display: grid; gap: 8px; }
.lk-card__row { color: #33373f; }
.lk-card__row b { display: inline-block; min-width: 96px; color: var(--slate); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.lk-card__note { margin-top: var(--s5); font-size: .86rem; color: var(--slate); line-height: 1.6; }
.lk-card .btn { margin-top: var(--s5); }
.lk-empty { background: var(--sand-soft); border: 1px dashed var(--gold); border-radius: var(--r-md); padding: var(--s6); }
.lk-empty h3 { color: var(--navy); font-size: 1.2rem; }
.lk-empty p { margin-top: 10px; color: #6b5a1a; line-height: 1.6; }
.lk-empty__hint { color: var(--slate); }
.lk-empty__hint a, .lk-empty p a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.lk-empty--input p { color: var(--slate); margin-top: 0; }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* reveal + skip */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--bone); padding: 10px 16px; border-radius: 0 0 var(--r1) 0; z-index: 200; }
.skip:focus { left: 12px; top: 12px; }

/* ==========================================================================
   20. Header responsive + mobile menu
   ========================================================================== */
@media (max-width: 1040px) {
  .masthead .mainnav { display: none; }
  .topbar__nav { display: none; }
  .burger {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; width: 44px; height: 44px; margin-left: 2px; flex-shrink: 0;
    border: 0; background: none; cursor: pointer; padding: 0;
  }
  .burger__bar { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
  .navytop .burger__bar { background: var(--bone); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; transform: scaleX(.4); }
  .burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .masthead__row { gap: var(--s4); min-height: 72px; }
  .mobile {
    display: flex; flex-direction: column; position: fixed; left: 0; right: 0;
    top: var(--mob-top, 110px); bottom: 0; z-index: 90;
    background: var(--parchment); padding: var(--s4) var(--s5) var(--s5);
    overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .32s var(--ease), transform .32s var(--ease), visibility 0s .32s;
  }
  .mobile.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .32s var(--ease), transform .32s var(--ease), visibility 0s; }
  .mobile__nav > * { opacity: 0; transform: translateY(10px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
  .mobile.is-open .mobile__nav > * { opacity: 1; transform: none; }
  .mobile.is-open .mobile__nav > :nth-child(1) { transition-delay: .05s; }
  .mobile.is-open .mobile__nav > :nth-child(2) { transition-delay: .1s; }
  .mobile.is-open .mobile__nav > :nth-child(3) { transition-delay: .15s; }
  .mobile.is-open .mobile__nav > :nth-child(4) { transition-delay: .2s; }
  .mobile.is-open .mobile__nav > :nth-child(5) { transition-delay: .25s; }
  .mobile.is-open .mobile__nav > :nth-child(6) { transition-delay: .3s; }
  .mobile.is-open .mobile__nav > :nth-child(7) { transition-delay: .35s; }
}
@media (max-width: 560px) {
  .masthead__cta { gap: 8px; }
  .btn--pill { padding: 11px 16px; font-size: .88rem; }
  .logo__img { height: 40px; }
  .topbar .wrap { min-height: 40px; }
  .topbar__link { padding: 9px 10px; font-size: .82rem; }
}
.mobile__nav { display: flex; flex-direction: column; }
.m-acc__btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 4px; font-family: var(--f-display); font-size: 1.24rem; font-weight: 600; color: var(--ink); background: none; border: 0; border-bottom: 1px solid var(--fog); cursor: pointer; }
.m-acc__btn svg { width: 20px; height: 20px; color: var(--slate); transition: transform var(--t-fast) var(--ease); }
.m-acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-acc__body { display: none; padding: 2px 4px 14px 14px; flex-direction: column; }
.m-acc.is-open .m-acc__body { display: flex; }
.m-acc__body a { padding: 9px 0; color: var(--slate); font-weight: 500; font-size: 1rem; }
.m-acc__body a:hover { color: var(--navy); }
.m-plain, .m-link { padding: 16px 4px; font-family: var(--f-display); font-size: 1.24rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--fog); display: block; }
.mobile__util { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 18px 4px 6px; }
.mobile__util a { color: var(--slate); font-weight: 600; font-size: .95rem; }
.mobile__util a:hover { color: var(--navy); }
.mobile__cta { display: flex; flex-direction: column; gap: 12px; margin-top: var(--s5); padding-bottom: var(--s6); }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1000px) {
  .doc { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: var(--s4); flex-direction: row; flex-wrap: wrap; gap: var(--s4); }
  .toc__box { flex: 1; min-width: 260px; }
}
@media (max-width: 980px) {
  .herob { min-height: 74vh; }
  .herob__grid { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 56px; }
  .herob__copy { max-width: none; }
  /* No side panel on small screens: the video is full-bleed behind full-width copy,
     so darken the scrim (bottom-up plus a left wash) to keep the headline legible. */
  .hero-scrim { background:
    linear-gradient(0deg, #061632 6%, rgba(8,29,59,.60) 52%, rgba(8,29,59,.55) 100%),
    linear-gradient(90deg, #061632 0%, rgba(8,29,59,.84) 58%, rgba(8,29,59,.5) 100%); }
}
@media (max-width: 900px) {
  .feature, .feature--flip, .cta-band__grid, .setpiece__grid, .how-split { grid-template-columns: 1fr; gap: 40px; }
  .feature--flip .feature__media { order: 0; }
  .setpiece__media img { min-height: 320px; }
  .caa-band__grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .caa-band__seal { margin-inline: auto; }
  .caa-band p { margin-inline: auto; }
  .caa-band .kicker { justify-content: center; }
  .caa-band .kicker::before { display: none; }
  .caa-band__actions { align-items: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .v3beliefs { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
}
@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s6); }
}
@media (max-width: 600px) {
  .statrail__grid { grid-template-columns: 1fr; }
  .statrail__cell { border-left: 0; padding: 22px 0; border-top: 1px solid var(--navy-line); display: flex; align-items: baseline; gap: 18px; }
  .statrail__cell:first-child { border-top: 0; padding-top: 24px; }
  .statrail__num { flex: 0 0 auto; width: 4.6ch; font-size: 2.5rem; }
  .statrail__cell span { margin-top: 0; max-width: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .close-row { flex-direction: column; align-items: flex-start; }
  .proscons table, .proscons thead, .proscons tbody, .proscons tr, .proscons th, .proscons td { display: block; width: 100%; }
  .proscons td + td, .proscons thead th + th { border-left: 0; }
  .hero__cta .btn { width: 100%; }
}

/* ==========================================================================
   23. APPROVED LAYOUT VOCABULARY  (ported from concepts/layouts/, client-signed)
   Headers A1/A2/A3, content modules B3/B4/B7/B9/B10/B11/B12, tables C1/C2/C3.
   B1/B2 reuse .feature; B5 reuses .v2steps; B6 reuses .v3belief/.card grids.
   ========================================================================== */

/* ---- A1 navy band header ---- */
.pgh--navy { position: relative; overflow: hidden; background: var(--navy); color: var(--bone); padding-block: clamp(40px, 4vw, 64px) clamp(48px, 5vw, 72px); }
/* Soft gold-into-navy glow anchored top-right, echoing the home hero field. Drifts slowly. */
.pgh--navy::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(70% 78% at 90% 2%, rgba(201,162,39,.16) 0%, rgba(201,162,39,0) 52%),
    radial-gradient(96% 92% at 96% 4%, rgba(28,55,104,.5) 0%, rgba(8,29,59,0) 58%);
  animation: pghGlow 24s ease-in-out infinite alternate; will-change: transform, opacity; }
.pgh--navy .wrap { position: relative; z-index: 1; }
.pgh--navy .kicker { color: var(--gold-lt); }
.pgh--navy .kicker::before { background: var(--gold-lt); }
.pgh__body { position: relative; z-index: 1; }
.pgh__title { color: var(--bone); font-size: var(--fs-h1); margin-top: 6px; max-width: 22ch; }
.pgh__lead { color: var(--bone-mut); font-size: var(--fs-lead); margin-top: 18px; max-width: 64ch; }

/* ---- A1 engraved guilloche decoration (right field) ---- */
.pgh__deco { position: absolute; top: 0; right: 0; bottom: 0; width: min(58%, 720px); z-index: 0; pointer-events: none;
  overflow: hidden; -webkit-mask-image: linear-gradient(to left, #000 44%, transparent 100%);
  mask-image: linear-gradient(to left, #000 44%, transparent 100%); }
.pgh__guilloche { position: absolute; display: block; }
.pgh__guilloche--arcs { top: -80px; right: -70px; width: 660px; height: 660px; animation: pghBreathe 22s ease-in-out infinite alternate; transform-origin: 92% 8%; }
.pgh__guilloche--rosette { top: -210px; right: -190px; width: 660px; height: 660px; animation: pghSpin 120s linear infinite; }
.pgh__seal { position: absolute; top: -110px; right: -120px; width: 560px; height: 560px; opacity: .07; animation: pghSpin 150s linear infinite; }

/* ---- A2 split header (copy left + framed image right) ---- */
.splith { display: grid; grid-template-columns: 1.05fr .85fr; gap: 56px; align-items: center; }
.splith__title { font-size: var(--fs-h1); margin-top: 6px; }
.splith .lead { margin-top: 16px; }
.splith__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.splith__media { margin: 0; border-radius: var(--r3); overflow: visible; box-shadow: var(--sh2); position: relative; }
/* Soft gold glow behind the framed image, for cohesion with the A1 field. */
.splith__glow { position: absolute; inset: -12% -10% -10% -12%; z-index: -1; pointer-events: none; border-radius: 50%;
  background: radial-gradient(60% 60% at 70% 24%, rgba(201,162,39,.16) 0%, rgba(201,162,39,0) 70%); }
.splith__media > img { border-radius: var(--r3); display: block; }
.splith__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(201,162,39,.28); border-radius: var(--r3); pointer-events: none; }
.splith__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---- A3 centered editorial header with gold rule + guilloche flourish ---- */
.cedh { text-align: center; max-width: 780px; margin-inline: auto; }
.cedh__ornament { display: block; width: 62px; margin: 0 auto 18px; }
.cedh__ornament svg { display: block; width: 62px; height: 62px; }
.cedh .kicker, .cedh .eyebrow { justify-content: center; color: var(--gold-deep); }
.cedh__title { font-size: var(--fs-h1); margin-top: 8px; text-wrap: balance; }
.cedh__rule { display: block; width: 64px; height: 2px; background: var(--gold); margin: 26px auto; }
.cedh__lead { color: var(--slate); font-size: var(--fs-lead); max-width: 60ch; margin-inline: auto; }

/* ---- Header decoration motion tokens ---- */
@keyframes pghGlow { 0% { transform: translate3d(0,0,0) scale(1); opacity: .92; } 100% { transform: translate3d(-14px, 10px, 0) scale(1.05); opacity: 1; } }
@keyframes pghBreathe { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.045) rotate(2.2deg); } }
@keyframes pghSpin { to { transform: rotate(360deg); } }

/* ---- A2 split header (copy left + framed image right) ---- */
.splith { display: grid; grid-template-columns: 1.05fr .85fr; gap: 56px; align-items: center; }
.splith__title { font-size: var(--fs-h1); margin-top: 6px; }
.splith .lead { margin-top: 16px; }
.splith__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.splith__media { margin: 0; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); position: relative; }
.splith__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(201,162,39,.28); border-radius: var(--r3); pointer-events: none; }
.splith__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ---- A3 centered editorial header with gold rule ---- */
.cedh { text-align: center; max-width: 780px; margin-inline: auto; }
.cedh .kicker, .cedh .eyebrow { justify-content: center; color: var(--gold-deep); }
.cedh__title { font-size: var(--fs-h1); margin-top: 8px; text-wrap: balance; }
.cedh__rule { display: block; width: 64px; height: 2px; background: var(--gold); margin: 26px auto; }
.cedh__lead { color: var(--slate); font-size: var(--fs-lead); max-width: 60ch; margin-inline: auto; }

/* ---- B3 offset editorial two column ---- */
.offcol { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.offcol__label { position: sticky; top: 92px; }
.offcol__label p { color: var(--slate); font-size: .96rem; margin-top: 6px; }
.offcol__prose h2 { margin-bottom: 20px; }
.offcol__prose p { color: #33373f; font-size: 1.05rem; line-height: 1.7; }
.offcol__prose p + p { margin-top: 16px; }
.offcol__prose b { color: var(--navy); }

/* ---- B4 oversized pull-quote feature (wider text per client) ---- */
.pullfeat { position: relative; max-width: 940px; margin-inline: auto; text-align: center; }
.pullfeat__mark { display: inline-flex; color: var(--gold); }
.pullfeat__mark svg { width: 44px; height: 44px; }
.pullfeat__q { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem); line-height: 1.34; letter-spacing: -.01em; color: var(--navy); margin: 18px auto 0; max-width: 26ch; }
@media (min-width: 720px) { .pullfeat__q { max-width: 46ch; } }
.pullfeat__q em { font-style: italic; color: var(--gold-deep); }
.pullfeat__cite { margin-top: 22px; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.pullfeat__cite::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 10px; }

/* ---- B7 navy inset icon grid ---- */
.igrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.igrid--navy .igrid__cell { background: var(--navy-panel); border: 1px solid var(--navy-line); border-radius: var(--r3); padding: 26px 22px; }
.igrid__ico { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--r2); background: rgba(233,203,134,.12); color: var(--gold-lt); margin-bottom: 16px; }
.igrid__ico svg { width: 22px; height: 22px; }
.igrid--navy h3 { font-size: 1.14rem; color: var(--bone); }
.igrid--navy p { color: var(--bone-mut); font-size: .94rem; margin-top: 8px; line-height: 1.55; }

/* ---- B9 definition and term rows ---- */
.defrows { margin: 0; border-top: 1px solid var(--fog); }
.defrow { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding-block: 22px; border-bottom: 1px solid var(--fog); align-items: baseline; }
.defrow__term { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--navy); }
.defrow__def { margin: 0; color: #33373f; font-size: 1rem; line-height: 1.62; max-width: 64ch; }

/* ---- B10 prose with a sticky navy side note ---- */
.asidenote { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.asidenote__main h2 { margin-bottom: 18px; }
.asidenote__main p { color: #33373f; font-size: 1.05rem; line-height: 1.7; }
.asidenote__main p + p { margin-top: 16px; }
.asidenote__main b { color: var(--navy); }
.asidenote__side { position: sticky; top: 92px; background: var(--navy); color: var(--bone); border-radius: var(--r3); padding: 28px 26px; box-shadow: var(--sh2); }
.asidenote__ico { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--r2); background: rgba(233,203,134,.14); color: var(--gold-lt); margin-bottom: 16px; }
.asidenote__ico svg { width: 24px; height: 24px; }
.asidenote__note { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; line-height: 1.36; color: var(--bone); }
.asidenote__fine { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--navy-line); font-size: .82rem; color: var(--bone-mut); line-height: 1.55; }

/* ---- B11 two approaches compared ---- */
.compare2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare2__col { background: var(--paper); border: 1px solid var(--fog); border-radius: var(--r3); padding: 32px 28px; }
.compare2__col--fav { border-color: var(--gold); border-top: 3px solid var(--gold); box-shadow: var(--sh1); }
.compare2__tag { display: inline-flex; align-items: center; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--gold-lt); border-radius: var(--r-pill); padding: 6px 13px; }
.compare2__tag--muted { color: var(--slate); background: rgba(8,29,59,.06); }
.compare2__col h3 { font-size: 1.32rem; margin-top: 16px; margin-bottom: 18px; }
.compare2__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare2__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.compare2__list svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 1px; }
.compare2__col--fav .compare2__list svg { color: #2C5E4F; }
.compare2__col:not(.compare2__col--fav) .compare2__list svg { color: var(--gold-deep); }

/* ---- B12 vertical timeline (with optional right media) ---- */
.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px; background: var(--gold); opacity: .5; }
.timeline__item { position: relative; padding-block: 4px 30px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -34px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--paper); }
.timeline__when { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.timeline__title { font-size: 1.24rem; margin-top: 6px; }
.timeline__desc { color: var(--slate); margin-top: 6px; max-width: 60ch; font-size: 1rem; line-height: 1.62; }
.timeline-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.timeline-split__media { margin: 0; border-radius: var(--r3); overflow: hidden; box-shadow: var(--sh2); position: sticky; top: 92px; }
.timeline-split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.timeline-split__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(8,29,59,.10); border-radius: var(--r3); }

/* ---- C1 / C2 / C3 dense tables ---- */
.cmptable, .spectable, .chktable { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
.cmptable thead th, .spectable thead th, .chktable thead th { background: var(--navy); color: var(--bone); text-align: left; font-family: var(--f-body); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 15px 18px; vertical-align: bottom; }
.cmptable thead th + th, .spectable thead th + th, .chktable thead th + th { border-left: 1px solid var(--navy-line); }
.cmptable tbody th[scope="row"], .spectable tbody th[scope="row"], .chktable tbody th[scope="row"] { text-align: left; font-family: var(--f-display); font-weight: 600; color: var(--navy); font-size: 1rem; padding: 15px 18px; vertical-align: top; width: 22%; }
.cmptable tbody td, .spectable tbody td, .chktable tbody td { padding: 15px 18px; color: #33373f; vertical-align: top; line-height: 1.5; border-left: 1px solid var(--fog); }
.cmptable tbody tr, .spectable tbody tr, .chktable tbody tr { border-bottom: 1px solid var(--fog); }
.cmptable tbody tr:nth-child(even), .spectable tbody tr:nth-child(even), .chktable tbody tr:nth-child(even) { background: rgba(8,29,59,.02); }
.cmptable__fav { background: rgba(201,162,39,.12) !important; }
.cmptable thead th.cmptable__fav { background: var(--gold) !important; color: var(--navy); }
.cmptable tbody td.cmptable__fav { color: var(--navy); font-weight: 600; box-shadow: inset 2px 0 0 var(--gold), inset -2px 0 0 var(--gold); }
.spectable tbody th[scope="row"] { width: 26%; }
.chktable tbody th[scope="row"] { width: 34%; }
.chk { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; white-space: nowrap; border-radius: var(--r-pill); padding: 5px 11px; }
.chk svg { width: 16px; height: 16px; }
.chk--ok { color: #2C5E4F; background: rgba(44,94,79,.1); }
.chk--ask { color: #B4451F; background: rgba(180,69,31,.1); }

/* ---- module responsive ---- */
@media (max-width: 940px) {
  .splith, .offcol, .asidenote, .compare2, .igrid, .timeline-split { grid-template-columns: 1fr; }
  .splith { gap: 34px; }
  .splith__media, .timeline-split__media { max-width: 400px; }
  .offcol { gap: 24px; }
  .offcol__label, .asidenote__side, .timeline-split__media { position: static; }
  .asidenote { gap: 28px; }
  .igrid { gap: 14px; }
  .defrow { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 640px) {
  .igrid { grid-template-columns: 1fr; }
}

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