:root {
  --brand: #D14830;
  --brand-light: #FFF0ED;
  --black: #1A1A1A;
  --dark: #292929;
  --mid: #6B6B6B;
  --light-gray: #F4F4F4;
  --border: #E3E3E3;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --serif: 'Georgia', 'Times New Roman', 'Noto Serif', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}
[data-theme="dark"] {
  --black: #F0F0F0;
  --dark: #E0E0E0;
  --mid: #A0A0A0;
  --light-gray: #1E1E1E;
  --border: #333;
  --white: #141414;
  --bg: #141414;
  --brand-light: #2A1A17;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--dark);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  transition: background .2s, color .2s;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.skip-link {
  position: absolute; top: -100px; left: 16px; background: var(--brand);
  color: #fff; padding: 8px 16px; z-index: 200; border-radius: 0 0 4px 4px;
  font-size: .85rem; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* Layout */
.wrap { max-width: 680px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ── Masthead (Axios-style top bar) ── */
.masthead {
  border-bottom: 3px solid var(--brand);
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 52px;
}
.masthead-logo {
  font-family: var(--sans); font-weight: 900; font-size: 1.25rem;
  color: var(--black); text-decoration: none; letter-spacing: -.02em;
  white-space: nowrap;
}
.masthead-logo:hover { text-decoration: none; color: var(--brand); }
.masthead-logo span { color: var(--brand); }
.nav-links {
  display: flex; gap: 2px; align-items: center;
}
.nav-links a {
  color: var(--mid); font-size: .82rem; font-weight: 600;
  padding: 6px 10px; border-radius: 4px; transition: color .15s;
  text-transform: uppercase; letter-spacing: .04em; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--black); text-decoration: none;
}
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  display: flex; border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; flex-shrink: 0;
}
.lang-switch a {
  color: var(--mid); font-size: .75rem; font-weight: 700;
  padding: 4px 10px; transition: all .15s;
  text-transform: uppercase; letter-spacing: .03em;
}
.lang-switch a:hover { text-decoration: none; color: var(--black); }
.lang-switch a.active { background: var(--brand); color: #fff; }
.theme-toggle {
  background: none; border: 1px solid var(--border); color: var(--mid);
  width: 30px; height: 30px; border-radius: 4px; font-size: 1rem;
  cursor: pointer; flex-shrink: 0; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { border-color: var(--dark); color: var(--dark); }
.mobile-menu-btn {
  display: none; background: none; border: none; color: var(--dark);
  font-size: 1.4rem; cursor: pointer; padding: 4px;
}

/* ── Hero — Newspaper headline style ── */
.hero {
  border-bottom: 1px solid var(--border);
  padding: 48px 20px 40px; text-align: center;
  background: var(--white);
}
.hero-kicker {
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  color: var(--brand); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--black); line-height: 1.15;
  max-width: 780px; margin: 0 auto 16px; letter-spacing: -.02em;
}
.hero .lede {
  font-family: var(--sans); font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--mid); max-width: 600px; margin: 0 auto 28px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-block; padding: 12px 28px; background: var(--brand);
  color: #fff; font-weight: 700; font-size: .9rem; border-radius: 4px;
  transition: background .15s; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: .05em;
}
.hero-cta:hover { background: #B83E2A; text-decoration: none; color: #fff; }

/* ── Stat strip ── */
.stat-strip {
  background: var(--black); color: #fff; padding: 0;
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .stat-strip { background: #1A1A1A; }
.stat-strip-inner {
  display: flex; max-width: 1080px; margin: 0 auto;
}
.stat-item {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--sans); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.stat-num.brand { color: var(--brand); }
.stat-label {
  font-size: .7rem; color: rgba(255,255,255,.65); margin-top: 4px;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}

/* ── Section — Axios stream layout ── */
.stream { padding: 40px 20px; background: var(--bg); }
.stream + .stream { border-top: 1px solid var(--border); }
.stream-header {
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  color: var(--brand); text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 24px; padding-bottom: 8px;
  border-bottom: 2px solid var(--brand); display: inline-block;
}
.stream h2 {
  font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700; color: var(--black); line-height: 1.25;
  margin-bottom: 12px;
}
.stream p {
  font-size: 1rem; line-height: 1.75; color: var(--mid);
  margin-bottom: 16px;
}
.stream p strong { color: var(--dark); }

/* Why it matters box — Axios signature */
.why-box {
  border-left: 3px solid var(--brand); padding: 16px 20px;
  margin: 20px 0; background: var(--brand-light);
}
.why-box .why-label {
  font-family: var(--sans); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--brand);
  margin-bottom: 6px;
}
.why-box p { margin: 0; color: var(--dark); font-size: .95rem; line-height: 1.65; }
[data-theme="dark"] .why-box p { color: var(--dark); }

/* Go deeper / By the numbers boxes */
.detail-box {
  border-left: 3px solid var(--border); padding: 16px 20px;
  margin: 20px 0; background: var(--light-gray);
}
.detail-box .detail-label {
  font-family: var(--sans); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--mid);
  margin-bottom: 6px;
}
.detail-box p, .detail-box li {
  margin: 0 0 6px; color: var(--dark); font-size: .95rem; line-height: 1.65;
}
.detail-box ul { padding-left: 18px; margin: 0; }

/* ── Cards grid (issues/facts) ── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-top: 24px;
}
.card {
  border: 1px solid var(--border); border-left: 4px solid var(--brand);
  padding: 24px 20px; background: var(--white);
  transition: box-shadow .15s;
}
.card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.card:nth-child(2) { border-left-color: #2563EB; }
.card:nth-child(3) { border-left-color: #059669; }
.card:nth-child(4) { border-left-color: #D97706; }
.card:nth-child(5) { border-left-color: #7C3AED; }
.card:nth-child(6) { border-left-color: #DC2626; }
.card h3 {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; color: var(--black); line-height: 1.3;
}
.card p { font-size: .9rem; line-height: 1.6; color: var(--mid); margin: 0; }
.card-link {
  display: inline-block; margin-top: 12px; font-size: .82rem;
  font-weight: 700; color: var(--brand); text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Myth vs. Fact ── */
.myth-fact { margin: 24px 0; }
.myth-fact-item {
  border: 1px solid var(--border); margin-bottom: 16px;
  background: var(--white);
}
.myth-row, .fact-row {
  padding: 16px 20px; display: flex; gap: 12px; align-items: baseline;
}
.myth-row {
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.myth-tag, .fact-tag {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: 2px 8px; border-radius: 2px;
  flex-shrink: 0; white-space: nowrap;
}
.myth-tag { background: #FECACA; color: #991B1B; }
.fact-tag { background: #D1FAE5; color: #065F46; }
[data-theme="dark"] .myth-tag { background: #7F1D1D; color: #FECACA; }
[data-theme="dark"] .fact-tag { background: #064E3B; color: #D1FAE5; }
.myth-row p, .fact-row p {
  margin: 0; font-size: .92rem; line-height: 1.5; color: var(--dark);
}

/* ── Data table ── */
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.data-table th {
  background: var(--black); color: #fff; padding: 10px 14px;
  text-align: left; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
}
[data-theme="dark"] .data-table th { background: #292929; color: #E0E0E0; }
.data-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  color: var(--dark);
}
.data-table tr:nth-child(even) { background: var(--light-gray); }
.data-table td strong { color: var(--brand); }

/* ── Timeline ── */
.timeline { margin: 24px 0; padding-left: 20px; border-left: 2px solid var(--border); }
.timeline-item { padding: 0 0 24px 20px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -25px; top: 4px;
  width: 10px; height: 10px; background: var(--brand);
  border-radius: 50%;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
  font-size: .75rem; font-weight: 700; color: var(--brand);
  text-transform: uppercase; letter-spacing: .05em;
}
.timeline-item h3 {
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--black); margin: 4px 0;
}
.timeline-item p { font-size: .9rem; color: var(--mid); margin: 0; }

/* ── CTA Section ── */
.cta-section {
  background: var(--black); color: #fff; text-align: center;
  padding: 56px 20px; border-top: 4px solid var(--brand);
}
[data-theme="dark"] .cta-section { background: #1A1A1A; }
.cta-section h2 {
  font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700; margin-bottom: 12px; color: #fff;
}
.cta-section p { color: rgba(255,255,255,.7); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .hero-cta { background: var(--brand); }
.cta-section .hero-cta:hover { background: #B83E2A; }

/* ── Countdown ── */
.countdown-bar {
  background: var(--brand); color: #fff; text-align: center;
  padding: 12px 20px; font-size: .85rem; font-weight: 600;
}
.countdown-bar strong { color: #fff; }

/* ── Footer ── */
.site-footer {
  background: var(--black); color: rgba(255,255,255,.6);
  padding: 40px 20px; text-align: center; font-size: .85rem;
  border-top: 3px solid var(--brand);
}
[data-theme="dark"] .site-footer { background: #111; }
.site-footer strong { color: #fff; }
.site-footer .tagline { color: rgba(255,255,255,.4); margin: 4px 0 16px; font-size: .8rem; }
.site-footer a { color: var(--brand); }
.site-footer .disclaimer {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem; color: rgba(255,255,255,.35);
}

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: 4px; font-size: .95rem; font-family: var(--sans);
  background: var(--white); color: var(--dark);
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(209,72,48,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-block; padding: 12px 28px; background: var(--brand);
  color: #fff; font-weight: 700; font-size: .9rem; border-radius: 4px;
  border: none; cursor: pointer; text-transform: uppercase; letter-spacing: .05em;
}
.form-submit:hover { background: #B83E2A; }

/* ── Form overlay ── */
.form-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 300; align-items: center; justify-content: center;
}
.form-overlay.visible { display: flex; }
.form-overlay-box {
  background: var(--white); padding: 40px; border-radius: 8px;
  text-align: center; max-width: 400px; width: 90%;
}
.form-overlay-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-overlay-icon.success { color: #059669; }
.form-overlay-icon.error { color: var(--brand); }
.form-overlay-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.form-overlay-msg { color: var(--mid); font-size: .9rem; margin-bottom: 20px; }
.form-overlay-close {
  padding: 8px 24px; background: var(--brand); color: #fff;
  border: none; border-radius: 4px; font-weight: 700; cursor: pointer;
}

/* ── About page ── */
.about-header { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 32px; }
.about-photo {
  width: 200px; height: 250px; object-fit: cover; border-radius: 4px;
  border: 1px solid var(--border); flex-shrink: 0;
}
.about-bio { flex: 1; min-width: 260px; }
.about-bio h2 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.about-bio .role { color: var(--brand); font-weight: 600; font-size: .9rem; margin-bottom: 12px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .stat-strip-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
  .stat-item:nth-child(even) { border-right: none; }
  .card-grid { grid-template-columns: 1fr; }
  .about-header { flex-direction: column; align-items: center; text-align: center; }
  .about-photo { width: 160px; height: 200px; }
  .myth-row, .fact-row { flex-direction: column; gap: 6px; }
}
.nav-links.open {
  display: flex; flex-direction: column; position: absolute;
  top: 52px; left: 0; right: 0; background: var(--white);
  padding: 8px; gap: 2px; box-shadow: 0 4px 12px rgba(0,0,0,.1);
  border-bottom: 3px solid var(--brand); z-index: 99;
}
.nav-links.open a { color: var(--dark); padding: 10px 16px; }
