/* ═══════════════════════════════════════════
   SA ROSWELL — Part 1 v2
   Dark editorial / classified document aesthetic
   Improved: spacing, alignment, accessibility
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── Design tokens ────────────────────── */
:root {
  /* Spacing scale — 8px grid */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Colours — checked for WCAG AA on #08080d */
  --bg-deep: #08080d;
  --bg-section: #0d0d14;
  --bg-card: #13131c;
  --text-body: #d4cdc0;        /* 11.7:1 on bg-deep ✓ */
  --text-muted: #9e968a;       /* 6.2:1 — bumped from #8a8278 for AA at small sizes */
  --text-headline: #ece4d6;    /* 14.1:1 ✓ */
  --accent-gold: #c49a5c;      /* 7.1:1 ✓ */
  --accent-rust: #a65d3f;
  --accent-red: #9a3838;       /* bumped for contrast */
  --accent-green: #3a5a3a;
  --border-subtle: rgba(196, 154, 92, 0.15);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --article-width: 720px;
  --wide-width: 960px;
  --gutter: clamp(24px, 5vw, 80px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.82;
  overflow-x: hidden;
}

/* ── Skip link (a11y) ─────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 200;
  padding: 12px 24px;
  background: var(--accent-gold);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: none;
}

/* ── Scroll reveal ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Progress bar ─────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-rust));
  z-index: 100;
  transition: width 0.15s linear;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(0.7);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-deep) 0%,
    rgba(8,8,13,0.85) 25%,
    rgba(8,8,13,0.25) 60%,
    rgba(8,8,13,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 var(--gutter) clamp(56px, 10vh, 120px);
}
.hero__series {
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.85vw, 14px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-headline);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-gold);
  line-height: 1.3;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero__meta {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.75vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.hero__scroll-cue span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: pulse 2s infinite;
}

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

/* ═══════════════════════════════════════════
   ARTICLE / PROSE
   ═══════════════════════════════════════════ */
.article-body {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.prose {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}

.prose p {
  margin-bottom: 1.6em;
  text-wrap: pretty;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Drop cap — ONLY the first prose section after the hero */
.prose--opening p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.8em;
  float: left;
  line-height: 0.78;
  margin: 0.06em 0.14em 0 -0.03em;
  color: var(--accent-gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
   ═══════════════════════════════════════════ */
.section-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl) 0;
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.3em;
}
.section-break::before,
.section-break::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--border-subtle);
}

/* ═══════════════════════════════════════════
   FULL-BLEED MEDIA
   ═══════════════════════════════════════════ */
.media-full {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.media-full img,
.media-full > video {
  width: 100%;
  height: clamp(320px, 55vh, 650px);
  object-fit: cover;
  display: block;
  background: var(--bg-deep);
}

.media-full figcaption,
.media-full .caption {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: var(--space-sm) var(--gutter) 0;
  font-family: var(--font-mono);
  font-size: clamp(13px, 0.85vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contained image — e.g. spec sheets, diagrams */
.media-contained {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-section);
  padding: var(--space-lg) 0;
}

.media-contained img {
  max-width: min(75%, 900px);
  height: auto;
  display: block;
  object-fit: contain;
}

.media-contained figcaption {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: var(--space-md) var(--gutter) 0;
  font-family: var(--font-mono);
  font-size: clamp(13px, 0.85vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* ═══════════════════════════════════════════
   IMAGE PAIR — side by side
   ═══════════════════════════════════════════ */
.media-pair {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  padding: 0 var(--space-sm);
}

.media-pair figure {
  display: flex;
  flex-direction: column;
}

.media-pair img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.media-pair figcaption {
  padding: var(--space-sm) var(--space-xs) 0;
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.8vw, 13px);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .media-pair {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: 0;
  }
  .media-pair img {
    aspect-ratio: 16/10;
  }
}

/* ═══════════════════════════════════════════
   VIDEO WRAPPER + SOUND TOGGLE
   ═══════════════════════════════════════════ */
.video-wrap {
  position: relative;
}

.video-sound-btn {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(8, 8, 13, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
}
.video-sound-btn:hover,
.video-sound-btn:focus-visible {
  color: var(--text-headline);
  border-color: rgba(255,255,255,0.25);
}
.video-sound-btn[data-playing="true"] .icon-muted { display: none; }
.video-sound-btn[data-playing="true"] .icon-on { display: inline-block !important; }
.video-sound-btn[data-playing="false"] .icon-muted { display: inline-block; }
.video-sound-btn[data-playing="false"] .icon-on { display: none !important; }

/* ═══════════════════════════════════════════
   PULL QUOTE
   ═══════════════════════════════════════════ */
.pull-quote {
  position: relative;
  max-width: var(--article-width);
  margin: var(--space-2xl) auto var(--space-2xl);
  padding: 0 var(--gutter);
}

.pull-quote__inner {
  padding: var(--space-lg) 0 var(--space-lg) var(--space-md);
  border-left: 2px solid var(--accent-gold);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-headline);
  margin: 0;
}

.pull-quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════
   CLASSIFIED DOCUMENT BLOCK
   ═══════════════════════════════════════════ */
.classified-block {
  position: relative;
  max-width: var(--article-width);
  margin: var(--space-2xl) auto;
  padding: 0 var(--gutter);
}

.classified-block__inner {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  background: rgba(196, 154, 92, 0.04);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.75;
  color: var(--text-muted);
}

.classified-block__inner::before {
  content: 'CLASSIFIED — TOP SECRET';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  padding: 2px 14px;
  background: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  text-transform: uppercase;
}

.classified-block .stamp {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  padding: 4px 12px;
  border: 2px solid var(--accent-red);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--accent-red);
  text-transform: uppercase;
  transform: rotate(3deg);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   SECTION HEADER — full-bleed with text overlay
   ═══════════════════════════════════════════ */
.section-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: clamp(360px, 55vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-xl);
}

.section-header__bg {
  position: absolute;
  inset: 0;
}

.section-header__bg img,
.section-header__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}

.section-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-deep) 0%,
    transparent 22%,
    transparent 78%,
    var(--bg-deep) 100%
  );
}

.section-header__text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--gutter);
}

.section-header__label {
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.8vw, 14px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  color: var(--text-headline);
  line-height: 1.1;
}

/* ═══════════════════════════════════════════
   CHAPTER NAV
   ═══════════════════════════════════════════ */
.chapter-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: var(--article-width);
  margin: var(--space-3xl) auto var(--space-lg);
  padding: var(--space-lg) var(--gutter);
  border-top: 1px solid var(--border-subtle);
}

.chapter-nav__part {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.chapter-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.chapter-nav a:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: var(--space-lg) var(--gutter) var(--space-xl);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   NOISE OVERLAY
   ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__series, .hero__title, .hero__subtitle, .hero__meta, .hero__scroll-cue {
    opacity: 1; animation: none;
  }
  html { scroll-behavior: auto; }
  .hero__scroll-cue .line { animation: none; opacity: 0.6; }
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

/* High contrast mode */
@media (forced-colors: active) {
  .classified-block__inner { border: 2px solid; }
  .pull-quote__inner { border-left: 3px solid; }
  .progress-bar { background: Highlight; }
}

/* ═══════════════════════════════════════════
   TIMELINE CORRIDOR
   ═══════════════════════════════════════════ */
.corridor {
  position: relative;
  max-width: 960px;
  margin: var(--space-xl) auto;
  padding: 0 var(--gutter);
}
.corridor::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,92,0.3), transparent);
  transform: translateX(-50%);
}
.corridor-event {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  margin-bottom: var(--space-lg);
  align-items: start;
}
.corridor-event .ev-left { text-align: right; padding-right: var(--space-md); }
.corridor-event .ev-right { padding-left: var(--space-md); }
.corridor-event .ev-center { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.corridor-event .ev-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--accent-gold);
  background: var(--bg-deep);
  flex-shrink: 0;
}
.corridor-event .ev-dot.highlight { background: var(--accent-gold); }
.ev-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
}
.ev-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 8px;
}
.ev-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 0.9vw, 16px);
  color: var(--text-muted);
  line-height: 1.65;
}
.ev-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  display: inline-block;
  margin-top: 10px;
}
.ev-badge.verified { background: rgba(42,110,110,0.12); color: #5aaa8a; border: 1px solid rgba(42,110,110,0.25); }
.ev-badge.alleged { background: rgba(196,154,92,0.08); color: var(--accent-gold); border: 1px solid rgba(196,154,92,0.2); }
.ev-badge.witness { background: rgba(100,80,160,0.12); color: #9080d0; border: 1px solid rgba(100,80,160,0.25); }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
  font-size: clamp(14px, 0.9vw, 16px);
}
.compare-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border-bottom: 1px solid rgba(196,154,92,0.25);
  padding: 12px 16px;
  text-align: left;
  background: var(--bg-card);
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
  line-height: 1.6;
  color: var(--text-muted);
}
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.01); }
.compare-table .feature {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.compare-table .match { color: #7ab87a; }
.compare-table .partial { color: var(--accent-gold); }

/* ═══════════════════════════════════════════
   CONFIDENCE METERS
   ═══════════════════════════════════════════ */
.confidence-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
}
.confidence-block h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.3vw, 22px);
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}
.conf-item { margin-bottom: var(--space-md); }
.conf-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.conf-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.conf-bar-fill { height: 100%; transition: width 0.8s ease; }
.conf-bar-fill.high { background: #5aaa8a; }
.conf-bar-fill.mid { background: var(--accent-gold); }
.conf-bar-fill.low { background: var(--accent-red); }

/* ═══════════════════════════════════════════
   VERIFIED FINDINGS BLOCK
   ═══════════════════════════════════════════ */
.verified-block {
  background: var(--bg-card);
  border: 1px solid rgba(42,110,110,0.2);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  position: relative;
}
.verified-block::before {
  content: 'VERIFIED FINDING';
  position: absolute;
  top: -10px;
  left: var(--space-md);
  padding: 2px 14px;
  background: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #5aaa8a;
  text-transform: uppercase;
}
.verified-block h4 {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.1vw, 20px);
  color: var(--text-headline);
  margin-bottom: var(--space-sm);
}
.verified-block ul {
  list-style: none;
  padding: 0;
}
.verified-block ul li {
  font-family: var(--font-body);
  font-size: clamp(14px, 0.9vw, 16px);
  color: var(--text-muted);
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.verified-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: #5aaa8a;
}

@media (max-width: 700px) {
  .corridor::before { left: 20px; }
  .corridor-event { grid-template-columns: 40px 1fr; }
  .corridor-event .ev-left { display: none; }
  .corridor-event .ev-right { padding-left: var(--space-sm); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --space-xl: 48px;
    --space-2xl: 72px;
    --space-3xl: 96px;
  }
  .hero { min-height: 85vh; min-height: 85dvh; }
  .pull-quote__inner { padding-left: 20px; }
  .classified-block__inner { padding: var(--space-md) var(--space-sm); }
  .section-break { padding: var(--space-lg) 0; }
  .media-contained img { max-width: 92%; }
}
