/* ================================================
   STYLE — Dignity Before Damage Campaign
   Main stylesheet · imports animations + responsive
   ================================================ */

@import url("animations.css");
@import url("responsive.css");

/* ---- Design tokens ---- */
:root {
  --black:        #050505;
  --ink:          #0c0d10;
  --ash:          #15161a;
  --ivory:        #f1ece1;
  --bone:         #e3dccc;
  --paper:        #efe9dc;
  --amber:        #d36a2a;
  --amber-bright: #e57836;
  --rust:         #8a3a1d;
  --blood:        #a8201a;
  --slate:        #6c6f74;
  --line-dark:    rgba(241, 236, 225, 0.14);
  --line-darker:  rgba(241, 236, 225, 0.08);
  --line-light:   rgba(13, 13, 14, 0.14);
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans:  "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--black); }

/* ================ FILM GRAIN ================ */
.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ================ LIVE STRIP ================ */
.live-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 38px;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(241, 236, 225, 0.85);
  overflow: hidden;
}
.live-strip .badge {
  background: var(--amber);
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 0 14px;
  height: 100%;
  display: flex; align-items: center;
  text-transform: uppercase;
  position: relative;
}
.live-strip .badge .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--black);
  margin-right: 8px;
  animation: pulse 1.6s infinite ease-in-out;
}
.live-strip .track-wrap {
  overflow: hidden;
  height: 100%;
  display: flex; align-items: center;
  padding-left: 18px;
  mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent);
}
.live-strip .track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 70s linear infinite;
}
.live-strip .track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.live-strip .track strong {
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
}
.live-strip .track .sep { color: var(--line-dark); }
.live-strip .clock {
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
  border-left: 1px solid var(--line-dark);
  height: 100%;
  color: rgba(241, 236, 225, 0.6);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.live-strip .clock .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
  animation: pulse 2s infinite ease-in-out;
}

/* ================ NAV ================ */
.nav-bar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-darker);
  color: var(--ivory);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-bar .mark {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100, 'WONK' 1;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-bar .mark .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* ---- Language switcher buttons ---- */
.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 6px;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
  border-radius: 3px;
}
.lang-btn:hover { opacity: 1; }
.lang-btn.active {
  opacity: 1;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
}
/* Footer lang switcher */
.footer-bottom .lang-switch .lang-btn {
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 0 8px;
  border-radius: 0;
  border-bottom: none;
  border-right: 1px solid var(--line-dark);
}
.footer-bottom .lang-switch .lang-btn:last-child { border-right: none; }
.footer-bottom .lang-switch .lang-btn.active { color: var(--amber); opacity: 1; }

/* ---- 501(c)(3) footer line ---- */
.foot-501 {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.4);
  margin-top: 6px;
}
.nav-bar .center { display: flex; gap: 28px; justify-content: center; }
.nav-bar .center a:hover { color: var(--amber); }
.nav-bar .right { display: flex; justify-content: flex-end; gap: 14px; align-items: center; }
.nav-bar .lang { opacity: 0.6; font-size: 10px; }
.nav-bar .cta {
  border: 1px solid var(--ivory);
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-bar .cta:hover {
  background: var(--amber); color: var(--black); border-color: var(--amber);
}

/* ================ SECTION SCAFFOLDING ================ */
section { position: relative; }
.container { max-width: 1500px; margin: 0 auto; }

.sec-label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber);
}
.sec-num {
  display: block;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-style: italic;
  font-size: 92px;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  font-weight: 300;
}
.paper-section .sec-num,
.paper-section .sec-label { color: var(--rust); }
.paper-section .sec-num { color: var(--ink); }

/* ================ 1. HERO / SILENCE ================ */
.silence {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 130px clamp(20px, 6vw, 80px) 32px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.silence::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 30%, rgba(211, 106, 42, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(20, 30, 50, 0.45), transparent 70%);
  pointer-events: none;
}
.silence-meta {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.6);
  gap: 24px;
}
.silence-meta .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}
.silence-meta .pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2.4s infinite ease-in-out;
}
.silence-meta .right { text-align: right; }
.silence-inner {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  padding: 4vh 0;
}
.silence-inner .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: clamp(36px, 9vh, 100px);
  display: flex; align-items: center; gap: 14px;
  animation: fadeUp 1.2s 0.3s backwards ease-out;
}
.silence-inner .eyebrow::before {
  content: ""; width: 36px; height: 1px; background: currentColor;
}
.silence-inner h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 30, 'WONK' 1;
  font-weight: 300;
  font-size: clamp(46px, 10.5vw, 178px);
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: var(--ivory);
  max-width: 18ch;
  animation: fadeUp 1.4s 0.7s backwards ease-out;
}
.silence-inner h1 .turn {
  display: block;
  color: var(--amber);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100, 'WONK' 1;
}
.silence-foot {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
  animation: fadeUp 1.2s 1.6s backwards ease-out;
  padding-top: 5vh;
  border-top: 1px solid var(--line-darker);
}
.silence-foot .col {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.55);
}
.silence-foot .col strong {
  display: block;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-style: italic;
  font-size: 16px; text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin-bottom: 6px;
  font-weight: 400;
}
.silence-foot .scroll-cue {
  text-align: right;
  display: flex; justify-content: flex-end; align-items: center; gap: 10px;
}
.silence-foot .scroll-cue .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.4s infinite ease-in-out;
}

/* ================ POSTER MOMENTS ================ */
.poster {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 120px clamp(20px, 6vw, 80px);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.poster.amber { background: var(--amber); color: var(--black); }
.poster.paper { background: var(--paper); color: var(--ink); }
.poster.dark  { background: var(--ink); }
.poster::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
.poster.dark::before {
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(211, 106, 42, 0.08), transparent 65%);
}
.poster-inner {
  max-width: 1500px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.poster .marker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 56px;
  display: flex; align-items: center; gap: 14px;
  color: var(--amber);
}
.poster.amber .marker { color: var(--black); }
.poster.paper .marker { color: var(--rust); }
.poster .marker::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.poster h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(46px, 10vw, 184px);
  line-height: 0.93;
  letter-spacing: -0.038em;
  max-width: 18ch;
}
.poster h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
}
.poster.dark h2, .poster:not(.amber):not(.paper) h2 { color: var(--ivory); }
.poster.dark h2 em, .poster:not(.amber):not(.paper) h2 em { color: var(--amber); }
.poster.amber h2 { color: var(--black); }
.poster.amber h2 em { color: var(--ink); }
.poster.paper h2 { color: var(--ink); }
.poster.paper h2 em { color: var(--rust); }
.poster .poster-foot {
  position: absolute;
  left: clamp(20px, 6vw, 80px); right: clamp(20px, 6vw, 80px);
  bottom: 36px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7;
  gap: 16px;
}
.poster.amber .poster-foot { color: var(--black); opacity: 0.75; }

/* ================ 2. REVEAL ================ */
.reveal-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(120px, 18vh, 220px) clamp(20px, 6vw, 80px);
}
.reveal-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.reveal-inner .label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust);
}
.reveal-inner .label .num {
  display: block;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-style: italic;
  font-size: 92px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.reveal-body p {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 350;
  font-weight: 350;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.reveal-body p + p {
  margin-top: 32px;
  font-size: clamp(16px, 1.3vw, 18px);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(13, 13, 14, 0.72);
  letter-spacing: 0;
}
.reveal-body em { font-style: italic; color: var(--rust); }

/* ================ 3. EVIDENCE ================ */
.evidence {
  background: var(--black);
  padding: clamp(100px, 14vh, 160px) clamp(20px, 6vw, 80px) 0;
}
.evidence-head {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.evidence-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 22ch;
}
.evidence-head h2 em {
  font-style: italic; font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--amber);
}
.stat-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-dark);
}
.stat-cell {
  padding: 56px 32px 56px 0;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.stat-cell:last-child { border-right: none; padding-right: 0; }
.stat-cell .num {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--ivory);
}
.stat-cell .num em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--amber);
}
.stat-cell .caption {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.55;
  color: rgba(241, 236, 225, 0.78);
  max-width: 32ch; flex: 1;
}
.stat-cell .source {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.45);
  padding-top: 16px;
  border-top: 1px solid var(--line-darker);
}

/* ================ 4. THE WAIT ================ */
.wait-seq {
  background: var(--black);
  padding: clamp(120px, 16vh, 200px) 0 0;
}
.wait-head {
  max-width: 1500px; margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px) 80px;
}
.wait-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 24ch;
}
.wait-head h2 em { font-style: italic; color: var(--amber); }
.wait-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
  border-top: 1px solid var(--line-dark);
}
.wait-row:last-child { border-bottom: 1px solid var(--line-dark); }
.wait-row .text-cell {
  padding: clamp(50px, 10vh, 120px) clamp(30px, 6vw, 90px);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
}
.wait-row .text-cell .top {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber);
  display: flex; gap: 18px;
}
.wait-row .text-cell .top .roman {
  font-family: var(--serif); font-style: italic;
  font-size: 18px;
  color: var(--ivory); text-transform: none;
  font-variation-settings: 'opsz' 144, 'wght' 400;
  letter-spacing: -0.01em;
}
.wait-row .text-cell h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 14ch;
}
.wait-row .text-cell .footnote {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(241, 236, 225, 0.55);
  max-width: 40ch; line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--line-darker);
  text-transform: uppercase;
}
.wait-row .image-cell {
  background-size: cover; background-position: center;
  filter: grayscale(0.6) contrast(1.1) brightness(0.72);
  min-height: 380px;
  position: relative;
}
.wait-row .image-cell .img-cap {
  position: absolute; bottom: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.85);
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
}
.wait-row.reverse .image-cell { order: -1; }

/* ================ THE RECORD (timeline) ================ */
.record-section {
  background: var(--ink);
  padding: clamp(120px, 16vh, 200px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line-dark);
}
.record-inner { max-width: 1500px; margin: 0 auto; }
.record-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 40px;
}
.record-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 22ch;
}
.record-head h2 em { font-style: italic; color: var(--amber); }
.record-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: clamp(20px, 4vw, 60px);
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}
.record-row .year {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: var(--amber);
}
.record-row p {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 350;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ivory);
  max-width: 60ch;
}
.record-row .tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.55);
  text-align: right;
}

/* ================ 5. PULL QUOTE ================ */
.quote-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(140px, 22vh, 240px) clamp(20px, 6vw, 80px);
  position: relative;
}
.quote-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.quote-mark {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-style: italic;
  font-size: 200px;
  line-height: 0.6;
  color: var(--rust);
  height: 80px;
}
.quote-text {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 6.2vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 22ch;
}
.quote-text em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--rust);
}
.quote-attrib {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rust);
  display: flex; align-items: center; gap: 14px;
}
.quote-attrib::before { content: ""; width: 36px; height: 1px; background: currentColor; }

/* ================ 7. RESPONSE ================ */
.response-section {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(120px, 16vh, 200px) clamp(20px, 6vw, 80px);
}
.response-inner { max-width: 1500px; margin: 0 auto; }
.response-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: end;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
}
.response-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
}
.response-head h2 em { font-style: italic; color: var(--rust); }
.response-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
}
.response-cell {
  background: var(--paper);
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s;
}
.response-cell:hover { background: var(--bone); }
.response-cell .geo {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust);
  display: flex; align-items: center; gap: 10px;
}
.response-cell .geo .dot { width: 5px; height: 5px; background: var(--rust); border-radius: 50%; }
.response-cell h4 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.response-cell p { font-size: 14px; line-height: 1.65; color: rgba(13, 13, 14, 0.72); }
.response-cell .meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(13, 13, 14, 0.5);
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  margin-top: auto;
}

/* ================ 8. INFRASTRUCTURE ================ */
.infra-section {
  background: var(--black);
  padding: clamp(120px, 16vh, 200px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.infra-section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 50%, transparent);
  opacity: 0.6;
}
.infra-inner { max-width: 1500px; margin: 0 auto; }
.infra-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: end;
  margin-bottom: 100px;
}
.infra-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 22ch;
}
.infra-head h2 em {
  font-style: italic; font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--amber);
}
.infra-list { border-top: 1px solid var(--line-dark); }
.infra-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr 0.5fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 50px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
  transition: background 0.4s;
}
.infra-row:hover { background: rgba(241, 236, 225, 0.025); }
.infra-row .num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--amber);
  padding-top: 8px;
}
.infra-row h4 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ivory);
}
.infra-row p { font-size: 15px; line-height: 1.65; color: rgba(241, 236, 225, 0.72); max-width: 56ch; }
.infra-row .tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.55);
  padding-top: 8px;
  text-align: right;
}

/* ================ 9. DISPATCHES ================ */
.dispatches {
  background: var(--ink);
  padding: clamp(120px, 16vh, 200px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line-dark);
}
.dispatches-inner { max-width: 1500px; margin: 0 auto; }
.dispatches-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 60px;
}
.dispatches-head h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  max-width: 22ch;
}
.dispatches-head h2 em {
  font-style: italic; font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--amber);
}
.dispatch-list { display: grid; grid-template-columns: 1fr; }
.dispatch-row {
  display: grid;
  grid-template-columns: 200px 1fr 1.4fr 80px;
  gap: clamp(20px, 4vw, 60px);
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
  transition: background 0.3s;
  cursor: pointer;
}
.dispatch-row:hover { background: rgba(241, 236, 225, 0.03); }
.dispatch-row .dateline {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
}
.dispatch-row .dateline .city {
  display: block;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}
.dispatch-row h4 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ivory);
}
.dispatch-row p { font-size: 14px; line-height: 1.65; color: rgba(241, 236, 225, 0.7); }
.dispatch-row .read {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
  text-align: right;
  align-self: center;
  transition: transform 0.3s;
}
.dispatch-row:hover .read { transform: translateX(6px); }

/* ================ THE WORLD IS WATCHING ================ */
.world-section {
  background: var(--ink);
  padding: clamp(120px, 18vh, 220px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.world-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(138, 58, 29, 0.14), transparent 70%);
}
.world-inner {
  max-width: 1300px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  text-align: left;
}
.world-inner .marker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
  display: flex; align-items: center; gap: 14px;
}
.world-inner .marker::before { content: ""; width: 36px; height: 1px; background: currentColor; }
.world-inner h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ivory);
  max-width: 18ch;
}
.world-inner h2 em {
  font-style: italic; color: var(--amber);
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
}
.world-inner .lede {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 350;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 350;
  color: rgba(241, 236, 225, 0.85);
  max-width: 56ch;
}
.world-flag-row {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(241, 236, 225, 0.7);
}
.world-flag-row span {
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

/* ================ DISPATCHES SECTION ================ */
.dispatches-section {
  background: var(--ink);
  padding: clamp(100px, 14vh, 180px) clamp(20px, 6vw, 80px);
}
.dispatches-inner { max-width: 1400px; margin: 0 auto; }
.dispatches-head {
  max-width: 760px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.dispatches-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 300;
  font-variation-settings: 'opsz' 40, 'SOFT' 60;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin: 20px 0 24px;
}
.dispatches-head h2 em {
  font-variation-settings: 'opsz' 40, 'SOFT' 90, 'WONK' 1;
  color: var(--amber);
}
.dispatches-intro {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241, 236, 225, 0.55);
  max-width: 56ch;
}
.dispatches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(241, 236, 225, 0.08);
}
.dispatch-card-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px;
  background: var(--ink);
  text-decoration: none;
  transition: background 0.25s;
}
.dispatch-card-full:hover { background: var(--ash); }
.dcf-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dcf-dateline { display: flex; flex-direction: column; gap: 4px; }
.dcf-city {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.dcf-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.35);
}
.dcf-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(241, 236, 225, 0.2);
}
.dispatch-card-full h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ivory);
  flex: 1;
}
.dispatch-card-full p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(241, 236, 225, 0.5);
}
.dcf-arrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.35);
  transition: color 0.2s;
}
.dispatch-card-full:hover .dcf-arrow { color: var(--amber); }

/* ================ JOIN ================ */
.join-section {
  background: var(--black);
  padding: clamp(140px, 20vh, 240px) clamp(20px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.join-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(211, 106, 42, 0.22), transparent 70%);
}
.join-inner {
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 2;
}
.join-inner .label {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.join-inner .label::before,
.join-inner .label::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.join-inner h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 300;
  font-weight: 300;
  font-size: clamp(56px, 10.5vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ivory);
  margin-bottom: 36px;
}
.join-inner h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300, 'SOFT' 100;
  color: var(--amber);
}
.join-inner .lede {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 350;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 350;
  color: rgba(241, 236, 225, 0.85);
  max-width: 52ch;
  margin: 0 auto 64px;
}
.amounts {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.amounts button {
  background: transparent;
  border: 1px solid rgba(241, 236, 225, 0.3);
  color: var(--ivory);
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 350;
  font-size: 22px;
  font-weight: 350;
  padding: 18px 32px;
  border-radius: 0;
  transition: all 0.25s;
  letter-spacing: -0.01em;
}
.amounts button:hover,
.amounts button.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 44px;
  border-radius: 999px;
  transition: all 0.25s;
}
.cta-primary:hover { background: var(--ivory); transform: translateY(-2px); }
.join-foot {
  margin-top: 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.55);
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap;
}
.join-foot a {
  border-bottom: 1px solid rgba(241, 236, 225, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.join-foot a:hover { color: var(--amber); border-color: var(--amber); }

/* ================ FOOTER ================ */
footer {
  background: var(--black);
  color: rgba(241, 236, 225, 0.55);
  padding: 80px clamp(20px, 6vw, 80px) 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  max-width: 1500px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid .brand-block { max-width: 38ch; }
.footer-grid .brand-block .mark {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-size: 24px; color: var(--ivory);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-grid .brand-block p { font-size: 13px; line-height: 1.65; }
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: 13px; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.footer-grid a:hover { opacity: 1; color: var(--amber); }
.footer-bottom {
  max-width: 1500px; margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .lang-switch span {
  padding: 0 8px;
  border-right: 1px solid var(--line-dark);
}
.footer-bottom .lang-switch span:last-child { border-right: none; }
.footer-bottom .lang-switch span.active { color: var(--amber); }
