:root {
  --paper:      #f7f5f0;
  --ink:        #0d0c0a;
  --muted:      #7a7570;
  --dark:       #07080d;
  --dark2:      #0a0c14;
  --gold:       #c9a44a;
  --gold-light: #e8ce85;
  --cream:      #f0e6d0;
  --green:      #2d7a5a;
  --green-l:    #5cba87;
  --red:        #c92233;
  --blue:       #2244aa;
  --border-d:   rgba(201,164,74,0.15);
  --border-l:   rgba(13,12,10,0.08);
  --font:       "SF Pro Display","Helvetica Neue","Segoe UI",system-ui,sans-serif;
  --serif:      Georgia,"Times New Roman",serif;
  --r:          16px;
  --r-sm:       10px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--dark2 { background: var(--dark2); }

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Grid overlay (decorative) ───────────────────────────────── */
.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.grid-overlay--light {
  background-image:
    linear-gradient(rgba(0,0,0,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.1) 1px, transparent 1px);
  opacity: .06;
}

/* ── Navigation ──────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
#nav.scrolled {
  background: rgba(7,8,13,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,164,74,.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-flag {
  display: inline-flex;
  width: 26px;
  height: 17px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.nav-flag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #000 0 33.33%,
    #fff 33.33% 66.66%,
    #007a3d 66.66% 100%
  );
}
.nav-flag::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 9px;
  background: #ce1126;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(240,230,208,.55);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  letter-spacing: -.01em;
}
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,.06); }
.nav-badge {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(201,164,74,.5);
  white-space: nowrap;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
}

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 60%, rgba(45,122,90,.08), transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(201,164,74,.06), transparent 50%),
              var(--dark);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .2s forwards;
}
.hero-title {
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.035em;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: -.012em;
  max-width: 560px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .6s forwards;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp .7s var(--ease) .8s forwards;
}
.hero-stat-num {
  display: block;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
}
.hero-stat { border-left: 2px solid var(--gold); padding-left: 18px; }
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,230,208,.35);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s var(--ease) 1.1s forwards;
}
.scroll-cue svg { width: 16px; height: 16px; animation: bounce 2s infinite; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ── Section headers ─────────────────────────────────────────── */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section--paper .eyebrow { color: var(--green); }

.section-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section--paper .section-title em { color: var(--green); }

.section-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  letter-spacing: -.012em;
  max-width: 680px;
  margin-bottom: 64px;
}
.section--paper .section-lead { color: #6a6050; }

/* ── Gold divider ────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  margin-bottom: 28px;
}
.section--paper .divider { background: var(--green); }

/* ── Stat cards ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.stat-card {
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  background: rgba(201,164,74,.04);
  padding: 32px;
  transition: border-color .25s, background .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.stat-card:hover {
  border-color: rgba(201,164,74,.35);
  background: rgba(201,164,74,.07);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.stat-card:hover::before { opacity: 1; }
.stat-num {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.stat-year {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.source-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,230,208,.45);
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  transition: color .2s, border-color .2s;
  letter-spacing: .02em;
}
.source-btn svg { width: 14px; height: 14px; }
.source-btn:hover { color: var(--gold); border-color: rgba(201,164,74,.4); }

/* ── Map section ─────────────────────────────────────────────── */
.map-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}
.map-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.map-tab {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(240,230,208,.45);
  transition: all .2s;
}
.map-tab.active, .map-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,164,74,.08);
}
.map-svg-wrap {
  width: 220px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 40px rgba(0,0,0,.5));
}
.map-svg-wrap svg { width: 100%; height: auto; }
.map-info { flex: 1; }
.map-period-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 12px;
}
.map-period-pct {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.map-period-note {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.map-period-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  max-width: 520px;
}
.map-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── Why It Matters (3 religions) ───────────────────────────── */
.faiths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.faith-card {
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  padding: 28px;
  background: rgba(201,164,74,.04);
  text-align: center;
}
.faith-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.faith-note {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  letter-spacing: -.01em;
}

/* ── History timeline ────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--gold), var(--red));
  border-radius: 999px;
}
.timeline-item {
  position: relative;
  padding: 0 0 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid var(--dark2);
  background: var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(201,164,74,.5);
}
.timeline-year {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-event-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 8px;
}
.timeline-event-body {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  letter-spacing: -.01em;
  max-width: 600px;
}
.timeline-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,230,208,.3);
  cursor: pointer;
  transition: color .2s;
}
.timeline-source:hover { color: var(--gold); }
.timeline-source svg { width: 13px; height: 13px; }

/* ── Media Lens ──────────────────────────────────────────────── */
.keywords-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.keyword-card {
  background: #fff;
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  padding: 28px;
}
.keyword-word {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.keyword-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: -.01em;
}

.headline-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.headline-tab {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-l);
  color: var(--muted);
  background: transparent;
  transition: all .2s;
}
.headline-tab.active {
  border-color: var(--green);
  color: var(--green);
  background: rgba(45,122,90,.07);
}

.headline-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.headline-card {
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid;
}
.headline-card--a {
  background: rgba(34,68,170,.04);
  border-color: rgba(34,68,170,.15);
}
.headline-card--b {
  background: rgba(45,122,90,.04);
  border-color: rgba(45,122,90,.15);
}
.headline-outlet {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.headline-card--a .headline-outlet { color: var(--blue); }
.headline-card--b .headline-outlet { color: var(--green); }
.headline-text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.4;
  color: var(--ink);
}
.headline-framing {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-l);
}
.headline-note {
  font-size: 14.5px;
  font-weight: 400;
  color: #6a6050;
  line-height: 1.6;
  letter-spacing: -.01em;
  border-left: 3px solid var(--green);
  padding: 12px 18px;
  background: rgba(45,122,90,.04);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ── Video ───────────────────────────────────────────────────── */
.video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border-d);
  background: #000;
  max-width: 900px;
  margin: 0 auto;
}
.video-wrap iframe { width: 100%; height: 100%; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: rgba(201,164,74,.03);
}
.video-placeholder svg { width: 72px; height: 72px; }
.video-placeholder p {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -.01em;
}
.video-placeholder span {
  font-size: 13px;
  color: rgba(240,230,208,.25);
}

/* ── About ───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 17px;
  font-weight: 400;
  color: #6a6050;
  line-height: 1.75;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text em { color: var(--ink); font-style: italic; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  padding: 5px 12px;
  border: 1px solid rgba(45,122,90,.25);
  border-radius: 999px;
  background: rgba(45,122,90,.05);
}
.about-photo {
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  overflow: hidden;
  background: #f2ede5;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about-photo svg { width: 80px; height: 80px; opacity: .3; }
.about-photo-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -.01em;
}
.about-photo-sub {
  font-size: 12px;
  color: #aaa6a0;
  letter-spacing: .04em;
}
.about-quote {
  margin-top: 24px;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  letter-spacing: -.01em;
  border-left: 2px solid var(--green);
  padding-left: 16px;
}

/* ── Reading grid ────────────────────────────────────────────── */
.reading-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reading-cat-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reading-cat-title svg { width: 16px; height: 16px; }
.reading-items { display: flex; flex-direction: column; gap: 12px; }
.reading-item {
  display: block;
  border: 1px solid var(--border-d);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  background: rgba(255,255,255,.02);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.reading-item:hover {
  border-color: rgba(201,164,74,.35);
  background: rgba(201,164,74,.05);
}
.reading-item-title {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--cream);
  margin-bottom: 3px;
}
.reading-item-author {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.reading-item-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: -.01em;
}

/* ── Sources section ─────────────────────────────────────────── */
.sources-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.source-entry {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.source-entry:last-child { border-bottom: none; }
.source-num {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  padding-top: 2px;
  letter-spacing: .04em;
}
.source-body-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -.015em;
  margin-bottom: 3px;
}
.source-body-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: -.01em;
}
.source-cat-badge {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  white-space: nowrap;
  margin-top: 2px;
}
.source-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  opacity: .7;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.source-link:hover { opacity: 1; }
.source-link svg { width: 12px; height: 12px; }

/* ── Modal ───────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,8,13,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: #0f1019;
  border: 1px solid var(--border-d);
  border-radius: 24px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.95) translateY(16px);
  transition: transform .3s var(--ease);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.modal.open .modal-box { transform: none; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.08);
  transition: color .2s, background .2s;
  z-index: 2;
}
.modal-close:hover { color: var(--cream); background: rgba(255,255,255,.06); }
.modal-close svg { width: 16px; height: 16px; }
.modal-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 320px;
}
.modal-circle-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.modal-circle-area svg { width: 220px; height: 220px; }
.source-seg { transition: opacity .2s, filter .2s; cursor: pointer; }
.source-seg:hover { filter: brightness(1.25); }
.modal-text-area {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-claim-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}
.modal-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}
.modal-sources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, background .2s;
  cursor: pointer;
  text-decoration: none;
}
.modal-source-row:hover {
  border-color: rgba(201,164,74,.25);
  background: rgba(201,164,74,.04);
}
.modal-source-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.modal-source-favicon {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}
.modal-source-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -.01em;
  flex: 1;
}
.modal-source-arrow {
  color: rgba(240,230,208,.25);
  font-size: 12px;
  transition: color .2s;
}
.modal-source-row:hover .modal-source-arrow { color: var(--gold); }
.modal-hint {
  font-size: 11.5px;
  color: rgba(240,230,208,.25);
  text-align: center;
  padding: 12px 36px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  letter-spacing: .04em;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #03040a;
  border-top: 1px solid rgba(201,164,74,.1);
  padding: 64px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -.01em;
  margin-top: 2px;
}
.footer-right p {
  font-size: 13px;
  color: rgba(240,230,208,.3);
  line-height: 1.7;
  letter-spacing: -.01em;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-flag {
  width: 40px;
  height: 26px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.footer-flag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #000 0 33.33%,
    #fff 33.33% 66.66%,
    #007a3d 66.66% 100%
  );
}
.footer-flag::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 13px;
  background: #ce1126;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer-tagline {
  font-size: 13px;
  color: rgba(240,230,208,.25);
  letter-spacing: -.01em;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,8,13,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(201,164,74,.12);
    gap: 2px;
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
  }
  .nav-badge { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle--active span:nth-child(2) { opacity: 0; }
  .nav-toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile-toggle span { transition: transform .2s, opacity .2s; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .map-svg-wrap { width: 160px; margin: 0 auto; }
  .faiths-grid { grid-template-columns: 1fr; }
  .reading-cats { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .keywords-grid { grid-template-columns: 1fr; }
  .headline-pair { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-circle-area { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .nav-inner { padding: 0 20px; }
}
