:root {
  --ink: #171310;
  --ink-soft: #332b26;
  --paper: #f2eadc;
  --paper-deep: #e4d6bf;
  --stage: #120f0d;
  --stage-soft: #201a16;
  --red: #cb3b2f;
  --red-dark: #922a23;
  --gold: #d9a441;
  --line: rgba(23, 19, 16, 0.18);
  --max: 1180px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 164, 65, 0.12), transparent 27rem),
    var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--stage); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--paper);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.section-shell { padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2)); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  border-bottom: 1px solid rgba(242, 234, 220, 0.15);
}
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.035em;
  transform: scaleX(0.92);
  transform-origin: left;
}
.wordmark-accent { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 2rem; font-size: 0.82rem; font-weight: 760; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { padding: 0.75rem 1rem; color: var(--stage); background: var(--paper); border-radius: 999px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 5vw;
  min-height: min(900px, 100svh);
  padding-top: 9.5rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(18, 15, 13, 0.99), rgba(18, 15, 13, 0.9)),
    repeating-linear-gradient(90deg, #18120e 0 28px, #110d0b 28px 31px);
}
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 720px; }
.hero .eyebrow { color: var(--gold); }
.live-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(203, 59, 47, 0.14);
}
.hero h1, .section-heading h2, .booking h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(4.2rem, 8.1vw, 8.5rem); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-deck {
  max-width: 630px;
  margin: 2rem 0 0;
  color: rgba(242, 234, 220, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 820;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fffaf1; background: var(--red); box-shadow: 0 10px 28px rgba(146, 42, 35, 0.22); }
.button-primary:hover { background: #df493c; }
.button-ghost { border-color: var(--line); background: transparent; }
.button-light { color: var(--stage); background: var(--gold); }
.text-link { color: var(--paper); font-size: 0.9rem; font-weight: 760; text-underline-offset: 0.35rem; }

.hero-stage { position: relative; z-index: 1; display: grid; place-items: center; min-height: 510px; }
.stage-glow {
  position: absolute;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 164, 65, 0.26), rgba(203, 59, 47, 0.11) 45%, transparent 70%);
  filter: blur(12px);
}
.poster {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 0.76;
  padding: 2rem;
  color: var(--stage);
  background:
    linear-gradient(rgba(242, 234, 220, 0.91), rgba(242, 234, 220, 0.95)),
    repeating-linear-gradient(-8deg, transparent 0 8px, rgba(18, 15, 13, 0.06) 8px 10px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(2.2deg);
  clip-path: polygon(1% 0, 100% 1%, 99% 98%, 3% 100%, 0 65%);
}
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(18, 15, 13, 0.08);
  pointer-events: none;
}
.poster-kicker { margin: 0; color: var(--red-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em; }
.poster-name { margin: 2.4rem 0 0; font-family: var(--display); font-size: clamp(4.7rem, 7vw, 6.8rem); letter-spacing: -0.045em; line-height: 0.76; }
.poster-rule { width: 30%; height: 10px; margin: 2rem 0; background: var(--red); transform: rotate(-2deg); }
.poster-detail { margin: 0; font-size: 0.9rem; font-weight: 900; letter-spacing: 0.09em; line-height: 1.4; }
.stage-note {
  position: absolute;
  right: -0.5rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.62rem 0.78rem 0.56rem;
  color: var(--stage);
  background: var(--gold);
  box-shadow: 5px 6px 0 var(--red-dark);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  color: var(--stage);
  background: var(--gold);
  border-block: 1px solid rgba(18, 15, 13, 0.45);
  transform: rotate(-1deg) scale(1.02);
}
.marquee-track { display: flex; width: max-content; animation: ticker 40s linear infinite; }
.marquee-group { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-around; min-width: 100vw; }
.marquee-group > span, .marquee-group > b { flex: 0 0 auto; white-space: nowrap; padding: 0.8rem 1rem; font-size: 0.78rem; letter-spacing: 0.13em; }
.marquee-group > span { font-weight: 900; }
@keyframes ticker { to { transform: translateX(-50%); } }

.material { padding-top: 8rem; padding-bottom: 8rem; }
.section-heading { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 3rem; align-items: end; }
.section-heading h2, .booking h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
.section-heading > p { max-width: 430px; margin: 0 0 0.4rem; color: #65594f; line-height: 1.65; }
.filter-row { display: flex; gap: 0.65rem; margin: 3rem 0 1.4rem; overflow-x: auto; padding-bottom: 0.4rem; scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-pill {
  flex: 0 0 auto;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 780;
}
.filter-pill:hover, .filter-pill.is-active { color: var(--paper); background: var(--ink); }
.material-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 39%);
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.4rem 0 1.2rem;
}
.material-grid::-webkit-scrollbar { display: none; }
.material-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 1.5rem;
  scroll-snap-align: start;
  background: #fbf5e9;
  border: 1px solid rgba(23, 19, 16, 0.16);
  box-shadow: 0 16px 40px rgba(67, 52, 38, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.material-card:nth-child(even) { background: var(--ink); color: var(--paper); }
.material-card:hover, .material-card:focus { outline: none; transform: translateY(-4px) rotate(-0.25deg); box-shadow: 0 24px 55px rgba(67, 52, 38, 0.14); }
.card-topline, .card-meta { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.68rem; font-weight: 840; letter-spacing: 0.11em; text-transform: uppercase; }
.card-topline span:last-child { color: var(--red); }
.material-card:nth-child(even) .card-topline span:last-child { color: var(--gold); }
.material-card h3 { margin: 3.4rem 0 1.2rem; font-family: var(--display); font-size: 2.7rem; letter-spacing: -0.02em; line-height: 0.93; text-transform: uppercase; }
.material-setup { color: #65594f; line-height: 1.55; }
.material-card:nth-child(even) .material-setup { color: rgba(242, 234, 220, 0.6); }
.material-punch { margin-top: 1.25rem; font-size: 1.12rem; font-weight: 700; line-height: 1.5; }
.card-meta { padding-top: 1.25rem; border-top: 1px solid currentColor; opacity: 0.62; }
.browser-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.browser-controls p { margin: 0; color: #6e6257; font-size: 0.8rem; font-weight: 750; }
.round-button { width: 46px; height: 46px; margin-left: 0.3rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.15rem; }
.round-button:hover { color: var(--paper); background: var(--ink); }

.shows { padding-top: 2rem; padding-bottom: 8rem; }
.shows-panel { padding: clamp(1.5rem, 5vw, 5rem); color: var(--paper); background: var(--red-dark); box-shadow: 0 24px 65px rgba(77, 28, 24, 0.2); }
.section-heading-light .eyebrow { color: var(--gold); }
.section-heading-light > p { color: rgba(242, 234, 220, 0.65); }
.shows-list { margin: 3rem 0; border-top: 1px solid rgba(242, 234, 220, 0.25); }
.show-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 1.5rem; align-items: center; padding: 1.4rem 0; border-bottom: 1px solid rgba(242, 234, 220, 0.25); }
.show-row h3, .empty-show h3 { margin: 0 0 0.35rem; font-size: 1.1rem; }
.show-row p, .empty-show p { margin: 0; color: rgba(242, 234, 220, 0.65); line-height: 1.55; }
.show-date { font-size: 1.8rem; font-weight: 900; }
.show-date span { display: block; font-size: 0.65rem; letter-spacing: 0.14em; }
.show-row a { font-size: 0.8rem; font-weight: 820; text-underline-offset: 0.25rem; }
.show-row .show-category { margin-bottom: 0.4rem; color: var(--gold); font-size: 0.875rem; font-weight: 800; }
.empty-show { display: grid; grid-template-columns: 100px 1fr; gap: 1.6rem; align-items: center; padding: 2.5rem 0; border-bottom: 1px solid rgba(242, 234, 220, 0.25); }
.empty-show-mark { color: var(--gold) !important; font-family: var(--display); font-size: 5rem; line-height: 0.5 !important; }

.booking { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 7vw; padding-top: 3rem; padding-bottom: 9rem; }
.booking-intro { align-self: start; position: sticky; top: 2rem; }
.booking-intro > p:not(.eyebrow) { max-width: 520px; color: #65594f; line-height: 1.7; }
.booking-points { margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.booking-points li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; font-weight: 760; }
.booking-points span { color: var(--red); font-size: 0.7rem; }
.inquiry-card { min-width: 0; padding: clamp(1.25rem, 4vw, 2.5rem); background: #fbf5e9; border: 1px solid var(--line); box-shadow: 0 25px 70px rgba(67, 52, 38, 0.1); }
fieldset { margin: 0; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 1.6rem; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.3rem); line-height: 0.98; text-transform: uppercase; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card > span {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 820;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.choice-card small { display: block; margin-top: auto; color: #776b60; font-size: 0.72rem; font-weight: 540; line-height: 1.4; }
.choice-card input:checked + span { color: var(--paper); background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }
.choice-card input:checked + span small { color: rgba(242, 234, 220, 0.62); }
.choice-card input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-grid label { display: grid; gap: 0.5rem; color: #4f463f; font-size: 0.76rem; font-weight: 780; }
.field-grid label > span { padding-left: 0.15rem; }
.field-grid small { font-weight: 500; }
.field-wide { grid-column: 1 / -1; }
input, textarea { width: 100%; padding: 0.9rem 0.95rem; color: var(--ink); background: #fffaf1; border: 1px solid var(--line); border-radius: 3px; outline: none; }
textarea { resize: vertical; min-height: 120px; }
input:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(203, 59, 47, 0.1); }
.has-error > span, label.has-error { color: var(--red-dark); }
.has-error input, .has-error textarea, .choice-card.has-error > span { border-color: var(--red); }
.form-error { min-height: 1.3em; margin: 1rem 0 0; color: var(--red-dark); font-size: 0.78rem; font-weight: 720; }
.form-actions { display: flex; justify-content: flex-end; gap: 0.65rem; margin-top: 1rem; }
.booking-success { text-align: center; }
.booking-success h3 { margin: 0.4rem 0 0.6rem; font-family: var(--display); font-size: 2.8rem; text-transform: uppercase; }
.booking-success > p { color: #65594f; }
.success-mark { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto; color: var(--paper) !important; background: var(--red); border-radius: 50%; font-size: 1.5rem; }
.booking-success pre { max-height: 280px; margin: 1.5rem 0; padding: 1rem; overflow: auto; text-align: left; white-space: pre-wrap; color: var(--paper); background: var(--ink); border-radius: 3px; font: 0.76rem/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; }
.success-actions { display: flex; justify-content: center; gap: 0.65rem; }
.text-button { margin-top: 1.2rem; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; cursor: pointer; font-size: 0.78rem; }

.side-quests {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  padding-top: 5rem;
  padding-bottom: 7rem;
  color: var(--paper);
  background: var(--stage);
}
.side-quests-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}
.side-quests .eyebrow { color: var(--gold); }
.side-quest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.side-quest-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(242, 234, 220, 0.18);
}
.podcast-card { background: var(--stage-soft); }
.music-card { background: var(--red-dark); border-color: var(--red-dark); }
.karaoke-card { color: var(--stage); background: var(--paper); border-color: var(--paper); }
.wedding-card { color: var(--stage); background: var(--gold); border-color: var(--gold); }
.side-quest-label {
  margin: 0 0 2.5rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.podcast-card .side-quest-label { color: var(--red); }
.music-card .side-quest-label { color: var(--gold); }
.karaoke-card .side-quest-label { color: var(--red-dark); }
.wedding-card .side-quest-label { color: var(--red-dark); }
.side-quest-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.side-quest-card > p:not(.side-quest-label) { margin: 1rem 0 2rem; line-height: 1.55; opacity: 0.68; }
.side-quest-card > p:not(.side-quest-label) a { color: inherit; font-weight: 800; text-underline-offset: 0.2rem; }
.side-quest-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
a.side-quest-link:hover { color: var(--red); }
.wedding-card a.side-quest-link:hover { color: var(--red-dark); }
.side-quest-link.is-disabled { opacity: 0.48; cursor: default; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: rgba(242, 234, 220, 0.58);
  background: var(--stage);
  border-top: 1px solid rgba(242, 234, 220, 0.1);
  font-size: 0.72rem;
}
.footer-wordmark { color: var(--paper); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.65rem 1.2rem; }
.footer-links a { text-decoration: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 60;
  padding: 0.8rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(242, 234, 220, 0.2);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translate(-50%, 1rem);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
  font-size: 0.78rem;
  font-weight: 760;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 880px) {
  .site-header { height: 70px; }
  .menu-toggle { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; border: 0; color: var(--paper); background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 69px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1.2rem; color: var(--paper); background: rgba(18, 15, 13, 0.98); border-bottom: 1px solid rgba(242, 234, 220, 0.16); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 1rem 0.3rem; border-bottom: 1px solid rgba(242, 234, 220, 0.13); }
  .site-nav .nav-cta { margin-top: 0.8rem; padding: 0.9rem 1rem; text-align: center; border: 0; }
  body.menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 8.8rem; padding-bottom: 6rem; }
  .hero-copy { max-width: 650px; }
  .hero-stage { min-height: 440px; }
  .poster { width: min(82vw, 360px); }
  .stage-note { right: 8%; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .material-grid { grid-auto-columns: minmax(300px, 66%); }
  .booking { grid-template-columns: 1fr; gap: 3.5rem; }
  .booking-intro { position: static; }
  .side-quests { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p:nth-child(2) { text-align: right; }
  .copyright { text-align: right; }
}

@media (max-width: 560px) {
  .section-shell { padding-inline: 1rem; }
  .hero { padding-top: 7.7rem; }
  .hero h1 { font-size: clamp(3rem, 14.9vw, 4.4rem); }
  .hero-deck { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stage { min-height: 410px; margin-top: -0.5rem; }
  .poster { width: min(88vw, 330px); padding: 1.6rem; }
  .poster-name { font-size: clamp(4.7rem, 24vw, 6rem); }
  .stage-note { right: 1rem; bottom: 0; }
  .material { padding-top: 6rem; padding-bottom: 5rem; }
  .section-heading h2, .booking h2 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
  .material-grid { grid-auto-columns: 88%; }
  .material-card { min-height: 410px; }
  .material-card h3 { font-size: 2.35rem; }
  .browser-controls { margin-top: 0.4rem; }
  .shows { padding-inline: 0; padding-bottom: 5rem; }
  .shows-panel { padding: 4rem 1rem; }
  .empty-show { grid-template-columns: 58px 1fr; }
  .empty-show-mark { font-size: 4rem; }
  .show-row { grid-template-columns: 62px 1fr; }
  .show-row > a { grid-column: 2; }
  .booking { padding-top: 1rem; padding-bottom: 6rem; }
  .choice-grid, .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .choice-card > span { min-height: 94px; }
  .form-actions .button { flex: 1; padding-inline: 0.8rem; font-size: 0.82rem; }
  .success-actions { flex-direction: column; }
  .side-quests { padding-top: 4.5rem; padding-bottom: 5rem; }
  .side-quest-grid { grid-template-columns: 1fr; }
  .side-quest-card { min-height: 280px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer > p:nth-child(2), .copyright { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.form-section + .form-section { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.form-section legend { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1.2rem; }
.form-note { margin: 1.5rem 0 0; color: #65594f; font-size: 0.8rem; line-height: 1.6; }

.booking-email a { color: var(--red-dark); overflow-wrap: anywhere; text-underline-offset: 0.2em; }

/* A single-column video card stays readable regardless of browser or viewport. */
.video-browser { margin-bottom: 3rem; min-width: 0; max-width: 100%; }
.video-grid { display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding: 0.4rem 0 1.2rem; max-width: 100%; }
.video-grid:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
.video-grid .featured-clip { display: flex; flex-direction: column; flex: 0 0 340px; width: 340px; min-width: 0; max-width: 88%; margin: 0; padding: 1rem; gap: 1.25rem; scroll-snap-align: start; background: #fbf5e9; border: 1px solid var(--line); }
.featured-clip video { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: contain; background: #120f0d; border-radius: 6px; }
.clip-copy { width: 100%; min-width: 0; }
.video-grid .clip-copy h3 { margin: 0 0 0.75rem; font-family: var(--display); font-size: 2.25rem; line-height: 1.08; text-transform: uppercase; overflow-wrap: anywhere; }
.clip-copy .eyebrow { font-size: 0.8125rem; line-height: 1.5; }
.clip-copy > p:not(.eyebrow) { margin-bottom: 0; font-size: 1rem; line-height: 1.6; }
.featured-clip > .clip-note { margin: auto 0 0; padding-top: 0.5rem; color: #65594f; font-size: 0.875rem; line-height: 1.6; text-align: left; }
.video-browser button:disabled { opacity: 0.35; cursor: default; }
@media (max-width: 600px) {
  .video-grid .featured-clip { flex-basis: 88%; width: 88%; }
  .video-grid .clip-copy h3 { font-size: 2rem; }
}

.field-grid input, .field-grid textarea { font-size: 1rem; }
.field-grid label, .form-note, .form-error { font-size: 0.875rem; }
.round-button, .text-button { min-width: 44px; min-height: 44px; }
.booking-success .text-button { margin-inline: 0.5rem; }
.video-grid video { object-fit: contain; }

/* Both material rows use one shared card format and a three-card desktop window. */
.material > .section-heading { display: block; text-align: left; margin-bottom: 2rem; }
.material > .section-heading > p { max-width: 430px; margin: 1.5rem 0 0; }
.video-browser, .material-browser { width: 100%; max-width: 1056px; margin-inline: auto; min-width: 0; }
.material-grid, .video-grid { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding: 0.4rem 0 1.2rem; }
.material-grid::-webkit-scrollbar { display: block; height: 8px; }
.material-grid .material-card, .video-grid .featured-clip { flex: 0 0 340px; width: 340px; max-width: 88%; min-width: 0; padding: 1rem; border: 1px solid var(--line); border-radius: 0; box-shadow: none; scroll-snap-align: start; }
.material-grid .material-card { justify-content: space-between; }
.material-card h3 { font-size: 2.25rem; line-height: 1.08; }
.material-card:hover, .material-card:focus { transform: none; }
.material-grid:focus-visible, .material-card:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
.card-topline, .card-meta { font-size: 0.875rem; letter-spacing: 0.04em; flex-wrap: wrap; }
.browser-controls { margin: 0 0 0.75rem; gap: 1rem; }
.browser-controls p { font-size: 0.875rem; }
.browser-controls > div { display: flex; flex-shrink: 0; gap: 0.5rem; }
.browser-controls .round-button { margin: 0; color: var(--paper); background: var(--ink); border-color: var(--ink); }
.browser-controls button:disabled { opacity: 0.3; cursor: default; }
@media (max-width: 600px) {
  .material-grid .material-card, .video-grid .featured-clip { flex-basis: 88%; width: 88%; }
  .material-card h3 { font-size: 2rem; }
}

.show-row a.venue-link { font-size: inherit; color: inherit; }

/* A real portrait framed like a comedy handbill. */
.portrait-poster { position: relative; width: min(100%, 390px); margin: 0; padding: 10px; background: #fff; box-shadow: 12px 12px 0 var(--red-dark), 0 28px 65px rgba(0,0,0,0.35); transform: rotate(2deg); }
.portrait-poster img { display: block; width: 100%; height: auto; }
.portrait-poster figcaption { padding: 1.1rem 0.8rem 0.9rem; color: var(--stage); background: var(--gold); }
.portrait-kicker { margin: 0 0 0.65rem; font-size: 0.875rem; font-weight: 900; letter-spacing: 0.15em; }
.portrait-name { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.05; text-transform: uppercase; }
.portrait-location { margin: 0.75rem 0 0; font-size: 0.875rem; font-weight: 800; line-height: 1.5; letter-spacing: 0.04em; }
@media (max-width: 880px) {
  .portrait-poster { width: min(82vw, 360px); }
  .hero-stage { padding-block: 0.75rem 1.5rem; }
}
