:root {
  --ink: #0b0b0c;
  --ink-2: #161616;
  --cream: #f3ede2;
  --cream-dim: #c6bdaa;
  --muted: #8b8476;
  --gold: #d4b06a;
  --gold-2: #e8c77b;
  --teal: #2f8f84;
  --teal-deep: #1b5c4e;
  --paper: #f4f1ea;
  --paper-ink: #141414;
  --line: rgba(243, 237, 226, 0.12);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--ink); color: var(--cream); }
body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}
h1, h2, .display { font-family: var(--serif); font-weight: 360; letter-spacing: -0.03em; line-height: 1.05; }
.muted { color: var(--cream-dim); }

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  padding-top: max(12px, env(safe-area-inset-top));
  background: linear-gradient(to bottom, rgba(11,11,12,.92), rgba(11,11,12,0));
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta .short { display: none; }
.brand-by { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.brand-by strong { font-weight: 500; color: var(--cream); letter-spacing: 0; }
.brand-by strong span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; color: var(--cream-dim); }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cream);
}
.nav-cta.solid { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: stretch;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #000 url("../assets/hero.jpg") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,.88) 0%, rgba(11,11,12,.55) 46%, rgba(11,11,12,.18) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 0 80px;
}
.hero h1 { font-size: clamp(40px, 6.4vw, 78px); max-width: none; }
.hero h1 em { font-style: italic; color: var(--gold-2); font-weight: 360; }
.hero .lede { margin-top: 22px; max-width: 36em; font-size: 18px; color: var(--cream-dim); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--line);
  transition: .2s ease;
}
.btn.primary { background: var(--cream); color: var(--ink); border-color: var(--cream); font-weight: 500; }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost:hover { border-color: var(--cream-dim); }
.hero-meta { margin-top: 48px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

section { padding: 96px 0; }
.hero, .flight, .shop, .close { padding: 0; }
.section-kicker { margin-bottom: 14px; }
.section-title { font-size: clamp(32px, 5vw, 64px); max-width: 18ch; }
.section-title.wide { max-width: 24ch; }
.fork-title { max-width: none; }
.fork-sub { max-width: none; }
.section-sub { margin-top: 16px; max-width: 46ch; color: var(--cream-dim); font-size: 17px; }

.fork { padding-top: 80px; }
.fork-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.door {
  position: relative; min-height: 420px; overflow: hidden; border-radius: 18px;
  border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 28px;
}
.door img, .door-film { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.door-film { object-position: 70% 50%; background: #111; }
.door.stack .door-film { object-position: 45% 60%; }
.door::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,.88), rgba(11,11,12,.15));
}
.door-copy { position: relative; z-index: 1; }
.door h3 { font-family: var(--serif); font-size: 36px; font-weight: 360; }
.door p { margin-top: 8px; color: var(--cream-dim); max-width: 28ch; }
.door.stack { color: var(--paper-ink); }
.door.stack::after { background: linear-gradient(to top, rgba(244,241,234,.94), rgba(244,241,234,.18)); }
.door.stack p { color: #4a4a4a; }
.door .mini { margin-top: 16px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); }
.door.stack .mini { color: var(--teal-deep); }

.world { position: relative; }
.world-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.building-frame { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.building-frame img { width: 100%; height: auto; display: block; filter: saturate(.9); }
.rooms-legend { display: grid; gap: 10px; margin-top: 28px; }
.room-link {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--cream-dim);
}
.room-link b { font-weight: 500; color: var(--cream); }
.room-link small { color: var(--muted); }
.room-link:hover { color: var(--gold-2); }

.rail {
  position: sticky; top: 72px; z-index: 20;
  display: flex; gap: 8px; overflow: auto;
  padding: 8px 0 16px;
  background: rgba(11,11,12,.78);
  backdrop-filter: blur(10px);
}
.rail a {
  white-space: nowrap; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 999px; border: 1px solid transparent; color: var(--muted);
}
.rail a.active, .rail a:hover { border-color: var(--line); color: var(--cream); }

.chapter {
  min-height: 88vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 80px;
}
.chapter .still {
  border-radius: 18px; overflow: hidden; min-height: 420px;
  background: #111 center/cover no-repeat; border: 1px solid var(--line);
}
.chapter .outcomes { display: grid; gap: 10px; margin-top: 24px; }
.chapter .outcomes li {
  list-style: none; padding: 12px 0; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 22px;
}

.shift { padding-top: 40px; }
.shift-still { margin-top: 32px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.times { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 18px; }
.times div { padding: 12px 8px; border-top: 1px solid var(--line); }
.times b { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.times span { color: var(--cream-dim); font-size: 14px; }

.leak {
  background: radial-gradient(circle at 30% 40%, rgba(212,176,106,.08), transparent 42%);
}
.leak-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; margin-top: 36px; }
.orbit {
  position: relative; width: min(520px, 100%); aspect-ratio: 1; margin: 0 auto;
}
.node {
  position: absolute; width: 108px; text-align: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.node span {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin: 0 auto 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(11,11,12,.7);
  color: var(--gold-2);
  font-size: 12px; letter-spacing: .08em;
}
.node small { display: block; color: var(--cream-dim); font-size: 12px; }
.node.active span, .node:hover span { background: var(--gold); color: var(--ink); }
.node[data-n="attract"] { left: 50%; top: 8%; }
.node[data-n="answer"] { left: 86%; top: 32%; }
.node[data-n="qualify"] { left: 86%; top: 68%; }
.node[data-n="deliver"] { left: 50%; top: 92%; }
.node[data-n="collect"] { left: 14%; top: 68%; }
.node[data-n="keep"] { left: 14%; top: 32%; }
.orbit-ring {
  position: absolute; inset: 18%;
  border: 1px dashed rgba(212,176,106,.28);
  border-radius: 50%;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: rgba(22,22,22,.7);
}
.panel h3 { font-family: var(--serif); font-size: 28px; font-weight: 360; }
.panel ul { margin: 18px 0 24px; display: grid; gap: 10px; color: var(--cream-dim); }
.panel li { list-style: none; padding-left: 14px; border-left: 2px solid var(--gold); }

.diag { }
.diag-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; margin-top: 32px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 28px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--cream-dim);
}
.chip.on { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.brief {
  border-radius: 18px;
  background: var(--paper);
  color: var(--paper-ink);
  padding: 28px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.brief .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep); }
.brief p { font-family: var(--serif); font-size: 26px; line-height: 1.25; margin: 16px 0 24px; }
.brief .btn.primary { margin-top: auto; align-self: flex-start; }

.shop {
  padding: 0;
}
.shop-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 0;
}
.shop-night {
  background: #000 url("../assets/close.jpg") center/cover no-repeat;
  position: relative; padding: 64px 40px; display: flex; align-items: flex-end;
}
.shop-night::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,.78), rgba(11,11,12,.2));
}
.shop-night .inner { position: relative; z-index: 1; }
.shop-day {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 64px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.shop-day img.wordmark {
  display: block;
  height: auto;
  width: auto;
  max-height: 72px;
  max-width: min(280px, 100%);
  object-fit: contain;
  object-position: left center;
  margin: 10px 0 18px;
  background: transparent;
}
.shop-day p { max-width: 36ch; }
.shop-day .purpose { color: var(--teal-deep); font-style: italic; }
.proof { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin: 28px 0; }
.proof b { display: block; font-family: var(--serif); font-size: 20px; font-weight: 360; }
.proof span { font-size: 12px; color: #666; }

.close {
  background: #000 url("../assets/close.jpg") center/cover no-repeat;
  position: relative;
}
.close::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,.88), rgba(11,11,12,.45));
}
.close .wrap { position: relative; z-index: 1; padding: 56px 0 72px; }
.close h2 { font-size: clamp(28px, 4vw, 48px); max-width: none; }
.close .lede { margin-top: 18px; max-width: 40ch; color: var(--cream-dim); }
.truths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 36px 0; }
.truths div { border-top: 1px solid var(--line); padding-top: 14px; }
.truths b { display: block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: center; }
footer img { height: 22px; width: auto; }

@media (max-width: 880px) {
  .fork-grid, .world-layout, .chapter, .leak-grid, .diag-grid, .shop-split, .truths, .proof {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 46px; }
  .chapter .still, .door { min-height: 280px; }
  .shop-night, .shop-day { padding: 40px 24px; }
}

.outcomes { display: grid; gap: 10px; margin-top: 24px; }
.outcomes li {
  list-style: none; padding: 12px 0; border-top: 1px solid var(--line);
  font-family: var(--serif); font-size: 22px;
}

.scroll-world { padding: 0 0 40px; }
.world-intro { padding: 80px 0 36px; }
.world-track { height: 650vh; position: relative; }
.world-stage {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.stage-still {
  position: absolute; inset: 0;
  background: #050505 center/cover no-repeat;
  transform: scale(1.06);
  transition: background-image .6s ease, transform 1.2s ease;
  filter: saturate(.85) contrast(1.05);
}
.stage-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,.88) 0%, rgba(11,11,12,.55) 42%, rgba(11,11,12,.28) 100%),
    linear-gradient(to top, rgba(11,11,12,.55), transparent 40%);
}
.stage-grid {
  position: relative; z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  padding-top: 72px;
}
.stage-copy { max-width: 36ch; }
.building-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transform-origin: center;
  transition: transform .8s ease;
}
.building-stage img { width: 100%; height: auto; display: block; }
.hot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(232,199,123,.45);
  background: rgba(11,11,12,.35);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(212,176,106,0);
}
.hot.on {
  background: var(--gold);
  border-color: var(--gold-2);
  box-shadow: 0 0 24px 6px rgba(212,176,106,.45);
}
.hot.lit {
  background: rgba(212,176,106,.55);
  border-color: var(--gold);
}
.world-rail {
  position: relative; z-index: 3;
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  padding: 8px 16px 28px;
}
.world-rail button {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.world-rail button.on {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(11,11,12,.45);
}
.world-progress {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: rgba(243,237,226,.08); z-index: 4;
}
.world-progress span {
  display: block; height: 100%; width: 0;
  background: var(--gold);
}

@media (max-width: 880px) {
  .stage-grid { grid-template-columns: 1fr; padding-top: 88px; }
  .building-stage { max-height: 38vh; }
  .stage-copy .section-title { font-size: 32px; }
}

.grain {
  pointer-events: none;
  position: absolute; inset: 0; z-index: 3;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.vignette {
  pointer-events: none;
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55) 100%);
}

.hero-still {
  position: absolute; inset: 0;
  background: #000 url("../assets/room-door.jpg") 72% 50%/cover no-repeat;
  transform: scale(1.08);
  animation: heroDrift 28s ease-in-out alternate infinite;
}
.hero-still::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,.82) 0%, rgba(11,11,12,.45) 48%, rgba(11,11,12,.12) 100%);
}
@keyframes heroDrift {
  from { transform: scale(1.08) translate3d(0,0,0); }
  to { transform: scale(1.16) translate3d(-2%, 1%, 0); }
}
.hero .grain, .hero .vignette { position: absolute; }
.hero-copy { position: relative; z-index: 4; }
.scroll-cue {
  position: absolute; z-index: 5; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream-dim);
}
.scroll-cue span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}

.flight { position: relative; background: #000; }
.flight-track { height: 700vh; }
.flight-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.cam {
  position: absolute; inset: 0;
  background: #000 center/cover no-repeat;
  will-change: transform, opacity;
  transform-origin: 62% 48%;
}
#cam-b { opacity: 0; }
.flight-copy {
  position: absolute; z-index: 5;
  left: 12vw; bottom: 20vh;
  max-width: 24em;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.room-index {
  font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.flight-copy h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 360;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 8px 0 10px;
  max-width: none;
}
.flight-copy .outcomes { max-width: 20ch; }
.flight-rail {
  position: absolute; z-index: 6;
  right: 4vw; top: 50%;
  transform: translateY(-50%);
  display: grid; gap: 6px;
}
.flight-rail button {
  text-align: right;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
}
.flight-rail button.on { color: var(--gold-2); }
.flight-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: rgba(243,237,226,.1); z-index: 6;
}
.flight-bar span { display: block; height: 100%; width: 0; background: var(--gold); }

@media (max-width: 880px) {
  .flight-rail { top: auto; bottom: 70px; right: 16px; left: 16px; transform: none; display: flex; justify-content: space-between; }
  .flight-copy { left: 22px; right: 22px; bottom: 18vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-still { animation: none; }
}

.cam {
  background-position: 70% 50%;
}

@media (max-width: 880px) {
  .wrap { width: min(1180px, calc(100% - 32px)); }
  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.15;
  }
  .brand-by { display: flex; font-size: 10px; }
  .nav-links { gap: 10px; font-size: 11px; }
  .nav-links a:not(.nav-cta) { display: inline; }
  .nav-cta.solid { display: none; }
  .hero .lede { max-width: none; font-size: 15px; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }
  .nav-cta .full { display: none; }
  .nav-cta .short { display: inline; }
  .hero { min-height: 100dvh; }
  .hero-copy {
    justify-content: flex-end;
    min-height: 100dvh;
    padding: 96px 0 96px;
  }
  .hero h1 { font-size: clamp(34px, 10vw, 48px); max-width: none; }
  .hero .lede { font-size: 15px; max-width: none; }
  .hero-meta { display: none; }
  .scroll-cue { bottom: max(18px, env(safe-area-inset-bottom)); font-size: 10px; }
  section { padding: 64px 0; }
  .hero, .flight, .shop, .close { padding: 0; }
  .fork { padding-top: 48px; }
  .door { min-height: 320px; }
  .door h3 { font-size: 28px; }
  .flight-copy {
    left: 20px; right: 20px;
    top: calc(72px + env(safe-area-inset-top));
    bottom: auto;
    max-width: none;
  }
  .flight-copy h2 { font-size: clamp(26px, 8vw, 36px); }
  .flight-copy .section-sub { font-size: 15px; }
  .flight-copy .outcomes { display: none; }
  .flight-rail {
    top: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    right: 16px; left: 16px;
    transform: none;
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  .flight-rail button { font-size: 10px; letter-spacing: .1em; padding: 8px 2px; }
  .flight-bar { bottom: 0; }
}

@media (max-width: 420px) {
  .hero .actions { flex-direction: column; align-items: flex-start; }
}

.foot-mark {
  display: block;
  height: auto;
  width: auto;
  max-height: 28px;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}
.flight-copy { max-width: 28em; }
.flight-copy .outcomes { max-width: 16ch; }
.flight-copy .outcomes li { font-size: 20px; padding: 8px 0; }
.shop-day { align-items: flex-start; }

.outcomes-line {
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.cycle {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 36px 0 22px;
  position: relative;
}
.cycle::before {
  content: "";
  position: absolute;
  left: 4%; right: 4%; top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,106,.35), transparent);
}
.step-n {
  position: relative;
  text-align: left;
  padding: 8px 8px 12px;
  border-radius: 14px;
  color: var(--cream-dim);
}
.step-n i {
  display: grid; place-items: center;
  width: 36px; height: 36px; margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink);
  font-style: normal;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gold);
}
.step-n b { display: block; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.step-n span { display: block; font-size: 12px; color: var(--muted); max-width: 16ch; }
.step-n.on { background: rgba(212,176,106,.08); }
.step-n.on i { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.spec {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: rgba(22,22,22,.65);
}
.spec h3 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 360; margin: 8px 0 10px; max-width: 18ch; }
.spec ol { margin: 0; display: grid; gap: 10px; color: var(--cream-dim); }
.spec li { list-style: none; padding-left: 14px; border-left: 2px solid var(--gold); }
.spec .actions { grid-column: 1 / -1; }
.composer { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; margin-top: 32px; align-items: start; }
.q { margin-bottom: 26px; }
.q-label { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-dim); }
.q-label span { color: var(--gold); letter-spacing: .16em; }
.pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pick-card {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: rgba(22,22,22,.5);
  color: var(--cream-dim);
}
.pick-card b { display: block; color: var(--cream); font-family: var(--serif); font-size: 20px; font-weight: 360; margin-bottom: 4px; }
.pick-card small { display: block; font-size: 13px; color: var(--muted); }
.pick-card.on { border-color: var(--gold); background: rgba(212,176,106,.1); }
.seg { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; width: fit-content; }
.seg button { padding: 10px 16px; color: var(--cream-dim); }
.seg button + button { border-left: 1px solid var(--line); }
.seg button.on { background: var(--gold); color: var(--ink); }
.sits { display: flex; flex-wrap: wrap; gap: 8px; }
.sits button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--cream-dim);
}
.sits button.on { border-color: var(--gold); color: var(--ink); background: var(--gold); }
.dossier {
  border-radius: 18px;
  background: var(--paper);
  color: var(--paper-ink);
  padding: 28px;
  min-height: 420px;
  display: flex; flex-direction: column;
}
.dossier .label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-deep); }
.dossier .role { font-family: var(--serif); font-size: 34px; font-weight: 360; margin: 10px 0 8px; }
.dossier #brief-text { font-size: 16px; line-height: 1.45; color: #3a3a3a; margin-bottom: 18px; }
.file { display: grid; gap: 10px; margin: 0 0 22px; }
.file div { border-top: 1px solid #ddd4c6; padding-top: 8px; }
.file dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7a7264; }
.file dd { margin: 4px 0 0; font-family: var(--serif); font-size: 18px; }
.dossier-ghost { margin-top: 10px; color: #1b5c4e; border-color: #cfc8bb; align-self: flex-start; }
.dossier .btn.primary { align-self: flex-start; }
@media (max-width: 880px) {
  .cycle, .spec, .composer, .pick { grid-template-columns: 1fr; }
  .cycle::before { display: none; }
  .seg { width: 100%; }
  .seg button { flex: 1; }
}

.door.live img { transform: scale(1.02); transition: transform 1.4s ease, filter .5s ease; }
.door.live:hover img { transform: scale(1.08); }
.lamp-glow {
  position: absolute; z-index: 1;
  right: 18%; top: 22%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,199,123,.42), rgba(232,199,123,.08) 42%, transparent 70%);
  opacity: .28;
  pointer-events: none;
  mix-blend-mode: screen;
}
.door.live:hover .lamp-glow { animation: flicker 1.6s ease-in-out infinite; }
@keyframes flicker {
  0%, 100% { opacity: .22; transform: scale(1); }
  8% { opacity: .55; }
  14% { opacity: .3; }
  28% { opacity: .62; transform: scale(1.06); }
  46% { opacity: .26; }
  70% { opacity: .5; }
}
.code-reel {
  position: absolute; z-index: 1;
  left: 10%; right: 10%; top: 12%;
  height: 46%;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(20,40,35,.72);
  text-shadow: 0 0 12px rgba(255,255,255,.35);
  transition: opacity .35s ease;
}
.door.stack:hover .code-reel { opacity: .9; }
.code-reel span { display: block; animation: codeUp 9s linear infinite; }
@keyframes codeUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.door-copy { pointer-events: none; }
@media (max-width: 880px) {
  .flight-copy { left: 20px; bottom: auto; top: calc(88px + env(safe-area-inset-top)); }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
}

.shop-night h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 360;
  max-width: none;
  line-height: 1.06;
}
.shop-night p { margin-top: 14px; color: var(--cream-dim); max-width: 28ch; }
.cc-type {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #141414;
  margin: 6px 0 18px;
  line-height: 1;
}
.cc-type span { color: var(--teal-deep); }
.foot-type { font-size: 22px; color: var(--cream); margin: 0; }
.foot-type span { color: var(--teal); }
.shop-lead { font-size: 18px; max-width: 32ch; }
.shop-quote { margin: 16px 0 22px; max-width: 32ch; color: #4a4a4a; }
.shop-quote em { color: var(--teal-deep); font-style: italic; font-family: var(--serif); }
.proof-list { list-style: none; display: grid; gap: 14px; margin: 0 0 28px; max-width: 42ch; }
.proof-list li { border-top: 1px solid #ddd4c6; padding-top: 12px; }
.proof-list b { display: block; font-family: var(--serif); font-size: 22px; font-weight: 360; }
.proof-list span { display: block; margin-top: 4px; font-size: 14px; color: #666; }
.shop-btn { background: #141414; color: #f4f1ea; border-color: #141414; }
.shop-ghost { color: #1b5c4e; border-color: #cfc8bb; }
.close h2 { max-width: none; }
.spec h3 { max-width: none; }

.shop-night, .shop-day { padding: 40px 36px; }
.shop-lead, .shop-quote { font-size: 15px; }
.proof-list { gap: 8px; margin: 0 0 18px; }
.proof-list b { font-size: 18px; }
.proof-list li { padding-top: 8px; }
.shift { padding-top: 56px; padding-bottom: 56px; }
.shift-still { max-height: 280px; overflow: hidden; border-radius: 14px; }
.shift-still img { width: 100%; height: 280px; object-fit: cover; }
.times { font-size: 13px; }
.times b { display: block; font-size: 13px; }
.hero .lede { max-width: 46ch; }

@media (max-width: 880px) {
  .nav { padding: 10px 14px; padding-top: max(10px, env(safe-area-inset-top)); }
  .times {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 4px;
    margin-top: 12px;
    overflow: visible;
  }
  .times div {
    padding: 8px 2px;
    text-align: center;
    border-top: 1px solid var(--line);
  }
  .times b { font-size: 11px; letter-spacing: 0; }
  .times span { display: block; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
  .shift-still, .shift-still img { height: 160px; }
  .cycle {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
    margin: 20px 0 16px;
  }
  .cycle::before { display: none; }
  .step-n { padding: 8px 4px; text-align: center; }
  .step-n i { margin: 0 auto 6px; width: 32px; height: 32px; }
  .step-n b { font-size: 12px; }
  .step-n span { display: none; }
  .spec { padding: 18px; gap: 16px; }
  .spec h3 { font-size: 26px; }
  .shop-night, .shop-day { padding: 28px 20px; }
  .shop-night { min-height: 240px; }
  .close .wrap { padding: 40px 0 56px; }
  .close h2 { font-size: 28px; }
  section.shift, section.leak, section.diag { padding: 48px 0; }
}

.brief-sub { max-width: 44em; }
