:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #66615c;
  --paper: #fbf8f2;
  --surface: #ffffff;
  --line: #ded6cb;
  --ember: #b1191f;
  --gold: #ba8a3a;
  --night: #101217;
  --blue: #17324d;
  --shadow: 0 18px 60px rgba(28, 24, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.86), rgba(251, 248, 242, 1) 34rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 9, 12, 0.82), rgba(8, 9, 12, 0.08));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  padding: 0.48rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
}

.hero {
  position: relative;
  min-height: min(46rem, 92vh);
  overflow: hidden;
  background: var(--night);
}

.hero-image {
  width: 100%;
  height: min(46rem, 92vh);
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.68), rgba(8, 9, 12, 0.1) 48%, rgba(8, 9, 12, 0.42)),
    linear-gradient(0deg, rgba(8, 9, 12, 0.78), transparent 44%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  left: clamp(1.2rem, 6vw, 5rem);
  right: clamp(1.2rem, 6vw, 5rem);
  bottom: clamp(2.2rem, 9vw, 6.2rem);
  max-width: 48rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(3.4rem, 12vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.dek {
  max-width: 33rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 48rem);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 4vw, 2rem);
}

.story-rail {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding-top: 0.55rem;
  border-top: 3px solid var(--ember);
}

.rail-label,
.rail-date {
  margin: 0;
}

.rail-label {
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rail-date {
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.story-content {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.48rem);
}

.story-content p {
  margin: 0 0 1.25rem;
}

.lead {
  color: #201b18;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

blockquote,
.question-list,
.impact {
  margin: 2.1rem 0;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  border-left: 5px solid var(--gold);
  background: var(--surface);
  box-shadow: var(--shadow);
}

blockquote p,
.question-list p,
.impact p {
  margin: 0;
}

blockquote p + p,
.question-list p + p,
.impact p + p {
  margin-top: 0.45rem;
}

blockquote {
  font-weight: 700;
}

.dark-quote {
  color: #fff;
  border-left-color: var(--ember);
  background: linear-gradient(135deg, var(--night), var(--blue));
}

.question-list {
  border-left-color: var(--blue);
  color: var(--blue);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 800;
}

.impact {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #8f1118, #151515);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
}

hr {
  width: 100%;
  height: 1px;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  border: 0;
  background: linear-gradient(90deg, var(--ember), transparent);
}

.moral {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 2rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 17, 22, 0.96), rgba(23, 50, 77, 0.92)),
    var(--night);
}

.moral-inner {
  max-width: 62rem;
  margin: 0 auto;
}

.moral h2 {
  max-width: 57rem;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.moral p:last-child {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
}

.footer {
  padding: 1.4rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--paper);
}

.footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    min-height: auto;
    padding-top: 0.85rem;
  }

  .brand {
    max-width: 12rem;
    font-size: 0.86rem;
    line-height: 1.1;
  }

  .nav a {
    padding: 0.42rem 0.62rem;
  }

  .hero,
  .hero-image {
    min-height: 33rem;
    height: 78vh;
  }

  .hero-image {
    object-position: 47% center;
  }

  .hero-copy {
    bottom: 1.45rem;
  }

  .hero-copy .eyebrow,
  .hero-copy .dek {
    display: none;
  }

  .hero h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .story-shell {
    display: block;
  }

  .story-rail {
    position: static;
    margin-bottom: 2rem;
  }

  blockquote,
  .question-list,
  .impact {
    margin-left: -0.2rem;
    margin-right: -0.2rem;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 0.65rem;
  }

  .brand span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .brand-mark {
    width: 1.9rem;
    height: 1.9rem;
  }

  .nav {
    font-size: 0.82rem;
  }

  .hero-copy {
    bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }
}
