/* =================== TOKENS =================== */
:root {
  --bg: #f7f5f0;
  --bg-2: #f1ede4;
  --surface: #ffffff;
  --ink: #0e1015;
  --ink-2: #1a1d24;
  --text: #0e1015;
  --muted: #6e6c66;
  --muted-2: #727069;
  --hairline: #e8e4dc;
  --hairline-strong: #d9d3c6;
  --gold: #bd8b3c;
  --gold-2: #a87726;
  --gold-text:#946425;  /* WCAG AA on cream — use for small body text */
  --gold-soft: #e9d6a7;
  --green: #3e7c5d;
  --green-soft: #d8e6dd;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(14,16,21,.04), 0 1px 1px rgba(14,16,21,.03);
  --shadow: 0 4px 24px rgba(14,16,21,.04), 0 1px 2px rgba(14,16,21,.05);
  --shadow-lg: 0 24px 60px rgba(14,16,21,.08), 0 4px 12px rgba(14,16,21,.04);
  --shadow-card: 0 30px 80px -20px rgba(14,16,21,.18), 0 8px 24px -8px rgba(14,16,21,.08);
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01","cv11","tnum";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* =================== TYPE PRIMITIVES =================== */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.gold { color: var(--gold-text); }
.eyebrow.ink { color: var(--ink); }
.mono {
  font-family: var(--mono);
  font-feature-settings: "tnum","ss01";
}
.tnum { font-variant-numeric: tabular-nums; }
.italic-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 6px 16px -6px rgba(189,139,60,.6);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: #000; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 14px; font-size: 13px; }
.arrow { font-family: var(--mono); font-weight: 500; }

/* =================== HEADER =================== */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,245,240,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--ink);
  position: relative;
  display: grid;
  place-items: center;
}
.brand-mark::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.brand-name { font-weight: 600; }
.brand-name b { font-weight: 600; }
.brand-name span { color: var(--muted); font-weight: 500; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
}
.nav-signin:not(.btn) { color: var(--muted); }
.nav-signin:not(.btn):hover { color: var(--ink); }
.nav-admin {
  color: var(--gold) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-admin::before { content: "● "; font-size: 9px; vertical-align: 2px; }
.nav-admin:hover { color: var(--ink) !important; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,124,93,.4); }
  50% { box-shadow: 0 0 0 6px rgba(62,124,93,0); }
}

/* =================== BREADCRUMB =================== */
.crumbs {
  padding: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.crumbs a { color: var(--muted); transition: color .2s var(--ease); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--muted-2); }
.crumbs .current { color: var(--ink); }

/* =================== HERO (VENUE) =================== */
.venue-hero {
  padding: 28px 0 88px;
  position: relative;
  overflow: hidden;
}
.venue-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 92% 8%, rgba(189,139,60,.10), transparent 60%),
    radial-gradient(50% 40% at 0% 40%, rgba(14,16,21,.04), transparent 60%);
  pointer-events: none;
}
.venue-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.venue-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  color: var(--ink);
  text-transform: uppercase;
}
.venue-eyebrow .sep { color: var(--muted-2); }
.venue-eyebrow .tier {
  color: var(--gold);
  font-weight: 600;
}

.venue-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 96px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}
.venue-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 540px;
  letter-spacing: -0.01em;
}
.venue-addr {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 18px;
}
.venue-addr b { color: var(--ink); font-weight: 600; }
.venue-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Variant B banner — full-width bespoke cover above the venue hero.
   The cover stretches edge-to-edge at 340px tall. Per-cover typography
   and positioning overrides live in `covers-banner.css` (loaded after
   covers.css) so each composition reads correctly at banner ratio (~4:1)
   instead of the native 16:10 card.

   The cover itself is positioned absolute-inset:0 inside .vb-banner so
   children find a positioning context. The `.tier-pill` indicator sits
   in the top-right corner. No fade overlay — was destroying text legibility
   on dark covers. */
.vb-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline, #e8e4dc);
}
/* Mobile: revert to the native 16:10 aspect the covers were designed for.
   The desktop per-cover overrides in covers-banner.css are wrapped in
   `@media (min-width: 721px)` so they don't apply at this breakpoint —
   each cover renders with its original card-format composition. */
@media (max-width: 720px) {
  .vb-banner {
    height: auto;
    aspect-ratio: 16/10;
  }
}
.vb-banner .cover {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}
.vb-banner .cover-inner {
  position: absolute;
  inset: 0;
}
.vb-banner .tier-pill {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px; height: 26px;
  padding: 0 9px;
  background: rgba(189,139,60,.94);
  color: #fff;
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
}
@media (max-width: 720px) {
  .vb-banner { height: 240px; }
}

/* =================== PRICING CARD (CENTERPIECE) =================== */
.price-stage {
  position: relative;
  display: flex;
  justify-content: center;
}
.price-card-x {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card-x:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 90px -20px rgba(14,16,21,.22), 0 10px 28px -8px rgba(14,16,21,.1);
}
.price-card-x::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  opacity: .95;
  z-index: 2;
}

.pcx-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, #fefdfb, #fff);
}
.pcx-tab {
  padding: 18px 16px 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.pcx-tab + .pcx-tab { border-left: 1px solid var(--hairline); }
.pcx-tab .price-tiny {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted-2);
  font-weight: 500;
}
.pcx-tab.active {
  color: var(--ink);
  background: #fff;
  border-bottom-color: var(--gold);
}
.pcx-tab.active .price-tiny { color: var(--muted); }

.pcx-body {
  padding: 32px 32px 24px;
}
.pcx-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.pcx-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pcx-tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #f3e6c7, #e6d29a);
  color: #6b4a17;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #d6bd86;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.pcx-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0 4px;
}
.pcx-price {
  font-family: var(--mono);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-size: 64px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pcx-per {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.pcx-divider {
  height: 1px;
  background: var(--hairline);
  margin: 22px 0 18px;
}
.pcx-incl {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.pcx-incl li {
  display: block;
  position: relative;
  padding: 5px 0 5px 26px;
}
.pcx-incl li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 3.5px),
    rgba(189,139,60,0.08);
  border: 1px solid rgba(189,139,60,.28);
}
.pcx-incl li b { color: var(--ink); font-weight: 600; }

.pcx-footer {
  padding: 18px 32px 22px;
  background: #fbf9f4;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcx-cta {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 0 1px rgba(189,139,60,0.4), 0 10px 28px -8px rgba(189,139,60,0.45);
  transition: all .2s var(--ease);
}
.pcx-cta:hover { background: var(--gold-2); transform: translateY(-1px); }
.pcx-switch {
  text-align: center;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color .2s var(--ease);
}
.pcx-switch:hover { color: var(--gold-2); }

/* =================== EDITORIAL "WHY THIS ROOM IS HARD" =================== */
.editorial {
  padding: 96px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: #fbf9f4;
}
.editorial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.editorial .eyebrow {
  color: var(--gold);
  display: inline-block;
  margin-bottom: 28px;
}
.editorial h2 {
  font-family: var(--sans);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 32px;
  line-height: 1.08;
}
.editorial h2 .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.editorial p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.editorial p.muted {
  color: var(--muted);
}
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.32;
  color: var(--gold);
  margin: 40px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  letter-spacing: -0.015em;
}

/* =================== THREE RULES =================== */
.rules {
  background: var(--bg);
  padding: 96px 0;
  border-bottom: 1px solid var(--hairline);
}
.rules-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.rules-head h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  line-height: 1.05;
}
.rules-head h2 .serif {
  font-family: var(--serif); font-style: italic; font-weight: 500;
}
.rules-head .copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 460px;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* `.rule` is the venue-page "Three rules" card component, scoped to
   .rules-grid to avoid leaking into bespoke cover artwork (covers.css
   uses `.rule` for hairlines inside ~30 covers like cover-rolf-s,
   cover-keens-steakhouse, cover-bad-roman, etc.). */
.rules-grid .rule {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px 32px 36px;
  position: relative;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.rules-grid .rule:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.rule-glyph {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 58px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  display: block;
}
.rules-grid .rule h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  color: var(--ink);
}
.rules-grid .rule p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.rules-grid .rule .tag {
  margin-top: 22px;
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* =================== WHAT TO EXPECT (FILMSTRIP) =================== */
.expect {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg), #f1ede4 100%);
}
.expect-head {
  text-align: center;
  margin-bottom: 56px;
}
.expect-head .eyebrow { color: var(--gold); margin-bottom: 18px; display: inline-block; }
.expect-head h2 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.05;
}
.expect-head h2 .serif {
  font-family: var(--serif); font-style: italic; font-weight: 500;
}
.filmstrip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fs-step {
  padding: 36px 26px;
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background .25s var(--ease);
}
.fs-step:last-child { border-right: none; }
.fs-step:hover { background: #fbf9f4; }
.fs-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fs-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline-strong) 0, var(--hairline-strong) 3px, transparent 3px, transparent 6px);
}
.fs-step:last-child .fs-num::after {
  background: transparent;
}
.fs-step h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.28;
}
.fs-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* =================== OTHER ROOMS =================== */
.other-rooms {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.or-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.or-head .left { max-width: 640px; }
.or-head .eyebrow { color: var(--gold); margin-bottom: 14px; display: inline-block; }
.or-head h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.08;
}
.or-head h2 .serif {
  font-family: var(--serif); font-style: italic; font-weight: 500;
}
.or-head .browse {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all .2s var(--ease);
}
.or-head .browse:hover { border-color: var(--gold); color: var(--gold); }

.or-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.or-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}
.or-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.or-cover {
  aspect-ratio: 1.7 / 1;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--hairline);
}
.or-cover .mono-art {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
}
.or-cover.torrisi {
  background:
    radial-gradient(80% 90% at 30% 20%, rgba(189,139,60,.18), transparent 60%),
    linear-gradient(135deg, #f3eee0 0%, #e8dfcb 100%);
}
.or-cover.torrisi .mono-art { color: #6b4a17; }
.or-cover.donangie {
  background:
    radial-gradient(80% 90% at 70% 30%, rgba(189,139,60,.16), transparent 65%),
    linear-gradient(135deg, #2a2520 0%, #1a1612 100%);
}
.or-cover.donangie .mono-art {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.or-cover.rezdora {
  background:
    radial-gradient(60% 80% at 60% 80%, rgba(189,139,60,.20), transparent 60%),
    linear-gradient(135deg, #f7f1e3 0%, #ead7b3 100%);
}
.or-cover.rezdora .mono-art { color: var(--gold-2); }
.or-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(189,139,60,.04) 14px, rgba(189,139,60,.04) 15px);
  pointer-events: none;
}

/* ============================================================
   BESPOKE SIBLING COVERS — scoped sizing overrides
   The .cover-<slug> classes in covers.css were designed for the
   168-covers gallery's grid card (~480px wide at 16:10). The
   sibling card is smaller (~340px at 1.7:1). We wrap the gallery's
   .cover element inside .or-cover.or-cover-bespoke and let it fill
   the wrapper. Per-cover internals (font sizes, dot grids, etc.)
   are left untouched — the cover-<slug>-N classes themselves are
   the design source-of-truth and should not be modified here.
   ============================================================ */
.or-cover.or-cover-bespoke {
  /* aspect-ratio inherited from .or-cover (1.7/1). The inner .cover
     element shouldn't double-impose 16/10; we override it to fill. */
  padding: 0;
  display: block;
}
.or-cover.or-cover-bespoke::after {
  /* Remove the diagonal hairline overlay — bespoke covers have their
     own ornament and the overlay muddies them. */
  display: none;
}
.or-cover-bespoke .cover {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}
.or-cover-bespoke .cover-inner {
  position: absolute;
  inset: 0;
}
/* The bespoke-cover tier-pill (top-right pip) overlaps slightly with
   the or-card's own gold "Tier I" label below, but in the sibling
   context the pill is in the cover area so it reads cleanly. */
.or-cover-bespoke .tier-pill { z-index: 5; }

.or-body {
  padding: 22px 24px 22px;
}
.or-tier {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.or-tier .pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.or-name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.1;
}
.or-loc {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}
.or-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.or-price {
  font-family: var(--mono);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.or-price em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.or-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 8px;
  transition: all .2s var(--ease);
}
.or-card:hover .or-link {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* =================== FINAL CTA =================== */
.final-cta {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(189,139,60,.16), transparent 50%);
  pointer-events: none;
}
.final-inner {
  text-align: center;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.final-eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
}
.final-cta h2 {
  font-size: 68px;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 28px;
  color: #fff;
}
.final-cta h2 .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.final-cta p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin: 0 auto 40px;
}
.final-cta .ctas {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 28px;
}
.btn-on-dark-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn-on-dark-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.final-cta .micro {
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  letter-spacing: 0.04em;
}

/* =================== FOOTER =================== */
footer.site {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .brand-mark { background: #fff; }
.footer-brand .brand-mark::after { background: var(--gold); }
.footer-brand .name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 12px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.5);
  max-width: 300px;
  margin: 14px 0 0;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  transition: color .2s var(--ease);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom .legal {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-bottom .legal a:hover { color: #fff; }
.footer-disclosure {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.32);
  letter-spacing: 0.005em;
}
.footer-disclosure b { color: rgba(255,255,255,.6); font-weight: 600; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1080px) {
  .venue-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .venue-name { font-size: 72px; }
  .rules-head { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .filmstrip { grid-template-columns: repeat(2, 1fr); }
  .fs-step { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .or-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* =================== MOBILE NAV (hamburger + drawer) =================== */
/* The hamburger button is hidden on desktop, shown on mobile.
   The drawer slides down from under the header when toggled open. */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 90;
  padding: 18px 20px 36px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.nav-drawer[hidden] { display: none; }

/* Account row at top — Sign in stands out as an outlined button,
   Create account is a secondary gold link. */
.nav-drawer-account {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.nav-drawer-signin {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav-drawer-signin:hover { background: var(--ink); color: #fff; }
.nav-drawer-signup {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .01em;
}
.nav-drawer-signup:hover { color: var(--gold-2, var(--gold)); }

/* Section labels — small caps mono dividers between groups. */
.nav-drawer-section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 4px 6px;
  border-top: 1px solid var(--hairline);
  margin-top: 4px;
}
.nav-drawer-section-label:first-child,
.nav-drawer-account + .nav-drawer-section-label { border-top: 0; padding-top: 0; margin-top: 0; }

/* Primary nav links (italic serif, big and tappable). */
.nav-drawer-link {
  display: block;
  padding: 14px 4px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}
.nav-drawer-link:hover { color: var(--gold); }

/* City sublinks under "Cities" section (compact, mono caps). */
.nav-drawer-sublink {
  display: block;
  padding: 10px 4px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-drawer-sublink:hover { color: var(--gold); }

/* Bottom CTA — full-width gold button. */
.nav-drawer-cta {
  margin-top: 28px;
  justify-content: center;
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

@media (max-width: 720px) {
  .wrap, .wrap-wide { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .venue-hero { padding: 32px 0 60px; }
  .venue-name { font-size: 56px; }
  .venue-tagline { font-size: 20px; }
  .editorial h2 { font-size: 30px; }
  .pullquote { font-size: 22px; }
  .rules-head h2 { font-size: 34px; }
  .expect-head h2 { font-size: 30px; }
  .or-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .or-head h2 { font-size: 28px; }
  .or-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 40px; }
  .filmstrip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pcx-price { font-size: 52px; }
}
