:root {
  --red: #ee1717;
  --ink: #080705;
  --paper: #fffaf0;
  --gold: rgba(255,250,240,.74);
  --line: transparent;
  --muted: rgba(255,250,240,.68);
  --soft: rgba(255,250,240,.07);
  --max: 1240px;
  --radius: 0;
  --radius-sm: 0;
  --pill: 999px;
  --display: "GT Flexa Compressed", Georgia, "Times New Roman", serif;
  --page-rail: min(calc(100% - 80px), 1820px);
  --page-rail-mobile: min(calc(100% - 32px), 1820px);
  --page-gutter: max(40px, calc((100vw - 1820px) / 2));
  --page-gutter-mobile: 16px;
}
@font-face {
  font-family: "GT Flexa Compressed";
  src: url("assets/GT-Flexa-X-Compressed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ink); color: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid rgba(255,250,240,.42);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--pill);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid rgba(255,250,240,.72);
  outline-offset: 4px;
}
.launch-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 112px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(8,7,5,.36), rgba(8,7,5,0));
}
.launch-nav::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(0,0,0,.48);
  opacity: 0;
  transition: opacity 180ms ease;
}
.launch-nav.is-menu-open::after {
  opacity: 1;
}
.launch-nav.is-scrolled {
  background: linear-gradient(180deg, rgba(8,7,5,.92), rgba(8,7,5,.68) 58%, rgba(8,7,5,0));
}
.launch-nav-inner {
  position: relative;
  z-index: 2;
  width: var(--page-rail);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(220px, 1fr) minmax(150px, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 14px;
}
.launch-brand {
  --brand-progress: 0;
  --brand-wordmark-width: clamp(146px, 12vw, 232px);
  --brand-icon-size: clamp(16px, 1.22vw, 18px);
  --brand-gap: 5px;
  display: inline-flex;
  align-items: flex-start;
  gap: var(--brand-gap);
  min-height: 44px;
  width: max-content;
  max-width: min(42vw, 310px);
  color: #fff;
  transition: none;
}
.launch-brand-wordmark-frame {
  width: auto;
  height: 23.8px;
  overflow: hidden;
  flex: 0 0 auto;
  margin-top: 4px;
  transform: translateX(0);
  transform-origin: left center;
  opacity: 1;
  line-height: 0;
  transition: none;
}
.launch-brand-wordmark {
  width: auto;
  height: 23.8px;
  max-height: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.launch-brand-icon-frame {
  width: var(--brand-icon-size);
  height: var(--brand-icon-size);
  flex: 0 0 auto;
  transform-origin: left top;
  transition: none;
}
.launch-brand-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform-origin: center;
  animation: kermessAsteriskSpin 26s linear infinite;
}
.launch-actions {
  position: relative;
  z-index: 3;
  grid-column: 3;
  justify-self: end;
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 2px;
  width: max-content;
}
.launch-links {
  position: absolute;
  z-index: 4;
  right: 0;
  top: calc(100% + 2px);
  width: max-content;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  justify-items: end;
  opacity: 1;
  visibility: hidden;
  pointer-events: none;
  max-height: 64px;
  overflow: hidden;
  transition: max-height 520ms cubic-bezier(.77,0,.175,1), visibility 0s linear 420ms;
}
.launch-links::before {
  content: "";
  position: absolute;
  right: 0;
  top: -24px;
  width: min(260px, calc(100% + 44px));
  height: 24px;
  background: transparent;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: auto;
}
.launch-nav.is-menu-open.is-about-open .launch-links::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 40px;
  width: min(310px, calc(100% + 64px));
  height: 138px;
  background: transparent;
  clip-path: polygon(100% 0, 100% 100%, 0 64%);
  pointer-events: auto;
}
.launch-nav.is-menu-open .launch-links {
  visibility: visible;
  pointer-events: auto;
  max-height: calc(100vh - 150px);
  overflow: visible;
  padding: 10px 16px 12px 28px;
  margin: -10px -16px -12px -28px;
  transition: max-height 520ms cubic-bezier(.77,0,.175,1), visibility 0s;
}
.launch-nav.is-menu-open .launch-links a:first-child {
  display: none;
}
.launch-menu-toggle,
.launch-cta,
.launch-links a {
  position: relative;
  z-index: 1;
  min-height: 0;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 8px 14px 10px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0;
  font-family: var(--display);
  font-size: clamp(46px, 3.8vw, 62px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 0;
  text-transform: none;
  text-align: right;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, opacity 200ms ease;
}
.launch-menu-toggle {
  position: relative;
  cursor: pointer;
}
.launch-menu-toggle-icon { display: none; }
.launch-links a:hover,
.launch-links a:focus-visible,
.launch-cta:hover,
.launch-menu-toggle:hover {
  background: var(--red);
  color: #fff;
}
.button { min-height: 44px; padding: 0 18px; border: 1px solid rgba(255,250,240,.28); border-radius: 0; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: transparent; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.button.primary { border-color: var(--red); background: var(--red); }
.button.ghost { background: rgba(255,250,240,.05); }
.launch-links a, .launch-menu-toggle, .launch-cta, .button, .chip {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.launch-links a {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    opacity 260ms ease,
    transform 340ms cubic-bezier(.22, 1, .36, 1),
    background-color 180ms ease,
    color 180ms ease;
  will-change: opacity, transform;
}
.launch-links a:nth-child(2) { transition-delay: 160ms; }
.launch-links a:nth-child(3) { transition-delay: 120ms; }
.launch-links a:nth-child(4) { transition-delay: 80ms; }
.launch-links a:nth-child(5) { transition-delay: 40ms; }
.launch-links a:nth-child(6) { transition-delay: 0ms; }
.launch-links a:nth-child(7) { transition-delay: 0ms; }
.launch-links a:nth-child(8) { transition-delay: 0ms; }
.launch-links a:nth-child(9) { transition-delay: 0ms; }
.launch-nav.is-menu-open .launch-links a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.launch-nav.is-menu-open .launch-links a:nth-child(2) { transition-delay: 20ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(3) { transition-delay: 60ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(4) { transition-delay: 100ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(5) { transition-delay: 140ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(6) { transition-delay: 180ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(7) { transition-delay: 220ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(8) { transition-delay: 260ms; }
.launch-nav.is-menu-open .launch-links a:nth-child(9) { transition-delay: 300ms; }
.launch-links a.launch-sub-link {
  display: none;
  max-height: 0;
  margin-right: 0;
  padding: 0 4px;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  color: rgba(255,250,240,.74);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(12px, .92vw, 15px);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 280ms var(--motion-ease),
    padding 280ms var(--motion-ease),
    opacity 180ms ease,
    transform 260ms var(--motion-ease),
    color 180ms ease;
}
.launch-nav.is-menu-open .launch-links a.launch-sub-link {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
}
.launch-nav.is-menu-open.is-about-open .launch-links a.launch-sub-link,
.launch-nav.is-menu-open .launch-links:has(a[href="launch-story.html"]:hover) a.launch-sub-link,
.launch-nav.is-menu-open .launch-links:has(a[href="launch-story.html"]:focus-visible) a.launch-sub-link,
.launch-nav.is-menu-open .launch-links:has(a.launch-sub-link:hover) a.launch-sub-link,
.launch-nav.is-menu-open .launch-links:has(a.launch-sub-link:focus-visible) a.launch-sub-link {
  display: inline-flex;
  max-height: 34px;
  padding: 6px 4px 5px;
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.launch-links a.launch-sub-link:hover,
.launch-links a.launch-sub-link:focus-visible {
  background: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.button:hover, .chip:hover { transform: translateY(-1px); }
.button:active, .chip:active { transform: translateY(0); }
.button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}
.page { width: var(--page-rail); margin: 0 auto; padding: clamp(56px, 8vw, 108px) 0; }
.launch-nav + .page,
.skip-link + .launch-nav + .page {
  padding-top: clamp(116px, 12vw, 160px);
}
.hero {
  position: relative;
  min-height: 100svh;
  margin: calc(-1 * clamp(116px, 12vw, 160px)) calc(50% - 50vw) 0;
  padding: clamp(118px, 18vh, 220px) var(--page-gutter) clamp(42px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, min(1180px, 76vw)) auto;
  gap: 30px;
  align-items: end;
  border-bottom: 0;
  overflow: hidden;
  background: #070604;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,6,4,.7) 0%, rgba(7,6,4,.32) 38%, rgba(7,6,4,.08) 72%),
    linear-gradient(0deg, rgba(7,6,4,.76) 0%, rgba(7,6,4,.22) 44%, rgba(7,6,4,.32) 100%);
  pointer-events: none;
}
.hero > div {
  position: relative;
  z-index: 2;
  max-width: min(1180px, 76vw);
  min-width: 0;
  align-self: end;
}
.hero h1, .display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(118px, 15.6vw, 230px);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 400;
  text-shadow: 0 10px 44px rgba(0,0,0,.44);
}
.hero p, .lead { max-width: 640px; margin: 18px 0 0; color: rgba(255,250,240,.84); font-size: clamp(16px, 1.25vw, 21px); line-height: 1.45; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255,250,240,.06);
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; min-height: 100svh; object-fit: cover; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: clamp(54px, 8vw, 96px) 0; border-bottom: 1px solid rgba(255,250,240,.08); }
.menu-section { border-bottom: 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 430px); gap: 36px; align-items: end; margin-bottom: 30px; }
.section h2 { margin: 0; font-family: var(--display); font-size: clamp(46px, 7vw, 100px); line-height: .84; letter-spacing: 0; font-weight: 400; }
.section-head p, .muted { color: var(--muted); line-height: 1.55; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
#menu-grid.grid-3 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.panel, .show-panel, .faq-item, .menu-item, .event-card { border: 0; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,250,240,.088), rgba(255,250,240,.052)); padding: clamp(20px, 3vw, 32px); overflow: hidden; box-shadow: none; }
.show-panel { display: grid; gap: 20px; }
.show-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 0; border-radius: var(--radius-sm); }
h2, h3, p { overflow-wrap: anywhere; }
h3 { margin: 0; font-family: var(--display); font-size: clamp(34px, 4.6vw, 62px); line-height: .86; font-weight: 400; letter-spacing: 0; }
p { line-height: 1.55; }
.meta { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.rule-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.rule-list li { padding-top: 12px; border-top: 1px solid var(--line); color: rgba(255,250,240,.78); line-height: 1.45; }
.form { display: grid; gap: 12px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field { display: grid; gap: 8px; }
.field label {
  color: rgba(255,250,240,.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.required { color: var(--gold); }
.form input, .form select, .form textarea { width: 100%; min-height: 48px; border: 1px solid rgba(255,250,240,.22); border-radius: var(--radius-sm); background: rgba(255,250,240,.08); color: var(--paper); padding: 0 14px; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: rgba(255,250,240,.62);
  background: rgba(255,250,240,.12);
}
.form textarea { min-height: 120px; padding-top: 14px; resize: vertical; }
.form select option { color: #111; }
.form-note { min-height: 22px; color: var(--gold); font-size: 13px; line-height: 1.4; }
.menu-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.chip { min-height: 44px; padding: 0 16px; border: 0; border-radius: 0; background: rgba(255,250,240,.075); color: var(--paper); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.chip.is-active { background: var(--red); border-color: var(--red); }
.menu-item { display: grid; gap: 12px; }
.menu-item-image { margin: 0 0 4px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: calc(var(--radius) - 8px); background: rgba(255,255,255,.08); box-shadow: 0 0 0 1px rgba(0,0,0,.1); }
.menu-item-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.menu-item strong { font-size: 19px; }
.price { color: var(--gold); font-weight: 900; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 16px; }
.gallery img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border: 0; border-radius: var(--radius); }
.gallery img:first-child { min-height: 536px; }
.footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 34px 0 48px; color: var(--muted); display: flex; justify-content: space-between; gap: 24px; font-size: 13px; }
.footer a { color: var(--paper); }
@media (max-width: 900px) {
  .launch-nav { height: auto; }
  .launch-nav-inner { width: var(--page-rail); min-height: 112px; height: auto; grid-template-columns: 1fr auto; gap: 14px 20px; padding: 12px 0; }
  .launch-actions { grid-column: 2; grid-row: 1; }
  .hero, .section-head, .grid-2, .grid-3, .field-grid, .gallery { grid-template-columns: 1fr; }
  #menu-grid.grid-3 { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 320px; }
  .gallery img:first-child, .gallery img { min-height: 260px; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  #menu-grid.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .launch-nav-inner, .page, .footer { width: var(--page-rail-mobile); }
  .launch-brand {
    --brand-wordmark-width: 96px;
    --brand-icon-size: 13px;
    --brand-gap: 5px;
    max-width: 132px;
  }
  .launch-brand-wordmark-frame { height: 17px; margin-top: 3px; }
  .launch-brand-wordmark { height: 17px; max-height: none; }
  .launch-actions { width: max-content; gap: 2px; }
  .launch-cta, .launch-menu-toggle, .launch-links a { padding: 6px 8px 8px; font-size: clamp(33px, 9vw, 40px); line-height: .82; }
  .launch-links a.launch-sub-link {
    padding: 0 4px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    line-height: 1.15;
  }
  .launch-nav.is-menu-open.is-about-open .launch-links a.launch-sub-link,
  .launch-nav.is-menu-open .launch-links:has(a[href="launch-story.html"]:hover) a.launch-sub-link,
  .launch-nav.is-menu-open .launch-links:has(a[href="launch-story.html"]:focus-visible) a.launch-sub-link,
  .launch-nav.is-menu-open .launch-links:has(a.launch-sub-link:hover) a.launch-sub-link,
  .launch-nav.is-menu-open .launch-links:has(a.launch-sub-link:focus-visible) a.launch-sub-link {
    padding: 6px 4px 5px;
  }
  .launch-links { width: max-content; min-width: 0; grid-template-columns: 1fr; gap: 2px; }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .page { padding-top: 42px; }
  .launch-nav + .page,
  .skip-link + .launch-nav + .page {
    padding-top: 128px;
  }
  .hero {
    margin-top: -128px;
    padding-right: var(--page-gutter-mobile);
    padding-left: var(--page-gutter-mobile);
  }
  .footer { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes kermessAsteriskSpin {
  to { rotate: 360deg; }
}

/* Dedicated show pages */
.show-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 560px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding-bottom: clamp(34px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,250,240,.08);
}
.show-hero--video {
  position: relative;
  min-height: calc(100svh - 72px);
  margin-inline: calc(50% - 50vw);
  margin-top: calc(-1 * clamp(56px, 8vw, 108px));
  padding: clamp(118px, 14vw, 188px) var(--page-gutter) clamp(58px, 8vw, 90px);
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  overflow: hidden;
  background: #080705;
}
.show-hero--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,7,5,.66) 0%, rgba(8,7,5,.44) 34%, rgba(8,7,5,.16) 68%, rgba(8,7,5,.36) 100%),
    linear-gradient(0deg, rgba(8,7,5,.58) 0%, rgba(8,7,5,.04) 42%, rgba(8,7,5,.26) 100%);
  pointer-events: none;
}
.show-hero--video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28%;
  background: linear-gradient(0deg, rgba(8,7,5,.72), rgba(8,7,5,0));
  pointer-events: none;
}
.show-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.06) brightness(.82);
}
.show-hero-video-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.show-hero-video-copy h1,
.show-hero-video-copy p,
.show-hero-video-copy .show-hero-note {
  text-shadow: 0 8px 38px rgba(0,0,0,.54);
}
.show-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 148px);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 400;
}
.show-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,250,240,.84);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.48;
}
.show-hero-media {
  position: relative;
  min-height: 520px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,250,240,.075);
  overflow: hidden;
}
.show-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.show-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(8,7,5,.88), rgba(8,7,5,0));
  pointer-events: none;
}
.show-hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,250,240,.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.show-hero-video-note {
  position: static;
  margin-top: 24px;
  justify-content: flex-start;
  gap: 22px;
  color: rgba(255,250,240,.78);
}
.show-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}
.show-fact {
  min-height: 112px;
  padding: 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,250,240,.075);
  display: grid;
  align-content: space-between;
  gap: 14px;
}
.show-fact span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.show-fact strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .88;
  letter-spacing: 0;
  font-weight: 400;
}
.show-ticket-bar {
  position: sticky;
  top: 73px;
  z-index: 20;
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid rgba(255,250,240,.08);
  background: rgba(8,7,5,.9);
  backdrop-filter: blur(16px);
}
.show-ticket-bar-inner {
  width: var(--page-rail);
  min-height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.show-ticket-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.show-ticket-copy strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .88;
  letter-spacing: 0;
  font-weight: 400;
  white-space: nowrap;
}
.show-ticket-copy span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}
.show-page-nav {
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid rgba(255,250,240,.08);
  background: rgba(8,7,5,.76);
}
.show-page-nav-inner {
  width: var(--page-rail);
  min-height: 54px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
}
.show-page-nav a {
  color: rgba(255,250,240,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.show-page-nav a:hover,
.show-page-nav a:focus-visible {
  color: #fff;
}
.show-section {
  padding: clamp(58px, 8vw, 104px) 0;
  border-bottom: 1px solid rgba(255,250,240,.08);
  scroll-margin-top: 150px;
}
.show-section h2 {
  max-width: 900px;
}
.show-section--tight {
  padding: clamp(36px, 5vw, 64px) 0;
}
.show-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,250,240,.14);
}
.show-proof,
.show-review {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background: #080705;
  display: grid;
  align-content: end;
}
.show-proof strong {
  display: block;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}
.show-review p {
  margin: 0;
  color: rgba(255,250,240,.86);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.35;
}
.show-review cite {
  margin-top: 20px;
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.show-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(300px, .55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.show-intro-copy {
  color: rgba(255,250,240,.78);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}
.show-intro-copy p:first-child {
  margin-top: 0;
}
.show-side-panel {
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,250,240,.09), rgba(255,250,240,.052));
  padding: clamp(22px, 3vw, 34px);
}
.show-side-panel h3 {
  margin-bottom: 18px;
}
.show-side-panel .rule-list {
  margin-top: 0;
}
.show-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .44fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}
.show-calendar-list {
  border-top: 1px solid rgba(255,250,240,.18);
}
.show-date-row {
  min-height: 118px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,250,240,.16);
  display: grid;
  grid-template-columns: minmax(110px, .24fr) minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}
.show-date-row time {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: .78;
}
.show-date-row h3 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
}
.show-date-row p {
  margin: 8px 0 0;
  color: var(--muted);
}
.show-buy-panel {
  padding: clamp(24px, 3vw, 36px);
  background: var(--red);
  color: #fff;
  display: grid;
  align-content: space-between;
  gap: 34px;
}
.show-buy-panel h3 {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(54px, 6vw, 92px);
}
.show-buy-panel p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.86);
  line-height: 1.45;
}
.show-buy-panel .button.primary {
  background: #fff;
  color: var(--red);
}
.show-buy-panel .button.primary:hover,
.show-buy-panel .button.primary:focus-visible {
  background: #080705;
  color: #fff;
}
.experience-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.experience-step {
  min-height: 260px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,250,240,.075);
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 28px;
}
.experience-step strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.experience-step h3 {
  font-size: clamp(26px, 3vw, 38px);
}
.experience-step p {
  margin: 0;
  color: var(--muted);
}
.show-media-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.show-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  object-fit: cover;
}
.show-media-grid img:first-child {
  min-height: 520px;
}
.show-packages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.show-package {
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,250,240,.075);
  padding: 24px;
  display: grid;
  gap: 18px;
}
.show-package h3 {
  font-size: clamp(26px, 3vw, 40px);
}
.show-package p {
  margin: 0;
  color: var(--muted);
}
.show-package strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.show-dining-feature,
.show-event-band {
  min-height: clamp(420px, 48vw, 680px);
  padding: clamp(28px, 5vw, 60px);
  background: var(--show-image) center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
}
.show-dining-feature::after,
.show-event-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,7,5,.84), rgba(8,7,5,.18) 58%, rgba(8,7,5,.44)),
    linear-gradient(0deg, rgba(8,7,5,.72), rgba(8,7,5,.06));
}
.show-dining-feature > *,
.show-event-band > * {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.show-dining-feature h2,
.show-event-band h2 {
  margin: 0;
}
.show-dining-feature p,
.show-event-band p {
  margin: 22px 0 0;
  color: rgba(255,250,240,.84);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.48;
}
.show-practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,250,240,.18);
  border-bottom: 1px solid rgba(255,250,240,.18);
}
.show-practical-item {
  min-height: 210px;
  padding: clamp(22px, 3vw, 34px);
  border-left: 1px solid rgba(255,250,240,.16);
  display: grid;
  align-content: end;
}
.show-practical-item:first-child {
  border-left: 0;
}
.show-practical-item h3 {
  font-size: clamp(34px, 3.8vw, 58px);
}
.show-practical-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.45;
}
.show-faq {
  display: grid;
  gap: 12px;
}
.show-faq details {
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,250,240,.075);
  overflow: hidden;
}
.show-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .88;
  letter-spacing: 0;
  list-style: none;
}
.show-faq summary::-webkit-details-marker {
  display: none;
}
.show-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.related-shows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.related-show {
  min-height: 240px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255,250,240,.075);
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}
.related-show > img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-right: 0;
}
.related-show > div {
  min-width: 0;
  padding: 24px;
  display: grid;
  align-content: end;
  gap: 14px;
}
.related-show h3 {
  font-size: clamp(28px, 4vw, 52px);
}
.related-show p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}
@media (max-width: 1020px) {
  .show-hero, .show-intro, .show-media-grid, .show-booking-grid {
    grid-template-columns: 1fr;
  }
  .show-hero--video {
    grid-template-columns: 1fr;
    margin-top: calc(-1 * clamp(56px, 8vw, 108px));
  }
  .show-facts, .experience-steps, .show-packages, .show-proof-grid, .show-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .show-ticket-bar {
    top: 104px;
  }
}
@media (max-width: 680px) {
  .show-page-nav-inner {
    width: var(--page-rail-mobile);
    padding: 12px 0;
  }
  .show-hero-media, .show-hero-media img {
    min-height: 360px;
  }
  .show-hero--video {
    min-height: calc(100svh - 126px);
    padding: 88px 15px 58px;
  }
  .show-hero--video h1 {
    font-size: clamp(82px, 23vw, 112px);
    line-height: .84;
  }
  .show-facts, .experience-steps, .show-packages, .related-shows, .show-proof-grid, .show-practical-grid {
    grid-template-columns: 1fr;
  }
  .show-date-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .show-practical-item {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,250,240,.16);
  }
  .show-practical-item:first-child {
    border-top: 0;
  }
  .related-show {
    grid-template-columns: 1fr;
  }
  .related-show > img {
    min-height: 180px;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 0;
  }
  .show-ticket-bar {
    position: static;
    margin-top: 24px;
  }
  .show-ticket-bar-inner {
    width: var(--page-rail-mobile);
    padding: 14px 0;
    display: grid;
  }
  .show-ticket-copy {
    display: grid;
    gap: 4px;
  }
  .show-ticket-copy strong {
    white-space: normal;
  }
  .show-media-grid img,
  .show-media-grid img:first-child {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page {
    width: var(--page-rail-mobile);
    padding-top: 118px;
    padding-bottom: 72px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1,
  .page h1,
  .section h2,
  .show-hero h1,
  .show-section h2 {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero h1,
  .page h1 {
    font-size: clamp(76px, 22vw, 108px);
    line-height: .82;
  }

  .hero p,
  .section-head p,
  .show-hero p,
  .show-section p {
    max-width: 100%;
  }

  .button-row,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: stretch;
  }

  .button,
  .button.primary,
  .button.ghost,
  .btn-primary,
  .block-link {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

  .panel,
  .form,
  .field-grid,
  .story-origin,
  .story-image-stack,
  .story-founder-grid,
  .story-proof-grid,
  .event-conversion-band,
  .event-proof,
  .event-value-grid,
  .events-planner-grid {
    grid-template-columns: 1fr !important;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .show-ticket-bar {
    position: static;
  }

  .show-ticket-bar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
