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

:root {
  --red: #cc0000;
  --red-dark: #a00000;
  --dark: #1a1a1a;
  --dark-mid: #2c2c2c;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: #ddd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

/* ── HEADER ──────────────────────────────────────────── */
.site-header {
  background: var(--dark);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .wordmark {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.site-header .wordmark span {
  color: var(--red);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 24px 50px;
  text-align: center;
}

.hero .eyebrow {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero h2 {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 32px;
}

.hero-photo-wrap {
  display: inline-block;
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.hero-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--red);
}

.hero-photo-note {
  margin-top: 14px;
  margin-bottom: 24px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #bbb;
  font-style: italic;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 4px;
}

/* ── EVIDENCE SECTION ───────────────────────────────── */
.evidence {
  background: var(--off-white);
  padding: 60px 24px;
}

.evidence .section-label {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  text-align: center;
}

.evidence h3 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.2;
}

.evidence .source-line {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.evidence .source-line a {
  color: var(--red);
  text-decoration: none;
}

/* Two-column layout */
.evidence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Article screenshot column */
.article-screenshot {
  position: relative;
}

.article-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.screenshot-caption {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

/* Callout boxes column */
.callouts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.callout {
  background: var(--white);
  border-left: 5px solid var(--red);
  border-top: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 22px;
  position: relative;
}

.callout + .callout {
  margin-top: -1px;
}

.callout::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 13px solid var(--red);
}

.callout-number {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 6px;
}

.callout-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.callout-body {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.55;
}

.callout-body strong {
  color: var(--red);
}

/* ── KEY FACTS BAR ──────────────────────────────────── */
.key-facts {
  background: var(--red);
  color: var(--white);
  padding: 36px 24px;
  text-align: center;
}

.key-facts h4 {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.85;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.fact-item {
  border: 1px solid rgba(255,255,255,0.35);
  padding: 18px 14px;
  background: rgba(0,0,0,0.15);
}

.fact-item .fact-label {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}

.fact-item .fact-value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 28px 24px;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-top: 3px solid var(--red);
}

.site-footer a {
  color: #bbb;
  text-decoration: none;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 44px 16px 40px;
  }

  .evidence {
    padding: 44px 16px;
  }

  .evidence-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .callouts {
    order: -1;
  }

  .callout::before {
    display: none;
  }

  .callout {
    border-left: 5px solid var(--red);
  }

  .facts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1.3rem;
  }
  .callout-headline {
    font-size: 1rem;
  }
}
