/* ============================================================
   FORKCAST DEMO · 04b · THE STATEMENT · TYPE BOMB
   Shared stylesheet for all 5 pages of this skin.

   Palette: solid black + pure white + single viral-red accent.
   Type: Anton (200pt+ display sans), Inter (body), JetBrains
   Mono (labels). NO italic, NO serif, NO middle-dots.
   Pattern: brutalist tabloid scale. Headline is the brand.
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-deep: #000000;
  --bg-paper: #141414;
  --bg-section: #1A1A1A;

  --ink: #FFFFFF;
  --ink-soft: #E6E6E6;
  --ink-dim: #888888;
  --ink-faint: #555555;

  --accent: #FF2F1A;
  --accent-soft: rgba(255, 47, 26, 0.85);

  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);

  --display: 'Anton', 'Helvetica Neue', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --content-max: 1440px;
  --section-pad: clamp(80px, 12vw, 200px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); }

/* ---------- DEMO BANNER ---------- */
.demo-banner {
  background: var(--bg-deep);
  color: var(--ink-soft);
  padding: 10px var(--gutter);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.demo-banner strong { color: var(--accent); font-weight: 500; }
.demo-banner a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-left: 8px;
}
.demo-banner a:hover { color: var(--accent); }

/* ---------- NAV (minimal, mono, top-right) ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--ink);
  text-transform: uppercase;
}
.nav-brand .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  margin-left: 6px;
  vertical-align: 4px;
}
.nav-links {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.7; color: var(--ink); padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 20px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--ink); color: var(--accent); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(20px, 2.5vw, 32px) var(--gutter) 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.breadcrumb a { padding-bottom: 1px; border-bottom: 1px solid transparent; transition: border 0.15s; }
.breadcrumb a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.breadcrumb .sep { padding: 0 12px; opacity: 0.6; color: var(--accent); }

/* ---------- RED HAIRLINE (signature divider) ---------- */
.red-rule {
  height: 4px;
  background: var(--accent);
  width: 100%;
  border: none;
  margin: 0;
}
.red-rule.short { max-width: 120px; margin-left: 0; }
.red-rule.thin { height: 2px; }

/* ============================================================
   FULL-BLEED HERO (home page)
   200pt+ headline, viral-red accent word, full-bleed photo.
   ============================================================ */
.hero-bleed {
  position: relative;
  min-height: 100vh;
  background: var(--bg-deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.hero-bleed-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 60%, rgba(255, 47, 26, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  z-index: 1;
}
.hero-bleed-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 40px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.hero-bleed-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.hero-bleed-image .image-placeholder .intent { display: none; }
.hero-bleed-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.30) 0%,
    rgba(10,10,10,0.50) 40%,
    rgba(10,10,10,0.85) 75%,
    rgba(0,0,0,0.96) 100%);
  z-index: 2;
}
.hero-bleed-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(80px, 12vh, 160px) var(--gutter) clamp(72px, 10vh, 128px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-bleed-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bleed-eyebrow .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
}
/* The signature 200pt+ type-bomb headline */
.hero-bleed h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-bleed h1 .red { color: var(--accent); }
.hero-bleed h1 .br { display: block; }
.hero-bleed-sub {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-bleed-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-bleed-meta span { display: inline-flex; align-items: center; gap: 12px; }
.hero-bleed-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
}
.hero-bleed-meta span:first-child::before { background: var(--ink); }
.hero-bleed-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 22px 38px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
  position: relative;
}
.btn-primary:hover { background: var(--ink); color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 19px 36px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.15s;
  cursor: pointer;
  border: 3px solid var(--ink);
}
.btn-outline:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.btn-ghost {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
}
.btn-ghost:hover { color: var(--accent); }

/* ============================================================
   CHAPTER (vertical sectioning, replaces editorial section)
   ============================================================ */
.chapter {
  padding: var(--section-pad) var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
}
.chapter-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chapter-tag::before {
  content: '';
  width: 48px;
  height: 4px;
  background: var(--accent);
}
.chapter-heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 10vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 1200px;
}
.chapter-heading .red { color: var(--accent); }
.chapter-heading .br { display: block; }
.chapter-lede {
  font-family: var(--body);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ============================================================
   PROOF STRIP (the queue, the press, the numbers)
   ============================================================ */
.proof-strip {
  background: var(--bg-deep);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.proof-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.proof-strip-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.proof-cell {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.proof-cell .big {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.proof-cell .small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 540px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   THE FOOD (full-bleed chapter, photo above giant caption)
   ============================================================ */
.food-chapter {
  background: var(--bg-deep);
  position: relative;
}
.food-chapter-image {
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 47, 26, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  border-bottom: 4px solid var(--accent);
}
.food-chapter-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  max-width: 320px;
  pointer-events: none;
}
.food-chapter-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.food-chapter-image .image-placeholder .intent { display: none; }
.food-chapter-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

/* ============================================================
   THREE STATEMENTS (3-column statement grid)
   ============================================================ */
.statements {
  background: var(--bg-paper);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid var(--line);
}
.statements-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.statements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-top: 56px;
}
.statement-cell {
  border-top: 4px solid var(--accent);
  padding-top: 32px;
}
.statement-cell .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.statement-cell h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.statement-cell h3 .red { color: var(--accent); }
.statement-cell p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 360px;
}
@media (max-width: 880px) {
  .statements-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   THE ROOM (full-bleed dark feature)
   ============================================================ */
.room-chapter {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.room-chapter-image {
  position: relative;
  aspect-ratio: 21/9;
  background:
    radial-gradient(ellipse 50% 50% at 40% 50%, rgba(255, 47, 26, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}
.room-chapter-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  max-width: 320px;
  pointer-events: none;
}
.room-chapter-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.room-chapter-image .image-placeholder .intent { display: none; }
.room-chapter-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.20) 0%,
    rgba(10,10,10,0.40) 50%,
    rgba(0,0,0,0.92) 100%);
}
.room-caption {
  position: absolute;
  bottom: clamp(32px, 5vw, 80px);
  left: clamp(32px, 5vw, 96px);
  right: clamp(32px, 5vw, 96px);
  color: var(--ink);
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 96px);
}
.room-caption h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.5px;
  max-width: 720px;
  text-transform: uppercase;
}
.room-caption h2 .red { color: var(--accent); }
.room-caption p {
  font-family: var(--body);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 360px;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .room-chapter-image { aspect-ratio: 4/5; }
  .room-caption { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FINAL CTA (statement close)
   ============================================================ */
.final-cta {
  background: var(--accent);
  color: var(--bg);
  padding: var(--section-pad) var(--gutter);
  text-align: left;
  position: relative;
  border-top: 4px solid var(--bg);
}
.final-cta-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.final-cta .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 32px;
  opacity: 0.8;
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 32px;
  color: var(--bg);
  text-transform: uppercase;
  max-width: 1200px;
}
.final-cta h2 .ink { color: var(--ink); }
.final-cta p {
  font-family: var(--body);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 44px;
  color: var(--bg);
}
.final-cta .btn-primary {
  background: var(--bg);
  color: var(--accent);
}
.final-cta .btn-primary:hover { background: var(--ink); color: var(--bg); }

/* ============================================================
   PAGE-LEVEL HERO (menu, story, bookings, contact)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 70vh;
  background: var(--bg-deep);
  overflow: hidden;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 47, 26, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  z-index: 1;
}
.page-hero-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.page-hero-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.page-hero-image .image-placeholder .intent { display: none; }
.page-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.40) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.85) 75%,
    rgba(0,0,0,0.96) 100%);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(72px, 11vh, 140px) var(--gutter) clamp(56px, 8vh, 96px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: "";
  width: 48px;
  height: 4px;
  background: var(--accent);
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 1200px;
  text-transform: uppercase;
}
.page-hero h1 .red { color: var(--accent); }
.page-hero h1 .br { display: block; }
.page-hero-lede {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
}

/* ============================================================
   MENU PAGE (brutalist drinks list / menu, no card frame)
   ============================================================ */
.menu-canvas {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter) clamp(72px, 9vw, 140px);
}
.menu-course {
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 4px solid var(--accent);
}
.menu-course:first-child { border-top: none; padding-top: 0; }
.menu-course-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-course-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-transform: uppercase;
}
.menu-course-head h2 .red { color: var(--accent); }
.menu-course-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 12px;
}
.menu-course-note {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 56px;
  max-width: 620px;
  line-height: 1.55;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.menu-item-name .red { color: var(--accent); }
.menu-item-desc {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
}
.menu-item-tags {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
}
.menu-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  border: 2px solid var(--accent);
  padding: 4px 10px;
}
.menu-item-price {
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 36px);
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 600px) {
  .menu-item { grid-template-columns: 1fr; gap: 8px; }
}

.menu-finale {
  background: var(--bg-paper);
  padding: var(--section-pad) var(--gutter);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.menu-finale-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.finale-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.finale-block p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .menu-finale-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   STORY PAGE (long-form, narrow column, drop-statement)
   ============================================================ */
.story-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(48px, 6vw, 96px);
}
.story-prose .drop-statement {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 48px;
  text-transform: uppercase;
}
.story-prose .drop-statement .red { color: var(--accent); }
.story-prose p {
  font-family: var(--body);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.story-prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-top: 72px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 4px solid var(--accent);
  color: var(--ink);
  text-transform: uppercase;
}
.story-prose h2 .red { color: var(--accent); }

.pull-quote {
  background: var(--accent);
  color: var(--bg);
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  text-align: left;
}
.pull-quote blockquote {
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  color: var(--bg);
  text-transform: uppercase;
}
.pull-quote blockquote .ink { color: var(--ink); }
.pull-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg);
  display: block;
  margin: 48px auto 0;
  max-width: 1200px;
  opacity: 0.85;
}

.story-photos {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.story-photos-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.story-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.story-photo {
  aspect-ratio: 4/5;
  background: var(--bg-paper);
  position: relative;
  border: 1px solid var(--line);
}
.story-photo.tall { grid-row: span 2; aspect-ratio: 4/6; }
.story-photo .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  gap: 12px;
}
.story-photo .image-placeholder .label { color: var(--accent); font-weight: 500; }
.story-photo .image-placeholder .intent {
  max-width: 300px;
  font-family: var(--body);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .story-photos-grid { grid-template-columns: 1fr; }
  .story-photo.tall { grid-row: auto; aspect-ratio: 4/5; }
}

.story-press {
  background: var(--bg-paper);
  padding: var(--section-pad) var(--gutter);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.story-press-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.story-press h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 48px;
  text-transform: uppercase;
}
.story-press h2 .red { color: var(--accent); }
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.press-logo {
  aspect-ratio: 4/2;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ============================================================
   BOOKINGS PAGE
   ============================================================ */
.booking-canvas {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--gutter);
}
.booking-widget {
  aspect-ratio: 4/3;
  background: var(--bg-paper);
  border: 3px solid var(--accent);
  position: relative;
}
.booking-widget .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  gap: 12px;
}
.booking-widget .image-placeholder .label { color: var(--accent); font-weight: 500; }
.booking-widget .image-placeholder .intent {
  max-width: 380px;
  font-family: var(--body);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .booking-widget { aspect-ratio: 3/4; }
}

.bookings-split {
  background: var(--bg-paper);
  padding: var(--section-pad) var(--gutter);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.bookings-split-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
}
.bookings-split-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--ink);
  text-transform: uppercase;
}
.bookings-split-inner h2 .red { color: var(--accent); }
.bookings-split-inner p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 480px;
}
@media (max-width: 760px) {
  .bookings-split-inner { grid-template-columns: 1fr; gap: 40px; }
}

.large-table {
  position: relative;
  background: var(--bg-deep);
  color: var(--ink);
  overflow: hidden;
}
.large-table-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(255, 47, 26, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  z-index: 1;
}
.large-table-image .image-placeholder {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 48px);
  inset: auto;
  display: block;
  text-align: right;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  z-index: 3;
  max-width: 320px;
  pointer-events: none;
}
.large-table-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.large-table-image .image-placeholder .intent { display: none; }
.large-table-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.40) 100%);
  z-index: 2;
}
.large-table-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.large-table-content .copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--ink);
  text-transform: uppercase;
}
.large-table-content .copy h2 .red { color: var(--accent); }
.large-table-content .copy p {
  font-family: var(--body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  margin-bottom: 32px;
  color: var(--ink-soft);
  max-width: 460px;
}
@media (max-width: 880px) {
  .large-table-content { grid-template-columns: 1fr; }
}

.booking-faq {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}
.booking-faq h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--ink);
  text-transform: uppercase;
}
.booking-faq h2 .red { color: var(--accent); }
.booking-faq .lede {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 580px;
}
.booking-faq details {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.booking-faq details:last-child { border-bottom: 4px solid var(--accent); }
.booking-faq summary {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.1;
}
.booking-faq summary::-webkit-details-marker { display: none; }
.booking-faq summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 32px;
  color: var(--accent);
  font-weight: 400;
}
.booking-faq details[open] summary::after { content: "-"; }
.booking-faq details p {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 720px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-map {
  aspect-ratio: 21/9;
  background: var(--bg-paper);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  position: relative;
}
.contact-map .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  gap: 12px;
}
.contact-map .image-placeholder .label { color: var(--accent); font-weight: 500; }
.contact-map .image-placeholder .intent {
  max-width: 460px;
  font-family: var(--body);
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .contact-map { aspect-ratio: 4/3; } }

.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.contact-block {
  border-top: 4px solid var(--accent);
  padding-top: 24px;
}
.contact-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.contact-block .big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.contact-block a.big { transition: color 0.15s; }
.contact-block a.big:hover { color: var(--accent); }
.contact-block .small {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.press-block {
  background: var(--bg-paper);
  padding: var(--section-pad) var(--gutter);
  text-align: left;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.press-block-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.press-block .chapter-tag { margin-bottom: 24px; }
.press-block h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 1200px;
}
.press-block h2 .red { color: var(--accent); }
.press-block p {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.press-block .email-big {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 4px solid var(--accent);
  padding-bottom: 6px;
  text-transform: lowercase;
  letter-spacing: 0;
}
.press-block .email-big:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: var(--ink);
  padding: 88px var(--gutter) 36px;
  border-top: 4px solid var(--accent);
}
.footer-inner { max-width: var(--content-max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: var(--ink);
  text-transform: uppercase;
}
.footer-brand .wordmark .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: 6px;
}
.footer-brand p {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 300px;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-dim);
}
.footer-bottom .built-by a {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}
.footer-bottom .built-by a:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WORLD-CLASS ELEVATION LAYER (Cycle 7)
   6 moves layered on top of canon: scroll-driven reveals,
   stamped issue-number monogram, brutalist READ cursor accent,
   Anton marquee press ticker, broken-grid story snippet,
   editorial pause silence section.
   All CSS-first, JS-light. Respects prefers-reduced-motion.
   Tuned for Type Bomb voice: viral-red square stamps,
   no italic, no soft curves, brutalist tabloid scale.
   ============================================================ */

/* --- Move 1: Scroll-driven entrance --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

.reveal-image {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-image.in-view {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Move 2: Stamped issue-number monogram (viral-red block) --- */
.nav-brand-monogram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-brand-monogram .issue-stamp {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--accent);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-3deg);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 4px 2px 3px;
}
.nav-brand-monogram .issue-stamp .no {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.92;
}
.nav-brand-monogram .issue-stamp .num {
  font-size: 13px;
  font-weight: 500;
  margin-top: 1px;
}
.nav-brand-monogram:hover .issue-stamp { transform: rotate(3deg); }

.footer-brand .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.footer-brand .wordmark .issue-stamp {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--ink);
  line-height: 1;
  transform: rotate(-3deg);
  padding: 4px 2px 3px;
}
.footer-brand .wordmark .issue-stamp .no {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.92;
}
.footer-brand .wordmark .issue-stamp .num {
  font-size: 15px;
  font-weight: 500;
  margin-top: 1px;
}

/* --- Move 3: Brutalist READ cursor accent (square, not round) --- */
.cursor-accent {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cursor-accent.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-accent { display: none; }
}

/* --- Move 4: Anton marquee press ticker --- */
.press-marquee {
  background: var(--bg-paper);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
}
.press-marquee-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  margin: 0 var(--gutter) 24px;
  max-width: var(--content-max);
}
.press-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll-typebomb 48s linear infinite;
  align-items: center;
}
.press-marquee-track > .marquee-block {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink);
  letter-spacing: -0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.press-marquee-track .sep {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--accent);
  flex-shrink: 0;
}
.press-marquee-track em {
  font-family: var(--display);
  font-style: normal;
  color: var(--accent);
}
@keyframes marquee-scroll-typebomb {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.press-marquee:hover .press-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .press-marquee-track { animation: none; transform: translateX(0); }
}

/* --- Move 5: Broken-grid story snippet --- */
.story-snippet {
  background: var(--bg);
  overflow: hidden;
}
.story-snippet-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(56px, 8vw, 140px);
  align-items: center;
  position: relative;
}
.story-snippet-image {
  aspect-ratio: 5/6;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  position: relative;
  margin-left: calc(-1 * var(--gutter) - 24px);
}
.story-snippet-image::after {
  content: '';
  position: absolute;
  bottom: -48px;
  right: -64px;
  width: 72%;
  height: 4px;
  background: var(--accent);
}
.story-snippet-image .image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  gap: 12px;
}
.story-snippet-image .image-placeholder .label { color: var(--accent); font-weight: 500; }
.story-snippet-image .image-placeholder .intent {
  max-width: 300px;
  font-family: var(--body);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--ink-soft);
}
.story-snippet .copy {
  position: relative;
  z-index: 2;
}
.story-snippet .copy::before {
  content: '04.';
  position: absolute;
  top: -72px;
  left: -8px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -2px;
  line-height: 1;
}
.story-snippet .copy .chapter-tag { margin-bottom: 24px; }
.story-snippet .copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--ink);
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--accent);
}
.story-snippet .copy h2 .red { color: var(--accent); }
.story-snippet .copy p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 500px;
}
.story-snippet .copy .sig {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
  margin-top: 16px;
}
.story-snippet .copy .sig:hover { color: var(--accent); }
@media (max-width: 880px) {
  .story-snippet-inner { grid-template-columns: 1fr; gap: 56px; }
  .story-snippet-image { margin-left: 0; aspect-ratio: 4/5; }
  .story-snippet-image::after { display: none; }
  .story-snippet .copy::before { top: -56px; }
}

/* --- Move 6: Editorial pause (the silence move) --- */
.editorial-pause {
  background: var(--bg-deep);
  color: var(--ink);
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 9vw, 128px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.editorial-pause::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 38% 48% at 50% 50%, rgba(255, 47, 26, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.editorial-pause-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}
.editorial-pause-rule {
  display: block;
  width: 96px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 64px;
}
.editorial-pause-rule.below {
  margin: 64px auto 0;
}
.editorial-pause .word {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -1px;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
}
.editorial-pause cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 32px;
}

/* ============================================================
   CYCLE 9 · INTERACTIVE SIGNATURE "DETONATE"
   A brutalist display word built from letter spans. Click it
   to blast every letter apart and snap back. On-DNA for a
   type-is-the-brand skin: the word IS the show.
   Opt-in impact sound (original synth, never autoplays).
   Cursor jitter (hover only). Easter egg: 3 detonations
   trigger a full-screen letter rain + toast. Guards: under
   prefers-reduced-motion the click flips colour only (no
   scatter). Under hover:none the jitter is off; tap works.
   ============================================================ */

/* The DETONATE signature section */
.detonate-section {
  background: var(--bg-deep);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 4px solid var(--accent);
}
.detonate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(255,47,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.detonate-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
}
.detonate-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.detonate-tag::before, .detonate-tag::after {
  content: '';
  width: 48px;
  height: 4px;
  background: var(--accent);
}
.detonate-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 40px;
}
.detonate-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-top: 20px;
  display: block;
}

/* The word itself - a button for a11y, styled as display */
.detonate-word {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(80px, 20vw, 320px);
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 auto;
  position: relative;
  white-space: nowrap;
}
.detonate-word:focus-visible {
  outline: 4px solid var(--accent);
  outline-offset: 8px;
}
/* Individual letter spans inside the word */
.detonate-word .dl {
  display: inline-block;
  transition: transform 0.05s, color 0.12s;
  will-change: transform;
  position: relative;
}
/* On detonation, .dl gets inline WAAPI animation - no extra class needed */

/* detonated state: letter colour flip (used for reduced-motion fallback) */
.detonate-word.detonated .dl {
  color: var(--ink);
}
.detonate-word.detonated-reset .dl {
  color: var(--accent);
}

/* Scatter layer: full-screen letter rain (easter egg) */
.scatter-layer {
  position: fixed;
  inset: 0;
  z-index: 176;
  pointer-events: none;
  overflow: hidden;
}
.scatter-layer .sl {
  position: absolute;
  top: -40px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  pointer-events: none;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .scatter-layer { display: none; }
  .detonate-word .dl { transition: color 0.08s; }
}

/* Toast · brutalist version: solid red bar, white Anton text */
.toast {
  position: fixed;
  left: 50%;
  top: 80px;
  transform: translateX(-50%) translateY(-20px);
  z-index: 210;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  border-bottom: 4px solid var(--bg);
  padding: 14px 32px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .toast { transition: none; }
}

/* Opt-in sound toggle · brutalist chip, bottom-left */
.sound-toggle {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 178;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.sound-toggle .led {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.18);
  transition: background 0.15s;
}
.sound-toggle:hover { border-color: var(--accent); }
.sound-toggle.on { border-color: var(--accent); color: var(--accent); }
.sound-toggle.on .led { background: var(--accent); }
@media (max-width: 600px) {
  .sound-toggle { left: 12px; bottom: 70px; }
}

/* ============================================================
   CYCLE 9 · COMMENTARY DOCK (sales guide, demo home only)
   Solid near-black panel, red top border, white text. Dismissible,
   reopenable, becomes a bottom sheet on phones.
   ============================================================ */
.cx {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  width: 320px;
  max-width: calc(100vw - 44px);
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.cx.show { opacity: 1; transform: none; pointer-events: auto; }
.cx.cx-hidden { display: none; }
.cx-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.cx-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.cx-close {
  background: none;
  border: 0;
  color: var(--ink-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  transition: color 0.15s;
}
.cx-close:hover { color: var(--accent); }
.cx-body {
  padding: 18px 16px 8px;
  transition: opacity 0.17s;
}
.cx.swapping .cx-body { opacity: 0; }
.cx-feel {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.cx-feel em { font-style: normal; color: var(--accent); }
.cx-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.cx-dots {
  display: flex;
  gap: 6px;
  padding: 8px 16px 16px;
  flex-wrap: wrap;
}
.cx-dots span {
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,0.12);
  transition: background 0.25s;
}
.cx-dots span.on { background: var(--accent); }
.cx-reopen {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-paper);
  border: 0;
  border-top: 4px solid var(--accent);
  padding: 12px 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.cx-reopen.show { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 600px) {
  .cx { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .cx-reopen { left: 12px; right: auto; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .cx, .cx-reopen { transition: none; }
}

/* ============================================================
   CYCLE 9 · FIND US MAP (contact page)
   Type Bomb inline-SVG map: near-black ground, white hairline
   streets, viral-red route + pulsing pin. A 1:1 swap for a
   Google Maps embed at onboarding (same box reserved).
   ============================================================ */
.contact-map .map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.contact-map .map-pin-label {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: 55%;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-paper);
  border: 2px solid var(--accent);
  padding: 6px 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.contact-map .map-dir {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 12px 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: background 0.15s;
}
.contact-map .map-dir:hover { background: var(--ink); color: var(--bg); }
.map-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPulse 2.6s ease-out infinite;
}
@keyframes mapPulse {
  0% { transform: scale(1); opacity: 0.85; }
  70% { transform: scale(3.6); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .map-pulse { animation: none; opacity: 0; }
}

/* home room-chapter "find us" reinforcement link */
.visit-map-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 5px;
}
.visit-map-link:hover { color: var(--accent); }

/* ============================================================
   FORKCAST BUY BAND · demo sales chrome (Cycle 9)
   Tasteful bottom CTA, attention sheen + pulse. Above the footer,
   never blocks content. Guarded.
   ============================================================ */
.fc-buy { background: var(--bg-section); border-top: 1px solid var(--line); padding: clamp(44px, 6vw, 76px) var(--gutter); text-align: center; position: relative; overflow: hidden; }
.fc-buy-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.fc-buy-text { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); line-height: 1.2; color: var(--ink); }
.fc-buy-text strong { color: var(--accent); }
.fc-buy-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: center; }
.fc-buy-cta { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; background: var(--accent); color: var(--bg); font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 30px; border-radius: 0; box-shadow: 0 0 0 0 rgba(255, 47, 26, 0.5); animation: fcBuyPulse 2.6s ease-in-out infinite; }
.fc-buy-cta span { transition: transform 0.25s; }
.fc-buy-cta:hover span { transform: translateX(4px); }
.fc-buy-cta:hover { filter: brightness(1.06); }
.fc-buy-cta::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-18deg); animation: fcBuySheen 3.6s ease-in-out infinite; pointer-events: none; }
@keyframes fcBuyPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 47, 26, 0.45); } 50% { box-shadow: 0 0 26px 4px rgba(255, 47, 26, 0.5); } }
@keyframes fcBuySheen { 0% { left: -60%; } 55%, 100% { left: 130%; } }
.fc-buy-back { font-family: var(--mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-dim); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.fc-buy-back:hover { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .fc-buy-cta { animation: none; } .fc-buy-cta::after { display: none; } }
