/* ═══════════════════════════════════════════════════════════════════════════
   HAVOC HALL — axe throwing · escape rooms · splatter paint
   One loud warehouse, three colour-keyed zones, wayfinding-signage typography.

   Mobile-first. The single column is the design, not the fallback: every band
   is legible one thumb at a time, and desktop only widens what already works.

   Zones (the whole visual system hangs off these three):
     THROW    — hazard yellow   --haz
     ESCAPE   — vault teal      --esc
     SPLATTER — hot magenta     --spl
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --coal: #0e0f12;
  --steel: #15171c;
  --panel: #1a1d23;
  --line: #272b33;
  --bone: #ede9e0;
  --dim: #9b978c;
  --faint: #6b675e;

  --haz: #f2b807;
  --esc: #35d9c4;
  --spl: #f2409b;

  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --label: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;

  --pad: clamp(18px, 5vw, 44px);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--coal);
  color: var(--bone);
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

::selection { background: var(--haz); color: var(--coal); }

/* ── shared bits ──────────────────────────────────────────────────────────── */

.wrap { max-width: 1120px; margin: 0 auto; padding-inline: var(--pad); }

.label {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.94;
}

/* Hazard tape — the house divider. */
.tape {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--haz) 0 16px,
    var(--coal) 16px 32px
  );
  border-block: 2px solid var(--coal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  background: var(--haz);
  color: var(--coal);
  border: 0;
  border-radius: var(--radius);
  font-family: var(--label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: #ffd029; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--bone); outline-offset: 3px; }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { background: var(--steel); box-shadow: inset 0 0 0 1.5px var(--dim); }

/* ── top bar ──────────────────────────────────────────────────────────────── */

/* The whole chrome — bar, sheet and the checkbox that opens it — is ONE
   <header> element, because engine pages lift that element and serve it
   without app.js. display:contents keeps .topbar sticking to the viewport. */
.chrome { display: contents; }

/* The sheet's real control. Visually hidden but focusable, so the keyboard
   reaches the menu on pages where no script runs; Space toggles it. */
.navtoggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}
.navtoggle:focus-visible ~ .topbar .burger { outline: 2px solid var(--haz); outline-offset: 2px; }
.navtoggle:checked ~ .sheet { display: flex; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--coal) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 60px;
}

.brand {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.brand em { font-style: normal; color: var(--haz); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  padding: 8px 11px;
  border-radius: var(--radius);
}
.nav-links a:hover { color: var(--bone); background: var(--steel); }

.top-actions { display: none; align-items: center; gap: 10px; }
.top-actions .btn { min-height: 42px; padding: 0 18px; font-size: 12.5px; }

.burger {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  cursor: pointer;
}
.burger svg { display: block; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .top-actions { display: flex; }
  .burger { display: none; }
}

/* Mobile sheet menu */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--coal);
  display: none;
  flex-direction: column;
  padding: 18px var(--pad) 34px;
  /* The composed nav can carry more links than the viewport is tall — the
     open sheet has to scroll or the last links are unreachable. */
  overflow-y: auto;
}
.sheet-head { display: flex; align-items: center; justify-content: space-between; min-height: 46px; }
.sheet nav { display: grid; gap: 2px; margin-top: 26px; }
.sheet nav a {
  font-family: var(--display);
  font-size: clamp(30px, 9vw, 44px);
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.sheet nav a:hover { color: var(--haz); }
.sheet-foot { margin-top: auto; display: grid; gap: 12px; }
.sheet-account {
  font-family: var(--label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dim);
  justify-self: start;
  padding: 6px 0;
}
.sheet-account:hover { color: var(--bone); }

/* ── hero ─────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(56px, 12vh, 120px) 0 clamp(46px, 9vh, 96px);
  overflow: clip;
  isolation: isolate;
}
.hero-splats {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}
.hero-splats svg { position: absolute; }
.hero-splats .s1 { top: -60px; right: -80px; width: min(64vw, 420px); }
.hero-splats .s2 { bottom: -90px; left: -70px; width: min(58vw, 380px); }
.hero-splats .s3 { top: 32%; left: 58%; width: min(30vw, 190px); }

.hero .label { color: var(--haz); }
.hero h1 {
  font-size: clamp(56px, 15.5vw, 148px);
  margin: 14px 0 20px;
}
.hero h1 .l2 { color: var(--haz); }
.hero h1 .l3 { -webkit-text-stroke: 1.5px var(--bone); color: transparent; }

.hero-sub {
  max-width: 52ch;
  color: var(--dim);
  font-size: clamp(15.5px, 2.2vw, 18px);
}
.hero-sub strong { color: var(--bone); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 34px;
}
.hero-ticks span {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-ticks i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--haz);
}
.hero-ticks span:nth-child(2) i { background: var(--esc); }
.hero-ticks span:nth-child(3) i { background: var(--spl); }

/* ── zones ────────────────────────────────────────────────────────────────── */

.zones { padding: clamp(52px, 9vh, 100px) 0; }

.sec-head { margin-bottom: clamp(26px, 5vh, 44px); }
.sec-head h2 { font-size: clamp(34px, 8vw, 64px); margin-top: 10px; }
.sec-head p { color: var(--dim); max-width: 56ch; margin-top: 12px; }

.zone-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .zone-grid { grid-template-columns: repeat(3, 1fr); } }

.zone {
  --zone: var(--haz);
  position: relative;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  overflow: clip;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.zone:hover { transform: translateY(-3px); border-color: var(--zone); }
.zone::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--zone);
}
.zone--esc { --zone: var(--esc); }
.zone--spl { --zone: var(--spl); }

.zone-ico { width: 52px; height: 52px; color: var(--zone); }
.zone-ico svg { width: 100%; height: 100%; }

.zone .num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--display);
  font-size: 40px;
  color: color-mix(in srgb, var(--zone) 26%, transparent);
}
.zone h3 { font-family: var(--display); font-size: 27px; text-transform: uppercase; letter-spacing: 0.02em; }
.zone p { color: var(--dim); font-size: 14.5px; }
.zone .go {
  margin-top: auto;
  font-family: var(--label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zone);
}

/* ── booking grid ─────────────────────────────────────────────────────────── */

.book { padding: clamp(52px, 9vh, 100px) 0; background: var(--steel); border-block: 1px solid var(--line); }

.card-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.xp {
  --zone: var(--haz);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: clip;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.xp:hover { transform: translateY(-3px); border-color: var(--zone); }
/* Zone tint rotates card by card — three zones, three colours, any catalogue. */
.card-grid .xp:nth-child(3n + 2) { --zone: var(--esc); }
.card-grid .xp:nth-child(3n) { --zone: var(--spl); }

.xp-plate {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--zone) 30%, var(--coal)), var(--coal) 78%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.xp-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.55), transparent 55%);
}
.xp-plate .idx {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: color-mix(in srgb, var(--bone) 88%, transparent);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.xp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--zone);
  color: var(--coal);
  font-family: var(--label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
}

.xp-body { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; flex: 1; }
.xp-meta {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}
.xp h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; letter-spacing: 0.02em; }
.xp h3 a { text-decoration: none; }
.xp h3 a:hover { color: var(--zone); }
/* The whole card clicks through to the detail page. */
.xp h3 a::after { content: ''; position: absolute; inset: 0; }
.xp-sum { color: var(--dim); font-size: 14px; }
.xp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.xp-price { font-family: var(--display); font-size: 22px; color: var(--zone); }
.xp-price small { font-family: var(--label); font-size: 11px; letter-spacing: 0.1em; color: var(--dim); }
/* The Book button must stay clickable OVER the card's stretched link. */
.xp-row .btn { position: relative; z-index: 1; min-height: 42px; padding: 0 18px; font-size: 12px; background: var(--zone); }
.xp-row .btn:hover { filter: brightness(1.12); }

/* ── week planner ─────────────────────────────────────────────────────────── */

.week { padding: clamp(52px, 9vh, 100px) 0; }

.week-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--line) transparent;
}

.day {
  scroll-snap-align: start;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 210px;
  display: flex;
  flex-direction: column;
}
.day.today { border-color: var(--haz); }
.day.today .day-head { color: var(--haz); }
.day-head {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.day-head b { font-family: var(--display); font-size: 19px; font-weight: 400; }
.day-body { display: grid; gap: 6px; padding: 10px; align-content: start; }

.slot {
  position: relative;
  text-align: left;
  background: var(--coal);
  border: 1px solid var(--line);
  border-left: 3px solid var(--haz);
  border-radius: 3px;
  padding: 8px 10px 9px;
  color: var(--bone);
  font-family: var(--body);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.slot:hover { transform: translateY(-1px); border-color: var(--dim); }
.slot .t { font-family: var(--label); font-weight: 600; font-size: 11.5px; letter-spacing: 0.1em; color: var(--dim); display: block; }
.slot .n { font-weight: 600; font-size: 13.5px; display: block; margin-top: 1px; }
.slot .s { font-size: 11.5px; color: var(--faint); display: block; margin-top: 2px; }
.slot.full { opacity: 0.45; cursor: default; }

.day-quiet { padding: 14px 12px; color: var(--faint); font-size: 13px; }

/* ── parties ──────────────────────────────────────────────────────────────── */

.parties {
  position: relative;
  padding: clamp(52px, 9vh, 100px) 0;
  background: var(--steel);
  border-block: 1px solid var(--line);
  overflow: clip;
}
.parties .hero-splats { opacity: 0.35; }

.party-grid { display: grid; gap: 14px; margin-top: 26px; }
@media (min-width: 760px) { .party-grid { grid-template-columns: repeat(3, 1fr); } }
.party {
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.party h3 { font-family: var(--display); font-size: 21px; text-transform: uppercase; margin-bottom: 6px; }
.party p { color: var(--dim); font-size: 14px; }
.party .label { display: block; margin-bottom: 10px; color: var(--haz); }
.party:nth-child(2) .label { color: var(--esc); }
.party:nth-child(3) .label { color: var(--spl); }

/* ── rules / how it works ─────────────────────────────────────────────────── */

.rules { padding: clamp(52px, 9vh, 100px) 0; }

.steps { display: grid; gap: 12px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  counter-increment: step;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.step::before {
  content: '0' counter(step);
  font-family: var(--display);
  font-size: 34px;
  color: var(--haz);
  display: block;
  margin-bottom: 8px;
}
.step:nth-child(2)::before { color: var(--esc); }
.step:nth-child(3)::before { color: var(--spl); }
.step:nth-child(4)::before { color: var(--haz); }
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step p { color: var(--dim); font-size: 13.5px; }

.safety {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.safety span {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.faq { padding: clamp(52px, 9vh, 100px) 0; background: var(--steel); border-top: 1px solid var(--line); }

.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  font-weight: 600;
  font-size: 15.5px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 22px;
  color: var(--haz);
  flex: none;
}
.qa[open] summary::after { content: '–'; }
.qa div { padding: 0 0 18px; color: var(--dim); font-size: 14.5px; max-width: 68ch; }

/* ── footer ───────────────────────────────────────────────────────────────── */

.foot { padding: clamp(46px, 8vh, 80px) 0 110px; }
@media (min-width: 900px) { .foot { padding-bottom: 46px; } }

.foot-grid { display: grid; gap: 34px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; } }

.foot .brand { font-size: 26px; }
.foot-tag { color: var(--dim); margin-top: 10px; max-width: 34ch; }

.foot h4 {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.foot .col a, .foot .col p {
  display: block;
  color: var(--dim);
  text-decoration: none;
  font-size: 14px;
  padding: 3.5px 0;
}
.foot .col a:hover { color: var(--bone); }

.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: 12.5px;
}
.foot-bottom a { color: var(--dim); text-decoration: none; }
.foot-bottom a:hover { color: var(--bone); }
.foot-bottom button[data-bookuble-cookies] {
  background: none;
  border: 0;
  color: var(--dim);
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.foot-bottom button[data-bookuble-cookies]:hover { color: var(--bone); }

/* ── sticky mobile book bar ───────────────────────────────────────────────── */

.bookbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--coal) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.bookbar .btn { width: 100%; }
.bookbar.hidden { transform: translateY(110%); }
@media (min-width: 900px) { .bookbar { display: none; } }

/* ── detail page (experience.html) ────────────────────────────────────────── */

.xhero { position: relative; padding: clamp(40px, 8vh, 80px) 0 clamp(30px, 5vh, 54px); overflow: clip; isolation: isolate; }
/* One splat, mostly out of frame — at this section's height the home hero's
   placement left a clipped blob floating in the blank top corner. */
.xhero .hero-splats .s1 { top: -170px; right: -170px; width: min(85vw, 540px); }
.xhero .back {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
}
.xhero .back:hover { color: var(--bone); }
.xhero h1 { font-size: clamp(40px, 11vw, 92px); margin: 16px 0 10px; }
.xhero .sum { color: var(--dim); font-size: clamp(15.5px, 2.2vw, 18px); max-width: 56ch; }

.xmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.xmeta span {
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
}
.xmeta .price { background: var(--haz); border-color: var(--haz); color: var(--coal); }

.ximg {
  aspect-ratio: 16 / 8;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, color-mix(in srgb, var(--haz) 24%, var(--coal)), var(--coal) 80%);
  background-size: cover;
  background-position: center;
  margin-top: 30px;
}

.xbody { padding: clamp(34px, 6vh, 64px) 0 clamp(60px, 9vh, 110px); }
.xcols { display: grid; gap: 44px; }
@media (min-width: 900px) { .xcols { grid-template-columns: 1.6fr 1fr; align-items: start; } }

.xdesc { color: var(--dim); font-size: 16px; display: grid; gap: 14px; max-width: 68ch; }
.xdesc p { margin: 0; }

.xsec { margin-top: 38px; }
.xsec h2 { font-family: var(--display); font-size: clamp(24px, 5vw, 34px); text-transform: uppercase; margin-bottom: 16px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  list-style: none;
  font-family: var(--label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--bone);
}

.xlist { display: grid; gap: 10px; }
.xlist li {
  list-style: none;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.xlist b { display: block; font-size: 14.5px; }
.xlist span { color: var(--dim); font-size: 13.5px; }

.xgal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.xgal img { border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 4/3; object-fit: cover; }

.xaside {
  position: sticky;
  top: 80px;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.xaside .xp-price { font-size: 34px; }
.xaside .fine { color: var(--faint); font-size: 12.5px; }
.xaside .row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--dim); padding: 6px 0; border-bottom: 1px solid var(--line); }
.xaside .row b { color: var(--bone); font-weight: 600; }

/* Next openings — real seat-checked times, each a one-tap book with the slot
   preselected. Same chip language as the week board's session slots. */
.xopen { display: grid; gap: 8px; }
.xopen-k {
  font-family: var(--label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.xslots { display: grid; gap: 6px; }
.xslot {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  background: var(--steel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--haz);
  border-radius: var(--radius);
  color: var(--dim);
  font-family: var(--label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}
.xslot b { color: var(--bone); font-weight: 600; }
.xslot .go { margin-left: auto; color: var(--haz); }
.xslot:hover { border-color: var(--haz); color: var(--bone); }
.xslot:focus-visible { outline: 2px solid var(--haz); outline-offset: 2px; }

/* ── reveal on scroll (progressive; everything visible without JS) ───────── */

.rv { opacity: 1; transform: none; }
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js .rv.in { opacity: 1; transform: none; }

/* The composer reveals this when a section is capped — see the sections contract. */
.viewall { display: flex; width: max-content; margin: 28px auto 0; }
.viewall[hidden] { display: none; }
