:root {
  color-scheme: dark;
  --ink: #110c0b;
  --night: #171011;
  --wine: #642336;
  --ember: #e45a2a;
  --gold: #f2b24d;
  --teal: #1f7a76;
  --paper: #fff8ee;
  --muted: #cdbfb0;
  --line: rgba(255, 248, 238, 0.18);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  --soft-radius: 18px;
  --card-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--night);
  color: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(13, 8, 8, 0.84), rgba(13, 8, 8, 0));
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-solid {
  background: rgba(18, 12, 12, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 178, 77, 0.55);
  background: linear-gradient(135deg, var(--gold), var(--ember));
  border-radius: 50%;
  color: #150b08;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.94rem;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-action,
.button.primary {
  background: linear-gradient(135deg, #ffd06d, var(--gold) 50%, var(--ember));
  color: #190d08;
  box-shadow: 0 14px 34px rgba(242, 178, 77, 0.25);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.button.ghost {
  border-color: rgba(255, 248, 238, 0.35);
  color: var(--paper);
  background: rgba(255, 248, 238, 0.07);
  backdrop-filter: blur(14px);
}

.button.ghost.dark {
  color: var(--night);
  border-color: rgba(23, 16, 17, 0.22);
  background: rgba(23, 16, 17, 0.07);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 46px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 7, 7, 0.96) 0%, rgba(11, 7, 7, 0.72) 33%, rgba(11, 7, 7, 0.18) 72%),
    linear-gradient(0deg, rgba(23, 16, 17, 1) 0%, rgba(23, 16, 17, 0) 38%);
}

.hero-content,
.hero-event {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 248, 238, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-event {
  justify-self: end;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, rgba(255, 248, 238, 0.12), rgba(17, 12, 11, 0.72));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.date-chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(31, 122, 118, 0.22);
  color: #8df2e7;
  font-size: 0.8rem;
  font-weight: 900;
}

.hero-event h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-event p {
  color: var(--muted);
  margin-bottom: 18px;
}

.event-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 0.82rem;
}

.ticker-band {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
  scrollbar-width: none;
}

.ticker-band span {
  flex: 0 0 auto;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.ticker-band span + span::before {
  content: "/";
  margin-right: 12px;
  color: var(--ember);
}

.section,
.booking-section,
.contact-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
}

.intro h2,
.section-heading h2,
.booking-copy h2,
.contact-band h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0;
}

.intro p:not(.eyebrow),
.booking-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.text-link {
  color: var(--muted);
  font-weight: 900;
}

.event-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.event-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, rgba(255, 248, 238, 0.1), rgba(255, 248, 238, 0.045));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 178, 77, 0.52);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.event-card-link {
  display: block;
}

.feature-card {
  grid-row: span 2;
}

.poster {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(17, 12, 11, 0.08), rgba(17, 12, 11, 0.7)),
    radial-gradient(circle at 25% 20%, rgba(242, 178, 77, 0.75), transparent 34%),
    linear-gradient(135deg, var(--wine), #181c27 60%, var(--teal));
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 12, 11, 0), rgba(17, 12, 11, 0.6));
  opacity: 0;
  transition: opacity 240ms ease;
}

.event-card:hover .poster::after {
  opacity: 1;
}

.feature-card .poster {
  min-height: 430px;
}

.image-poster {
  padding: 0;
  background: #2b1117;
}

.image-poster img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.event-card:hover .image-poster img {
  transform: scale(1.055);
}

.play-chip {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 248, 238, 0.45);
  border-radius: 999px;
  background: rgba(17, 12, 11, 0.58);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.poster-two {
  background:
    linear-gradient(160deg, rgba(17, 12, 11, 0.08), rgba(17, 12, 11, 0.72)),
    radial-gradient(circle at 70% 30%, rgba(228, 90, 42, 0.85), transparent 32%),
    linear-gradient(135deg, #272033, var(--teal));
}

.poster-three {
  background:
    linear-gradient(160deg, rgba(17, 12, 11, 0.08), rgba(17, 12, 11, 0.72)),
    radial-gradient(circle at 35% 24%, rgba(141, 242, 231, 0.6), transparent 32%),
    linear-gradient(135deg, #2b1219, #432b16 55%, #1d4947);
}

.poster span {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

.event-card-body {
  padding: 22px;
}

.event-date {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.event-card p {
  color: var(--muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.card-footer span {
  color: var(--paper);
  font-weight: 900;
}

.card-footer a {
  color: var(--gold);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 20%, rgba(31, 122, 118, 0.22), transparent 34%),
    linear-gradient(135deg, #fff8ee, #f7ece2);
  color: var(--ink);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy .eyebrow {
  color: var(--ember);
}

.booking-copy p {
  color: rgba(17, 12, 11, 0.68);
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(31, 122, 118, 0.12);
  color: #12524f;
  font-weight: 850;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(31, 122, 118, 0.14);
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 58px rgba(17, 12, 11, 0.14);
}

label,
.field {
  display: grid;
  gap: 8px;
}

label {
  color: rgba(17, 12, 11, 0.74);
  font-size: 0.9rem;
  font-weight: 850;
}

select,
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 12, 11, 0.16);
  border-radius: var(--soft-radius);
  background: #fffaf3;
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ticket-option {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(17, 12, 11, 0.12);
  border-radius: var(--soft-radius);
  background: rgba(255, 250, 243, 0.72);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.ticket-option:hover,
.ticket-option.is-selected {
  transform: translateY(-3px);
  border-color: rgba(228, 90, 42, 0.5);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 12, 11, 0.12);
}

.ticket-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ticket-option strong,
.ticket-option small,
.ticket-option b {
  display: block;
}

.ticket-option small {
  margin-top: 3px;
  color: rgba(17, 12, 11, 0.54);
}

.ticket-option b {
  color: var(--ember);
}

select:focus,
input:focus {
  outline: 3px solid rgba(31, 122, 118, 0.18);
  border-color: var(--teal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  gap: 14px;
}

.price-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 178, 77, 0.25), transparent 34%),
    var(--night);
  color: var(--paper);
}

.price-panel span {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.price-panel small,
.price-panel em {
  font-style: normal;
}

.price-panel em {
  color: rgba(255, 248, 238, 0.78);
}

.price-panel strong {
  font-size: 2rem;
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(17, 12, 11, 0.62);
  font-size: 0.9rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(255, 248, 238, 0.055);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.service-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 178, 77, 0.44);
  background: rgba(255, 248, 238, 0.09);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 950;
}

.service-list h3 {
  font-size: 1.3rem;
}

.service-list p {
  color: var(--muted);
  line-height: 1.62;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--gold);
  color: var(--night);
}

.contact-band .eyebrow {
  color: var(--wine);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-band .button.primary {
  background: var(--night);
  color: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
}

.event-detail-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(228, 90, 42, 0.2), transparent 30%),
    radial-gradient(circle at 86% 22%, rgba(31, 122, 118, 0.24), transparent 34%),
    var(--night);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: 132px clamp(18px, 5vw, 72px) 56px;
}

.detail-hero-copy h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.detail-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 850;
}

.back-link:hover {
  color: var(--gold);
}

.detail-hero-art {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 248, 238, 0.08);
  box-shadow: var(--shadow);
}

.detail-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(22px, 4vw, 54px);
  padding: 20px clamp(18px, 5vw, 72px) clamp(62px, 8vw, 108px);
}

.detail-main {
  display: grid;
  gap: 28px;
}

.glass-panel,
.detail-section {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: linear-gradient(145deg, rgba(255, 248, 238, 0.1), rgba(255, 248, 238, 0.045));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.event-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
}

.event-summary div {
  padding: 22px;
  background: rgba(255, 248, 238, 0.045);
}

.event-summary span,
.ticket-sticky dt {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-summary strong {
  font-size: 1.04rem;
}

.detail-section {
  padding: clamp(22px, 4vw, 38px);
}

.detail-section h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.03;
}

.detail-section p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.expect-grid,
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.expect-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: rgba(255, 248, 238, 0.055);
}

.expect-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.expect-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.screenshot-grid a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--soft-radius);
  background: rgba(255, 248, 238, 0.06);
}

.screenshot-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease;
}

.screenshot-grid a:hover img {
  transform: scale(1.04);
}

.detail-sidebar {
  min-width: 0;
}

.ticket-sticky {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.ticket-sticky h2 {
  margin: 18px 0 8px;
  font-size: 2rem;
}

.ticket-sticky p {
  color: var(--muted);
}

.discount-pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(31, 122, 118, 0.2);
  color: #8df2e7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-sticky dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.ticket-sticky dd {
  margin: 0;
  color: rgba(255, 248, 238, 0.78);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .header-action {
    min-width: 46px;
    padding: 0 14px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .hero-content {
    padding-bottom: 28px;
  }

  .hero-event {
    justify-self: start;
  }

  .intro,
  .booking-section,
  .event-grid,
  .detail-hero,
  .detail-shell {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .feature-card {
    grid-row: auto;
  }

  .feature-card .poster,
  .poster {
    min-height: 260px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .event-summary,
  .ticket-options {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-sticky {
    position: static;
  }

  .contact-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-action {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .detail-hero {
    padding-top: 116px;
  }

  .event-summary,
  .expect-grid,
  .screenshot-grid,
  .ticket-options {
    grid-template-columns: 1fr;
  }

  .screenshot-grid img {
    height: 150px;
  }
}
