/* ==========================================================================
   Rock Vision Investments — design system
   Navy / gold institutional identity, Apple-style editorial layout.
   ========================================================================== */

/* ---------- tokens ---------- */
:root{
  /* brand */
  --navy-950:#06101E;
  --navy-900:#0A1628;
  --navy-800:#0E2038;
  --navy-700:#16304F;
  --navy-600:#1E3A63;

  --gold-300:#E7CE8E;
  --gold-400:#D4B063;
  --gold-500:#C9A24A;
  --gold-600:#A8822C;

  --cream:#FBFAF8;
  --cream-200:#F3F1EC;
  --white:#FFFFFF;

  /* text on dark */
  --on-dark:#F4F7FB;
  --on-dark-soft:#C3CEDD;
  --on-dark-mute:#8A99AE;
  /* text on light */
  --on-light:#0A1628;
  --on-light-soft:#44536A;
  --on-light-mute:#77849A;

  --rule-dark:rgba(255,255,255,.14);
  --rule-light:rgba(10,22,40,.12);

  /* type */
  --sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Inter","Helvetica Neue",Arial,sans-serif;
  --serif:"Instrument Serif","Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;

  --fs-display:clamp(2.6rem,6.6vw,5.25rem);
  --fs-h1:clamp(2.25rem,5vw,4rem);
  --fs-h2:clamp(1.85rem,3.6vw,3rem);
  --fs-h3:clamp(1.3rem,2vw,1.75rem);
  --fs-lead:clamp(1.1rem,1.5vw,1.4rem);
  --fs-body:1.0625rem;
  --fs-small:.9375rem;
  --fs-micro:.78125rem;

  /* layout */
  --wrap:1120px;
  --wrap-wide:1320px;
  --wrap-narrow:720px;
  --gutter:clamp(20px,5vw,40px);
  --section-y:clamp(76px,11vw,148px);
  --nav-h:52px;

  --r-sm:10px;
  --r-md:16px;
  --r-lg:22px;
  --r-xl:30px;

  --ease:cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  /* the nav is fixed, so anchor targets must clear it or they land underneath */
  scroll-padding-top:calc(var(--nav-h) + 28px);
}
body{
  margin:0;
  font-family:var(--sans);
  font-size:var(--fs-body);
  line-height:1.55;
  color:var(--on-light);
  background:var(--navy-900);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img,svg,video{display:block;max-width:100%;height:auto}
h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
:focus-visible{outline:2px solid var(--gold-400);outline-offset:3px;border-radius:4px}

.skip{position:absolute;left:-9999px;top:0;z-index:200;padding:.8rem 1.2rem;background:var(--gold-500);color:var(--navy-900);font-weight:600;border-radius:0 0 var(--r-sm) 0}
.skip:focus{left:0}

/* ---------- typography helpers ---------- */
h1,h2,h3,.display,.h1,.h2,.h3{text-wrap:balance}
p,li{text-wrap:pretty}
.display{font-size:var(--fs-display);font-weight:700;line-height:1.02;letter-spacing:-.035em}
.h1{font-size:var(--fs-h1);font-weight:700;line-height:1.06;letter-spacing:-.03em}
.h2{font-size:var(--fs-h2);font-weight:700;line-height:1.1;letter-spacing:-.028em}
.h3{font-size:var(--fs-h3);font-weight:600;line-height:1.2;letter-spacing:-.02em}
.lead{font-size:var(--fs-lead);line-height:1.45;font-weight:400;letter-spacing:-.012em}
.small{font-size:var(--fs-small)}
.gold{color:var(--gold-400)}
.serif{font-family:var(--serif);font-weight:400;letter-spacing:0}

.eyebrow{
  display:flex;align-items:center;gap:.7rem;
  font-size:var(--fs-micro);font-weight:600;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold-500);
}
.eyebrow::before{content:"";width:28px;height:1px;background:currentColor;opacity:.7;flex:none}
.eyebrow--center{justify-content:center}

.measure{max-width:62ch}
.measure-tight{max-width:48ch}
.center{text-align:center}
.center .eyebrow{justify-content:center}
.center .measure,.center .measure-tight{margin-inline:auto}

/* ---------- panels & wraps ---------- */
.panel{position:relative;padding-block:var(--section-y)}
.panel--dark{background:var(--navy-900);color:var(--on-dark)}
.panel--darker{background:var(--navy-950);color:var(--on-dark)}
.panel--gradient{background:linear-gradient(180deg,var(--navy-950) 0%,var(--navy-800) 55%,var(--navy-900) 100%);color:var(--on-dark)}
.panel--light{background:var(--cream);color:var(--on-light)}
.panel--white{background:var(--white);color:var(--on-light)}
.panel--flush{padding-block:0}
.panel--tight{padding-block:clamp(52px,7vw,88px)}

/* Panel body colour is a ZERO-specificity default via :where(), so single-class
   colour utilities (.eyebrow, .stat__num, .tl__year, .card__num …) still win.
   Written as `.panel--dark p` this rule silently greyed out every gold accent. */
:where(.panel--dark,.panel--darker,.panel--gradient) :where(p){color:var(--on-dark-soft)}
:where(.panel--light,.panel--white) :where(p){color:var(--on-light-soft)}

.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gutter)}
.wrap--wide{max-width:var(--wrap-wide)}
.wrap--narrow{max-width:var(--wrap-narrow)}

.rule{height:1px;background:var(--rule-light);border:0;margin:0}
.panel--dark .rule,.panel--darker .rule,.panel--gradient .rule{background:var(--rule-dark)}

/* ---------- nav ---------- */
.nav{
  position:fixed;inset:0 0 auto;z-index:100;height:var(--nav-h);
  /* Solid, deliberately. backdrop-filter on a fixed bar forces the browser to re-sample
     everything behind it every frame, and on this page it produced visible ghosting —
     a second, offset copy of the header and hero during scroll. Nothing to re-sample now. */
  background:#0A1628;
  border-bottom:1px solid rgba(255,255,255,.09);
  color:var(--on-dark);
}
.nav__inner{
  height:100%;max-width:var(--wrap-wide);margin-inline:auto;
  padding-inline:var(--gutter);
  display:flex;align-items:center;gap:1.5rem;
}
.brand{display:flex;align-items:center;gap:.6rem;flex:none}
.brand__mark{width:34px;height:auto;flex:none}
.brand__text{display:flex;flex-direction:column;line-height:1}
.brand__name{font-size:.8125rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase}
.brand__sub{font-size:.5625rem;font-weight:500;letter-spacing:.26em;text-transform:uppercase;color:var(--gold-400);margin-top:3px}

.nav__links{display:flex;align-items:center;gap:.35rem;margin-inline:auto}
.nav__links a{
  position:relative;display:block;padding:.45rem .7rem;border-radius:8px;
  font-size:.8125rem;font-weight:400;letter-spacing:-.005em;
  color:rgba(244,247,251,.82);
  transition:color .25s var(--ease),background-color .25s var(--ease);
}
.nav__links a:hover{color:#fff;background:rgba(255,255,255,.08)}
.nav__links a[aria-current="page"]{color:#fff;font-weight:500}
.nav__links a[aria-current="page"]::after{
  content:"";position:absolute;left:50%;translate:-50% 0;bottom:2px;
  width:16px;height:2px;border-radius:2px;background:var(--gold-500);
}
.nav__cta{
  flex:none;padding:.42rem 1rem;border-radius:980px;
  font-size:.8125rem;font-weight:500;
  border:1px solid rgba(255,255,255,.28);
  transition:background-color .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease);
}
.nav__cta:hover{background:var(--gold-500);border-color:var(--gold-500);color:var(--navy-900)}

.nav__toggle{display:none;flex:none;width:40px;height:40px;margin-left:auto;position:relative;border-radius:8px}
.nav__toggle span{position:absolute;left:11px;width:18px;height:1.5px;background:currentColor;border-radius:2px;transition:transform .35s var(--ease),opacity .2s linear}
.nav__toggle span:nth-child(1){top:15px}
.nav__toggle span:nth-child(2){top:23px}
.nav[data-open="true"] .nav__toggle span:nth-child(1){transform:translateY(4px) rotate(45deg)}
.nav[data-open="true"] .nav__toggle span:nth-child(2){transform:translateY(-4px) rotate(-45deg)}

.nav__drawer{
  position:fixed;inset:var(--nav-h) 0 auto;z-index:99;
  /* opaque: a translucent drawer lets hero type show through behind the links */
  background:var(--navy-950);
  border-bottom:1px solid rgba(255,255,255,.1);
  box-shadow:0 24px 48px -24px rgba(0,0,0,.7);
  /* no backdrop-filter: the panel is opaque, so blurring behind it costs without showing */
  padding:.5rem var(--gutter) 1.5rem;
  display:none;
}
.nav__drawer a{
  display:block;padding:1rem .25rem;font-size:1.375rem;font-weight:500;letter-spacing:-.02em;
  color:var(--on-dark);border-bottom:1px solid rgba(255,255,255,.08);
}
.nav__drawer a:last-of-type{border-bottom:0}
/* the generic drawer-link colour must not out-specify the button variants */
.nav__drawer a.btn{margin-top:1.25rem;width:100%;justify-content:center;border-bottom:0}
.nav__drawer a.btn--gold{color:var(--navy-900);font-weight:600}

@media (max-width:900px){
  .nav__links,.nav__cta{display:none}
  .nav__toggle{display:block}
  .nav[data-open="true"] .nav__drawer{display:block}
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.86rem 1.5rem;border-radius:980px;
  font-size:.9688rem;font-weight:500;letter-spacing:-.01em;
  transition:transform .3s var(--ease),background-color .3s var(--ease),border-color .3s var(--ease),color .3s var(--ease),box-shadow .3s var(--ease);
}
.btn:hover{transform:translateY(-2px)}
.btn--gold{background:linear-gradient(135deg,var(--gold-400),var(--gold-600));color:var(--navy-900);font-weight:600;box-shadow:0 8px 24px -10px rgba(201,162,74,.7)}
.btn--gold:hover{box-shadow:0 14px 30px -10px rgba(201,162,74,.85)}
.btn--ghost{border:1px solid rgba(255,255,255,.32);color:var(--on-dark)}
.btn--ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5)}
.btn--dark{background:var(--navy-900);color:var(--on-dark)}
.btn--dark:hover{background:var(--navy-700)}
.btn--outline-dark{border:1px solid var(--rule-light);color:var(--on-light)}
.btn--outline-dark:hover{background:rgba(10,22,40,.05);border-color:rgba(10,22,40,.28)}

.btn-row{display:flex;flex-wrap:wrap;gap:.75rem}
.center .btn-row{justify-content:center}

.link-arrow{
  display:inline-flex;align-items:center;gap:.3rem;
  color:var(--gold-500);font-weight:500;font-size:var(--fs-small);
}
.link-arrow::after{content:"›";font-size:1.2em;line-height:1;transition:transform .3s var(--ease)}
.link-arrow:hover::after{transform:translateX(4px)}
.panel--dark .link-arrow,.panel--darker .link-arrow,.panel--gradient .link-arrow{color:var(--gold-400)}

/* ---------- hero ---------- */
.hero{
  position:relative;display:grid;align-items:end;
  min-height:min(92svh,900px);
  padding-top:calc(var(--nav-h) + 4rem);
  padding-bottom:clamp(56px,8vw,104px);
  background:var(--navy-950);color:var(--on-dark);
  overflow:hidden;isolation:isolate;
}
.hero--center{align-items:center;text-align:center}
.hero--short{min-height:min(64svh,640px)}
.hero__bg{position:absolute;inset:0;z-index:-2}
/* The archive photographs range from sepia prints to a magenta-faded colour snap.
   A shared warm near-monochrome grade makes them read as one deliberate set
   instead of five different scanning accidents. */
.hero__bg--archival img,.band__bg--archival img,
.venture__media.archival img,.archival .venture__media img{filter:grayscale(.55) sepia(.18) contrast(1.1) brightness(1.12)}
.hero__bg img{width:100%;height:100%;object-fit:cover;object-position:center}
/* Left-weighted scrim: keeps the copy legible while letting the archive
   photograph stay visible on the right where there is no text over it. */
.hero__scrim{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(90deg,rgba(6,16,30,.94) 0%,rgba(6,16,30,.82) 34%,rgba(6,16,30,.5) 66%,rgba(6,16,30,.34) 100%),
    linear-gradient(180deg,rgba(6,16,30,.7) 0%,rgba(6,16,30,.2) 38%,rgba(6,16,30,.55) 100%);
}
.hero--center .hero__scrim{
  background:
    radial-gradient(90% 75% at 50% 50%,rgba(6,16,30,.5) 0%,rgba(6,16,30,.86) 70%,rgba(6,16,30,.94) 100%),
    linear-gradient(180deg,rgba(6,16,30,.6) 0%,rgba(6,16,30,.3) 45%,rgba(6,16,30,.7) 100%);
}
@media (max-width:760px){
  /* copy spans the full width on small screens, so even the scrim out */
  .hero__scrim{
    background:linear-gradient(180deg,rgba(6,16,30,.72) 0%,rgba(6,16,30,.6) 40%,rgba(6,16,30,.92) 100%);
  }
}
.hero__grid{
  position:absolute;inset:0;z-index:-1;pointer-events:none;
  /* the fade was a mask-image — an extra compositing pass for a barely visible rule
     pattern. Baked into the gradient itself instead. */
  background-image:linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:min(25%,220px) 100%;
}
.hero .display{max-width:20ch}
.hero--center .display{margin-inline:auto}
.hero__lead{margin-top:1.5rem;color:var(--on-dark-soft);max-width:54ch}
.hero--center .hero__lead{margin-inline:auto}
.hero .btn-row{margin-top:2.25rem}
.hero__eyebrow{margin-bottom:1.5rem}

/* ---------- stat strip ---------- */
.stats{
  display:grid;gap:1px;
  /* four items: one column, then 2x2, then a single row of four. Never three. */
  grid-template-columns:1fr;
  background:var(--rule-dark);
  border-block:1px solid var(--rule-dark);
}
@media (min-width:520px){.stats{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.stats{grid-template-columns:repeat(4,1fr)}}
.panel--light .stats,.panel--white .stats{background:var(--rule-light);border-block-color:var(--rule-light)}
.stat{padding:clamp(1.5rem,3vw,2.25rem) clamp(1rem,2vw,1.75rem);background:var(--navy-900)}
.panel--darker .stat{background:var(--navy-950)}
.panel--gradient .stat{background:transparent}
.panel--light .stat{background:var(--cream)}
.panel--white .stat{background:var(--white)}
.stat__num{font-size:clamp(2rem,3.6vw,2.9rem);font-weight:700;letter-spacing:-.04em;line-height:1;color:var(--gold-400);font-variant-numeric:tabular-nums}
.panel--light .stat__num,.panel--white .stat__num{color:var(--gold-600)}
.stat__label{margin-top:.7rem;font-size:var(--fs-micro);font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--on-dark-mute)}
.panel--light .stat__label,.panel--white .stat__label{color:var(--on-light-mute)}
.stat__note{margin-top:.45rem;font-size:.8125rem;color:var(--on-dark-mute)}
.panel--light .stat__note,.panel--white .stat__note{color:var(--on-light-mute)}

/* ---------- section head ---------- */
.sec-head{max-width:64ch}
.sec-head .eyebrow{margin-bottom:1.1rem}
.sec-head .lead{margin-top:1.25rem}
.sec-head--center{margin-inline:auto;text-align:center}
.sec-head--center .eyebrow{justify-content:center}
.sec-head + *{margin-top:clamp(2.5rem,5vw,4rem)}

/* ---------- generic grids ---------- */
.grid{display:grid;gap:clamp(1rem,2vw,1.5rem)}

/* Explicit column counts, not auto-fit minmax. auto-fit picks whatever number of
   columns happens to fit, which stranded a single card on its own row at in-between
   widths — four stats laid out 3+1, three cards laid out 2+1. Item counts are known,
   so the breakpoints are chosen to divide evenly and never orphan. */
.grid--2{grid-template-columns:1fr}
@media (min-width:800px){.grid--2{grid-template-columns:repeat(2,1fr)}}

.grid--3{grid-template-columns:1fr}
@media (min-width:900px){.grid--3{grid-template-columns:repeat(3,1fr)}}

.grid--4{grid-template-columns:1fr}
@media (min-width:640px){.grid--4{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1040px){.grid--4{grid-template-columns:repeat(4,1fr)}}
/* .grid--2/3/4 are min-width rules, not column counts — auto-fit gave four cards a
   3+1 layout with one orphan. This is an explicit 2x2 for exactly-four items. */
.grid--quad{grid-template-columns:1fr}
@media (min-width:820px){.grid--quad{grid-template-columns:repeat(2,1fr)}}

.split{display:grid;gap:clamp(2rem,5vw,4.5rem);align-items:center;grid-template-columns:1fr}
@media (min-width:900px){
  .split{grid-template-columns:1fr 1fr}
  .split--wide-left{grid-template-columns:1.15fr .85fr}
  .split--wide-right{grid-template-columns:.85fr 1.15fr}
  .split__media--first{order:-1}
}

/* ---------- cards ---------- */
.card{
  padding:clamp(1.5rem,2.6vw,2.25rem);
  border-radius:var(--r-lg);
  border:1px solid var(--rule-dark);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  transition:transform .45s var(--ease),border-color .45s var(--ease),background-color .45s var(--ease);
}
.card:hover{transform:translateY(-4px);border-color:rgba(201,162,74,.42)}
.panel--light .card,.panel--white .card{
  border-color:var(--rule-light);
  background:var(--white);
  box-shadow:0 1px 2px rgba(10,22,40,.04),0 12px 32px -18px rgba(10,22,40,.16);
}
.panel--light .card:hover,.panel--white .card:hover{box-shadow:0 2px 4px rgba(10,22,40,.05),0 22px 46px -20px rgba(10,22,40,.24)}
.card__num{font-size:var(--fs-micro);font-weight:700;letter-spacing:.18em;color:var(--gold-500);margin-bottom:1rem}
.card .h3{margin-bottom:.7rem}
.card p{font-size:var(--fs-small)}
.card__list{margin-top:1.1rem;display:grid;gap:.5rem}
.card__list li{position:relative;padding-left:1.1rem;font-size:var(--fs-small);color:var(--on-dark-soft)}
.panel--light .card__list li,.panel--white .card__list li{color:var(--on-light-soft)}
.card__list li::before{content:"";position:absolute;left:0;top:.62em;width:5px;height:5px;border-radius:50%;background:var(--gold-500)}

/* ---------- figure / media ---------- */
.figure{margin:0}
.figure__frame{
  position:relative;overflow:hidden;border-radius:var(--r-lg);
  border:1px solid var(--rule-dark);background:var(--navy-800);
}
.panel--light .figure__frame,.panel--white .figure__frame{border-color:var(--rule-light);background:var(--cream-200)}
.figure__frame img{width:100%;height:100%;object-fit:cover}
/* the ratio class sits on the frame itself; the descendant form is kept so the
   ratio also works if it is placed on a wrapping <figure> */
.figure__frame.figure--tall,.figure--tall .figure__frame{aspect-ratio:4/5}
.figure__frame.figure--wide,.figure--wide .figure__frame{aspect-ratio:16/10}
.figure__frame.figure--square,.figure--square .figure__frame{aspect-ratio:1}
.figure__cap{
  margin-top:.9rem;font-size:.8125rem;line-height:1.5;
  color:var(--on-dark-mute);
}
.panel--light .figure__cap,.panel--white .figure__cap{color:var(--on-light-mute)}
.figure__cap b{color:var(--on-dark-soft);font-weight:600}
.panel--light .figure__cap b,.panel--white .figure__cap b{color:var(--on-light);font-weight:600}
.figure__src{display:block;margin-top:.3rem;font-size:.75rem;letter-spacing:.02em;opacity:.8}

/* archival photo grade — unifies scans of wildly different quality */
/* static grade only — animating `filter` on a full-bleed photograph is very costly */
.archival img{filter:grayscale(.42) sepia(.16) contrast(1.05) saturate(.9)}

/* ---------- full-bleed image band ---------- */
.band{position:relative;min-height:min(78svh,760px);display:grid;align-items:end;overflow:hidden;isolation:isolate;color:var(--on-dark)}
.band--center{align-items:center;text-align:center}
.band__bg{position:absolute;inset:0;z-index:-2}
.band__bg img{width:100%;height:100%;object-fit:cover}
.band__scrim{position:absolute;inset:0;z-index:-1;
  /* light enough to read the photograph, dark enough to hold the type */
  background:linear-gradient(180deg,rgba(6,16,30,.34) 0%,rgba(6,16,30,.18) 38%,rgba(6,16,30,.72) 78%,rgba(6,16,30,.92) 100%)}
/* A centred band lays type across the middle of the photograph, which is usually
   its brightest region. Left-aligned bands keep the lighter scrim; centred ones get
   a central darkening so the text holds without hiding the image at the edges. */
.band--center .band__scrim{
  background:
    radial-gradient(72% 62% at 50% 48%,rgba(6,16,30,.88) 0%,rgba(6,16,30,.62) 52%,rgba(6,16,30,.34) 100%),
    linear-gradient(180deg,rgba(6,16,30,.46) 0%,rgba(6,16,30,.34) 40%,rgba(6,16,30,.82) 100%);
}
.band__inner{padding-block:clamp(2.5rem,6vw,5rem)}
.band__inner p{color:var(--on-dark-soft)}

/* ---------- pull quote ---------- */
.quote{max-width:24ch}
.quote__mark{font-family:var(--serif);font-size:clamp(3rem,7vw,5rem);line-height:.6;color:var(--gold-500);opacity:.6}
.quote__text{
  font-family:var(--serif);font-weight:400;
  font-size:clamp(1.6rem,3.4vw,2.6rem);line-height:1.22;letter-spacing:-.015em;
  max-width:32ch;
}
.panel--dark .quote__text,.panel--darker .quote__text,.panel--gradient .quote__text{color:var(--on-dark)}
.quote__cite{
  display:block;margin-top:1.5rem;font-family:var(--sans);
  font-size:var(--fs-micro);font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold-500);font-style:normal;
}
.quote__cite span{display:block;margin-top:.4rem;letter-spacing:.04em;text-transform:none;font-weight:400;color:var(--on-dark-mute)}
.panel--light .quote__cite span,.panel--white .quote__cite span{color:var(--on-light-mute)}

/* ---------- timeline ---------- */
.timeline{position:relative;display:grid;gap:0}
.tl{
  position:relative;display:grid;gap:.5rem 2.5rem;
  grid-template-columns:1fr;
  padding-block:clamp(1.75rem,3.5vw,2.75rem);
  border-top:1px solid var(--rule-dark);
}
.panel--light .tl,.panel--white .tl{border-top-color:var(--rule-light)}
.timeline .tl:last-child{border-bottom:1px solid var(--rule-dark)}
.panel--light .timeline .tl:last-child,.panel--white .timeline .tl:last-child{border-bottom-color:var(--rule-light)}
@media (min-width:820px){
  .tl{grid-template-columns:150px 1fr}
}
.tl__year{
  font-size:clamp(1.5rem,2.4vw,2.1rem);font-weight:700;letter-spacing:-.035em;line-height:1;
  color:var(--gold-400);font-variant-numeric:tabular-nums;
}
.panel--light .tl__year,.panel--white .tl__year{color:var(--gold-600)}
.tl__year small{display:block;margin-top:.5rem;font-size:.75rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--on-dark-mute)}
.panel--light .tl__year small,.panel--white .tl__year small{color:var(--on-light-mute)}
.tl__body .h3{margin-bottom:.6rem}
.tl__body p{max-width:62ch}
.tl__src{
  margin-top:.9rem;font-size:.75rem;letter-spacing:.02em;
  color:var(--on-dark-mute);display:flex;align-items:baseline;gap:.4rem;
}
.panel--light .tl__src,.panel--white .tl__src{color:var(--on-light-mute)}
.tl__src::before{content:"Source";font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-size:.6875rem;color:var(--gold-500);flex:none}
.tl__media{margin-top:1.25rem;max-width:420px}

/* ---------- honours list ---------- */
.honours{display:grid;gap:0;grid-template-columns:1fr}
@media (min-width:760px){.honours{grid-template-columns:1fr 1fr}}
.honour{
  display:flex;gap:1rem;align-items:flex-start;
  padding:1.15rem 0;border-top:1px solid var(--rule-dark);
}
.panel--light .honour,.panel--white .honour{border-top-color:var(--rule-light)}
.honour__icon{flex:none;width:22px;height:22px;margin-top:.15rem;color:var(--gold-500)}
.honour p{font-size:var(--fs-small);margin-top:.25rem}
.honour strong{font-weight:600;letter-spacing:-.01em}
.panel--dark .honour strong{color:var(--on-dark)}

/* ---------- archive gallery ---------- */
.gallery{display:grid;gap:clamp(1rem,2vw,1.75rem);grid-template-columns:1fr}
@media (min-width:620px){
  .gallery{grid-template-columns:repeat(2,1fr)}
  /* Nine items in two columns leaves the last one alone beside a gap. Let an odd
     final card span the row instead, and widen its image so it reads as a deliberate
     full-width plate rather than a stretched thumbnail. */
  .gallery > :last-child:nth-child(odd){grid-column:1 / -1}
  .gallery > :last-child:nth-child(odd) .gal__img{aspect-ratio:21/9}
}
@media (min-width:900px){
  .gallery{grid-template-columns:repeat(3,1fr)}
  /* Nine items divide evenly by three, so the row-spanning rule above must be undone
     here — left on, it punched a hole in row three and stretched card nine across a
     row of its own. */
  .gallery > :last-child:nth-child(odd){grid-column:auto}
  .gallery > :last-child:nth-child(odd) .gal__img{aspect-ratio:4/3}
}
.gal{
  display:flex;flex-direction:column;text-align:left;width:100%;
  border-radius:var(--r-md);overflow:hidden;
  border:1px solid var(--rule-dark);background:rgba(255,255,255,.035);
  transition:transform .45s var(--ease),border-color .45s var(--ease);
}
.panel--light .gal,.panel--white .gal{border-color:var(--rule-light);background:var(--white)}
.gal:hover{transform:translateY(-5px);border-color:rgba(201,162,74,.45)}
.gal__img{aspect-ratio:4/3;overflow:hidden;background:var(--navy-800)}
/* Archive cards are mostly portrait document scans. Anchoring the crop to the top
   shows the masthead and headline rather than a slice of the middle of the page. */
.gal__img img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .5s var(--ease)}
.gal:hover .gal__img img{transform:scale(1.04)}
.gal__meta{padding:1rem 1.15rem 1.25rem;display:block}
/* these are spans inside a <button>, so they need to be blocks to stack */
.gal__title{display:block;font-size:var(--fs-small);font-weight:600;letter-spacing:-.012em;line-height:1.35}
.gal__sub{display:block;margin-top:.4rem;font-size:.78125rem;line-height:1.5;color:var(--on-dark-mute)}
.panel--light .gal__sub,.panel--white .gal__sub{color:var(--on-light-mute)}
.gal__zoom{margin-top:.7rem;font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-500);display:flex;align-items:center;gap:.35rem}
.gal__zoom::after{content:"⤢";font-size:.9rem}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed;inset:0;z-index:200;display:none;
  background:rgba(4,10,20,.94);
  /* no blur: the scrim is already 94% opaque, so the blur cost bought nothing */
  padding:clamp(1rem,4vw,3rem);
  place-items:center;
}
.lightbox[data-open="true"]{display:grid}
.lightbox__fig{margin:0;max-width:min(1100px,100%);max-height:100%;display:flex;flex-direction:column;gap:1rem}
.lightbox__fig img{max-height:74svh;width:auto;margin-inline:auto;border-radius:var(--r-sm);box-shadow:0 30px 80px -20px rgba(0,0,0,.8)}
.lightbox__cap{color:var(--on-dark-soft);font-size:var(--fs-small);text-align:center;max-width:70ch;margin-inline:auto}
.lightbox__cap b{display:block;color:#fff;font-weight:600;margin-bottom:.3rem;font-size:1.0625rem}
.lightbox__close,.lightbox__nav{
  position:fixed;z-index:2;width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;color:#fff;font-size:1.35rem;line-height:1;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);
  transition:background-color .25s var(--ease)
}
.lightbox__close:hover,.lightbox__nav:hover{background:rgba(255,255,255,.24)}
.lightbox__close{top:clamp(.75rem,2vw,1.5rem);right:clamp(.75rem,2vw,1.5rem)}
.lightbox__nav--prev{left:clamp(.5rem,2vw,1.5rem);top:50%;translate:0 -50%}
.lightbox__nav--next{right:clamp(.5rem,2vw,1.5rem);top:50%;translate:0 -50%}
body[data-lock="true"]{overflow:hidden}

/* ---------- ventures / logo row ---------- */
.venture{
  display:grid;gap:clamp(1.5rem,3vw,2.5rem);align-items:center;
  padding:clamp(1.5rem,3vw,2.25rem);border-radius:var(--r-lg);
  border:1px solid var(--rule-dark);background:rgba(255,255,255,.035);
  grid-template-columns:1fr;
}
.panel--light .venture,.panel--white .venture{border-color:var(--rule-light);background:var(--white)}
@media (min-width:820px){.venture{grid-template-columns:.9fr 1.1fr}}
.venture__media{border-radius:var(--r-md);overflow:hidden;aspect-ratio:16/11;background:var(--navy-800)}
.venture__media img{width:100%;height:100%;object-fit:cover}
.venture__tag{font-size:var(--fs-micro);font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-500);margin-bottom:.8rem}

/* ---------- principles (numbered rows) ---------- */
.principle{
  display:grid;gap:.75rem 2.5rem;grid-template-columns:1fr;
  padding-block:clamp(1.75rem,3.5vw,2.5rem);
  border-top:1px solid var(--rule-dark);
}
.panel--light .principle,.panel--white .principle{border-top-color:var(--rule-light)}
.principles .principle:last-child{border-bottom:1px solid var(--rule-dark)}
.panel--light .principles .principle:last-child,.panel--white .principles .principle:last-child{border-bottom-color:var(--rule-light)}
@media (min-width:820px){.principle{grid-template-columns:88px 1fr}}
.principle__n{font-size:.875rem;font-weight:700;letter-spacing:.1em;color:var(--gold-500);font-variant-numeric:tabular-nums}
.principle__body p{max-width:64ch;margin-top:.6rem}

/* ---------- two-column comparison ---------- */
.compare{display:grid;gap:clamp(1rem,2vw,1.5rem);grid-template-columns:1fr}
@media (min-width:820px){.compare{grid-template-columns:1fr 1fr}}
.compare__col{padding:clamp(1.5rem,2.6vw,2.25rem);border-radius:var(--r-lg);border:1px solid var(--rule-dark)}
.panel--light .compare__col,.panel--white .compare__col{border-color:var(--rule-light)}
.compare__col--yes{background:linear-gradient(180deg,rgba(201,162,74,.12),rgba(201,162,74,.03))}
.compare__col--no{background:rgba(255,255,255,.03)}
.panel--light .compare__col--no,.panel--white .compare__col--no{background:var(--cream-200)}
.compare__head{font-size:var(--fs-micro);font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1.25rem}
.compare__col--yes .compare__head{color:var(--gold-500)}
.compare__col--no .compare__head{color:var(--on-dark-mute)}
.panel--light .compare__col--no .compare__head,.panel--white .compare__col--no .compare__head{color:var(--on-light-mute)}
.compare ul{display:grid;gap:.85rem}
.compare li{position:relative;padding-left:1.6rem;font-size:var(--fs-small);line-height:1.5}
.compare__col--yes li::before{content:"✓";position:absolute;left:0;top:-.05em;color:var(--gold-500);font-weight:700}
.compare__col--no li::before{content:"—";position:absolute;left:0;top:-.05em;opacity:.55}

/* ---------- contact ---------- */
.contact-grid{display:grid;gap:clamp(2rem,5vw,4rem);grid-template-columns:1fr}
@media (min-width:900px){.contact-grid{grid-template-columns:1.05fr .95fr}}

.form{display:grid;gap:1.15rem}
.field{display:grid;gap:.5rem}
.field label{font-size:var(--fs-micro);font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--on-light-mute)}
.panel--dark .field label,.panel--darker .field label,.panel--gradient .field label{color:var(--on-dark-mute)}
.field input,.field select,.field textarea{
  width:100%;padding:.85rem 1rem;
  font:inherit;font-size:var(--fs-body);color:var(--on-light);
  background:var(--white);
  border:1px solid var(--rule-light);border-radius:var(--r-sm);
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease);
}
.field textarea{min-height:150px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:0;border-color:var(--gold-500);box-shadow:0 0 0 4px rgba(201,162,74,.18);
}
.field--half-row{display:grid;gap:1.15rem;grid-template-columns:1fr}
@media (min-width:640px){.field--half-row{grid-template-columns:1fr 1fr}}
.field__err{font-size:.8125rem;color:#C4453C;display:none}
.field[data-invalid="true"] input,.field[data-invalid="true"] textarea,.field[data-invalid="true"] select{border-color:#C4453C}
.field[data-invalid="true"] .field__err{display:block}
.checkline{display:flex;gap:.7rem;align-items:flex-start;font-size:.8125rem;line-height:1.5;color:var(--on-light-soft)}
.checkline input{width:18px;height:18px;flex:none;margin-top:.1rem;accent-color:var(--gold-600)}
.form__note{font-size:.8125rem;color:var(--on-light-mute)}
.form__status{
  display:none;padding:1rem 1.15rem;border-radius:var(--r-sm);
  font-size:var(--fs-small);
  background:rgba(201,162,74,.14);border:1px solid rgba(201,162,74,.4);color:var(--on-light);
}
.form__status[data-show="true"]{display:block}

.detail{padding-block:1.25rem;border-top:1px solid var(--rule-light)}
.panel--dark .detail{border-top-color:var(--rule-dark)}
.detail__label{font-size:var(--fs-micro);font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--on-light-mute);margin-bottom:.45rem}
.detail__value{font-size:1.0625rem;font-weight:500;letter-spacing:-.012em}
.detail__value a:hover{color:var(--gold-600)}
.detail small{display:block;margin-top:.35rem;font-size:.8125rem;color:var(--on-light-mute)}

/* ---------- CTA band ---------- */
.cta{text-align:center}
.cta .h2{max-width:24ch;margin-inline:auto}
.cta .lead{max-width:52ch;margin:1.25rem auto 0}
.cta .btn-row{margin-top:2.25rem;justify-content:center}

/* ---------- footer ---------- */
.footer{background:var(--navy-950);color:var(--on-dark);padding-block:clamp(3rem,6vw,4.5rem) 2rem;border-top:1px solid var(--rule-dark)}
.footer__top{display:grid;gap:clamp(2rem,4vw,3rem);grid-template-columns:1fr}
@media (min-width:820px){.footer__top{grid-template-columns:1.4fr 1fr 1fr}}
.footer .brand{margin-bottom:1.1rem}
.footer__tag{font-size:.8125rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-500);font-weight:600}
.footer__blurb{margin-top:1rem;font-size:var(--fs-small);color:var(--on-dark-mute);max-width:44ch}
.footer__h{font-size:var(--fs-micro);font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--on-dark-mute);margin-bottom:1.1rem}
.footer__links{display:grid;gap:.7rem}
.footer__links a{font-size:var(--fs-small);color:var(--on-dark-soft);transition:color .25s var(--ease)}
.footer__links a:hover{color:var(--gold-400)}
.footer__bottom{margin-top:clamp(2.5rem,5vw,3.5rem);padding-top:1.75rem;border-top:1px solid var(--rule-dark);display:grid;gap:1rem}
.footer__legal{font-size:.78125rem;line-height:1.6;color:var(--on-dark-mute);max-width:92ch}
.footer__copy{font-size:.78125rem;color:var(--on-dark-mute)}

/* ---------- motion ----------
   REMOVED. A scroll-driven entrance animation was attached to every .reveal element —
   42 of them on the family page — and scroll-linked animations at that count make the
   compositor re-evaluate all of them on every frame. The page is static now: content
   appears immediately and scrolling is the browser's own, which is always smoother than
   anything re-implemented on top of it. .reveal remains in the markup but does nothing. */

/* ---------- hero entrance ----------
   Runs ONCE on page load, never tied to scroll. Transform only — no opacity — so if
   the animation is skipped or interrupted for any reason the worst case is an element
   resting a few pixels low, still fully readable. Nothing here can hide content, and
   nothing here costs anything after the first half second. */
@media (prefers-reduced-motion:no-preference){
  .hero__eyebrow,.hero .display,.hero__lead,.hero .btn-row{
    animation:rv-enter .72s cubic-bezier(.22,1,.36,1) both;
  }
  .hero .display{animation-delay:.06s}
  .hero__lead{animation-delay:.12s}
  .hero .btn-row{animation-delay:.18s}
}
@keyframes rv-enter{
  from{transform:translate3d(0,14px,0)}
  to{transform:none}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .btn:hover,.card:hover,.gal:hover{transform:none}
}


/* ---------- bio header (portrait beside a name) ---------- */
.bio-head{display:flex;align-items:center;gap:clamp(1rem,2vw,1.4rem);margin-bottom:1.4rem}
.bio-head__portrait{
  flex:none;width:clamp(88px,11vw,124px);aspect-ratio:1;
  border-radius:var(--r-md);overflow:hidden;
  border:1px solid var(--rule-light);
  background:var(--cream-200);
}
.panel--dark .bio-head__portrait,.panel--darker .bio-head__portrait{border-color:var(--rule-dark);background:var(--navy-800)}
.bio-head__portrait img{width:100%;height:100%;object-fit:cover;object-position:center top}
.bio-head__name{margin:0}
.bio-head__role{
  margin-top:.45rem;font-size:var(--fs-micro);font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--gold-600);
}
.panel--dark .bio-head__role,.panel--darker .bio-head__role{color:var(--gold-400)}
