/* =========================================================
   OPUS PASTOR — Editorial Research Atelier
   Designed by Creaa Designs
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink: #0B0F1A;
  --ink-2: #131A2A;
  --ink-3: #1C2438;
  --cream: #F3ECDE;
  --cream-2: #E8DEC7;
  --parchment: #EFE6D2;
  --paper: #FBF7EC;
  --gold: #B8935A;
  --gold-2: #D2B585;
  --signal: #C73E1D;
  --signal-2: #E25B3B;
  --mist: #8B8578;
  --line: rgba(11, 15, 26, 0.15);
  --line-soft: rgba(11, 15, 26, 0.08);
  --line-dark: rgba(243, 236, 222, 0.15);
  --line-dark-soft: rgba(243, 236, 222, 0.08);

  /* Typography */
  --f-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "JetBrains Mono", "IBM Plex Mono", "Courier New", monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 140px;

  /* Layout */
  --page-pad: clamp(20px, 4vw, 64px);
  --rail-w: 56px;
  --nav-h: 68px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --ease-slow: cubic-bezier(0.8, 0, 0.2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "ss02", "cv11";
}

body.theme-dark {
  color: var(--cream);
  background: var(--ink);
}

::selection { background: var(--ink); color: var(--paper); }
body.theme-dark ::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.h-display {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.025em;
  font-size: clamp(56px, 10vw, 180px);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.h-section {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 6vw, 96px);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.h-sub {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 3.5vw, 52px);
  font-variation-settings: "opsz" 48, "SOFT" 20;
}
.h-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}
.h-small {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; }
.italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

p { max-width: 70ch; }

/* ---------- Layout primitives ---------- */
.shell {
  padding: var(--nav-h) 0 0 0;
  min-height: 100vh;
}
.pad { padding-left: var(--page-pad); padding-right: var(--page-pad); }
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.divider {
  height: 1px; width: 100%;
  background: var(--line);
}
body.theme-dark .divider { background: var(--line-dark); }
.rule { border-top: 1px solid var(--line); }
body.theme-dark .rule { border-top-color: var(--line-dark); }

/* ---------- Top Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page-pad);
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
body.theme-dark .nav {
  background: color-mix(in srgb, var(--ink) 80%, transparent);
  border-bottom-color: var(--line-dark-soft);
}
.nav__brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  font-variation-settings: "opsz" 48, "SOFT" 20;
  flex-shrink: 0;
}
.nav__brand em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: inherit;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  opacity: 0.75;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active {
  opacity: 1;
  color: var(--gold);
}
.nav__links a.is-active::after,
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 760px) {
  .nav { gap: 16px; padding: 0 16px; }
  .nav__brand { font-size: 17px; }
  .nav__links { gap: 14px; }
  .nav__links a { font-size: 10px; letter-spacing: 0.15em; }
}

/* (Overlay menu removed — horizontal top nav is now primary) */

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-7) var(--page-pad) var(--space-4);
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--line-dark-soft);
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1.1fr; gap: var(--space-6); }
}
.footer__mark {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  font-variation-settings: "opsz" 48, "SOFT" 20;
}
.footer__mark em { color: var(--gold-2); font-style: italic; }
.footer__mark small { display: block; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--mist); margin-top: 10px; font-weight: 500; }
.footer__col h6 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mist); font-weight: 500;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer__col a { position: relative; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-2); }
.footer__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-dark-soft);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer__socials svg { width: 15px; height: 15px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  justify-content: space-between; align-items: baseline;
  padding-top: var(--space-4);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist);
}
.footer__bottom a { color: var(--cream); }
.footer__bottom a:hover { color: var(--gold-2); }
.footer__credit { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Access Gate (simple, centered) ---------- */
.gate {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--cream);
  padding: var(--page-pad);
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(243,236,222,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(243,236,222,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}
.gate__inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex; flex-direction: column;
  gap: var(--space-4);
  text-align: center;
}
.gate__brand {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-3);
}
.gate__brand em { font-style: italic; color: var(--gold-2); }
.gate__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.gate__title i { font-style: italic; color: var(--gold-2); }
.gate__desc {
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 15px; line-height: 1.6;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
  max-width: 40ch; margin: 0 auto;
}
.gate__field { position: relative; margin-top: var(--space-3); }
.gate__input {
  width: 100%;
  padding: 16px 56px 16px 20px;
  background: rgba(243,236,222,0.04);
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 14px; letter-spacing: 0.15em;
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
}
.gate__input::placeholder { color: color-mix(in srgb, var(--cream) 35%, transparent); letter-spacing: 0.25em; text-transform: uppercase; font-size: 11px; }
.gate__input:focus { border-color: var(--gold); background: rgba(243,236,222,0.07); }
.gate__input.is-err { border-color: var(--signal-2); animation: shake 0.4s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.gate__submit {
  position: absolute; top: 50%; right: 6px; transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}
.gate__submit:hover { background: var(--gold-2); transform: translateY(-50%) scale(1.05); }
.gate__submit svg { width: 16px; height: 16px; }
.gate__status {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  min-height: 18px;
  color: var(--signal-2);
  margin-top: 8px;
}
.gate__status.ok { color: var(--gold-2); }
.gate__foot {
  margin-top: var(--space-5);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line-dark-soft);
}

/* ---------- Page hero (shared) ---------- */
.phero {
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--line);
  position: relative;
}
body.theme-dark .phero { border-bottom-color: var(--line-dark-soft); }
.phero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: end;
}
@media (min-width: 900px) {
  .phero__grid { grid-template-columns: 1.4fr 1fr; gap: var(--space-6); }
}
.phero__meta {
  display: flex; flex-direction: column; gap: 20px;
}
.phero__crumb {
  display: flex; gap: 14px; align-items: baseline;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist);
}
.phero__crumb a { color: inherit; border-bottom: 1px solid transparent; }
.phero__crumb a:hover { border-color: currentColor; }
.phero__crumb .sep { color: var(--line); }
body.theme-dark .phero__crumb .sep { color: var(--line-dark); }
.phero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.phero__title i { font-style: italic; color: var(--gold); }
body.theme-dark .phero__title i { color: var(--gold-2); }
.phero__sub {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  max-width: 54ch;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}

.phero__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 10px;
}
.phero__side div { border-top: 1px solid var(--line); padding-top: 12px; }
body.theme-dark .phero__side div { border-top-color: var(--line-dark-soft); }
.phero__side h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); margin-bottom: 6px; }
.phero__side p { font-family: var(--f-display); font-weight: 400; font-size: 18px; line-height: 1.3; }

/* ---------- Marks & utility components ---------- */
.ledger {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
body.theme-dark .ledger { border-color: var(--line-dark-soft); }
.ledger__row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 90px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
body.theme-dark .ledger__row { border-bottom-color: var(--line-dark-soft); }
.ledger__row:last-child { border-bottom: none; }
.ledger__row .idx { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--mist); }
.ledger__row h4 { font-family: var(--f-display); font-weight: 400; font-size: clamp(20px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.01em; }
.ledger__row p { font-size: 14px; line-height: 1.55; color: color-mix(in srgb, var(--ink) 70%, transparent); }
body.theme-dark .ledger__row p { color: color-mix(in srgb, var(--cream) 75%, transparent); }
.ledger__row .meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--mist); text-align: right; text-transform: uppercase; }
@media (max-width: 760px) {
  .ledger__row { grid-template-columns: 60px 1fr; }
  .ledger__row p, .ledger__row .meta { grid-column: 2 / 3; text-align: left; }
}

.pillbox {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
body.theme-dark .pillbox { border-color: var(--line-dark); }

/* ---------- Generic section ---------- */
.sec { padding: var(--space-7) 0; }
.sec--tight { padding: var(--space-6) 0; }
.sec-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; padding-bottom: var(--space-4); border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
}
body.theme-dark .sec-head { border-bottom-color: var(--line-dark-soft); }
.sec-head h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.02em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 30; }
.sec-head .hk { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }

/* ---------- Image system ---------- */
.figbox {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
}
.figbox img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.figbox--portrait { aspect-ratio: 4 / 5; }
.figbox--square { aspect-ratio: 1 / 1; }
.figbox--wide { aspect-ratio: 16 / 9; }
.figbox--pano { aspect-ratio: 21 / 9; }
.figbox--tall { aspect-ratio: 3 / 4; }

/* focal positioning presets — make sure faces are never cropped */
.fp-top img { object-position: center 15%; }
.fp-top-2 img { object-position: center 25%; }
.fp-center img { object-position: center center; }
.fp-left-top img { object-position: 30% 20%; }
.fp-right-top img { object-position: 65% 25%; }
.fp-contain img { object-fit: contain; object-position: center; background: var(--ink-2); }
.fp-wide-center img { object-position: center 40%; }
.fp-pano-top img { object-position: center 30%; }

.fig-cap {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  mix-blend-mode: difference;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* ---------- Buttons & Links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:hover { background: currentColor; color: var(--paper); }
.btn .arrow { width: 12px; height: 12px; }
body.theme-dark .btn:hover { color: var(--ink); }

.linkx {
  position: relative; padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.linkx:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Page-specific: HOME ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: var(--space-6) var(--page-pad) var(--space-5);
}
.hero__topline {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line-dark-soft);
  margin-bottom: var(--space-5);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: stretch;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.35fr 1fr; gap: var(--space-6); }
}
.hero__main { display: flex; flex-direction: column; justify-content: space-between; gap: var(--space-5); min-height: 540px; }
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  margin: 0;
}
.hero__title .l1, .hero__title .l2 { display: block; }
.hero__title .l2 { font-style: italic; color: var(--gold-2); font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero__lede {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 42ch;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  color: color-mix(in srgb, var(--cream) 85%, transparent);
}
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark-soft);
}
.hero__stat { display: flex; flex-direction: column; gap: 6px; }
.hero__stat .n {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.hero__stat .l { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }

.hero__aside {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line-dark-soft);
}
.hero__aside img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: grayscale(0.1) contrast(1.02);
}
.hero__aside::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,15,26,0.65) 100%);
}
.hero__aside-tag {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; gap: 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  z-index: 2;
}
@media (max-width: 899px) {
  .hero__main, .hero__aside { min-height: 0; }
  .hero__aside { aspect-ratio: 4 / 5; }
  .hero__stats { grid-template-columns: 1fr; gap: 14px; }
}

/* Marquee tape under hero */
.tape {
  display: flex; overflow: hidden;
  border-top: 1px solid var(--line-dark-soft);
  border-bottom: 1px solid var(--line-dark-soft);
  background: var(--ink);
  color: var(--cream);
  padding: 16px 0;
}
.tape__track { display: inline-flex; gap: 48px; white-space: nowrap; animation: tape 32s linear infinite; padding-right: 48px; }
.tape__track span { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream); opacity: 0.9; }
.tape__track span.dot { color: var(--gold-2); }
@keyframes tape { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Home themes */
.themes { background: var(--paper); padding: var(--space-7) 0; }
.themes__inner { padding: 0 var(--page-pad); }
.themes__head { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
.themes__head h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.02em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 30; }
.themes__list { margin-top: 20px; }
.theme {
  display: grid; grid-template-columns: 90px 1fr 1fr 1fr 140px;
  gap: 20px; align-items: baseline;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.3s var(--ease);
  cursor: default;
}
.theme:hover { background: rgba(11,15,26,0.03); }
.theme .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--mist); }
.theme h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -0.01em; }
.theme h3 em { font-style: italic; color: var(--gold); }
.theme p { font-size: 14px; line-height: 1.55; max-width: 40ch; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.theme ul { display: flex; flex-wrap: wrap; gap: 6px; }
.theme ul li { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--mist); }
.theme .jr { text-align: right; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }
@media (max-width: 999px) {
  .theme { grid-template-columns: 60px 1fr; }
  .theme p, .theme ul, .theme .jr { grid-column: 2 / 3; text-align: left; }
}

/* Feature spread */
.spread { position: relative; background: var(--ink); color: var(--cream); padding: var(--space-7) 0; overflow: hidden; }
.spread__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
  padding: 0 var(--page-pad);
}
@media (min-width: 900px) { .spread__inner { grid-template-columns: 1.1fr 1fr; gap: var(--space-6); align-items: center; } }
.spread__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.spread__img img { width:100%; height:100%; object-fit: cover; }
.spread__body { display: flex; flex-direction: column; gap: 20px; }
.spread__title { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5vw, 76px); line-height: 0.95; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 30; }
.spread__title i { font-style: italic; color: var(--gold-2); }
.spread__text { font-size: 15px; line-height: 1.65; color: color-mix(in srgb, var(--cream) 80%, transparent); max-width: 54ch; }
.spread__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 10px; }
.spread__list div { border-top: 1px solid var(--line-dark-soft); padding-top: 10px; }
.spread__list h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.spread__list p { font-family: var(--f-display); font-size: 18px; line-height: 1.25; margin-top: 6px; font-weight: 400; }

/* Quote panel */
.pull { background: var(--cream); padding: var(--space-7) 0; }
.pull__inner {
  padding: 0 var(--page-pad);
  display: grid; grid-template-columns: 1fr; gap: var(--space-4);
  align-items: start;
}
@media (min-width: 900px) { .pull__inner { grid-template-columns: 120px 1fr 200px; gap: var(--space-5); } }
.pull__mark {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(100px, 14vw, 220px);
  line-height: 0.7; color: var(--gold); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pull__text {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.15; letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.pull__text i { font-style: italic; color: var(--ink); opacity: 0.75; }
.pull__attr {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mist); line-height: 1.6;
  border-left: 1px solid var(--line); padding-left: 16px;
}

/* Achievement grid */
.achieve { background: var(--paper); padding: var(--space-7) 0; }
.achieve__inner { padding: 0 var(--page-pad); }
.achieve__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--space-4); }
@media (min-width: 700px) { .achieve__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .achieve__grid { grid-template-columns: repeat(4, 1fr); } }
.achieve__cell { background: var(--paper); padding: 36px 28px; display: flex; flex-direction: column; gap: 12px; }
.achieve__cell .n { font-family: var(--f-display); font-weight: 300; font-size: clamp(48px, 6vw, 88px); line-height: 0.95; letter-spacing: -0.03em; font-variation-settings: "opsz" 144, "SOFT" 20; }
.achieve__cell h4 { font-family: var(--f-display); font-weight: 400; font-size: 20px; line-height: 1.2; }
.achieve__cell p { font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--ink) 70%, transparent); }

/* CTA strip */
.cta {
  background: var(--ink); color: var(--cream);
  padding: var(--space-7) 0;
  text-align: center;
}
.cta__inner { padding: 0 var(--page-pad); }
.cta h3 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(40px, 6vw, 96px); line-height: 0.95; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cta h3 i { font-style: italic; color: var(--gold-2); }
.cta p { font-family: var(--f-display); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; max-width: 52ch; margin: 20px auto 0; color: color-mix(in srgb, var(--cream) 80%, transparent); font-weight: 300; font-variation-settings: "opsz" 48, "SOFT" 30; }
.cta__btns { margin-top: var(--space-5); display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- BIOGRAPHY ---------- */
.bio-lede { padding: var(--space-6) 0; background: var(--paper); }
.bio-lede__inner { padding: 0 var(--page-pad); max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .bio-lede__inner { grid-template-columns: 1fr 2fr; gap: var(--space-6); } }
.bio-lede__side { display: flex; flex-direction: column; gap: 14px; }
.bio-lede__side h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.bio-lede__side p { font-family: var(--f-display); font-size: 18px; line-height: 1.3; font-weight: 400; }
.bio-lede__main p { font-family: var(--f-display); font-weight: 300; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.4; letter-spacing: -0.01em; font-variation-settings: "opsz" 48, "SOFT" 30; }

.bio-chap { padding: var(--space-7) 0; border-top: 1px solid var(--line); }
.bio-chap__inner { padding: 0 var(--page-pad); max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .bio-chap__inner { grid-template-columns: 260px 1fr; gap: var(--space-6); align-items: start; } }
.bio-chap__meta { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 10px; }
.bio-chap__meta .ch { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.bio-chap__meta h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(32px, 3.5vw, 52px); line-height: 0.95; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 30; }
.bio-chap__meta h2 i { font-style: italic; color: var(--gold); }
.bio-chap__body { display: flex; flex-direction: column; gap: 24px; }
.bio-chap__body p { font-size: 16.5px; line-height: 1.75; max-width: 68ch; }
.bio-chap__body p:first-letter { font-family: var(--f-display); font-size: 3.4em; line-height: 0.9; float: left; padding: 6px 12px 0 0; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 40; color: var(--gold); }
.bio-chap__body .ruled-note { border-left: 1px solid var(--gold); padding-left: 18px; font-family: var(--f-display); font-weight: 400; font-size: 22px; line-height: 1.35; font-style: italic; color: color-mix(in srgb, var(--ink) 80%, transparent); max-width: 52ch; }
.bio-chap__body img.inline { width: 100%; margin: 16px 0; }

.bio-image { padding: 0; margin: 0; }
.bio-image__frame { position: relative; aspect-ratio: 21 / 9; overflow: hidden; }
.bio-image__frame img { width: 100%; height: 100%; object-fit: cover; }
.bio-image__cap { display: flex; justify-content: space-between; gap: 20px; padding: 12px var(--page-pad); border-bottom: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }

/* ---------- RESEARCH ---------- */
.res-matrix { padding: var(--space-7) 0; }
.res-matrix__inner { padding: 0 var(--page-pad); }
.res-matrix__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 800px) { .res-matrix__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .res-matrix__grid { grid-template-columns: repeat(3, 1fr); } }
.rmcard { background: var(--paper); padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; min-height: 320px; justify-content: space-between; }
.rmcard .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.rmcard h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2vw, 30px); line-height: 1.15; letter-spacing: -0.01em; }
.rmcard h3 em { color: var(--gold); font-style: italic; }
.rmcard p { font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--ink) 72%, transparent); }
.rmcard footer { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 12px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }

.concept {
  background: var(--ink); color: var(--cream);
  padding: var(--space-7) 0;
}
.concept__inner { padding: 0 var(--page-pad); display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .concept__inner { grid-template-columns: 1fr 1.1fr; gap: var(--space-6); align-items: center; } }
.concept__text { display: flex; flex-direction: column; gap: 20px; }
.concept__text h2 { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5vw, 72px); line-height: 0.95; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 40; }
.concept__text h2 i { font-style: italic; color: var(--gold-2); }
.concept__text p { font-size: 16px; line-height: 1.8; color: color-mix(in srgb, var(--cream) 82%, transparent); max-width: 54ch; }
.concept__viz { aspect-ratio: 5 / 4; border: 1px solid var(--line-dark-soft); position: relative; overflow: hidden; }
.concept__viz svg { width: 100%; height: 100%; display: block; }

/* ---------- GOVERNANCE ---------- */
.gov-cards { padding: var(--space-7) 0; }
.gov-cards__inner { padding: 0 var(--page-pad); }
.gov-cards__list { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .gov-cards__list { grid-template-columns: 1fr 1fr 1fr; } }
.gov-card { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); }
.gov-card__head { padding: 22px 24px 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-bottom: 1px solid var(--line); }
.gov-card__head .k { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.gov-card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.gov-card__img img { width: 100%; height: 100%; object-fit: cover; }
.gov-card__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.gov-card__body h3 { font-family: var(--f-display); font-weight: 400; font-size: 28px; line-height: 1.1; letter-spacing: -0.01em; }
.gov-card__body h3 em { font-style: italic; color: var(--gold); }
.gov-card__body p { font-size: 14.5px; line-height: 1.65; }
.gov-card__body ul { display: flex; flex-direction: column; gap: 10px; margin-top: auto; border-top: 1px solid var(--line); padding-top: 14px; }
.gov-card__body ul li { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist); padding-left: 14px; position: relative; }
.gov-card__body ul li::before { content: "›"; position: absolute; left: 0; color: var(--gold); }

/* ---------- PUBLICATIONS ---------- */
.pub-list { padding: var(--space-6) 0; }
.pub-list__inner { padding: 0 var(--page-pad); }
.pub-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: var(--space-5); padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pub-filter button { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease); }
.pub-filter button.active, .pub-filter button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pub {
  display: grid; grid-template-columns: 80px 1fr 1fr 140px 100px; gap: 20px;
  padding: 28px 0; align-items: baseline;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}
.pub:hover { padding-left: 10px; }
.pub .y { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--mist); }
.pub h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2vw, 30px); line-height: 1.15; letter-spacing: -0.01em; }
.pub h3 em { font-style: italic; color: var(--gold); }
.pub p { font-size: 14px; line-height: 1.55; color: color-mix(in srgb, var(--ink) 70%, transparent); }
.pub .j { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist); }
.pub .cat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-align: right; }
@media (max-width: 999px) { .pub { grid-template-columns: 60px 1fr; } .pub p, .pub .j, .pub .cat { grid-column: 2 / 3; text-align: left; } }

/* ---------- TIMELINE ---------- */
.tl { padding: var(--space-6) 0 var(--space-7); }
.tl__inner { padding: 0 var(--page-pad); position: relative; }
.tl__rail {
  position: relative;
  border-left: 1px solid var(--line);
  padding-left: var(--space-5);
}
body.theme-dark .tl__rail { border-left-color: var(--line-dark-soft); }
.tl__item { position: relative; padding: 24px 0 var(--space-5); display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 900px) { .tl__item { grid-template-columns: 180px 1fr 1.2fr; gap: var(--space-5); align-items: start; } }
.tl__item::before {
  content: ""; position: absolute; left: calc(var(--space-5) * -1 - 1px); top: 34px;
  width: 11px; height: 11px; background: var(--paper);
  border: 1px solid var(--ink); border-radius: 50%; transform: translateX(-50%);
}
body.theme-dark .tl__item::before { background: var(--ink); border-color: var(--cream); }
.tl__item.is-key::before { background: var(--gold); border-color: var(--gold); }
.tl__year { font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5vw, 68px); line-height: 0.95; letter-spacing: -0.02em; font-variation-settings: "opsz" 144, "SOFT" 30; }
.tl__year em { font-style: italic; color: var(--gold); font-size: 0.5em; letter-spacing: 0.1em; display: block; font-family: var(--f-mono); font-variation-settings: normal; font-weight: 500; text-transform: uppercase; margin-top: 4px; }
.tl__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2vw, 28px); line-height: 1.15; letter-spacing: -0.01em; }
.tl__title em { font-style: italic; color: var(--gold); }
.tl__desc { font-size: 14.5px; line-height: 1.65; color: color-mix(in srgb, var(--ink) 72%, transparent); }
body.theme-dark .tl__desc { color: color-mix(in srgb, var(--cream) 75%, transparent); }

/* ---------- GALLERY ---------- */
.gal { padding: 0; }
.gal__row { display: grid; gap: 1px; background: var(--line); }
.gal__row.c1 { grid-template-columns: 1fr; }
.gal__row.c2 { grid-template-columns: 1fr; }
.gal__row.c3 { grid-template-columns: 1fr; }
.gal__row.c2-asym { grid-template-columns: 1fr; }
@media (min-width: 800px) {
  .gal__row.c2 { grid-template-columns: 1fr 1fr; }
  .gal__row.c3 { grid-template-columns: 1fr 1fr 1fr; }
  .gal__row.c2-asym { grid-template-columns: 2fr 1fr; }
}
.gal__item { position: relative; background: var(--paper); overflow: hidden; }
.gal__item .figbox { height: 100%; }
.gal__meta {
  position: absolute; left: 16px; top: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); mix-blend-mode: difference;
}
.gal__caption {
  padding: 16px 20px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

/* ---------- CONTACT ---------- */
.ctc { padding: var(--space-7) 0; }
.ctc__inner { padding: 0 var(--page-pad); display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 900px) { .ctc__inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; } }
.ctc__card { border: 1px solid var(--line); background: var(--paper); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.ctc__card h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); letter-spacing: -0.01em; line-height: 1.1; }
.ctc__card h3 em { font-style: italic; color: var(--gold); }
.ctc__row { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-top: 1px solid var(--line); }
.ctc__row:first-of-type { border-top: none; padding-top: 0; }
.ctc__row h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); }
.ctc__row a { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px, 2vw, 30px); line-height: 1.2; letter-spacing: -0.01em; transition: color 0.3s var(--ease); }
.ctc__row a:hover { color: var(--gold); }

.ctc__socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-3); }
.ctc__socials a {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ctc__socials a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ctc__socials svg { width: 18px; height: 18px; }

/* ---------- Responsive helpers ---------- */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .hero__title { font-size: clamp(64px, 22vw, 120px); }
  .pull__mark { display: none; }
  .pull__attr { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 12px; }
}

/* ---------- Contact form ---------- */
.cform { display: flex; flex-direction: column; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .cform__row--2 { grid-template-columns: 1fr 1fr; } }
.cform__field {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  transition: border-color 0.3s var(--ease);
}
.cform__field:focus-within { border-bottom-color: var(--gold); }
.cform__field label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mist); margin-bottom: 6px;
}
.cform__field input,
.cform__field textarea,
.cform__field select {
  width: 100%;
  border: none; background: transparent;
  font-family: var(--f-display); font-size: 18px; font-weight: 400;
  color: var(--ink);
  padding: 6px 0;
  resize: vertical;
  outline: none;
  line-height: 1.35;
}
.cform__field textarea { min-height: 120px; }
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--mist); font-style: italic; font-weight: 300; }
.cform__check {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mist);
  line-height: 1.6;
}
.cform__check input { accent-color: var(--gold); margin-top: 4px; }
.cform__actions { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 6px; }
.cform__submit {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--ink); background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  border-radius: 999px;
}
.cform__submit:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cform__submit svg { width: 14px; height: 14px; }
.cform__note { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }
.cform__status {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); min-height: 18px;
}

/* Print */
@media print {
  .nav, .footer { display: none; }
  body { background: white; color: black; }
}
