/* ==========================================================================
   Orbital Risk — Design System v3 "Modern Evolution"
   Dark editorial. Fraunces display + Inter body, self-hosted.
   ========================================================================== */

/* ---------- Fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0b1118;
  --ink-2: #0f1722;
  --ink-3: #15202d;
  --paper: #f4f1ea;
  --paper-dim: rgba(244, 241, 234, 0.68);
  --paper-faint: rgba(244, 241, 234, 0.42);
  --line: rgba(244, 241, 234, 0.14);
  --line-strong: rgba(244, 241, 234, 0.28);
  --brass: #c89b5a;
  --brass-bright: #e2c088;
  --brass-dim: rgba(200, 155, 90, 0.16);
  --ink-on-paper: #10161d;
  --ink-on-paper-dim: rgba(16, 22, 29, 0.72);
  --line-on-paper: rgba(16, 22, 29, 0.14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;

  --w-max: 76rem;
  --w-text: 44rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --space-section: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--brass); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 430;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  text-wrap: balance;
  font-variation-settings: "opsz" 100, "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.18; }
h4 { font-size: 1.15rem; line-height: 1.3; }
p { margin: 0 0 1.1rem; max-width: var(--w-text); }
p:last-child { margin-bottom: 0; }

em, .accent-i {
  font-style: italic;
  font-variation-settings: "opsz" 100, "SOFT" 40, "WONK" 1;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--brass);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.wrap {
  width: min(100% - 2 * var(--gutter), var(--w-max));
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--paper-dim);
  font-weight: 340;
}
.section { padding-block: var(--space-section); }
.section--line { border-top: 1px solid var(--line); }
.section--light {
  background: var(--paper);
  color: var(--ink-on-paper);
}
.section--light .lede { color: var(--ink-on-paper-dim); }
.section--light .eyebrow { color: #96703a; }
.section--light .eyebrow::before { background: #96703a; }
.section--raised { background: var(--ink-2); }

.grid-2 {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 860px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2--wide-left { grid-template-columns: 1.2fr 1fr; }
  .grid-2--wide-right { grid-template-columns: 1fr 1.2fr; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.05rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 480;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
}
.brand .brand-mark { color: var(--brass); }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 460;
  text-decoration: none;
  color: var(--paper-dim);
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--paper); }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 560;
  text-decoration: none;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--brass);
  color: var(--ink);
  background: var(--brass);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--brass-bright); border-color: var(--brass-bright); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-strong); }
.btn--ghost:hover { background: transparent; border-color: var(--brass); color: var(--brass-bright); }
.section--light .btn--ghost { color: var(--ink-on-paper); border-color: rgba(16,22,29,.3); }
.section--light .btn--ghost:hover { border-color: #96703a; color: #96703a; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  padding: 0.85rem 0.7rem;
  cursor: pointer;
}
.nav-toggle .bars { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav .btn { margin-top: 1rem; justify-content: center; }
  .header-phone { display: none; }
}
.header-phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--paper-dim);
  text-decoration: none;
}
.header-phone:hover { color: var(--brass-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(5rem, 13vw, 10.5rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(52rem 30rem at 82% -12%, rgba(200, 155, 90, 0.13), transparent 62%),
    radial-gradient(40rem 26rem at -10% 108%, rgba(200, 155, 90, 0.07), transparent 60%),
    linear-gradient(var(--ink), var(--ink));
}
.hero.has-photo::before {
  background:
    linear-gradient(100deg, rgba(11, 17, 24, 0.94) 30%, rgba(11, 17, 24, 0.62) 70%, rgba(11,17,24,.85)),
    var(--photo) center / cover no-repeat;
}
.hero::after {
  /* fine grain for depth */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero h1 { max-width: 17ch; margin-bottom: 1.5rem; }
.hero .lede { max-width: 38rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }
.hero-meta {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.hero-meta strong { color: var(--paper-dim); font-weight: 500; }

/* Page hero (interior) */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(46rem 24rem at 85% -20%, rgba(200,155,90,.11), transparent 60%);
}
.page-hero.has-photo::before {
  background:
    linear-gradient(rgba(11, 17, 24, 0.86), rgba(11, 17, 24, 0.92)),
    var(--photo) center / cover no-repeat;
}
.page-hero h1 { max-width: 20ch; }
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 2rem;
}
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.6rem; color: var(--line-strong); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brass-bright); }

/* ---------- Ticker ---------- */
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 0.9rem;
  background: var(--ink-2);
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker 46s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-faint);
  white-space: nowrap;
}
.ticker-track span::after { content: "·"; margin-left: 3.5rem; color: var(--brass); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: background 0.3s var(--ease);
}
a.card:hover { background: var(--ink-3); }
a.card:hover .card-link { color: var(--brass-bright); }
a.card:hover .card-link .arrow { transform: translateX(4px); }
.card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--brass);
}
.card h3 { margin: 0; }
.card p { color: var(--paper-dim); font-size: 0.97rem; margin: 0; }
.card-link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 560;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.25s;
}
.card-link .arrow { transition: transform 0.25s var(--ease); }

/* ---------- Feature panel / photo slots ---------- */
.panel {
  position: relative;
  min-height: 22rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(30rem 20rem at 70% 20%, rgba(200, 155, 90, 0.12), transparent 60%),
    var(--ink-2);
}
.panel.has-photo { background: var(--photo) center / cover no-repeat; }
.panel::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  pointer-events: none;
}
.panel.has-photo::after { border-color: rgba(244, 241, 234, 0.25); }
.panel-tag {
  position: absolute;
  left: 1.8rem;
  bottom: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* ---------- Numbered list (approach steps) ---------- */
.steps { list-style: none; margin: clamp(2rem,4vw,3rem) 0 0; padding: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem 2rem;
  padding-block: 1.9rem;
  border-top: 1px solid var(--line);
}
.section--light .steps li { border-top-color: var(--line-on-paper); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--brass);
  padding-top: 0.35rem;
}
.section--light .steps li::before { color: #96703a; }
.steps h3 { margin-bottom: 0.4rem; }
.steps p { color: var(--paper-dim); margin: 0; }
.section--light .steps p { color: var(--ink-on-paper-dim); }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--ink); padding: 1.8rem 1.5rem; }
.stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 420;
  color: var(--brass-bright);
  line-height: 1;
  display: block;
  margin-bottom: 0.55rem;
}
.stat .stat-label {
  font-size: 0.85rem;
  color: var(--paper-dim);
  line-height: 1.4;
  display: block;
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: 0.8rem; }
.checklist li { padding-left: 1.9rem; position: relative; color: var(--paper-dim); max-width: var(--w-text); }
.checklist li strong { color: var(--paper); font-weight: 540; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.85rem;
  height: 1px;
  background: var(--brass);
}
.section--light .checklist li { color: var(--ink-on-paper-dim); }
.section--light .checklist li strong { color: var(--ink-on-paper); }

/* ---------- Quote / ethos ---------- */
.ethos {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 26ch;
  margin: 0;
  text-wrap: balance;
}
.ethos em { color: var(--brass-bright); }
.ethos-source {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

/* ---------- FAQ (native details/summary) ---------- */
.faq { margin-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 440;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--brass);
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--brass-bright); }
.faq .faq-a { padding: 0 0 1.5rem; color: var(--paper-dim); }
.faq .faq-a p { margin-bottom: 0.8rem; }

/* ---------- Credentials band ---------- */
.cred-band {
  display: grid;
  gap: 1px;
  background: var(--line-on-paper);
  border: 1px solid var(--line-on-paper);
}
@media (min-width: 640px) { .cred-band { grid-template-columns: repeat(4, 1fr); } }
.cred { background: var(--paper); padding: 1.6rem 1.4rem; }
.cred .cred-k {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #96703a;
  display: block;
  margin-bottom: 0.5rem;
}
.cred .cred-v { font-weight: 540; font-size: 0.98rem; line-height: 1.4; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.2rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label { font-size: 0.86rem; font-weight: 540; letter-spacing: 0.02em; }
.form-field .hint { font-size: 0.8rem; color: var(--paper-faint); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--paper);
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
}
.form-field textarea { resize: vertical; min-height: 8.5rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c89b5a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-note { font-size: 0.85rem; color: var(--paper-faint); max-width: 34rem; }
.form-status {
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  background: var(--brass-dim);
  padding: 1.1rem 1.3rem;
  font-size: 0.95rem;
  margin-top: 1.2rem;
}
.form-status[hidden] { display: none; }
/* honeypot — hidden from humans, present for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Contact info block ---------- */
.contact-rows { display: grid; gap: 0; margin-top: 1rem; }
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.contact-row:hover .contact-v { color: var(--brass-bright); }
.contact-row .contact-k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-faint);
}
.contact-row .contact-v {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  transition: color 0.2s;
}

/* ---------- CTA band ---------- */
.cta-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(50rem 26rem at 50% 130%, rgba(200, 155, 90, 0.16), transparent 65%),
    var(--ink-2);
  text-align: center;
  padding-block: var(--space-section);
}
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; max-width: 34rem; }
.cta-band .hero-cta { justify-content: center; }
.cta-alt {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--paper-faint);
}
.cta-alt a { color: var(--paper-dim); text-decoration-color: var(--brass); text-underline-offset: 4px; }
.cta-alt a:hover { color: var(--brass-bright); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9rem;
  color: var(--paper-dim);
}
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--paper); text-decoration: none; }
.footer-brand .brand-mark { color: var(--brass); }
.footer-tag { margin-top: 0.9rem; max-width: 22rem; font-size: 0.88rem; color: var(--paper-faint); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-faint);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { text-decoration: none; color: var(--paper-dim); }
.footer-col a:hover { color: var(--brass-bright); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--paper-faint);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--paper-dim); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: var(--w-text); }
.prose h2 { font-size: 1.6rem; margin-top: 2.75rem; }
.prose h3 { font-size: 1.2rem; margin-top: 2rem; }
.prose ul { color: var(--paper-dim); padding-left: 1.2rem; display: grid; gap: 0.5rem; }
.prose p { color: var(--paper-dim); }
.prose a { color: var(--brass-bright); text-decoration-color: var(--brass); text-underline-offset: 3px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .ticker, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
