/* Cinder NOLA — pizza truck.
   Fonts exclusive: Archivo Black (display) + Archivo (body) + Azeret Mono.
   Never reuse on other client sites. */
:root {
  --void: #0c0b0a;
  --ash: #1a1816;
  --ember: #ff4d1a;
  --flame: #ff8a3d;
  --mozz: #f3e6d4;
  --mozz-dim: #c4b5a0;
  --soot: #2a2622;
  --line: rgba(243, 230, 212, 0.12);
  /* Exclusive to Cinder NOLA — max-fat display. Do not reuse on other sites. */
  --font-display: "Archivo Black", "Arial Black", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "Azeret Mono", ui-monospace, monospace;
  --pad: clamp(1.1rem, 3.5vw, 2.25rem);
  --max: 1080px;
  --dock-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--void);
  color: var(--mozz);
  line-height: 1.5;
  min-height: 100vh;
  padding-bottom: calc(var(--dock-h) + 1rem);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

/* Top bar — minimal, not agency nav */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.mark {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mark span {
  color: var(--ember);
  letter-spacing: 0.18em;
}

.top-links {
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-links a {
  color: var(--mozz-dim);
  transition: color 0.15s;
}

.top-links a:hover,
.top-links a[aria-current="page"] {
  color: var(--flame);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.menu-btn i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--mozz);
}

/* Giant type opening — not hero-with-photo-cards */
.blast {
  padding: clamp(2.5rem, 8vw, 5rem) var(--pad) 2rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.blast-kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.9vw, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1rem;
  white-space: nowrap;
}

.blast h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 15.5vw, 9.2rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 11ch;
}

.blast h1 em {
  font-style: normal;
  color: var(--ember);
  display: block;
}

/* Full-bleed photo under the type — not a stock hero card */
.shot-full {
  display: block;
  width: 100%;
  max-height: min(56vh, 580px);
  object-fit: cover;
  object-position: center 45%;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.06) contrast(1.06) brightness(0.97);
}

.shot-pair {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border-bottom: 1px solid var(--line);
}

.shot-pair img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
}

.shot-pair .shot-caption {
  background: var(--ash);
  border-left: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  min-height: 260px;
}

.shot-pair .shot-caption strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.shot-pair .shot-caption span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--flame);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot-pair .shot-caption p {
  color: var(--mozz-dim);
  font-size: 0.95rem;
  max-width: 22rem;
}

.menu-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.menu-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.menu-mosaic img:first-child {
  grid-row: span 2;
  min-height: 340px;
}

/* ========== STORY PAGE (full bleed) ========== */
.story-page {
  display: flex;
  flex-direction: column;
}

.story-hero {
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255, 77, 26, 0.12), transparent 50%),
    var(--void);
  border-bottom: 1px solid var(--line);
}

.story-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.25rem;
}

.story-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.story-hero-lede {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--mozz-dim);
  max-width: 32rem;
  line-height: 1.5;
}

.story-bleed {
  display: block;
  width: 100%;
  max-height: min(68vh, 720px);
  object-fit: cover;
  object-position: center 35%;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.08) contrast(1.05);
}

.story-split {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--ash);
}

.story-split-sticky {
  position: sticky;
  top: 5.5rem;
  align-self: start;
}

.story-split-sticky .mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.75rem;
  display: block;
}

.story-split-sticky h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.story-split-body p {
  color: var(--mozz-dim);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.story-split-body p:last-child {
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.65rem;
  padding: clamp(1.25rem, 3vw, 2rem) var(--pad);
  background: var(--void);
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

.story-tile {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--ash);
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 280px;
}

.story-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-tile-lead {
  min-height: 280px;
}

.story-tile figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mozz-dim);
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--ash);
}

.story-manifesto {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(255, 77, 26, 0.1), transparent 50%),
    var(--ash);
}

.story-manifesto > .mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.75rem;
  display: block;
}

.story-manifesto ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.story-manifesto li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  background: var(--void);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 200px;
}

.story-manifesto .n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ember);
}

.story-manifesto h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.story-manifesto p {
  color: var(--mozz-dim);
  font-size: 0.98rem;
  line-height: 1.5;
}

.story-close {
  padding: clamp(4rem, 10vw, 6.5rem) var(--pad);
  text-align: center;
  background: var(--void);
}

.story-close h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 1rem;
}

.story-close > p {
  color: var(--mozz-dim);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

.story-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .story-split {
    grid-template-columns: 1fr;
  }

  .story-split-sticky {
    position: static;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-tile-lead img,
  .story-tile-full img {
    max-height: 240px;
  }

  .story-manifesto ul {
    grid-template-columns: 1fr;
  }
}

.blast-row {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: end;
  justify-content: space-between;
}

.blast p {
  max-width: 28rem;
  color: var(--mozz-dim);
  font-size: 1.05rem;
  font-weight: 500;
}

.blast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-hot {
  background: var(--ember);
  color: var(--void);
}

.pill-hot:hover {
  background: var(--flame);
}

.pill-ghost {
  border: 1px solid var(--line);
  color: var(--mozz);
}

.pill-ghost:hover {
  border-color: var(--mozz-dim);
}

/* Fire band — CSS only, not stock photos */
.ember-strip {
  height: 10px;
  background: linear-gradient(
    90deg,
    #5c1a00 0%,
    var(--ember) 25%,
    var(--flame) 50%,
    var(--ember) 75%,
    #5c1a00 100%
  );
  background-size: 200% 100%;
  animation: heat 6s linear infinite;
}

@keyframes heat {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 200% 0;
  }
}

/* Tonight callout — Find the glow */
.tonight-block {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  border-bottom: 1px solid var(--line);
}

.tonight-block > * {
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--pad);
}

.tonight-label {
  background:
    radial-gradient(ellipse 90% 70% at 0% 100%, rgba(255, 77, 26, 0.14), transparent 55%),
    var(--ash);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.25rem;
  min-height: 320px;
}

.tonight-label h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 8.5vw, 5.75rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  max-width: 8ch;
  margin-bottom: 1.25rem;
  color: var(--mozz);
}

.tonight-label .mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--flame);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.glow-lede {
  color: var(--mozz-dim);
  font-size: clamp(1.12rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  max-width: 26rem;
  margin-top: 0.15rem;
}

.glow-label-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.glow-label-foot .mono {
  margin-bottom: 0;
  color: var(--mozz-dim);
  font-size: 0.75rem;
}

.tonight-detail {
  background: var(--void);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
}

.glow-visual {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 160px;
}

.glow-visual img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.spot {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  background: var(--ash);
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.spot .spot-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.35rem;
}

.spot .spot-day {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mozz-dim);
  margin-bottom: 0.4rem;
}

.spot strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.spot .meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--flame);
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}

.spot p {
  color: var(--mozz-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.spot.is-live {
  border-color: rgba(255, 77, 26, 0.55);
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.14), var(--ash) 55%);
  box-shadow: 0 0 0 1px rgba(255, 77, 26, 0.12);
}

.spot.is-live .spot-badge {
  color: var(--ember);
}

.spot.is-live .spot-day {
  color: var(--gold-soft, var(--flame));
}

.spot .meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--flame);
  letter-spacing: 0.04em;
}

.spot p {
  margin-top: 0.55rem;
  color: var(--mozz-dim);
  font-size: 0.95rem;
}

/* Menu as a receipt / ticket — not cards */
.ticket {
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
}

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
}

.ticket-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.ticket-head a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--flame);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lines {
  list-style: none;
}

.line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.45rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.line .thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  background: var(--ash);
  border: 1px solid var(--line);
}

.line h3 {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.line p {
  grid-column: 2 / 3;
  color: var(--mozz-dim);
  font-size: 0.92rem;
  max-width: 36rem;
}

.price {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--flame);
  white-space: nowrap;
}

.line .tag {
  grid-column: 2 / -1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: -0.15rem;
  line-height: 1.35;
  max-width: 36rem;
}

/* Lines without a thumb (sides/drinks) */
.line.no-thumb {
  grid-template-columns: 1fr auto;
}

.line.no-thumb h3,
.line.no-thumb p,
.line.no-thumb .tag {
  grid-column: 1;
}

.line.no-thumb .price {
  grid-column: 2;
}

/* Three beats — not service cards */
.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.beat {
  padding: 1.75rem var(--pad);
  border-right: 1px solid var(--line);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--ash);
}

.beat:last-child {
  border-right: 0;
}

.beat .n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ember);
  letter-spacing: 0.12em;
}

.beat h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.beat p {
  color: var(--mozz-dim);
  font-size: 0.95rem;
  margin-top: auto;
}

/* Story band */
.story {
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.story h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.story-copy p {
  color: var(--mozz-dim);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  max-width: 36rem;
}

.story-copy p strong {
  color: var(--mozz);
  font-weight: 700;
}

/* Bottom dock — always show where the truck is */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: var(--dock-h);
  background: var(--ember);
  color: var(--void);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  font-weight: 700;
}

.dock .left {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.dock .left small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.dock .left strong {
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(60vw, 420px);
}

.dock a {
  background: var(--void);
  color: var(--mozz);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Page shell for inner pages */
/* ========== BOOK THE TRUCK ========== */
.book-page {
  display: flex;
  flex-direction: column;
}

.book-hero {
  padding: clamp(3rem, 8vw, 5.5rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(255, 77, 26, 0.12), transparent 50%),
    var(--void);
  border-bottom: 1px solid var(--line);
}

.book-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.25rem;
}

.book-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

.book-hero-lede {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  color: var(--mozz-dim);
  max-width: 34rem;
  line-height: 1.5;
}

.book-main {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.book-form-panel {
  padding: clamp(2rem, 5vw, 3.25rem) var(--pad);
  background: var(--ash);
  border-right: 1px solid var(--line);
}

.book-form-panel > .mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.65rem;
  display: block;
}

.book-form-panel > h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.book-form {
  max-width: none;
}

.book-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.book-form .pill {
  justify-self: start;
  border: 0;
  margin-top: 0.35rem;
  cursor: pointer;
}

.book-side {
  padding: clamp(2rem, 5vw, 3.25rem) var(--pad);
  background: var(--void);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.book-side-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.3rem;
  background: var(--ash);
}

.book-side-card .mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.85rem;
  display: block;
}

.book-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.book-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--mozz-dim);
  font-size: 0.98rem;
  line-height: 1.4;
}

.book-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ember);
}

.book-side-card-hot {
  border-color: rgba(255, 77, 26, 0.4);
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.12), var(--ash) 60%);
}

.book-side-copy {
  color: var(--mozz-dim);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.book-steps {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  background: var(--ash);
  border-bottom: 1px solid var(--line);
}

.book-steps > .mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.5rem;
  display: block;
}

.book-steps ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.book-steps li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  background: var(--void);
  min-height: 180px;
}

.book-steps .n {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ember);
  display: block;
  margin-bottom: 1rem;
}

.book-steps h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.book-steps p {
  color: var(--mozz-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.book-close {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad);
  text-align: center;
  background: var(--void);
}

.book-close h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.book-close > p {
  color: var(--mozz-dim);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.book-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .book-main {
    grid-template-columns: 1fr;
  }

  .book-form-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .book-form .form-row {
    grid-template-columns: 1fr;
  }

  .book-steps ol {
    grid-template-columns: 1fr;
  }
}

.page-top {
  padding: clamp(2rem, 5vw, 3rem) var(--pad) 1.25rem;
  border-bottom: 1px solid var(--line);
}

.page-top h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.page-top p {
  margin-top: 0.85rem;
  color: var(--mozz-dim);
  max-width: 34rem;
  font-size: 1.05rem;
}

.page-body {
  padding: clamp(1.75rem, 4vw, 2.75rem) var(--pad) 3rem;
}

/* Schedule table */
.sked {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.sked th,
.sked td {
  text-align: left;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.sked th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mozz-dim);
  font-weight: 500;
}

.sked td:first-child {
  font-weight: 700;
  width: 5.5rem;
}

.sked .time {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--flame);
}

.sked .live td {
  color: var(--void);
  background: var(--flame);
  border-bottom-color: var(--flame);
}

.sked .live td:first-child {
  padding-left: 0.65rem;
  border-radius: 6px 0 0 6px;
}

.sked .live td:last-child {
  padding-right: 0.65rem;
  border-radius: 0 6px 6px 0;
}

.sked .live .time {
  color: var(--void);
}

/* Tomorrow row on full schedule */
.sked .soon td {
  background: rgba(255, 138, 61, 0.12);
  border-bottom-color: rgba(255, 138, 61, 0.35);
}

.sked .soon .time {
  color: var(--flame);
}

/* Form */
.form {
  display: grid;
  gap: 0.9rem;
  max-width: 32rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mozz-dim);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--ash);
  color: var(--mozz);
  font: inherit;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--ember);
  border-color: var(--ember);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--mozz-dim);
}

.form-ok {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: rgba(255, 77, 26, 0.15);
  border: 1px solid var(--ember);
  color: var(--mozz);
  font-weight: 600;
}

.form-ok.show {
  display: block;
}

/* Menu page sections */
.menu-block + .menu-block {
  margin-top: 2.5rem;
}

.menu-block h2 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

/* Foot */
.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem var(--pad) 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mozz-dim);
}

.foot a:hover {
  color: var(--flame);
}

/* Mobile */
@media (max-width: 800px) {
  .shot-pair,
  .menu-mosaic {
    grid-template-columns: 1fr;
  }

  .menu-mosaic img:first-child {
    grid-row: auto;
    min-height: 220px;
  }

  .line {
    grid-template-columns: 64px 1fr auto;
  }

  .line .thumb {
    width: 64px;
    height: 64px;
  }

  .top-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ash);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
  }

  .top-links.open {
    display: flex;
  }

  .top-links a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn {
    display: grid;
  }

  .tonight-block,
  .beats,
  .story {
    grid-template-columns: 1fr;
  }

  .tonight-label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .glow-visual {
    max-height: 140px;
  }

  .glow-visual img {
    height: 140px;
  }

  .beat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .beat:last-child {
    border-bottom: 0;
  }

  .sked {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ember-strip {
    animation: none;
  }
}
