/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-card: #18181b;
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --accent: #c2410c;
  --accent-light: #ea580c;
  --accent-dim: #7c2d12;
  --border: #27272a;
  --border-light: #3f3f46;
  --serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fb923c;
}

img {
  max-width: 100%;
  height: auto;
}

/* === LAYOUT === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-secondary);
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo:hover {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    #1a0a05 40%,
    #0f0604 70%,
    var(--bg-primary) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(194, 65, 12, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(124, 45, 18, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-dateline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  border: 1px solid var(--accent);
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* === LEDE === */
.lede {
  max-width: 720px;
  margin: 0 auto;
}

.lede p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.lede p:first-child::first-letter {
  font-size: 3.5rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.1rem;
  color: var(--accent-light);
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.story-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s;
  color: var(--text-primary);
}

.story-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.card-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 1rem;
}

.story-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.story-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.stats-source {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  margin-top: 2rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-secondary);
  transform: translateX(-4px);
}

.timeline-item:last-child::before {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.timeline-content {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
}

/* === QUOTES === */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.voice-quote {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: var(--bg-secondary);
}

.voice-quote p {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.voice-quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* === CTA SECTION === */
.section-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #1a0a05 100%);
  padding: 6rem 0;
}

.section-cta h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* === HEADINGS === */
h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--bg-primary);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.footer-about h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === ARTICLE PAGE LAYOUT === */
.article-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.article-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.article-header .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.article-body strong {
  color: var(--text-primary);
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-card);
}

.article-body blockquote p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.article-body blockquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-secondary);
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-body .source-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.article-body th,
.article-body td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.article-body th {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
}

.article-body td {
  color: var(--text-secondary);
}

/* === SOURCES PAGE === */
.sources-list {
  list-style: none;
}

.sources-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.sources-list .source-title {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.sources-list .source-outlet {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.source-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin: 2rem 0 0.5rem;
}

/* === HISTORIC IMAGE SECTIONS === */
.image-break {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #1a1410;
}

.image-break img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  filter: sepia(0.15) brightness(0.95);
  display: block;
  margin: 0 auto;
  background: #1a1410;
}

.image-break-caption {
  position: relative;
  padding: 1.5rem 2rem;
  background: #1a1410;
  border-bottom: 1px solid var(--border);
}

.image-break-caption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(228, 228, 231, 0.85);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.image-break-caption .image-credit {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  color: rgba(161, 161, 170, 0.5);
  margin-top: 0.5rem;
  display: block;
  text-align: center;
}

.image-inline {
  margin: 2rem 0;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #1a1410;
}

.image-inline img {
  width: 100%;
  height: auto;
  filter: sepia(0.1) brightness(0.95);
  display: block;
}

.image-inline figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 12, 0.98);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .card-grid[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .article-body {
    padding: 2rem 1rem;
  }

  .image-break img {
    min-height: 200px;
    max-height: 350px;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .lede p {
    font-size: 1rem;
  }
}

/* === AD SLOT === */
.ad-slot {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 300px;
  min-height: 250px;
  z-index: 50;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ad-slot-close {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
}

.ad-slot-close:hover {
  color: var(--text-primary);
}

.ad-slot.hidden {
  display: none;
}

@media (max-width: 768px) {
  .ad-slot {
    position: static;
    width: 100%;
    margin: 2rem auto;
    max-width: 320px;
  }
}
