:root {
  --bg: #080706;
  --panel: #14100e;
  --panel-2: #1f1714;
  --text: #f4ece3;
  --muted: #b7aaa0;
  --blood: #b31524;
  --blood-2: #6f0914;
  --ember: #f0b35b;
  --cold: #6ea4aa;
  --line: rgba(244, 236, 227, 0.14);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 70% 10%, rgba(179, 21, 36, 0.22), transparent 34%),
    linear-gradient(180deg, #050404 0%, var(--bg) 42%, #120d0d 100%);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 39px 39px, 17px 17px;
  mix-blend-mode: screen;
}

.cursor-light {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 179, 91, 0.16), transparent 65%);
  transition: opacity 180ms ease;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(5, 4, 4, 0.9), rgba(5, 4, 4, 0.3));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 236, 227, 0.08);
}

.brand {
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--ember);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.88) 0%, rgba(5, 4, 4, 0.52) 42%, rgba(5, 4, 4, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ember);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(56px, 12vw, 150px);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(179, 21, 36, 0.42), 3px 3px 0 rgba(110, 164, 170, 0.35);
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
}

.local-title {
  margin: 0 0 18px;
  color: #fff5ec;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
}

.lead {
  max-width: 650px;
  margin: 0 0 28px;
  color: #e6d8cb;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.source-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blood), #e24b3d);
  box-shadow: 0 12px 30px rgba(179, 21, 36, 0.35);
}

.ghost-btn,
.source-links a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts span {
  padding: 16px;
  background: rgba(10, 8, 7, 0.78);
  color: #eadfd4;
  font-weight: 700;
}

section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.poster-wrap {
  max-width: 460px;
}

.poster-wrap img,
.still img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 28px 70px var(--shadow);
}

.copy p {
  color: var(--muted);
  font-size: 17px;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.score-strip div {
  min-height: 94px;
  padding: 14px;
  background: var(--panel);
}

.score-strip strong,
.detail-card span {
  display: block;
  color: var(--ember);
  font-size: 12px;
  text-transform: uppercase;
}

.score-strip span {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.story-section,
.timeline,
.sources {
  max-width: 1180px;
  margin: 0 auto;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 360px);
  gap: 34px;
  align-items: start;
}

.story-layout article {
  color: var(--muted);
  font-size: 18px;
}

.quote-box {
  position: sticky;
  top: 92px;
  padding: 26px;
  border: 1px solid rgba(240, 179, 91, 0.26);
  border-radius: 8px;
  background: radial-gradient(circle at 35% 18%, rgba(240, 179, 91, 0.2), transparent 38%), var(--panel);
  box-shadow: 0 22px 50px var(--shadow);
}

.quote-box span {
  display: block;
  color: #fff;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.2;
  animation: flicker 2.8s infinite;
}

.quote-box small,
figcaption {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.details {
  background: linear-gradient(180deg, rgba(31, 23, 20, 0.86), rgba(8, 7, 6, 0.7));
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 30px;
}

.detail-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.detail-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 18px 18px 18px 22px;
  border-left: 3px solid var(--blood);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
}

.feature-list strong {
  color: var(--text);
}

.still {
  margin: 0;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.timeline-list span {
  color: var(--blood);
  font-size: 28px;
  font-weight: 900;
}

.timeline-list p {
  margin: 0;
  color: var(--muted);
}

.sources {
  padding-top: 40px;
}

.sources p {
  color: var(--muted);
}

.source-links a:hover,
.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 179, 91, 0.45);
}

footer {
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes flicker {
  0%, 100% { text-shadow: 0 0 12px rgba(240, 179, 91, 0.25); }
  45% { text-shadow: 0 0 28px rgba(240, 179, 91, 0.55), 0 0 8px rgba(179, 21, 36, 0.5); }
  48% { opacity: 0.72; }
  52% { opacity: 1; }
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 14px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .section-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    padding-top: 132px;
  }

  .hero-facts,
  .score-strip,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .quote-box {
    position: static;
  }
}

@media (max-width: 560px) {
  section {
    padding-block: 60px;
  }

  .hero-actions a,
  .source-links a {
    width: 100%;
  }

  .timeline-list div {
    grid-template-columns: 1fr;
  }
}
