/* =========================================================
   FalconMind — site stylesheet (single source of truth)

   Loaded by index.html, news.html and every article page.
   Page-specific rules live in that page's own <style> block,
   which comes after this file in the cascade.

   DESIGN: light editorial. Warm bone field, near-black ink,
   bronze as the brand primary. Layout is an asymmetric spread —
   a sticky marginalia rail beside an offset content column.
   Type is Archivo throughout, with hierarchy carried by its
   width (62-125) and weight (100-900) axes rather than by a
   second family. JetBrains Mono holds every label and figure.

     1  tokens          10  ticker
     2  reset           11  approach
     3  type            12  mandate
     4  layout/spread   13  leadership
     5  motion          14  contact
     6  focus           15  footer
     7  nav             16  small screens
     8  hero            17  active nav
     9  buttons         18  print
   ========================================================= */

/* =========================================================
   1. TOKENS
   ========================================================= */
:root {
  /* ---- FIELD ----------------------------------------------------
     The site is light. --field-* names are kept (news.html's inline
     CSS references --field-2 and --field-3) but retargeted to bone. */
  --bone:      #F5F2EB;   /* page                                   */
  --bone-2:    #EDE9DF;   /* alternate band — a quiet 1.084:1 step   */
  --bone-3:    #E4DFD2;   /* pressed / hover surface                 */
  --navy:      #0F1427;   /* portrait cards + footer.
                             Sampled from the portrait photography
                             so the card backing vanishes behind it. */
  --field:     var(--bone);
  --field-2:   var(--bone-2);   /* legacy alias — news.html .acard   */
  --field-3:   var(--bone-3);   /* legacy alias                      */

  /* ---- INK — every value measured against --bone ---------------- */
  --ink:       #16171D;   /* 15.99:1                                 */
  --ink-2:     #4A4A52;   /*  7.85:1  body copy                      */
  --ink-3:     #5E5E66;   /*  5.75 bone · 5.30 bone-2 · 4.83 bone-3.
                             Clears AA on every surface it lands on;
                             #6E6E77 cleared bone alone and failed the
                             other two, where half the labels live.   */

  /* ---- BRONZE — two values, and the split is not optional --------
     #C9A766 on bone is 2.04:1. It is legible as a FILL or a RULE and
     illegible as TEXT. Every bronze that carries a glyph must be
     --bronze-ink (4.98:1). On --navy, plain --bronze works at 7.00:1. */
  --bronze:      #C9A766;
  --bronze-ink:  #806429;
  --bronze-2:    #9C8048;   /* legacy alias — news.html .acard-media */
  --bronze-soft: rgba(201, 167, 102, 0.16);

  /* ---- RULES ----------------------------------------------------- */
  --rule:          rgba(22, 23, 29, 0.12);
  --rule-2:        rgba(22, 23, 29, 0.06);
  --rule-bz:       rgba(128, 100, 41, 0.30);
  --hairline:      var(--rule);      /* legacy alias                  */
  --hairline-soft: var(--rule-2);    /* legacy alias — news.html      */
  --hairline-bz:   var(--rule-bz);   /* legacy alias                  */

  /* ---- TYPEFACES -------------------------------------------------
     Archivo is the brand font: variable wght 100-900 AND wdth 62-125,
     with true italics. The width axis is the hierarchy engine. */
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --serif: var(--sans);   /* alias: the subpages' inline CSS still asks
                             for --serif in 7 places. Keep it resolvable. */

  /* ---- ARCHIVO AXES ---------------------------------------------- */
  --w-display: 112;   /* expanded + light = editorial masthead        */
  --w-title:   100;
  --w-num:      88;   /* condensed figures read as data               */

  /* ---- TYPE SCALE ------------------------------------------------
     Every step interpolates across the same 390 -> 1440px range as
     clamp(MIN, MIN-3.9B + Bvw, MAX) where B = (target-MIN)/10.5.
     px+vw, never bare vw, so browser zoom keeps working. */
  --t-display: clamp(44px, 26.2px + 4.57vw, 108px);
  --t-h1:      clamp(34px, 22.9px + 2.86vw,  74px);
  --t-h2:      clamp(30px, 20.3px + 2.48vw,  64px);
  --t-stat:    clamp(34px, 28.1px + 1.52vw,  58px);
  --t-quote:   clamp(22px, 18.3px + 0.95vw,  38px);
  --t-h3:      clamp(20px, 18.5px + 0.38vw,  28px);
  --t-lede-lg: clamp(20px, 17.8px + 0.57vw,  29px);
  --t-lede:    clamp(17px, 15.9px + 0.29vw,  22px);
  --t-body:    17px;
  --t-sm:      14.5px;
  --t-xs:      13px;
  --t-label:   11px;

  --lt-display: -0.028em;
  --lt-head:    -0.018em;
  --lt-label:    0.14em;
  --lt-wide:     0.28em;

  --lh-display: 1.04;
  --lh-head:    1.12;
  --lh-body:    1.62;

  /* ---- SPACING ---------------------------------------------------- */
  --s-1:  4px;  --s-2:  8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px;
  --space-section: clamp(80px, 56.4px + 6.05vw, 144px);
  --space-block:   clamp(44px, 32.1px + 3.05vw,  76px);
  --space-head:    clamp(36px, 24.1px + 3.05vw,  68px);

  /* ---- LAYOUT ------------------------------------------------------ */
  --gutter:   clamp(20px, 4vw, 56px);
  --col-max:  1280px;
  --col-read: 680px;
  --rail:     clamp(150px, 15vw, 210px);
  --rail-gap: clamp(28px, 5vw, 88px);
  --nav-h:    80px;

  --r-sm: 3px;  --r-md: 6px;  --r-pill: 999px;

  /* ---- FOCUS -------------------------------------------------------
     A --bronze ring on bone is 2.04:1 and fails the 3:1 non-text
     minimum. The focus colour must be the darkened bronze. */
  --focus-w: 2px;
  --focus-offset: 3px;
  --focus-color: var(--bronze-ink);

  --z-raised: 2;
  --z-drawer: 105;
  --z-nav:    120;
  --z-skip:   130;

  --cursor-x: 50%;
  --cursor-y: 50%;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* =========================================================
   2. RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: var(--lh-body);
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--bronze); color: var(--ink); }

/* Paper tooth. Inverted, because feTurbulence renders as light
   speckle which reads as dirt on a bone field. No mix-blend-mode:
   a blended full-viewport fixed layer forces the page through one
   composited group and can drop the content painted above it. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.022;
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* =========================================================
   3. TYPE
   ========================================================= */

/* The ONE mono label recipe. Components below set colour only. */
.eyebrow, .sec-num, .sec-num b, .mono, .meta-k, .prin-num,
.alloc-legend, .mandate-row > .m-num, .lead-role, .contact-block .k,
.foot-col h2, .foot-bottom, .ticker-item, .nav-mobile-foot,
.nav-mobile-links a .num, .m-tag, .nav-locale, .hero-vmark,
.stat > span, .caps {
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: var(--lt-label);
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--ink-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--bronze);
}
.mono, .caps { color: var(--ink-3); }

/* Display voice: Archivo expanded + light. The bronze italic <em>
   is the brand's signature accent — it inherits its parent weight
   and uses the darkened bronze, since bronze text on bone fails AA. */
.headline, .contact-headline, .foot-brand, .hero h1 {
  font-family: var(--sans);
  font-stretch: calc(var(--w-display) * 1%);
  font-weight: 300;
  letter-spacing: var(--lt-display);
  line-height: var(--lh-display);
  color: var(--ink);
}
.headline em, .contact-headline em, .hero h1 em,
.prin h3 em, .m-title em, .approach-manifesto em {
  font-style: italic;
  font-weight: inherit;
  color: var(--bronze-ink);
}
.headline { font-size: var(--t-h2); }

.lede {
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 54ch;
}
.body { font-size: var(--t-body); line-height: var(--lh-body); color: var(--ink-2); max-width: 56ch; }
.body p + p { margin-top: 1em; }

.sec-num { color: var(--ink-3); line-height: 1.5; }
.sec-num b {
  color: var(--bronze-ink);
  font-weight: 500;
  display: block;
  margin-bottom: var(--s-2);
}

/* =========================================================
   4. LAYOUT — the .spread rail is the whole design
   ========================================================= */
.wrap {
  width: 100%;
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.section {
  padding: var(--space-section) 0;
  position: relative;
  border-top: 1px solid var(--rule);
}

.spread { display: grid; gap: var(--rail-gap); grid-template-columns: 1fr; }
.spread > .rail { display: flex; flex-direction: column; gap: var(--s-5); }
.spread > .col  { min-width: 0; }

@media (min-width: 900px) {
  .spread { grid-template-columns: var(--rail) minmax(0, 1fr); }
  .spread > .rail {
    position: sticky;
    top: calc(var(--nav-h) + var(--s-6));
    align-self: start;   /* REQUIRED — a stretched grid item cannot stick */
  }
}

/* =========================================================
   5. MOTION PRIMITIVES
   ========================================================= */
.reveal { transition: opacity 1s var(--ease), transform 1s var(--ease); }
/* Hidden ONLY when JS has confirmed it is running (the inline snippet in
   <head> sets .js on <html>). Without this gate the content is
   unconditionally opacity:0 and any JS failure at all — a stale cached
   script, a thrown error, a blocking extension, rAF not firing in a
   background tab — renders a blank page. The animation is an
   enhancement; the content is not. */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in { opacity: 1; transform: none; }

.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;   /* the mask must clear descenders */
}
.reveal-mask > .ln {
  display: inline-block;
  transition: transform 1s var(--ease);
  will-change: transform;
}
.js .reveal-mask > .ln { transform: translateY(115%); }
.js .reveal-mask.in > .ln { transform: none; }

.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--bronze-soft); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  /* Load-bearing: with the animation gone there is nothing left to
     reveal the content, so it has to start visible. */
  .reveal, .acard { opacity: 1 !important; transform: none !important; }
  .reveal-mask > .ln { transform: none !important; }
  .ticker-track,
  .nav-locale .live-dot,
  .nav-mobile-foot .live-dot { animation: none !important; }
}

/* =========================================================
   6. FOCUS + SKIP LINK
   ========================================================= */
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: var(--focus-w) solid var(--focus-color);
  outline-offset: var(--focus-offset);
  border-radius: var(--r-sm);
}
.btn-bronze:focus-visible,
.nav-cta:focus-visible { outline-color: var(--ink); }
:focus:not(:focus-visible) { outline: none; }
@media (forced-colors: active) {
  :where(a, button, [tabindex]):focus-visible { outline-color: Highlight; }
}

.skip-link {
  position: fixed;
  left: var(--gutter);
  top: 0;
  z-index: var(--z-skip);
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bone);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font: 500 var(--t-xs)/1 var(--sans);
  transition: transform .3s var(--ease);
}
.skip-link:focus-visible { transform: translateY(14px); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* =========================================================
   7. NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  background: var(--bone);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--rule); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); }
.brand { display: inline-flex; align-items: center; color: var(--ink); }
.brand:hover { opacity: .7; }
.brand .lockup { height: 44px; width: auto; fill: currentColor; }
.brand .lockup path { fill: currentColor; }
@media (max-width: 600px) { .brand .lockup { height: 34px; } }

.nav-links { display: none; align-items: center; gap: var(--s-6); }
.nav-links a {
  font-size: var(--t-sm);
  font-weight: 400;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--bronze-ink);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: var(--s-5); }
.nav-locale { display: none; color: var(--ink-3); letter-spacing: 0.06em; align-items: center; white-space: nowrap; }
.nav-locale .live-dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--bronze);
  margin-right: 8px;
  animation: pulse 2.4s var(--ease) infinite;
}
.nav-locale .sep { opacity: .4; margin: 0 8px; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--bronze);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 500;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--bone); transform: translateY(-1px); }
.nav-cta .arrow { width: 10px; height: 10px; }

.nav-menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  color: var(--ink);
  position: relative;
  z-index: 110;
}
.nav-menu-btn:hover { border-color: var(--bronze-ink); }
.nav-menu-btn .bar { transition: transform .3s var(--ease); transform-origin: center; }
body.nav-open .nav-menu-btn .bar-1 { transform: translateY(2px) rotate(45deg); }
body.nav-open .nav-menu-btn .bar-2 { transform: translateY(-2px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-locale { display: inline-flex; }
  .nav-menu-btn { display: none; }
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: var(--z-drawer);
  padding-top: calc(var(--nav-h) + 16px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
body.nav-open .nav-mobile {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .35s var(--ease), visibility 0s linear 0s;
}
.nav-mobile-links { display: flex; flex-direction: column; }
.nav-mobile-links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-stretch: calc(var(--w-display) * 1%);
  font-size: var(--t-h1);
  font-weight: 300;
  letter-spacing: var(--lt-display);
  color: var(--ink);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .55s var(--ease), opacity .55s var(--ease), color .25s var(--ease);
}
body.nav-open .nav-mobile-links a { transform: none; opacity: 1; }
body.nav-open .nav-mobile-links a:nth-child(1) { transition-delay: 0.10s; }
body.nav-open .nav-mobile-links a:nth-child(2) { transition-delay: 0.16s; }
body.nav-open .nav-mobile-links a:nth-child(3) { transition-delay: 0.22s; }
body.nav-open .nav-mobile-links a:nth-child(4) { transition-delay: 0.28s; }
body.nav-open .nav-mobile-links a:nth-child(5) { transition-delay: 0.34s; }
body.nav-open .nav-mobile-links a:nth-child(6) { transition-delay: 0.40s; }
.nav-mobile-links a:hover { color: var(--bronze-ink); }
.nav-mobile-links a .num { color: var(--ink-3); font-weight: 500; }
.nav-mobile-foot {
  margin-top: var(--s-6);
  display: flex; gap: 12px; align-items: center;
  color: var(--ink-3);
}
.nav-mobile-foot .sep { opacity: .4; }
.nav-mobile-foot .live-dot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--bronze);
  margin-right: 8px;
  animation: pulse 2.4s var(--ease) infinite;
}
body.nav-open { overflow: hidden; }
@media (min-width: 900px) { .nav-mobile { display: none; } }

/* =========================================================
   8. HERO
   ========================================================= */
.hero {
  padding-top: calc(var(--nav-h) + clamp(28px, 4vw, 64px));
  padding-bottom: clamp(40px, 5vw, 76px);
  position: relative;
  overflow: hidden;
  border-top: none;
}

/* Drafting geometry, not glow. Bronze hairline arcs bleeding off the
   right edge behind the type — what the dark site did with a blurred
   radial gradient, done with line instead. */
.hero-orbit {
  position: absolute;
  top: 50%;
  left: 62%;
  width: clamp(620px, 78vw, 1180px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.hero-orbit svg { width: 100%; height: 100%; }
.hero-orbit circle {
  fill: none;
  stroke: var(--rule-bz);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;   /* the viewBox scales ~6x; without
                                          this a 1px stroke paints as 6px */
}
.hero-orbit .dot { fill: var(--bronze-ink); stroke: none; }

.hero-vmark {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  letter-spacing: var(--lt-wide);
  color: var(--ink-3);
  z-index: var(--z-raised);
  display: none;
}
@media (min-width: 1080px) { .hero-vmark { display: block; } }

.hero .wrap { position: relative; z-index: var(--z-raised); }

.hero-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--s-5);
  row-gap: var(--s-2);
  align-items: baseline;
}
.meta-k { color: var(--ink-3); }
.meta-v {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.hero h1 { font-size: var(--t-display); }
.hero h1 .line { display: block; }
.hero h1 .ind { display: inline-block; width: clamp(30px, 6vw, 92px); }

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .hero-bottom { grid-template-columns: 1.05fr 1fr; gap: var(--rail-gap); }
}
.hero-lede {
  font-size: var(--t-lede-lg);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: var(--lt-head);
  color: var(--ink);
  max-width: 22ch;
}
.hero-side { display: flex; flex-direction: column; gap: var(--s-6); justify-content: flex-end; }
.hero-side p { color: var(--ink-2); font-size: var(--t-body); line-height: var(--lh-body); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   9. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 500;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn-bronze { background: var(--bronze); color: var(--ink); }
.btn-bronze:hover { background: var(--ink); color: var(--bone); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--rule); color: var(--ink); }
.btn-ghost:hover { border-color: var(--bronze-ink); color: var(--bronze-ink); }
.btn .arrow { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.icon-btn {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  border: 1px solid var(--rule);
  /* declared with !important because .foot-col a (0,1,1) and
     .contact-block .v a (0,2,1) both outrank this class and previously
     forced display:block / padding, which knocked the glyph off centre. */
  display: inline-flex !important;
  align-items: center; justify-content: center;
  padding: 0 !important;
  flex: none;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.icon-btn:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.icon-btn svg { width: 17px; height: 17px; display: block; }

/* =========================================================
   10. TICKER
   ========================================================= */
.ticker {
  position: relative;
  overflow: hidden;
  background: var(--bone-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: var(--z-raised); pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(to right, #EDE9DF, rgba(237, 233, 223, 0)); }
.ticker::after  { right: 0; background: linear-gradient(to left,  #EDE9DF, rgba(237, 233, 223, 0)); }
.ticker-track {
  display: flex;
  gap: 60px;
  padding: 16px 0;
  width: max-content;
  animation: tick 60s linear infinite;
  will-change: transform;
}
.ticker-item { color: var(--ink-3); display: inline-flex; align-items: center; gap: 14px; }
.ticker-item .mk { color: var(--bronze-ink); font-size: 8px; }
.ticker-item b { color: var(--ink); font-weight: 500; }
@keyframes tick {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* =========================================================
   11. APPROACH
   ========================================================= */
.approach { background: var(--bone); }

.principles-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--space-head);
  padding-top: var(--space-block);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .principles-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-7); }
}
.prin-num { color: var(--bronze-ink); }
.prin h3 {
  font-family: var(--sans);
  font-stretch: calc(var(--w-title) * 1%);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: var(--lh-head);
  letter-spacing: var(--lt-head);
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-3);
}
.prin p { color: var(--ink-2); font-size: var(--t-body); line-height: var(--lh-body); max-width: 34ch; }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  margin-top: var(--space-block);
  padding-top: var(--space-block);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .approach-grid { grid-template-columns: 1fr 1fr; gap: var(--rail-gap); }
}
/* Set below .headline so the section keeps ONE primary voice. It reads
   as a quote through style — expanded, light, bronze accent — not size. */
.approach-manifesto {
  font-family: var(--sans);
  font-stretch: 104%;
  font-weight: 300;
  font-size: var(--t-quote);
  line-height: 1.3;
  letter-spacing: var(--lt-head);
  color: var(--ink);
  max-width: 22ch;
}
.approach-manifesto .drop { color: var(--bronze-ink); }
.approach-side { display: flex; flex-direction: column; gap: var(--s-7); }

/* 2-up, not 4-up: .stat-row sits in the narrower right column, and
   four columns wraps "Active positions, target" onto three lines. */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-7) var(--s-5);
  border-top: 1px solid var(--rule);
  padding-top: var(--s-6);
  align-items: start;
}
.stat b {
  font-family: var(--sans);
  font-stretch: calc(var(--w-num) * 1%);
  font-weight: 300;
  font-size: var(--t-stat);
  line-height: 1;
  letter-spacing: var(--lt-display);
  color: var(--ink);
  display: block;
  margin-bottom: var(--s-3);
  font-variant-numeric: tabular-nums lining-nums;
}
.stat b .sup {
  font-size: 0.42em;
  vertical-align: baseline;
  position: relative;
  top: -1.1em;
  color: var(--bronze-ink);
  margin-left: 2px;
  font-weight: 400;
}
.stat > span { color: var(--ink-3); display: block; line-height: 1.5; }
.count { display: inline-block; min-width: 2ch; }

/* =========================================================
   12. MANDATE
   ========================================================= */
.mandate { background: var(--bone-2); }

.alloc-bar {
  display: flex;
  height: 10px;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-top: var(--space-head);
  background: var(--bone-3);
}
.alloc-seg { height: 100%; transition: width 1.4s var(--ease); width: 0; }
.alloc-seg + .alloc-seg { border-left: 1px solid var(--bone-2); }
.alloc-seg.a1 { background: var(--bronze); }
.alloc-seg.a2 { background: #B08F4E; }
.alloc-seg.a3 { background: #96793A; }
.alloc-legend {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  margin-top: var(--s-4);
  color: var(--ink-3);
}
.alloc-legend span::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 1px; vertical-align: middle; margin-right: 8px;
}
.alloc-legend .l1::before { background: var(--bronze); }
.alloc-legend .l2::before { background: #B08F4E; }
.alloc-legend .l3::before { background: #96793A; }

.mandate-stack { margin-top: var(--space-block); border-top: 1px solid var(--rule); }
.mandate-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-4);
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .35s var(--ease);
}
@media (min-width: 900px) {
  .mandate-row {
    grid-template-columns: 44px minmax(0, 1fr) 88px minmax(0, 1.6fr) minmax(0, 120px);
    gap: var(--s-5);
    align-items: baseline;
  }
}
.mandate-row:hover { background: rgba(22, 23, 29, 0.022); }
.mandate-row::before {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1px; background: var(--bronze);
  transition: width .9s var(--ease);
}
.mandate-row:hover::before { width: 100%; }
.mandate-row > .m-num { color: var(--ink-3); }
.m-title {
  font-family: var(--sans);
  font-stretch: calc(var(--w-title) * 1%);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: var(--lh-head);
  letter-spacing: var(--lt-head);
  color: var(--ink);
}
.m-pct {
  font-family: var(--sans);
  font-stretch: calc(var(--w-num) * 1%);
  font-weight: 300;
  font-size: var(--t-stat);
  letter-spacing: var(--lt-display);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
}
.m-pct sup {
  font-size: 0.42em;
  color: var(--bronze-ink);
  vertical-align: baseline;
  position: relative;
  top: -1.1em;
  font-weight: 400;
  margin-left: 2px;
}
.m-desc { color: var(--ink-2); font-size: var(--t-sm); line-height: 1.6; max-width: 44ch; }
.m-tags { display: flex; flex-wrap: wrap; gap: 6px; }
@media (min-width: 900px) { .m-tags { justify-content: flex-end; } }
.m-tag {
  letter-spacing: 0.1em;
  color: var(--ink-2);
  padding: 5px 11px;
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  white-space: nowrap;
  line-height: 1.4;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.mandate-row:hover .m-tag { border-color: var(--rule-bz); color: var(--bronze-ink); }

/* =========================================================
   13. LEADERSHIP
   ========================================================= */
.leadership { background: var(--bone); }

.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: var(--space-head);
}
@media (min-width: 700px) {
  .lead-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}

/* Full-bleed portrait cards. The two source photographs have slightly
   different background densities (#0f1427 vs #0a0e18); with the image
   filling the whole card there is no adjacent flat navy to compare it
   against, so the difference reads as photography rather than error. */
.lead-card { display: flex; flex-direction: column; gap: var(--s-5); }
.lead-portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.lead-portrait { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--s-6);
  background: linear-gradient(to top, rgba(15, 20, 39, .94) 20%, rgba(15, 20, 39, 0));
  color: var(--bone);
}
.lead-name {
  font-family: var(--sans);
  font-stretch: 104%;
  font-weight: 400;
  font-size: var(--t-h3);
  letter-spacing: var(--lt-head);
  line-height: 1.15;
  color: var(--bone);
}
.lead-role { color: var(--bronze); margin-top: var(--s-2); }
.lead-card p { color: var(--ink-2); font-size: var(--t-body); line-height: var(--lh-body); max-width: 42ch; }
.lead-focus { display: flex; gap: 6px; flex-wrap: wrap; }

/* DORMANT: styles the philosophy block, whose markup is deliberately
   commented out in index.html. Kept so it can be restored intact. */
.philo-block { display: grid; grid-template-columns: 1fr; gap: var(--s-7); margin-bottom: var(--space-block); }
@media (min-width: 900px) { .philo-block { grid-template-columns: 1.5fr 1fr; } }
.philo-quote { display: flex; flex-direction: column; gap: var(--s-6); }
.philo-block blockquote {
  font-family: var(--sans);
  font-stretch: 104%;
  font-weight: 300;
  font-size: var(--t-quote);
  line-height: 1.3;
  letter-spacing: var(--lt-head);
  color: var(--ink);
  max-width: 26ch;
}
.philo-block blockquote em { font-style: italic; color: var(--bronze-ink); font-weight: inherit; }
.philo-block blockquote .qm { color: var(--bronze-ink); }
.philo-side p { color: var(--ink-2); }
.philo-side p + p { margin-top: 1em; }

/* =========================================================
   14. CONTACT
   ========================================================= */
.contact { background: var(--bone); }
.contact-headline { font-size: var(--t-h1); margin-top: var(--s-5); }
.contact-main > .lede { margin-top: var(--s-6); }
.contact-cta { margin-top: var(--s-7); }

.contact-side {
  display: flex; flex-direction: column; gap: var(--s-5);
  margin-top: var(--space-block);
  padding-top: var(--space-block);
  border-top: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: var(--rail-gap); align-items: start; }
  .contact-side { margin-top: 0; padding-top: 0; border-top: none; }
}
.contact-block {
  border-top: 1px solid var(--rule);
  padding-top: var(--s-4);
  display: grid;
  grid-template-columns: minmax(92px, 0.55fr) minmax(0, 1fr);
  gap: var(--s-5);
  align-items: start;
}
.contact-block .k { color: var(--ink-3); }
.contact-block .v {
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 400;
  color: var(--ink);
}
.contact-block .v a:not(.icon-btn) {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.contact-block .v a:not(.icon-btn):hover { border-color: var(--bronze-ink); color: var(--bronze-ink); }
.contact-socials { display: flex; gap: 10px; }

/* =========================================================
   15. FOOTER — the one large dark field, closing the document
   ========================================================= */
.foot {
  background: var(--navy);
  color: var(--bone);
  padding: var(--space-section) 0 var(--s-6);
  position: relative;
  border-top: none;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(245, 242, 235, .14);
}
@media (min-width: 620px) { .foot-top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .foot-top { grid-template-columns: 1.7fr repeat(3, minmax(0, .85fr)); gap: var(--s-7); align-items: start; }
}
.foot-brand-block { display: flex; flex-direction: column; gap: var(--s-6); }
.foot-logo { height: clamp(40px, 3.6vw, 52px); width: auto; fill: currentColor; }
.foot-logo path { fill: currentColor; }
.foot-brand {
  font-size: var(--t-h1);
  color: var(--bone);
}
/* On --navy the plain bronze is legible at 7.00:1, so the accent
   returns to the brand value here rather than the darkened one. */
.foot-brand em { font-style: italic; font-weight: inherit; color: var(--bronze); }
.foot-col h2 { color: rgba(245, 242, 235, .55); margin-bottom: var(--s-4); font-weight: 500; }
.foot-col a:not(.icon-btn), .foot-col span {
  display: block;
  font-size: var(--t-sm);
  color: rgba(245, 242, 235, .78);
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.foot-col a:not(.icon-btn):hover { color: var(--bronze); }
.foot-socials { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.foot-col .icon-btn {
  border-color: rgba(245, 242, 235, .30);
  color: rgba(245, 242, 235, .92);
  padding: 0;
}
.foot-col .icon-btn:hover { background: var(--bronze); color: var(--navy); border-color: var(--bronze); }
.foot-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-6);
  color: rgba(245, 242, 235, .55);
}
.foot-bottom a:hover { color: var(--bronze); }
.foot :where(a, button):focus-visible { outline-color: var(--bronze); }

/* =========================================================
   16. SMALL SCREENS
   ========================================================= */
@media (max-width: 600px) {
  :root { --nav-h: 68px; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: var(--s-6) var(--s-4); }
  .m-tag { padding: 4px 10px; letter-spacing: 0.08em; }
}

/* =========================================================
   17. ACTIVE NAV
   Driven by aria-current, not by href matching — index.html loads
   this sheet too, and an href rule would permanently highlight
   "News & Content" on the homepage.
   ========================================================= */
.nav-links a[aria-current] { color: var(--bronze-ink); }
.nav-links a[aria-current]::after { width: 100%; }
.nav-mobile-links a[aria-current] span:first-child { color: var(--bronze-ink); }

/* =========================================================
   18. PRINT — free now that the site is light
   ========================================================= */
@media print {
  .nav, .nav-mobile, .ticker, .skip-link, .hero-orbit, .hero-vmark,
  .hero-ctas, body::after { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .hero { padding: 18pt 0; border-top: 1px solid #ccc; }
  .spread { display: block; }
  .spread > .rail { position: static; margin-bottom: 12pt; }
  .foot { background: #fff; color: #000; }
  .foot-col a, .foot-col span, .foot-bottom, .foot-brand { color: #000; }
  .reveal, .reveal-mask > .ln { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
