/* =========================================================
   THE HOLLOW HOUSE — global stylesheet
   ========================================================= */

:root {
  --bg: #05060a;
  --bg-2: #0b0a10;
  --blood: #8b0000;
  --blood-bright: #c1121f;
  --bone: #e8e3d9;
  --ash: #8b8f96;
  --line: rgba(193, 18, 31, 0.28);
  --font-display: "Creepster", "Impact", system-ui, sans-serif;
  --font-body: "Special Elite", "Courier New", monospace;
  --max: 1120px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% -20%, #1c0c11 0%, transparent 55%),
    radial-gradient(ellipse at 50% 130%, #12080b 0%, transparent 60%),
    var(--bg);
}

/* Film grain */
body::before {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(3) infinite;
}

/* Vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(3%, 1%); }
}

/* ---------- Fog ---------- */
.fog {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.fog__layer {
  position: absolute;
  left: -30%;
  width: 160%;
  height: 70%;
  filter: blur(42px);
  background: radial-gradient(ellipse at center, rgba(130, 140, 160, 0.15) 0%, transparent 62%);
  animation: drift 40s linear infinite;
}

.fog__layer--1 { top: -12%; animation-duration: 38s; }
.fog__layer--2 { top: 26%; opacity: 0.7; animation-duration: 54s; animation-direction: reverse; }
.fog__layer--3 { top: 62%; opacity: 0.45; animation-duration: 66s; }

@keyframes drift {
  0%   { transform: translate3d(-12%, 0, 0) scale(1); }
  50%  { transform: translate3d(12%, -5%, 0) scale(1.14); }
  100% { transform: translate3d(-12%, 0, 0) scale(1); }
}

/* ---------- Flashlight cursor ---------- */
.flashlight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle,
    rgba(255, 236, 200, 0.11) 0%,
    rgba(255, 220, 160, 0.055) 38%,
    transparent 68%);
}

.flashlight.is-live { opacity: 1; }

/* ---------- Layout helpers ---------- */
main {
  position: relative;
  z-index: 3;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 22px;
}

.section--alt {
  max-width: none;
  padding: 80px 0;
  background:
    linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.06) 30%, rgba(139, 0, 0, 0.06) 70%, transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section--alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.section__head {
  text-align: center;
  margin-bottom: 46px;
}

.section__eyebrow {
  margin: 0 0 6px;
  color: var(--blood-bright);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--bone);
  text-shadow: 0 0 24px rgba(193, 18, 31, 0.5);
}

.section__sub {
  margin: 10px auto 0;
  max-width: 56ch;
  color: var(--ash);
  font-size: 0.95rem;
}

.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bone);
}

.brand__mark {
  font-size: 1.4rem;
  color: var(--blood-bright);
  animation: pulse 2.6s ease-in-out infinite;
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

@keyframes pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 14px rgba(193, 18, 31, 0.8); }
  50% { opacity: 0.55; text-shadow: none; }
}

.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: var(--ash);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--blood-bright);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--bone); }

.site-nav a:hover::after,
.site-nav a.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--blood-bright);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn--blood {
  background: linear-gradient(180deg, var(--blood-bright), var(--blood));
  color: #fff;
  box-shadow: 0 0 22px rgba(193, 18, 31, 0.45);
}

.btn--blood:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(193, 18, 31, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(232, 227, 217, 0.28);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--blood-bright);
  color: #fff;
  box-shadow: 0 0 24px rgba(193, 18, 31, 0.35);
}

.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 22px 70px;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--blood-bright);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.hero__title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 11vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  color: var(--bone);
  text-shadow:
    0 0 18px rgba(193, 18, 31, 0.55),
    0 0 60px rgba(193, 18, 31, 0.28);
}

.flicker { animation: flicker 5.5s infinite; }

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(193, 18, 31, 0.55), 0 0 60px rgba(193, 18, 31, 0.28);
  }
  20%, 24%, 55% {
    opacity: 0.35;
    text-shadow: none;
  }
}

.hero__typed {
  min-height: 1.8em;
  margin: 20px 0 0;
  color: var(--ash);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.caret {
  display: inline-block;
  color: var(--blood-bright);
  animation: blink 1s steps(2) infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero__lede {
  max-width: 60ch;
  margin: 18px auto 0;
  color: var(--ash);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.hero__stats li {
  flex: 1 1 160px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--blood-bright);
}

.hero__stats span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ---------- Warning strip ---------- */
.strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(139, 0, 0, 0.08);
  color: var(--ash);
  font-size: 0.88rem;
}

.strip strong { color: var(--blood-bright); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 22px;
}

.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  position: relative;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(193, 18, 31, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.55);
}

.card:hover::before { opacity: 1; }

.card__icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.card__body {
  margin: 0 0 16px;
  color: var(--ash);
  font-size: 0.92rem;
}

.card__link {
  color: var(--blood-bright);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card__link:hover { text-decoration: underline; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(193, 18, 31, 0.7);
  line-height: 1;
  margin-bottom: 8px;
}

.step__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}

.step__body {
  margin: 0;
  color: var(--ash);
  font-size: 0.9rem;
}

/* ---------- Page head (inner pages) ---------- */
.page-head {
  max-width: 820px;
  margin: 0 auto;
  padding: 74px 22px 20px;
  text-align: center;
}

.page-head__eyebrow {
  margin: 0 0 10px;
  color: var(--blood-bright);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.page-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  letter-spacing: 0.04em;
  text-shadow: 0 0 26px rgba(193, 18, 31, 0.5);
}

.page-head__sub {
  margin: 16px auto 0;
  max-width: 58ch;
  color: var(--ash);
  font-size: 0.95rem;
}

/* ---------- Stories ---------- */
.stories {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.story {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005));
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.story[open] {
  border-color: var(--line);
  box-shadow: 0 0 34px rgba(139, 0, 0, 0.22);
}

.story__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.story__summary::-webkit-details-marker { display: none; }

.story__summary:hover { background: rgba(193, 18, 31, 0.06); }

.story__index {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blood-bright);
  min-width: 2ch;
}

.story__name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.story__meta {
  color: var(--ash);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story__body {
  padding: 0 24px 24px;
  color: #c9c4bb;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.story__body p { margin: 16px 0 0; }

.story__quote {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--blood-bright);
  background: rgba(139, 0, 0, 0.12);
  color: var(--bone);
  font-style: italic;
}

/* ---------- Form ---------- */
.form {
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.field { display: block; }

.field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
}

.field__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field__input::placeholder { color: rgba(139, 143, 150, 0.6); }

.field__input:focus {
  outline: none;
  border-color: var(--blood-bright);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.18);
}

.field__input--area { resize: vertical; min-height: 120px; }

.form__note {
  min-height: 1.4em;
  margin: 0;
  color: var(--blood-bright);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- Prank page ---------- */
.panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  box-shadow: 0 0 60px rgba(139, 0, 0, 0.18) inset;
}

.panel__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.panel__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
  color: var(--ash);
  font-size: 0.9rem;
}

.panel__list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.panel__list strong { color: var(--bone); }

.panel__hint {
  margin: 14px 0 0;
  color: var(--ash);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--bone);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.check:hover { border-color: var(--blood-bright); background: rgba(193, 18, 31, 0.08); }

.check input {
  width: 18px;
  height: 18px;
  accent-color: var(--blood-bright);
  cursor: pointer;
}

/* Stage */
.stage {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 70px 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  animation: stageIn 0.8s ease both;
}

@keyframes stageIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.stage__hint {
  min-height: 1.8em;
  margin: 0 0 18px;
  color: var(--ash);
  font-size: 1rem;
  letter-spacing: 0.14em;
  animation: fadeSwap 0.6s ease;
}

.stage__count {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 22vw, 9rem);
  line-height: 1;
  color: var(--blood-bright);
  text-shadow: 0 0 40px rgba(193, 18, 31, 0.85);
  animation: countPop 0.9s ease;
}

.stage__note {
  margin: 22px 0 0;
  color: rgba(139, 143, 150, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

@keyframes countPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeSwap {
  from { opacity: 0; }
  to { opacity: 1; }
}

.stage.is-shaking { animation: shake 0.45s linear infinite; }

@keyframes shake {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-3px, 2px); }
  50% { transform: translate(3px, -2px); }
  75% { transform: translate(-2px, -2px); }
}

/* Jump scare overlay */
.scare {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
  overflow: hidden;
}

.scare.is-on {
  display: flex;
  animation: scareFlash 0.14s steps(2) 8;
}

@keyframes scareFlash {
  0% { background: #000; }
  100% { background: #2a0000; }
}

.scare__face {
  width: min(78vw, 460px);
  height: auto;
  filter: drop-shadow(0 0 46px rgba(193, 18, 31, 0.9));
  animation: faceRush 0.5s ease-out both;
}

@keyframes faceRush {
  from { transform: scale(0.35) rotate(-6deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.scare__text {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 4.2rem);
  letter-spacing: 0.14em;
  color: #fff;
  text-shadow: 0 0 26px var(--blood-bright);
  animation: faceRush 0.5s ease-out both;
}

/* Reveal */
.reveal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #101a12 0%, #05060a 70%);
  animation: fadeSwap 0.5s ease both;
}

.reveal[hidden] { display: none; }

.reveal__emoji {
  margin: 0;
  font-size: clamp(3rem, 14vw, 6rem);
  animation: bounceIn 0.7s ease both;
}

@keyframes bounceIn {
  0% { transform: scale(0.2) rotate(-25deg); opacity: 0; }
  70% { transform: scale(1.15) rotate(6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

.reveal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 12vw, 5rem);
  letter-spacing: 0.06em;
  color: #7dffa8;
  text-shadow: 0 0 32px rgba(125, 255, 168, 0.5);
}

.reveal__text {
  max-width: 46ch;
  margin: 0;
  color: var(--ash);
}

.reveal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 3;
  margin-top: 40px;
  padding: 54px 22px 40px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.site-footer__quote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--bone);
  text-shadow: 0 0 20px rgba(193, 18, 31, 0.45);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
}

.site-footer__nav a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__nav a:hover { color: var(--blood-bright); }

.site-footer__legal {
  margin: 0;
  color: rgba(139, 143, 150, 0.65);
  font-size: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    background: rgba(5, 6, 10, 0.97);
    border-bottom: 1px solid var(--line);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 260px;
    padding: 12px 22px 20px;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .story__summary { flex-wrap: wrap; gap: 8px; }
  .story__meta { width: 100%; }
  .section { padding: 60px 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .fog,
  .flashlight { display: none; }
}