:root {
  --ink: #141014;
  --paper: #fff8f8;
  --paper-strong: #ffffff;
  --muted: #77666f;
  --line: rgba(20, 16, 20, 0.14);
  --crimson: #b4002d;
  --rose: #ff3f7f;
  --blue: #275dff;
  --gold: #d9a441;
  --shadow: 0 24px 70px rgba(20, 16, 20, 0.22);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 16, 20, 0.84), transparent);
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  gap: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-name {
  font-family: "Whisper", cursive;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 400;
  text-transform: none;
  text-shadow: 0 2px 18px rgba(20, 16, 20, 0.34);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.header-cta {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--rose);
  border-radius: 999px;
  color: #fff;
  background: var(--rose);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255, 63, 127, 0.28);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(20, 16, 20, 0.38);
  backdrop-filter: blur(16px);
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("press/Simone-435.jpg");
  background-position: 54% 34%;
  background-size: cover;
  filter: saturate(0.82) contrast(1.1);
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 16, 20, 0.93), rgba(20, 16, 20, 0.45) 48%, rgba(180, 0, 45, 0.16)),
    linear-gradient(0deg, rgba(20, 16, 20, 0.78), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 160px clamp(22px, 7vw, 86px) 92px;
}

#hero-title {
  font-family: "Whisper", cursive;
  font-weight: 400;
  line-height: 0.9;
}

.kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--rose);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2 {
  margin: 0;
  max-width: 13ch;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.55rem, 11vw, 8.35rem);
}

h2 {
  font-size: clamp(2.5rem, 6.2vw, 5.3rem);
}

.hero-copy,
.lead {
  max-width: 760px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.34;
}

.hero-copy {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
}

.button-primary {
  border-color: var(--rose);
  color: #fff;
  background: var(--rose);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.button-dark {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
  color: #fff;
  background: var(--ink);
}

.marquee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.marquee p {
  margin: 0;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  color: var(--crimson);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(64px, 10vw, 126px) clamp(20px, 6vw, 78px);
}

.program-section {
  background: #fff;
}

.program-grid,
.press-layout,
.video-layout,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 86px);
  align-items: start;
}

.program-copy {
  display: grid;
  gap: 18px;
  color: #342a31;
  font-size: 1.1rem;
  line-height: 1.68;
}

.program-copy p,
.lead {
  margin: 0;
}

.section h2,
.bio-grid h3,
.program-highlight h3,
.legal-modal-heading h2 {
  margin-bottom: 12px;
}

.program-highlight {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(280px, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 5vw, 40px);
  align-items: stretch;
  margin-top: clamp(28px, 5vw, 42px);
  padding: clamp(24px, 4vw, 34px) 0 clamp(24px, 4vw, 34px) clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  background: #f8f9fb;
}

.program-highlight-media {
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  align-self: center;
}

.program-poster {
  display: block;
  width: 100%;
  height: auto;
}

.program-highlight span {
  color: var(--crimson);
  font-weight: 950;
  text-transform: uppercase;
}

.program-highlight-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2vw, 28px) 0;
}

.program-highlight-accent {
  display: grid;
  align-items: stretch;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.program-highlight h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 0.98;
}

.program-highlight p {
  margin: 0;
  color: #342a31;
  font-size: 1.08rem;
  line-height: 1.64;
}

.program-motif-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section-actions .button-dark {
  margin: 0;
}

.bio-section {
  background: #fff;
}

.bio-intro {
  max-width: 980px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.bio-intro h2 {
  max-width: 12ch;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bio-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 63, 127, 0.07), transparent 44%),
    var(--paper);
}

.bio-grid span {
  color: var(--crimson);
  font-weight: 950;
  text-transform: uppercase;
}

.bio-grid h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.02;
}

.bio-grid p {
  margin: 0;
  color: #342a31;
  line-height: 1.62;
}

.dates-section {
  background: #fff;
}

.video-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(180, 0, 45, 0.34), transparent 42%),
    #151015;
}

.video-section .lead {
  color: rgba(255, 255, 255, 0.8);
}

.featured-video {
  display: grid;
  gap: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050405;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder,
.video-panel {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(150deg, rgba(255, 63, 127, 0.72), rgba(39, 93, 255, 0.24)),
    var(--ink);
  box-shadow: var(--shadow);
}

.video-placeholder {
  place-items: center;
  align-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 950;
}

.video-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.video-panel span:not(.play-mark) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 950;
  text-transform: uppercase;
}

.video-panel strong {
  position: relative;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.featured-video-copy {
  display: grid;
  gap: 8px;
}

.featured-video-copy span {
  color: var(--rose);
  font-weight: 950;
  text-transform: uppercase;
}

.featured-video-copy h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.featured-video-copy a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.video-card {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding-bottom: 4px;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050405;
}

.video-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.25;
}

.play-mark {
  position: absolute;
  top: clamp(24px, 5vw, 42px);
  left: clamp(24px, 5vw, 42px);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
}

.play-mark::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 30px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--crimson);
}

.play-mark.small {
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
}

.play-mark.small::after {
  top: 11px;
  left: 15px;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 13px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.date-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.city-select {
  width: min(300px, 70vw);
  min-height: 46px;
  padding: 0 40px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  font: inherit;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.date-range {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.date-range-field {
  display: inline-flex;
  position: relative;
}

.date-range-field::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0 auto 0 16px;
  display: flex;
  align-items: center;
  pointer-events: none;
  color: var(--ink);
  font-weight: 700;
}

.date-range-field.has-value::before {
  display: none;
}

.date-range-field input {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.date-range-field:not(.has-value) input[type="date"] {
  color: transparent;
}

.date-range-field:not(.has-value) input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

.date-range-field input:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.date-range-sep {
  color: var(--muted);
  font-weight: 800;
}

.date-reset {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.date-reset:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.date-meta {
  min-height: 28px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.date-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.date-year-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0 14px;
  border-bottom: 1px solid var(--line);
}

.date-year-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.date-year-header span {
  color: var(--crimson);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-card {
  display: grid;
  grid-template-columns: minmax(108px, 0.25fr) minmax(0, 1.1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.date-card time {
  display: grid;
  gap: 3px;
  color: var(--crimson);
  font-weight: 950;
  text-transform: uppercase;
}

.date-card time span:first-child {
  font-size: 1.9rem;
  line-height: 1;
}

.date-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.date-card p {
  margin: 0;
  color: var(--muted);
}

.ticket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--crimson);
  font-weight: 950;
}

.press-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(39, 93, 255, 0.34), transparent 48%),
    #171219;
}

.press-section .lead {
  color: rgba(255, 255, 255, 0.8);
}

.press-actions {
  display: grid;
  gap: 12px;
}

.press-link {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.press-link span,
.contact-grid span {
  color: var(--rose);
  font-weight: 950;
  text-transform: uppercase;
}

.press-link strong {
  font-size: 1.35rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 6vw, 64px);
}

.quote-grid figure {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 280px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
}

.quote-grid blockquote {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.46;
}

.quote-grid figcaption {
  color: var(--rose);
  font-weight: 950;
}

.quote-card-more {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(150deg, rgba(255, 63, 127, 0.26), rgba(39, 93, 255, 0.18)),
    rgba(255, 255, 255, 0.07);
}

.quote-card-more span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
  text-transform: uppercase;
}

.quote-card-more strong {
  font-size: 1.5rem;
  line-height: 1;
}

.quote-card-more p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.press-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.press-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050405;
}

.press-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 180ms ease;
}

.press-gallery a:hover img {
  transform: scale(1.04);
}

.press-credit {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.contact-section {
  background: var(--paper);
}

.legal-copy {
  display: grid;
  gap: 14px;
  color: #342a31;
  font-size: 1rem;
  line-height: 1.62;
}

.legal-copy h3 {
  margin: 18px 0 0;
  font-size: 1.2rem;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--crimson);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-modal {
  width: min(860px, calc(100vw - 32px));
  max-height: min(820px, calc(100svh - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.content-modal {
  width: min(980px, calc(100vw - 32px));
}

.legal-modal::backdrop {
  background: rgba(20, 16, 20, 0.72);
  backdrop-filter: blur(8px);
}

.legal-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 34px);
  max-height: inherit;
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-modal-heading {
  padding-right: 54px;
}

.legal-modal-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 5.5vw, 3.45rem);
  line-height: 1;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-modal .section-label {
  margin-bottom: 10px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  z-index: 1;
}

.legal-modal .legal-copy {
  max-width: 68ch;
}

.press-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.press-review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 63, 127, 0.06), transparent 50%),
    var(--paper);
}

.press-review-card span {
  color: var(--crimson);
  font-weight: 950;
  text-transform: uppercase;
}

.press-review-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.press-review-card p {
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 900;
}

.form-notice.is-success {
  border-color: rgba(18, 128, 74, 0.28);
  color: #11633b;
}

.form-notice.is-error {
  border-color: rgba(180, 0, 45, 0.28);
  color: var(--crimson);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-grid a {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 850;
}

.site-footer small {
  flex-basis: 100%;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    gap: 16px;
    padding: 14px 16px;
    background: var(--ink);
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(20, 16, 20, 0.92);
    box-shadow: 0 22px 60px rgba(20, 16, 20, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .marquee {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid,
  .program-highlight,
  .press-layout,
  .video-layout,
  .contact-section,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .date-controls {
    justify-content: flex-start;
  }

  .hero-media {
    background-position: 76% 8%;
  }

  .program-highlight {
    --panel-pad: clamp(18px, 4vw, 28px);
    gap: 18px;
    padding: var(--panel-pad);
  }

  .program-highlight-media {
    justify-self: stretch;
    max-width: none;
    width: calc(100% + var(--panel-pad) * 2);
    margin: calc(var(--panel-pad) * -1) calc(var(--panel-pad) * -1) 0;
  }

  .program-highlight-copy {
    gap: 10px;
    padding: 0;
  }

  .program-highlight-accent {
    max-width: 320px;
    justify-self: end;
    min-height: auto;
  }

  .date-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .date-year-header {
    padding: 22px 0 12px;
  }

  .video-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bio-grid,
  .press-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form,
  .contact-grid,
  .legal-modal-panel {
    grid-template-columns: 1fr;
  }

  .ticket-link {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-name {
    font-size: 1.32rem;
    line-height: 1;
  }

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
    text-transform: uppercase;
  }

  .hero-media {
    background-position: 52% 4%;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 3rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
    line-height: 0.96;
  }

  .program-highlight {
    --panel-pad: 18px;
    align-items: start;
    gap: 14px;
  }

  .program-highlight-copy {
    gap: 8px;
    padding: 0;
  }

  .program-highlight h3 {
    font-size: 1.6rem;
  }

  .hero-content {
    max-width: 320px;
    padding: 178px 18px 96px;
  }

  .kicker {
    max-width: 10ch;
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.02;
  }

  .hero-actions {
    display: none;
  }

  .hero-copy,
  .lead {
    font-size: 1.02rem;
  }

  .marquee p {
    font-size: 0.82rem;
  }

  .bio-grid,
  .press-gallery {
    grid-template-columns: 1fr;
  }

  .quote-grid figure,
  .quote-card-more {
    min-height: auto;
  }

  .program-highlight-accent {
    max-width: 280px;
    justify-self: end;
    min-height: auto;
  }

  .program-motif-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
