/* ============================================================
   HESTRADE SAS — Design System
   Aviation logistics · editorial precision
   Deep night navy · warm ivory · gold accent
   ============================================================ */

:root {
  /* Palette */
  --navy-900: #08111f;
  --navy-800: #0a1626;
  --navy-700: #0f2238;
  --navy-600: #16314f;
  --navy-500: #1f4368;
  --ivory:    #f5f1e8;
  --ivory-2:  #efe9da;
  --paper:    #fbfaf6;
  --gold:     #c6a15b;
  --gold-2:   #d9bd84;
  --gold-soft:#e8d6ab;
  --gold-ink: #86671f; /* AA text-gold on light backgrounds (~5:1) */
  --slate:    #5d6976; /* AA: ~5.3:1 on light backgrounds for body/muted text */
  --slate-2:  #93a1b3;
  --line:     rgba(198,161,91,0.22);
  --line-dark:rgba(255,255,255,0.10);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", ui-monospace, monospace;

  /* Rhythm */
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--navy-800);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy-900); }

/* Visible keyboard focus (WCAG 2.4.7) — gold ring works on light & dark */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Mouse users keep clean fields; focus-visible handles keyboard */
input:focus, select:focus, textarea:focus { outline: none; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  font-optical-sizing: auto;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(198,161,91,0.6); }
.btn-outline {
  border-color: var(--line);
  color: var(--ivory);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  color: var(--navy-700);
  border-color: rgba(10,22,38,0.18);
}
.btn-ghost:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--ivory); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,246,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(10,22,38,0.07);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(251,250,246,0.95); box-shadow: 0 1px 0 rgba(10,22,38,0.06); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy-800); }
.brand .mark { color: var(--gold); width: 38px; height: 38px; flex: none; }
.brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.06em;
  color: var(--navy-900);
}
.brand .wordmark small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--slate);
  margin-top: -2px;
  font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--navy-700);
  position: relative; padding: 6px 0;
  transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; }
.lang-switch a { color: var(--slate); padding: 8px 7px; transition: color .2s; }
.lang-switch a.active { color: var(--navy-900); font-weight: 700; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch span { color: rgba(10,22,38,0.2); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 9px; color: var(--navy-800); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.menu-toggle svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 76px 0 0 0; z-index: 40;
  background: var(--navy-800);
  color: var(--ivory);
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  padding: 40px 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display); font-size: 30px; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid var(--line-dark); color: var(--ivory);
}
.mobile-nav .m-foot { margin-top: auto; font-family: var(--font-mono); font-size: 13px; color: var(--slate-2); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--ivory);
  overflow: hidden;
  padding: 96px 0 84px;
}
.hero::before {
  /* gradient mesh atmosphere */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(198,161,91,0.20), transparent 60%),
    radial-gradient(820px 620px at 8% 110%, rgba(31,67,104,0.55), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-700));
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 78%);
}
/* animated flight path */
.hero-path {
  position: absolute; top: 0; right: 0; width: 60%; height: 100%; z-index: 0;
  pointer-events: none; opacity: 0.6;
}
.hero-path path { stroke-dasharray: 6 8; animation: dash 28s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -400; } }

.hero .container { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.1rem);
  font-weight: 480;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-top: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero .lead {
  margin-top: 26px; max-width: 52ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--slate-2); line-height: 1.7;
}
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  border-top: 1px solid var(--line-dark); padding-top: 34px;
}
.hero-stats .stat .num {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--ivory); font-weight: 500; line-height: 1;
}
.hero-stats .stat .num span { color: var(--gold); }
.hero-stats .stat .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--slate-2); margin-top: 10px;
}

/* corridor ticker */
.corridor-bar {
  background: var(--navy-900); color: var(--slate-2);
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  overflow: hidden; white-space: nowrap;
}
.corridor-track { display: inline-flex; gap: 56px; padding: 14px 0; animation: marquee 32s linear infinite; }
.corridor-bar:hover .corridor-track { animation-play-state: paused; }
.corridor-track span { display: inline-flex; align-items: center; gap: 16px; }
.corridor-track b { color: var(--gold); font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section.tight { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem); margin-top: 20px; color: var(--navy-900);
}
.section-head p { margin-top: 20px; color: var(--slate); font-size: 1.08rem; max-width: 58ch; }
.section-head.center p { margin-inline: auto; }

.bg-navy { background: var(--navy-800); color: var(--ivory); }
.bg-navy h2 { color: var(--ivory); }
.bg-navy .section-head p { color: var(--slate-2); }
.bg-ivory { background: var(--ivory); }

/* Gold text must darken on light backgrounds to meet WCAG AA (4.5:1).
   Decorative gold rules/lines stay bright; only text-bearing gold shifts. */
.bg-ivory .eyebrow,
.bg-ivory .vc-num,
.bg-ivory .svc-idx,
.bg-ivory .prose a,
.bg-ivory .req { color: var(--gold-ink); }
.bg-ivory .eyebrow::before,
.bg-ivory .eyebrow::after { background: var(--gold-ink); }

/* ---------- Value props ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--paper); border: 1px solid rgba(10,22,38,0.08);
  padding: 38px 32px; border-radius: 3px; position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  overflow: hidden;
}
.value-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0);
  transform-origin: left; transition: transform .45s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(10,22,38,0.5); border-color: var(--line); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .vc-num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing: 0.18em; }
.value-card .vc-icon { width: 46px; height: 46px; color: var(--gold); margin: 18px 0 22px; }
.value-card h3 { font-size: 1.45rem; color: var(--navy-900); }
.value-card p { margin-top: 12px; color: var(--slate); font-size: 0.98rem; }

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 30px; align-items: start;
  padding: 40px 8px; border-bottom: 1px solid rgba(10,22,38,0.10);
  transition: background .35s var(--ease), padding .35s var(--ease);
  position: relative;
}
.bg-navy .svc-row { border-bottom-color: var(--line-dark); }
.bg-navy .svc-desc { color: var(--slate-2); }
.svc-row:hover { padding-left: 22px; padding-right: 22px; }
.bg-ivory .svc-row:hover { background: rgba(255,255,255,0.6); }
.svc-row .svc-idx { font-family: var(--font-mono); font-size: 13px; color: var(--gold); padding-top: 8px; letter-spacing: 0.1em; }
.svc-row h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); color: inherit; }
.svc-row .svc-desc { margin-top: 14px; color: var(--slate); max-width: 60ch; font-size: 1rem; }
.bg-ivory .svc-row h3 { color: var(--navy-900); }
.svc-row .svc-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--slate); border: 1px solid rgba(10,22,38,0.14); padding: 5px 11px; border-radius: 100px;
}
.bg-navy .svc-tag { color: var(--slate-2); border-color: var(--line-dark); }
.svc-row .svc-arrow { color: var(--gold); padding-top: 8px; opacity: 0; transform: translateX(-8px); transition: all .35s var(--ease); }
.svc-row:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split-visual {
  position: relative; aspect-ratio: 4/3.4; border-radius: 4px; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line-dark);
}
.split-visual .grain { position: absolute; inset: 0; opacity: 0.5; }
.map-dot { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(198,161,91,0.5); animation: ping 3s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(198,161,91,0.55);} 70%,100% { box-shadow: 0 0 0 22px rgba(198,161,91,0);} }

/* feature list with rule */
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
.feature-list li {
  display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(10,22,38,0.1);
}
.bg-navy .feature-list li { border-top-color: var(--line-dark); }
.feature-list li .fi { color: var(--gold); flex: none; margin-top: 3px; }
.feature-list li b { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; display: block; }
.feature-list li p { margin: 4px 0 0; color: var(--slate); font-size: 0.96rem; }
.bg-navy .feature-list li p { color: var(--slate-2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy-900); color: var(--ivory); padding: 86px 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% 120%, rgba(198,161,91,0.22), transparent 60%);
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); max-width: 18ch; }
.cta-band p { color: var(--slate-2); margin-top: 14px; max-width: 44ch; }

/* ---------- Notice / compliance pill ---------- */
.notice {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(198,161,91,0.10); border: 1px solid var(--line);
  color: var(--gold); border-radius: 100px; padding: 8px 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
}
.notice .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.3; } }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--navy-700); }
.field label .req { color: var(--gold-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px;
  background: var(--paper); border: 1px solid rgba(10,22,38,0.16);
  border-radius: 3px; padding: 13px 15px; color: var(--navy-900);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,0.18);
}
.field .hint { font-size: 12px; color: var(--slate); }

/* form status / feedback */
.form-status {
  margin: 18px 0 0; padding: 14px 16px; border-radius: 3px;
  font-size: 0.95rem; line-height: 1.5; border: 1px solid transparent;
}
.form-status[data-kind="info"] { background: rgba(31,67,104,0.07); border-color: rgba(31,67,104,0.2); color: var(--navy-700); }
.form-status[data-kind="success"] { background: rgba(198,161,91,0.12); border-color: var(--line); color: #7a5e1f; }
.form-status[data-kind="error"] { background: rgba(176,58,46,0.08); border-color: rgba(176,58,46,0.3); color: #9b2f25; }

/* contact info cards */
.contact-card { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line-dark); }
.contact-card:first-child { border-top: 0; }
.contact-card .ci { color: var(--gold); flex: none; margin-top: 2px; }
.contact-card .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate-2); }
.contact-card .val { font-size: 1.12rem; margin-top: 4px; color: var(--ivory); }
.contact-card a.val:hover { color: var(--gold); }

/* static map */
.static-map {
  position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line); background: var(--navy-800);
}

/* ============================================================
   LEGAL / PROSE
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; color: var(--navy-900); margin: 48px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--navy-700); margin: 0 0 16px; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose .data-row { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(10,22,38,0.08); }
.prose .data-row .k { font-family: var(--font-mono); font-size: 13px; color: var(--slate); min-width: 200px; letter-spacing: 0.04em; }
.prose .data-row .v { color: var(--navy-900); font-weight: 500; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }

/* breadcrumb / page hero */
.page-hero { background: var(--navy-800); color: var(--ivory); padding: 80px 0 64px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 88% -10%, rgba(198,161,91,0.16), transparent 60%), linear-gradient(180deg, var(--navy-900), var(--navy-700));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-top: 20px; max-width: 20ch; }
.page-hero p { margin-top: 20px; color: var(--slate-2); max-width: 56ch; font-size: 1.1rem; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--slate-2); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--slate-2); padding: 80px 0 36px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid .brand .wordmark { color: var(--ivory); }
.site-footer .f-about { margin-top: 22px; max-width: 34ch; font-size: 0.96rem; line-height: 1.7; }
.f-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 20px; }
.f-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.f-col a { font-size: 0.97rem; color: var(--slate-2); transition: color .2s; }
.f-col a:hover { color: var(--ivory); }
.f-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--slate-2);
}
.f-bottom .legal-data { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  /* CTA lives in the mobile menu — avoid header crowding at small widths */
  .nav-right > .btn-gold { display: none; }
  .values { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .svc-row { grid-template-columns: 1fr; gap: 10px; }
  .svc-row .svc-arrow { display: none; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .prose .data-row { flex-direction: column; gap: 2px; }
  .prose .data-row .k { min-width: 0; }
}
