/* ================================================================
 * IJA Commodities Ventures — site.css
 * Single canonical stylesheet for the redesigned static site.
 *
 * Authority: design-system/DESIGN.md (logo, palette, type, motion).
 * Layered with Stripe-class corporate refinement (multi-stop
 * blue-tinted shadows, sticky-blur header, generous spacing,
 * deep-navy headings, refined cards).
 * ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
  /* Spectrum (brand) ------------------------------------------ */
  --navy:       #07084a;
  --indigo:     #0f1080;
  --royal:      #1f24da;
  --periwinkle: #7b80fc;

  --grad-spectrum: linear-gradient(90deg, #07084a 0%, #0f1080 35%, #1f24da 65%, #7b80fc 100%);
  --grad-royal:    linear-gradient(90deg, #1f24da 0%, #7b80fc 100%);
  --grad-navy:     linear-gradient(180deg, #07084a 0%, #0f1080 100%);

  /* Structural neutrals --------------------------------------- */
  --heading: #061b31;     /* Stripe-class deep navy, not pure black */
  --black:   #1a1a1a;
  --slate:   #4a5567;     /* warmer than DESIGN's #2c3142 — Stripe-tone */
  --caption: #64748d;
  --hairline: #e5edf5;
  --surface: #f8fafc;
  --white:   #ffffff;

  /* Semantics ------------------------------------------------- */
  --long:    #0c8a52;
  --short:   #c4262e;
  --pending: #b07b08;

  /* Type ------------------------------------------------------ */
  --font-display: "Inter", "Inter Display", "Aktiv Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Spacing (4px base) ---------------------------------------- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-32: 128px;

  --r-tight: 2px;
  --r-default: 6px;

  --content-max: 1200px;
  --content-narrow: 880px;
  --gutter: 24px;

  /* Shadows (Stripe-class blue-tinted) ----------------------- */
  --sh-card:
    0 1px 2px rgba(50, 50, 93, 0.04),
    0 4px 12px rgba(50, 50, 93, 0.06);
  --sh-card-hover:
    0 4px 8px rgba(50, 50, 93, 0.08),
    0 24px 48px -16px rgba(50, 50, 93, 0.18);
  --sh-cta:
    0 1px 2px rgba(31, 36, 218, 0.08),
    0 4px 12px rgba(31, 36, 218, 0.16);
  --sh-cta-hover:
    0 4px 8px rgba(31, 36, 218, 0.12),
    0 12px 28px -6px rgba(31, 36, 218, 0.32);

  /* Motion ---------------------------------------------------- */
  --d-micro: 120ms;
  --d-base:  200ms;
  --d-slow:  320ms;
  --ease-in:    cubic-bezier(0.2, 0, 0, 1);
  --ease-state: cubic-bezier(0.4, 0, 0.6, 1);
}

/* ================================================================
 * Reset / base
 * ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--royal); text-decoration: none; transition: color var(--d-base) var(--ease-state); }
a:hover { color: var(--indigo); }

ul, ol { padding: 0; margin: 0; }

button, input, textarea, select { font: inherit; }

/* Spectrum bar fixed at top of every page — the signature device */
body::before {
  content: "";
  position: fixed; top: 0; left: 0; right: 0;
  height: 8px; z-index: 200;
  background: var(--grad-spectrum);
  pointer-events: none;
}

/* ================================================================
 * Typography
 * ================================================================ */

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--heading);
  letter-spacing: -0.02em;
}

.h-display {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--heading);
  max-width: 18ch;
}

.h-1 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.h-2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h-3 {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 64ch;
  font-weight: 400;
}

.kicker {
  font: 600 11px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--royal);
  margin-bottom: var(--s-3);
}

.caption {
  font-size: 12px;
  line-height: 1.4;
  color: var(--caption);
}

.faint { color: var(--caption); }

/* tabular numerals everywhere numbers appear */
table, .tabular, .num, .kpi-value, time, .ticker {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Prose blocks */
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 70ch;
  margin: 0 0 var(--s-5);
}
.prose p:last-child { margin: 0; }

/* ================================================================
 * Layout
 * ================================================================ */

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--content-narrow); margin: 0 auto; padding: 0 var(--gutter); }

.section {
  padding: var(--s-24) 0;
  border-top: 1px solid transparent;
}
.section--surface {
  background: var(--surface);
}
.section--navy {
  background: var(--grad-navy);
  color: var(--white);
}
.section--navy h1, .section--navy h2, .section--navy h3 {
  color: var(--white);
}
.section--navy .lede, .section--navy p {
  color: rgba(255, 255, 255, 0.85);
}
.section--navy .kicker { color: var(--periwinkle); }

.section-bar {
  height: 4px;
  width: 96px;
  background: var(--grad-spectrum);
  margin-bottom: var(--s-8);
  border-radius: 1px;
}
.section-bar--full { width: 100%; }

@media (max-width: 768px) {
  .section { padding: var(--s-16) 0; }
}

/* ================================================================
 * Header
 * ================================================================ */

.site-header {
  position: sticky;
  top: 8px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--hairline);
}
.site-header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--s-4) var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}
.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.site-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 600px) {
  .site-wordmark { display: none; }
  .site-logo img { height: 36px; }
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-left: auto;
  margin-right: var(--s-4);
}
.site-nav a {
  font: 500 14px/1.2 var(--font-body);
  color: var(--heading);
  letter-spacing: 0.005em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--d-base) var(--ease-state),
              color var(--d-base) var(--ease-state);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--royal);
  border-bottom-color: var(--royal);
}
.site-nav a[aria-current="page"] { font-weight: 600; }

@media (max-width: 880px) {
  .site-header-inner { flex-wrap: wrap; gap: var(--s-3); }
  .site-nav { width: 100%; order: 3; gap: var(--s-4); justify-content: flex-start; }
  .site-nav a { font-size: 13px; }
}

/* ================================================================
 * Buttons & CTAs
 * ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 12px 20px;
  font: 500 14px/1.2 var(--font-body);
  letter-spacing: 0.01em;
  border-radius: var(--r-tight);
  text-decoration: none;
  transition: transform var(--d-base) var(--ease-in),
              box-shadow var(--d-base) var(--ease-state),
              background-color var(--d-base) var(--ease-state),
              color var(--d-base) var(--ease-state),
              filter var(--d-base) var(--ease-state);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: var(--sh-cta);
}
.btn--primary:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--sh-cta-hover);
}
.btn--sweep {
  background: var(--grad-royal);
  color: var(--white);
  padding: 14px 24px;
  font-weight: 500;
  box-shadow: var(--sh-cta);
}
.btn--sweep:hover {
  color: var(--white);
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: var(--sh-cta-hover);
}
.btn--ghost {
  background: transparent;
  color: var(--heading);
  border: 1px solid var(--heading);
  padding: 11px 19px;
}
.btn--ghost:hover {
  background: var(--heading);
  color: var(--white);
}
.btn--mini {
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
}
.btn--on-navy {
  background: var(--white);
  color: var(--heading);
}
.btn--on-navy:hover {
  background: var(--periwinkle);
  color: var(--heading);
}

/* ================================================================
 * Hero
 * ================================================================ */

.hero {
  padding: clamp(80px, 10vw, 144px) 0 var(--s-20);
  background: var(--white);
  position: relative;
}

/* Image hero — bg image with deep navy overlay, white type on top */
.hero--image {
  background:
    linear-gradient(180deg, rgba(7,8,74,0.78) 0%, rgba(15,16,128,0.65) 60%, rgba(7,8,74,0.85) 100%),
    var(--hero-bg, var(--grad-navy));
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: clamp(120px, 14vw, 200px) 0 clamp(96px, 10vw, 144px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero--image .h-display,
.hero--image .h-1 { color: var(--white); }
.hero--image .lede { color: rgba(255, 255, 255, 0.88); }
.hero--image .kicker { color: var(--periwinkle); }
.hero--image .kpi-ledger { border-top-color: rgba(255, 255, 255, 0.32); }
.hero--image .kpi-label { color: rgba(255, 255, 255, 0.68); }
.hero--image .kpi-value { color: var(--white); }
.hero--image .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero--image .btn--ghost:hover {
  background: var(--white);
  color: var(--heading);
  border-color: var(--white);
}
.hero .kicker {
  margin-bottom: var(--s-4);
}
.hero h1 { margin-bottom: var(--s-6); }
.hero .lede { margin-bottom: var(--s-8); }
.hero .hero-actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}

/* KPI ledger */
.kpi-ledger {
  margin-top: var(--s-16);
  border-top: 1px solid var(--heading);
  padding-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-6);
}
.kpi-item { display: flex; flex-direction: column; gap: 4px; }
.kpi-label {
  font: 600 11px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--caption);
}
.kpi-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--heading);
  letter-spacing: -0.02em;
}

/* ================================================================
 * Cards & grids
 * ================================================================ */

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-default);
  padding: var(--s-6);
  box-shadow: var(--sh-card);
  transition: transform var(--d-base) var(--ease-in),
              box-shadow var(--d-base) var(--ease-state),
              border-color var(--d-base) var(--ease-state);
}
.card--lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hover);
}
.card--accent { border-top: 3px solid var(--royal); }
.card .h-3 { margin-bottom: var(--s-3); }
.card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--slate); }
.card ul { padding-left: 18px; font-size: 14px; line-height: 1.7; color: var(--slate); }

/* News card variant */
.news-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-default);
  text-decoration: none;
  color: var(--heading);
  box-shadow: var(--sh-card);
  transition: transform var(--d-base) var(--ease-in),
              box-shadow var(--d-base) var(--ease-state),
              border-color var(--d-base) var(--ease-state);
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-2px);
  border-color: var(--royal);
  box-shadow: var(--sh-card-hover);
  color: var(--heading);
}
.news-card .h-3 { color: var(--heading); }
.news-card time { font-size: 12px; color: var(--caption); margin-top: auto; }
.news-card-thumb {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}
.news-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
}
.news-card-body > * { margin: 0; }

/* Image-topped commodity card */
.tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-default);
  text-decoration: none;
  overflow: hidden;
  box-shadow: var(--sh-card);
  transition: transform var(--d-base) var(--ease-in),
              box-shadow var(--d-base) var(--ease-state),
              border-color var(--d-base) var(--ease-state);
}
.tile:hover {
  transform: translateY(-2px);
  border-color: var(--royal);
  box-shadow: var(--sh-card-hover);
}
.tile-img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
}
.tile-body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.tile-body .kicker { margin-bottom: 4px; }
.tile-body .h-3 { margin: 0 0 var(--s-2); color: var(--heading); }
.tile-body p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--slate); }

/* Section with side image (split layout) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.split-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--r-default);
  border: 1px solid var(--hairline);
  box-shadow: var(--sh-card);
}
.split-image--reverse { order: -1; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: var(--s-8); }
  .split-image--reverse { order: 0; }
}

/* Section with full-bleed image background + dark overlay */
.section--image {
  position: relative;
  color: var(--white);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}
.section--image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,8,74,0.85) 0%, rgba(15,16,128,0.78) 100%);
  pointer-events: none;
}
.section--image > * { position: relative; z-index: 1; }
.section--image .h-2,
.section--image .h-3 { color: var(--white); }
.section--image .lede,
.section--image p { color: rgba(255, 255, 255, 0.85); }
.section--image .kicker { color: var(--periwinkle); }
.section--image .process-step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
}
.section--image .process-step h3 { color: var(--white); }
.section--image .process-step p { color: rgba(255, 255, 255, 0.78); }
.section--image .process-step::before { color: var(--periwinkle); }

/* ================================================================
 * Process steps (numbered)
 * ================================================================ */

.process { margin-top: var(--s-8); display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.process-step {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-default);
  padding: var(--s-8) var(--s-6) var(--s-6);
  position: relative;
  box-shadow: var(--sh-card);
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: var(--s-3); left: var(--s-6);
  font: 600 11px/1.2 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--royal);
  text-transform: uppercase;
}
.process-step h3 { font-size: 18px; margin-bottom: var(--s-3); }
.process-step p { font-size: 14px; line-height: 1.6; margin: 0; color: var(--slate); }

/* ================================================================
 * Tables
 * ================================================================ */

.table-wrap {
  background: var(--white);
  border-radius: var(--r-default);
  box-shadow: var(--sh-card);
  border: 1px solid var(--hairline);
  overflow: hidden;
  margin-top: var(--s-6);
}
table.ija-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
table.ija-table th {
  text-align: left;
  background: var(--surface);
  color: var(--heading);
  font: 600 11px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--s-4) var(--s-5);
  border-bottom: 2px solid var(--heading);
}
table.ija-table td {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.4;
  color: var(--slate);
}
table.ija-table tr:last-child td { border-bottom: none; }
table.ija-table tr:hover td { background: rgba(31, 36, 218, 0.025); }

/* ================================================================
 * Lists (principles, boundaries, RFQ)
 * ================================================================ */

.bullet-list, .boundary-list, .rfq-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: grid;
  gap: var(--s-3);
}
.bullet-list li, .boundary-list li {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--royal);
  padding: var(--s-4) var(--s-5);
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  box-shadow: var(--sh-card);
  border-radius: 0 var(--r-default) var(--r-default) 0;
}
.boundary-list li { border-left-color: var(--short); }
.tick-mark { color: var(--royal); font-weight: 700; margin-right: var(--s-2); }
.cross-mark { color: var(--short); font-weight: 700; margin-right: var(--s-2); }

.rfq-list { counter-reset: rfq; }
.rfq-list li {
  counter-increment: rfq;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-default);
  padding: var(--s-5) var(--s-6) var(--s-5) 80px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  box-shadow: var(--sh-card);
}
.rfq-list li::before {
  content: counter(rfq, decimal-leading-zero);
  position: absolute;
  left: var(--s-6); top: var(--s-5);
  font: 600 13px/1.2 var(--font-mono);
  letter-spacing: 0.06em;
  color: var(--royal);
}

/* Extras strip — for additional commodities */
.extras {
  list-style: none;
  margin: var(--s-8) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.extras li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  border-left: 3px solid var(--royal);
  padding: var(--s-3) var(--s-4);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--royal);
  box-shadow: var(--sh-card);
  border-radius: 0 var(--r-default) var(--r-default) 0;
}
.extras strong { color: var(--heading); }

/* ================================================================
 * Desk (per-commodity panel on /commodities)
 * ================================================================ */

.desk {
  margin-top: var(--s-12);
  padding-top: var(--s-12);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: 120px;
}
.desk-image {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-default);
  margin-bottom: var(--s-6);
  border: 1px solid var(--hairline);
  box-shadow: var(--sh-card);
}
.feature-image {
  width: 100%;
  height: clamp(280px, 32vw, 420px);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-default);
  margin-bottom: var(--s-8);
  border: 1px solid var(--hairline);
  box-shadow: var(--sh-card);
}
.desk:first-of-type { padding-top: 0; border-top: none; }
.desk .h-1 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: var(--s-3); }
.desk .lede { margin-bottom: var(--s-8); }
.desk-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* ================================================================
 * Footer
 * ================================================================ */

.site-footer {
  background: var(--grad-navy);
  color: var(--white);
  padding: var(--s-20) 0 var(--s-8);
}
.site-footer .container { color: rgba(255, 255, 255, 0.85); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}
.footer-col strong {
  display: block;
  color: var(--white);
  font: 600 11px/1.2 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.footer-col p, .footer-col a {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
.footer-col a:hover { color: var(--white); }
.footer-col em { color: var(--periwinkle); font-style: normal; }
.footer-col nav { display: flex; flex-direction: column; gap: 4px; }
.footer-fine {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--s-5);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ================================================================
 * Reduced motion
 * ================================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
