/* ============================================================
   STRATA ENGINEERING - SHARED SITE SYSTEM
   Architectural monograph: white + navy. Playfair Display + Outfit.
   One accent (navy #25345e). Light default, dark opt-in via
   data-theme="dark". Content cards are monograph PANELS (crisp
   hairline border, subtle tint fill, 3px radius, no shadow, no
   lift). Consolidated from the per-page inline styles, June 2026.
   ============================================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

/* Theme tokens */
:root {
  /* Light base is warm cream (team pick, June 11). Text/navy/hairlines unchanged
     so contrast holds; panels lift to a warmer near-white off the cream. */
  --ink: #efeee9;
  --ink-2: #f6f4ee;
  --ink-3: #faf8f3;
  --paper: #0e1014;
  --tint-rgb: 11, 13, 16;
  --paper-dim: rgba(var(--tint-rgb), 0.68);
  --paper-faint: rgba(var(--tint-rgb), 0.46);
  --paper-line: rgba(var(--tint-rgb), 0.13);
  --paper-hair: rgba(var(--tint-rgb), 0.08);
  --brass: #25345e;
  --accent-rgb: 37, 52, 94;
  --brass-dim: rgba(var(--accent-rgb), 0.18);
  --btn-surface: #25345e;
  --btn-surface-border: rgba(0,0,0,0.18);
  --btn-surface-highlight: rgba(255,255,255,0.14);
  --btn-surface-color: #ffffff;
  --btn-em-bg: #ffffff;
  --btn-em-color: #25345e;
  --noise-opacity: 0.18;
  --spring: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1440px;
  --gutter: 3.5rem;
}
[data-theme="dark"] {
  --ink: #0b0d10;
  --ink-2: #121519;
  --ink-3: #191d22;
  --paper: #f1efe9;
  --tint-rgb: 241, 239, 233;
  --paper-dim: rgba(var(--tint-rgb), 0.66);
  --paper-faint: rgba(var(--tint-rgb), 0.4);
  --paper-line: rgba(var(--tint-rgb), 0.12);
  --paper-hair: rgba(var(--tint-rgb), 0.06);
  --brass: #6b85bf;
  --accent-rgb: 107, 133, 191;
  --brass-dim: rgba(var(--accent-rgb), 0.22);
  --btn-surface: linear-gradient(180deg, #f6f5f1 0%, #d8d6cf 100%);
  --btn-surface-border: rgba(0,0,0,0.1);
  --btn-surface-highlight: rgba(255,255,255,0.6);
  --btn-surface-color: #0b0d10;
  --btn-em-bg: #0b0d10;
  --btn-em-color: #f1efe9;
  --noise-opacity: 0.45;
}
html { transition: background-color 0.4s ease; }
body { transition: background-color 0.4s ease, color 0.4s ease; }

/* Nav stays a dark floating pill in both modes (brand chrome). */
nav {
  --ink: #0b0d10; --ink-2: #121519; --ink-3: #191d22;
  --paper: #f1efe9;
  --paper-dim: rgba(241, 239, 233, 0.72);
  --paper-faint: rgba(241, 239, 233, 0.44);
  --paper-line: rgba(241, 239, 233, 0.14);
  --paper-hair: rgba(241, 239, 233, 0.07);
  --tint-rgb: 241, 239, 233;
  --brass: #6b85bf; --accent-rgb: 107, 133, 191;
  color: #f1efe9;
}

/* Base */
body {
  font-family: 'Outfit', ui-sans-serif, sans-serif;
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv11" on;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 3px;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
.hero-sub, .hero-eyebrow + p, p.lead { text-wrap: pretty; }

/* Ambient page texture (architectural grid + noise) */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(var(--tint-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--tint-rgb), 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.93 0 0 0 0 0.91 0 0 0 0 0.87 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: var(--noise-opacity); mix-blend-mode: overlay;
}
main, nav, footer { position: relative; z-index: 1; }

/* Floating pill nav */
nav {
  position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 50;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid var(--paper-line); border-radius: 999px;
  box-shadow: inset 0 1px 0 var(--paper-hair), 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.5s var(--spring);
}
.nav-brand { display: flex; align-items: center; padding-right: 1rem; border-right: 1px solid var(--paper-line); line-height: 0; }
.nav-logo { height: 26px; width: auto; max-width: 180px; display: block; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; font-size: 0.82rem; font-weight: 500; }
.nav-links > a {
  padding: 0.5rem 0.9rem; border-radius: 999px; color: var(--paper-dim); white-space: nowrap;
  transition: color 0.3s var(--spring), background 0.3s var(--spring);
}
.nav-links > a:hover { color: var(--paper); background: var(--paper-hair); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.15rem; border-radius: 999px;
  background: linear-gradient(180deg, rgba(var(--tint-rgb),0.12), rgba(var(--tint-rgb),0.04));
  border: 1px solid var(--paper-line);
}
.nav-cta span { padding: 0.45rem 0.9rem 0.45rem 1rem; font-size: 0.82rem; font-weight: 500; color: var(--paper); }
.nav-cta em {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  background: var(--paper); color: var(--ink); font-style: normal; transition: transform 0.4s var(--spring);
}
.nav-cta:hover em { transform: rotate(-45deg); }
.nav-cta em svg { width: 13px; height: 13px; }
.nav-cta:active { transform: scale(0.98); }

/* Nav dropdown index menus */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 0.9rem; border-radius: 999px;
  font-family: inherit; font-size: 0.82rem; font-weight: 500; line-height: 1;
  color: var(--paper-dim); background: none; border: 0; cursor: pointer; white-space: nowrap;
  transition: color 0.3s var(--spring), background 0.3s var(--spring);
}
.nav-trigger:hover, .nav-item:hover .nav-trigger, .nav-item:focus-within .nav-trigger { color: var(--paper); background: var(--paper-hair); }
.nav-caret { width: 9px; height: 6px; opacity: 0.65; transition: transform 0.35s var(--spring); }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-panel {
  position: absolute; top: 100%; left: 50%; width: 360px; max-width: 92vw; padding-top: 0.7rem;
  transform: translateX(-50%) translateY(8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.32s var(--spring), transform 0.32s var(--spring), visibility 0.32s; z-index: 60;
}
.nav-panel.nav-panel-sm { width: 230px; }
.nav-item:hover .nav-panel, .nav-item:focus-within .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-panel-inner {
  background: rgba(11,13,16,0.94);
  backdrop-filter: blur(22px) saturate(1.2); -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid var(--paper-line); border-radius: 18px;
  box-shadow: 0 26px 64px rgba(0,0,0,0.5), inset 0 1px 0 var(--paper-hair); padding: 1rem 1.05rem;
  max-height: 74vh; overflow-y: auto;
}
.nav-panel-lead {
  display: block; padding: 0.75rem 0.85rem; margin-bottom: 0.55rem; border-radius: 12px;
  border: 1px solid var(--paper-line); background: rgba(var(--accent-rgb),0.18);
  transition: background 0.3s var(--spring), border-color 0.3s var(--spring);
}
.nav-panel-lead:hover { background: rgba(var(--accent-rgb),0.30); border-color: var(--brass); }
.npl-eyebrow { display: block; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.3rem; }
.npl-title { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--paper); letter-spacing: -0.01em; line-height: 1.1; }
.npl-title em { font-style: italic; color: var(--brass); }
.npl-sub { display: block; font-size: 0.74rem; color: var(--paper-faint); margin-top: 0.25rem; line-height: 1.4; }
.nav-index { list-style: none; margin: 0; padding: 0; }
.nav-index li + li { border-top: 1px solid var(--paper-hair); }
.nav-index a {
  display: flex; align-items: baseline; gap: 0.7rem; padding: 0.6rem 0.85rem; border-radius: 9px;
  font-size: 0.84rem; color: var(--paper-dim); white-space: nowrap;
  transition: color 0.25s var(--spring), background 0.25s var(--spring);
}
.nav-index a:hover { color: var(--paper); background: var(--paper-hair); }
.ix-fig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.82rem; color: var(--brass); min-width: 1.4rem; }
.nav-index a em { font-style: italic; color: var(--brass); }

/* Burger + mobile overlay */
.nav-burger { display: none; width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--paper-line); background: var(--paper-hair); cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--paper); border-radius: 2px; transition: transform 0.3s var(--spring), opacity 0.3s var(--spring); }
.nav-open .nav-burger span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-2.75px) rotate(-45deg); }
.nav-mobile {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(8,10,13,0.975); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--spring), visibility 0.4s;
  overflow-y: auto; padding: 6.5rem 1.5rem 3rem;
  --paper: #f1efe9; --paper-dim: rgba(241,239,233,0.72); --paper-faint: rgba(241,239,233,0.44);
  --paper-line: rgba(241,239,233,0.14); --paper-hair: rgba(241,239,233,0.07);
  --ink: #0b0d10; --tint-rgb: 241,239,233; --brass: #6b85bf; --accent-rgb: 107,133,191;
}
.nav-open .nav-mobile { opacity: 1; visibility: visible; }
.nav-mobile-inner { max-width: 460px; margin: 0 auto; }
.nm-eyebrow { font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass); margin: 1.7rem 0 0.3rem; }
.nm-index { list-style: none; margin: 0; padding: 0; }
.nm-index li + li { border-top: 1px solid var(--paper-hair); }
.nm-index a { display: flex; align-items: baseline; gap: 0.85rem; padding: 0.85rem 0.2rem; font-family: 'Playfair Display', serif; font-size: 1.22rem; color: var(--paper); }
.nm-index a em { font-style: italic; color: var(--brass); }
.nm-cta { display: inline-flex; margin-top: 1.9rem; padding: 0.85rem 1.5rem; border-radius: 999px; background: var(--paper); color: var(--ink); font-weight: 500; font-size: 0.9rem; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--paper-line);
  background: transparent; color: var(--paper-dim); display: grid; place-items: center; cursor: pointer;
  transition: color 0.3s var(--spring), border-color 0.3s var(--spring), background 0.3s var(--spring);
  position: relative; padding: 0;
}
.theme-toggle:hover { color: var(--paper); border-color: var(--paper-dim); background: var(--paper-hair); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .theme-icon { position: absolute; inset: 0; margin: auto; transition: opacity 0.35s var(--spring), transform 0.35s var(--spring); }
.theme-toggle .theme-icon-sun { opacity: 0; transform: rotate(-40deg) scale(0.6); }
.theme-toggle .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-toggle .theme-icon-moon { opacity: 0; transform: rotate(40deg) scale(0.6); }
[data-theme="dark"] .theme-toggle .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.3rem; border-radius: 999px; font-size: 0.92rem; font-weight: 500; letter-spacing: -0.005em; transition: all 0.4s var(--spring); }
.btn-primary {
  background: var(--btn-surface); color: var(--btn-surface-color); border: 1px solid var(--btn-surface-border);
  box-shadow: inset 0 1px 0 var(--btn-surface-highlight), 0 4px 12px rgba(0,0,0,0.25);
}
.btn-primary span { padding: 0.55rem 0.2rem 0.55rem 1.05rem; }
.btn-primary em {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px;
  background: var(--btn-em-bg); color: var(--btn-em-color); font-style: normal; transition: transform 0.4s var(--spring);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 var(--btn-surface-highlight), 0 10px 28px rgba(0,0,0,0.35); }
.btn-primary:hover em { transform: rotate(-45deg); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary em svg { width: 13px; height: 13px; }
.btn-ghost { padding: 0.65rem 1.25rem; color: var(--paper-dim); border: 1px solid var(--paper-line); background: transparent; }
.btn-ghost:hover { color: var(--paper); border-color: var(--paper-dim); }
.btn-ghost:active { transform: scale(0.98); }

/* Hero */
.hero {
  position: relative; min-height: 90vh; display: grid; grid-template-columns: 1.2fr 1fr;
  align-items: center; gap: 4rem; padding: 10rem var(--gutter) 6rem; max-width: var(--wrap); margin: 0 auto;
}
.hero-eyebrow, .eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--paper-faint);
}
.hero-eyebrow { margin-bottom: 2rem; }
.hero-eyebrow::before, .eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--brass); }
.hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.98; letter-spacing: -0.035em; margin-bottom: 1.8rem;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--brass); }
.hero-sub { font-size: 1.12rem; font-weight: 300; line-height: 1.6; max-width: 46ch; color: var(--paper-dim); margin-bottom: 2.5rem; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Hero panel: framed rotating photography */
.hero-visual {
  position: relative; aspect-ratio: 4 / 5; padding: 10px; border-radius: 28px;
  background: linear-gradient(145deg, rgba(var(--tint-rgb),0.09), rgba(var(--tint-rgb),0.02));
  border: 1px solid var(--paper-line);
  box-shadow: inset 0 1px 0 var(--paper-hair), 0 30px 80px rgba(0,0,0,0.45);
}
.hero-visual-inner {
  --paper: #f1efe9; --ink: #0b0d10; --ink-2: #121519;
  position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden;
  background: radial-gradient(120% 80% at 20% 10%, rgba(var(--accent-rgb),0.08) 0%, transparent 60%), linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--paper-hair);
}
.hero-visual-inner svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.project-rotator { position: absolute; inset: 0; overflow: hidden; }
.project-rotator img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transform: scale(1.04); transition: opacity 1.4s var(--spring), transform 7s linear;
}
.project-rotator img.active { opacity: 1; transform: scale(1); }
.project-rotator-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 30% 0%, rgba(11,13,16,0.18) 0%, transparent 60%), linear-gradient(180deg, rgba(11,13,16,0.05) 0%, rgba(11,13,16,0.55) 100%);
}
.hero-visual-label { margin-top: 0.9rem; display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--paper-faint); }
.hero-visual-label strong { color: var(--paper); font-weight: 500; }

/* Trust bar (infinite marquee, always-dark band) */
.trust {
  padding: 2.25rem 0; max-width: 1240px; margin: 5rem auto;
  background: var(--ink-2);
  border: 1px solid var(--paper-line); border-radius: 24px; overflow: hidden;
}
.trust-label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-faint); margin: 0 3rem 1.35rem; }
.marquee {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.marquee-track {
  display: flex; width: max-content; align-items: center; gap: 0; animation: marquee 50s linear infinite;
  font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.05rem; letter-spacing: -0.005em; color: var(--paper-dim);
}
.marquee-track > span:not(.dot) { padding: 0 1.75rem; white-space: nowrap; transition: color 0.4s var(--spring); }
.marquee-track > span:not(.dot):hover { color: var(--paper); }
.marquee-track .dot { color: var(--brass); opacity: 0.55; font-size: 0.7rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* Logo-marquee variant: a LIGHT band of member-association logos on white
   chips (the dark text band above is for credential word lists). Uses the
   shared .marquee / .marquee-track animation. */
.trust-logos { padding: 3rem 0; max-width: var(--wrap); margin: 5rem auto; border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); overflow: hidden; }
.trust-logos .trust-label { display: block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-faint); margin: 0 var(--gutter) 1.75rem; }
.marquee-group { display: flex; align-items: center; gap: 3.25rem; padding-right: 3.25rem; flex-shrink: 0; }
.marquee-group img { height: 48px; width: auto; max-width: 200px; object-fit: contain; flex-shrink: 0; background: #fff; padding: 6px 14px; border-radius: 8px; box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 6px 14px rgba(11,13,16,0.08); transition: transform 0.35s var(--spring); }
.marquee-group img:hover { transform: translateY(-2px); }

/* Generic section + heads */
section.block { padding: 6.5rem var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.eyebrow { margin-bottom: 1.75rem; }
.block-head { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 4.5rem; align-items: end; }
.block-head.single { grid-template-columns: 1fr; }
.block-head h2 {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.98; letter-spacing: -0.038em; max-width: 18ch;
}
.block-head h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.block-head p { font-size: 1.02rem; line-height: 1.7; color: var(--paper-dim); max-width: 48ch; font-weight: 300; }

/* Monograph panel (shared card base):
   Crisp bordered container, subtle tint fill, one small radius, one
   hairline border. No gradient, no drop-shadow, no hover-lift. Hover
   is a quiet border/tint shift. (CLAUDE.md hard rule 1.) */
.panel {
  border: 1px solid var(--paper-line); border-radius: 3px; background: var(--ink-2);
  padding: 1.9rem; transition: border-color 0.35s ease, background 0.35s ease;
}
.panel:hover { border-color: rgba(var(--accent-rgb), 0.32); }
.panel-photo { border: 1px solid var(--paper-line); border-radius: 3px; background: var(--ink-2); overflow: hidden; transition: border-color 0.35s ease; }
.panel-photo:hover { border-color: rgba(var(--accent-rgb), 0.32); }
/* Photo companion beside a stacked list. The image is taken out of flow
   (absolute fill) so the grid row height comes only from the content column;
   the photo then fills exactly that height. A tall portrait source never
   stretches the row and a short content column never leaves a dead gap.
   These are on the BASE class (not scoped to .split-grid) so the photo is
   robust inside ANY grid wrapper: position:relative gives the absolute image
   a context, align-self:stretch matches a taller sibling even when the parent
   grid is align-items:start, and min-height stops it collapsing when it is the
   taller column. */
.panel-photo { position: relative; align-self: stretch; min-height: 340px; }
.panel-photo > figure { position: absolute; inset: 0; margin: 0; }
.panel-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.panel-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 1.4rem 1.4rem 1.2rem;
  font-size: 0.78rem; color: rgba(241,239,233,0.82); line-height: 1.5;
  background: linear-gradient(180deg, transparent, rgba(11,14,20,0.66));
}
.panel-photo figcaption em { font-family: 'Playfair Display', serif; font-style: italic; color: #c4d0ea; margin-right: 0.4rem; }

/* Vertical stack of panels with consistent gap (right column of a split-grid). */
.stack { display: flex; flex-direction: column; gap: 1.5rem; }

/* Signal ledger: numeral, title, category tag in hairline-ruled rows. */
.signal-list { list-style: none; margin: 0; padding: 0; }
.signal-list li { display: grid; grid-template-columns: 2.2rem 1fr auto; align-items: baseline; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--paper-line); }
.signal-list li:first-child { border-top: 1px solid var(--paper-line); }
.signal-list .sig-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.5rem; color: var(--brass); line-height: 1; }
.signal-list .sig-title { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.2rem, 1.6vw, 1.45rem); letter-spacing: -0.015em; color: var(--paper); line-height: 1.25; }
.signal-list .sig-tag { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--paper-faint); white-space: nowrap; }

/* Standalone note paragraph. */
.note { font-size: 1.05rem; line-height: 1.7; color: var(--paper-dim); font-weight: 300; max-width: 60ch; margin-top: 2.5rem; }
.note strong { font-weight: 500; color: var(--paper); }

.fig-index {
  display: block; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400;
  font-size: 2.9rem; line-height: 1; color: var(--brass); margin-bottom: 1.25rem;
}
.fig-index sup { font-size: 0.3em; font-style: normal; letter-spacing: 0.1em; vertical-align: top; }

/* Inline accent link inside panel body copy. */
.panel-link { color: var(--brass); font-size: 0.82rem; font-weight: 500; margin-left: 0.5rem; white-space: nowrap; }

/* Three-up requirement / disciplines grid */
.tri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tri-grid .panel h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.3rem; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.85rem; }
.tri-grid .panel p { font-size: 0.96rem; line-height: 1.6; color: var(--paper-dim); font-weight: 300; }

/* Four-up process grid (non-sticky variant) */
.quad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.quad-grid .panel .fig-index { font-size: 2.5rem; }
.quad-grid .panel h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.2rem; letter-spacing: -0.015em; line-height: 1.2; margin-bottom: 0.65rem; }
.quad-grid .panel p { font-size: 0.92rem; line-height: 1.55; color: var(--paper-dim); font-weight: 300; }

/* Two-column copy + list/cards */
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.split-copy { position: sticky; top: 116px; align-self: start; }
.split-copy h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.98; letter-spacing: -0.038em; margin: 0.75rem 0 1.5rem; }
.split-copy h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.split-copy > p { font-size: 1.05rem; line-height: 1.65; color: var(--paper-dim); font-weight: 300; max-width: 44ch; margin-bottom: 2rem; }

/* Deliverables / scope list inside a panel */
.scope-list { list-style: none; }
.scope-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--paper-hair);
  font-size: 1.04rem; color: var(--paper-dim); line-height: 1.45;
  transition: color 0.3s var(--spring), padding 0.4s var(--spring);
}
.scope-list li:first-child { padding-top: 0; }
.scope-list li:last-child { border-bottom: none; }
.scope-list li:hover { color: var(--paper); padding-left: 0.4rem; }
.scope-list li svg { width: 14px; height: 14px; color: var(--paper-faint); flex-shrink: 0; transition: color 0.3s var(--spring), transform 0.3s var(--spring); }
.scope-list li:hover svg { color: var(--brass); transform: translateX(4px); }

/* Full-width statement intro (heading + copy + optional CTA), used above a
   full-width grid of supporting panels. Avoids the split-grid dead-gap that
   appears when a long statement sits beside a few short cards. */
.statement { max-width: 64ch; margin-bottom: 3.5rem; }
.statement h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.98; letter-spacing: -0.038em; margin-bottom: 1.5rem; max-width: 24ch; }
.statement h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.statement p { font-size: 1.05rem; line-height: 1.65; color: var(--paper-dim); font-weight: 300; max-width: 60ch; margin-bottom: 2rem; }

/* Two-up option blocks */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.duo-grid .panel h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.35rem; letter-spacing: -0.015em; margin-bottom: 0.85rem; color: var(--brass); }
.duo-grid .panel p { font-size: 0.98rem; line-height: 1.6; color: var(--paper-dim); font-weight: 300; }
.svc-cover { column-gap: 4rem; margin-bottom: 3.25rem; }

/* Large captioned photographic plate */
.plate { max-width: var(--wrap); margin: 0 auto; padding: 1rem var(--gutter) 2rem; }
.plate-figure { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 6.6; box-shadow: 0 30px 70px rgba(11,14,20,0.18); }
.plate-figure img { width: 100%; height: 116%; object-fit: cover; display: block; will-change: transform; }
.plate-figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,20,0.12) 0%, transparent 35%, rgba(11,14,20,0.6) 100%); }
.plate-cap { position: absolute; left: 2.25rem; right: 2.25rem; bottom: 1.6rem; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; color: #f1efe9; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; }
.plate-cap .fig { font-family: 'Playfair Display', serif; font-style: italic; text-transform: none; letter-spacing: 0; font-size: 1rem; color: #c4d0ea; }

/* Duotone building-photo narrative band.
   Set --band-img per page: style="--band-img:url('/assets/projects/azure-ii.jpg')" */
.narrative { padding: 6.5rem var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.narrative-inner {
  position: relative; border-radius: 22px; overflow: hidden; padding: 5.5rem 4rem; min-height: 480px;
  display: flex; flex-direction: column; justify-content: center; color: #f1efe9;
  background:
    linear-gradient(115deg, rgba(18, 27, 54, 0.78) 0%, rgba(11, 14, 20, 0.62) 55%, rgba(11, 14, 20, 0.5) 100%),
    var(--band-img, url('/assets/projects/azure-ii.jpg'));
  background-size: cover; background-position: center 35%;
}
.narrative-inner .eyebrow { color: rgba(241, 239, 233, 0.72); }
.narrative-inner .eyebrow::before { background: #9db2e0; }
.narrative-inner h2 { font-family: 'Playfair Display', serif; font-weight: 400; color: #f5f3ed; max-width: 22ch; font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.02; letter-spacing: -0.035em; margin: 1rem 0 2rem; }
.narrative-inner h2 em { font-style: italic; color: #a9bce6; font-weight: 400; }
.narrative-inner p { font-size: 1.1rem; line-height: 1.7; color: rgba(241, 239, 233, 0.82); font-weight: 300; max-width: 60ch; }
.narrative-inner .fig-tag { position: absolute; top: 1.75rem; right: 2.25rem; z-index: 2; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: #c4d0ea; }

/* Process: sticky-scroll narrative */
.process-scroll-grid { display: grid; grid-template-columns: 0.82fr 1.08fr; gap: 4.5rem; align-items: start; }
.process-visual { position: sticky; top: 108px; }
.process-visual-inner { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 70px rgba(11,14,20,0.2); }
.process-visual-inner img { width: 100%; height: 100%; object-fit: cover; }
.process-visual-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,14,20,0.1) 0%, transparent 35%, rgba(11,14,20,0.72) 100%); }
.pv-num { position: absolute; left: 1.9rem; bottom: 1.6rem; z-index: 1; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; color: #f5f3ed; display: flex; align-items: baseline; gap: 0.5rem; }
.pv-num .pv-total { font-style: normal; font-family: 'Outfit', sans-serif; font-size: 0.9rem; letter-spacing: 0.18em; color: #c4d0ea; }
.pv-label { position: absolute; left: 1.95rem; top: 1.6rem; z-index: 1; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(241,239,233,0.7); }
.pv-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.18); z-index: 2; }
.pv-progress span { display: block; height: 100%; width: 25%; background: #c4d0ea; transition: width 0.5s var(--spring); }
.process-steps { display: flex; flex-direction: column; }
.pstep { border-top: 1px solid var(--paper-line); padding: 2.25rem 0 5rem; opacity: 0.35; transition: opacity 0.55s var(--spring); }
.pstep:first-child { border-top: none; padding-top: 0; }
.pstep:last-child { padding-bottom: 0; }
.pstep.active { opacity: 1; }
.pstep .pstep-num { font-family: 'Playfair Display', serif; font-style: italic; color: var(--brass); font-size: 1.4rem; display: block; margin-bottom: 1rem; }
.pstep h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.55rem; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 0.85rem; }
.pstep p { font-size: 1rem; line-height: 1.6; color: var(--paper-dim); font-weight: 300; max-width: 44ch; }

/* Testimonials: auto-scrolling quote marquee */
.quote-rail {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.quote-track { display: flex; width: max-content; gap: 1.75rem; animation: quote-roll 64s linear infinite; }
.quote-rail:hover .quote-track { animation-play-state: paused; }
@keyframes quote-roll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.qcard {
  flex: 0 0 clamp(330px, 30vw, 440px); padding: 2.5rem 2.25rem; border-radius: 3px;
  background: var(--ink-2); border: 1px solid var(--paper-line);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.75rem;
}
.qcard blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--paper); }
.qcard figcaption { display: flex; flex-direction: column; gap: 0.2rem; padding-top: 1.25rem; border-top: 1px solid var(--paper-line); }
.qcard figcaption strong { font-size: 0.95rem; font-weight: 500; }
.qcard figcaption span { font-size: 0.74rem; color: var(--paper-faint); letter-spacing: 0.16em; text-transform: uppercase; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.faq-head { position: sticky; top: 116px; align-self: start; }
.faq-head h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 0.98; letter-spacing: -0.038em; margin: 0.75rem 0 1.25rem; }
.faq-head h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.faq-head p { font-size: 1rem; line-height: 1.65; color: var(--paper-dim); font-weight: 300; max-width: 36ch; }
.faq-list details { border-bottom: 1px solid var(--paper-line); padding: 1.25rem 0; }
.faq-list details:first-child { border-top: 1px solid var(--paper-line); }
.faq-list summary {
  font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.08rem; letter-spacing: -0.015em;
  line-height: 1.35; color: var(--paper); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; list-style: none; padding-right: 0.25rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 1.5rem; line-height: 1; color: var(--brass); transition: transform 0.3s var(--spring); flex-shrink: 0; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 1rem; font-size: 0.98rem; line-height: 1.65; color: var(--paper-dim); font-weight: 300; max-width: 60ch; }

/* Related: building-photo cards */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.photo-card { display: block; color: inherit; }
.photo-card .pc-photo { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 1.4rem; border: 1px solid var(--paper-line); }
.photo-card .pc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--spring); }
.photo-card .pc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,14,20,0.35)); opacity: 0; transition: opacity 0.5s var(--spring); }
.photo-card:hover .pc-photo img { transform: scale(1.06); }
.photo-card:hover .pc-photo::after { opacity: 1; }
.pc-heading { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.35rem; letter-spacing: -0.015em; margin-bottom: 0.3rem; }
.pc-meta { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.85rem; }
.photo-card p { font-size: 0.9rem; line-height: 1.55; color: var(--paper-dim); font-weight: 300; margin-bottom: 0.85rem; }
.pc-link { font-size: 0.78rem; color: var(--brass); letter-spacing: 0.02em; }

/* CTA block */
.cta-block { padding: 6.5rem var(--gutter); max-width: var(--wrap); margin: 0 auto; }
.cta-card { border-top: 1px solid var(--paper); }
.cta-inner { padding: 4rem 0 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1; letter-spacing: -0.03em; max-width: 16ch; }
.cta-inner h2 em { font-style: italic; color: var(--brass); font-weight: 400; }
.cta-inner p { font-size: 1.05rem; line-height: 1.65; color: var(--paper-dim); font-weight: 300; margin-bottom: 2rem; max-width: 42ch; }

/* Footer */
footer { padding: 5rem var(--gutter) 3rem; max-width: var(--wrap); margin: 0 auto; border-top: 1px solid var(--paper-line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.foot-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.foot-logo { height: 38px; width: auto; max-width: 220px; display: block; }
.foot-logo-light { display: block; }
.foot-logo-dark { display: none; }
[data-theme="dark"] .foot-logo-light { display: none; }
[data-theme="dark"] .foot-logo-dark { display: block; }
.foot-tag { font-size: 0.95rem; line-height: 1.6; color: var(--paper-dim); font-weight: 300; max-width: 30ch; }
.foot-col address { font-style: normal; font-size: 0.92rem; color: var(--paper-dim); font-weight: 300; line-height: 1.55; margin-bottom: 1.1rem; }
.foot-col a { transition: color 0.3s var(--spring); }
.foot-col a:hover { color: var(--brass); }
.foot-col-head { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 1.25rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col li { font-size: 0.92rem; color: var(--paper-dim); font-weight: 300; }
.foot-col li strong { color: var(--paper); font-weight: 500; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--paper-line); font-size: 0.82rem; color: var(--paper-faint); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--spring), transform 0.8s var(--spring); }
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); will-change: auto; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* Dark-mode SVG accent override */
[data-theme="dark"] [stroke="#25345e"] { stroke: #6b85bf; }
[data-theme="dark"] [fill="#25345e"] { fill: #6b85bf; }
[data-theme="dark"] [stop-color="#25345e"] { stop-color: #6b85bf; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --gutter: 2.25rem; }
  nav { padding: 0.5rem 0.5rem 0.5rem 1.1rem; gap: 0.35rem; }
  .nav-brand { padding-right: 0.85rem; }
  .nav-logo { height: 22px; }
  .nav-links { font-size: 0.78rem; gap: 0.1rem; }
  .nav-links > a, .nav-trigger { padding: 0.45rem 0.7rem; }
  .nav-cta span { padding: 0.4rem 0.6rem 0.4rem 0.85rem; font-size: 0.78rem; }
  .nav-cta em { width: 26px; height: 26px; }
  .hero { padding: 9rem var(--gutter) 5rem; gap: 3rem; }
  .trust-label { margin: 0 var(--gutter) 1.5rem; }
}
@media (max-width: 900px) {
  nav { left: 1rem; right: 1rem; transform: none; padding: 0.4rem 0.4rem 0.4rem 1rem; }
  .nav-brand { padding-right: 0.75rem; }
  .nav-logo { height: 20px; }
  nav .nav-links { display: none !important; }
  .nav-cta span { display: none; }
  .nav-cta em { width: 44px; height: 44px; }
  .nav-burger { display: inline-flex !important; }
  :root { --gutter: 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 9rem var(--gutter) 4rem; gap: 3rem; }
  .hero-visual { aspect-ratio: 5 / 4; max-width: 520px; }
  .trust { padding: 2.5rem 1.5rem; }
  section.block, .narrative, .cta-block { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .block-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .tri-grid, .quad-grid, .duo-grid, .cards-grid { grid-template-columns: 1fr; }
  .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .split-copy, .faq-head { position: static; }
  .split-grid > .panel-photo { min-height: 300px; }
  .stack { gap: 1rem; }
  .process-scroll-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-visual { position: static; }
  .process-visual-inner { aspect-ratio: 16 / 10; }
  .pstep { opacity: 1; padding-bottom: 2.5rem; }
  .narrative-inner { padding: 3rem 1.75rem; min-height: 0; border-radius: 16px; }
  .fig-index { font-size: 2.2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .plate { padding: 0 1.5rem 2rem; }
}
@media (min-width: 901px) {
  .nav-burger { display: none !important; }
  .nav-mobile { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
  .marquee-track, .quote-track { animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee-group { flex-wrap: wrap; padding: 0 var(--gutter); gap: 1.5rem 2rem; }
}

/* ============================================================
   VARIANT LAYER (type-level variance, June 2026)
   One system, distinct reading rhythms. Set data-variant on the
   <body>: "ledger" | "plate" | "editorial". Unset = base monograph.
   Selectors are structure-agnostic (never nth-of-type on section
   order) so a variant never depends on a page's section sequence.
   Composition and layout only: the single navy accent, the panel
   rules, type and color are untouched. Plus shared opt-in
   components any page may use: pull-quote, hero-spec, index-strip,
   and the block--alt full-bleed band.
   ============================================================ */

/* --- Shared opt-in components ------------------------------- */

/* Full-bleed tinted band on a single section, no wrapper needed.
   A centered 100vw pseudo paints behind the constrained content.
   body has overflow-x:hidden so the 100vw never adds a scrollbar. */
section.block--alt { position: relative; isolation: isolate; }
section.block--alt::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 100vw; transform: translateX(-50%); z-index: -1;
  background: var(--ink-2);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

/* Pull-quote: a full-width editorial thesis line. Distinct from the
   testimonial quote-rail. Re-surfaces a sentence already in the page
   copy as a large figure-marked statement. */
.pull-quote { max-width: var(--wrap); margin: 0 auto; padding: 5.5rem var(--gutter); }
.pull-quote .pq-inner { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; max-width: 64ch; }
.pull-quote .pq-mark { font-family: 'Playfair Display', serif; font-style: italic; font-size: 5rem; line-height: 0.7; color: var(--brass); }
.pull-quote blockquote {
  font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.2; letter-spacing: -0.02em; color: var(--paper);
}
.pull-quote blockquote em { color: var(--brass); }
.pull-quote .pq-by { display: block; margin-top: 1.75rem; font-family: 'Outfit', sans-serif; font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-faint); }

/* Hero spec strip: instrument chips under the hero (label + value). */
.hero-spec { display: flex; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--paper-line); }
.hero-spec > div { padding-right: 1.75rem; margin-right: 1.75rem; border-right: 1px solid var(--paper-line); }
.hero-spec > div:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.hero-spec dt { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 0.4rem; }
.hero-spec dd { font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: -0.01em; color: var(--paper); }
.hero-spec dd em { font-style: italic; color: var(--brass); }

/* Index strip: horizontal numbered ledger row. */
.index-strip { max-width: var(--wrap); margin: 0 auto; padding: 4rem var(--gutter); }
.index-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }
.index-strip-grid > div { padding: 2.25rem 2rem; border-left: 1px solid var(--paper-line); }
.index-strip-grid > div:first-child { padding-left: 0; border-left: 0; }
.index-strip .is-num { display: block; font-family: 'Playfair Display', serif; font-style: italic; font-size: 2.2rem; color: var(--brass); line-height: 1; margin-bottom: 0.9rem; }
.index-strip h3 { font-family: 'Playfair Display', serif; font-weight: 500; font-size: 1.1rem; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.index-strip p { font-size: 0.88rem; line-height: 1.5; color: var(--paper-dim); font-weight: 300; }

/* --- LEDGER variant: numeral-forward, technical, banded ------- */
[data-variant="ledger"] .block-head.single h2::before,
[data-variant="ledger"] .split-copy h2::before,
[data-variant="ledger"] .statement h2::before {
  content: ''; display: block; width: 52px; height: 2px; background: var(--brass); margin-bottom: 1.5rem;
}
[data-variant="ledger"] .tri-grid .panel { border-top: 2px solid rgba(var(--accent-rgb), 0.5); }
[data-variant="ledger"] .tri-grid .fig-index { font-size: 3.4rem; }

/* --- PLATE variant: mirrored splits, taller plates ----------- */
[data-variant="plate"] .split-grid { grid-template-columns: 1.1fr 1fr; }
[data-variant="plate"] .split-grid > .split-copy { order: 2; }
[data-variant="plate"] .split-grid > :not(.split-copy) { order: 1; }
[data-variant="plate"] .plate-figure { aspect-ratio: 16 / 7.6; }

/* --- EDITORIAL variant: centered, text-forward --------------- */
[data-variant="editorial"] .block-head { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.5rem; align-items: center; }
[data-variant="editorial"] .block-head h2 { max-width: 22ch; }
[data-variant="editorial"] .block-head p { max-width: 52ch; }
[data-variant="editorial"] .block-head .eyebrow::before { display: none; }
[data-variant="editorial"] .pull-quote .pq-inner { margin: 0 auto; }

/* --- Variant component responsive ---------------------------- */
@media (max-width: 900px) {
  .pull-quote { padding: 3.5rem var(--gutter); }
  .pull-quote .pq-inner { grid-template-columns: 1fr; gap: 1rem; }
  .pull-quote .pq-mark { font-size: 3.5rem; }
  .index-strip-grid { grid-template-columns: 1fr; }
  .index-strip-grid > div { padding: 1.75rem 0; border-left: 0; border-top: 1px solid var(--paper-line); }
  .index-strip-grid > div:first-child { padding-top: 0; border-top: 0; }
  .hero-spec > div { padding-right: 1.1rem; margin-right: 1.1rem; }
  [data-variant="plate"] .split-grid { grid-template-columns: 1fr; }
  [data-variant="plate"] .split-grid > * { order: 0; }
}
