/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon-pink:    #ff2d9b;
  --neon-purple:  #bf00ff;
  --neon-teal:    #00f5d4;
  --neon-yellow:  #f7ff00;
  --neon-blue:    #00b4ff;

  --bg-dark:      #05020e;
  --bg-card:      #0e0820;
  --bg-card-alt:  #120a24;

  --text-primary: #ffffff;
  --text-muted:   rgba(255,255,255,0.55);
  --text-dim:     rgba(255,255,255,0.35);

  --border:       rgba(255,255,255,0.08);
  --border-neon:  rgba(191,0,255,0.35);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* iPhone safe areas */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);

  --sticky-cta-h: 80px;
}

html {
  scroll-behavior: smooth;
  /* Prevent horizontal scroll on iOS */
  overflow-x: hidden;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px; /* never below 16px — prevents iOS zoom */
  line-height: 1.6;
  overflow-x: hidden;
  /* Extra padding so sticky CTA doesn't cover last content */
  padding-bottom: calc(var(--sticky-cta-h) + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
}

img     { display: block; max-width: 100%; height: auto; }
picture { display: contents; } /* inherit parent layout — don't break block/flex contexts */
a   { color: inherit; text-decoration: none; }

/* Prevent blue tap highlight on iOS */
a, button { -webkit-tap-highlight-color: transparent; }

/* Faster taps on iOS — no 300ms delay */
a, button, [role="button"] { touch-action: manipulation; }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--neon-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem; /* 16px min for iOS */
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  /* Minimum tap target — Apple HIG recommends 44px */
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.btn:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  box-shadow: 0 0 20px rgba(255,45,155,0.45), 0 0 40px rgba(191,0,255,0.2);
}
.btn--primary:active {
  box-shadow: 0 0 10px rgba(255,45,155,0.3);
}
@media (hover: hover) {
  .btn--primary:hover {
    box-shadow: 0 0 30px rgba(255,45,155,0.7), 0 0 60px rgba(191,0,255,0.35);
  }
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--neon-teal);
  color: var(--neon-teal);
}
@media (hover: hover) {
  .btn--outline:hover { background: rgba(0,245,212,0.08); }
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.btn--sm  { padding: 0.55rem 1.2rem; font-size: 0.9rem; min-height: 38px; }
.btn--lg  { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 0.85rem) calc(var(--safe-right) + 5%) 0.85rem calc(var(--safe-left) + 5%);
  background: rgba(5,2,14,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(191,0,255,0.5));
  transition: filter 0.2s;
}
@media (hover: hover) {
  .nav__logo-img:hover { filter: drop-shadow(0 0 14px rgba(255,45,155,0.7)); }
}

/* Hide desktop nav CTA on mobile — sticky CTA handles it */
@media (max-width: 680px) { .nav__cta { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;   /* fallback for iOS < 15.4 */
  min-height: 100dvh;  /* dvh fixes iOS Safari bottom bar shift */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--safe-top) + 7rem) calc(var(--safe-right) + 5%) 5rem calc(var(--safe-left) + 5%);
  overflow: hidden;
}

.hero__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* GPU composite layer — smooth on iPhone */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,2,14,0.6)  0%,
    rgba(5,2,14,0.3)  35%,
    rgba(5,2,14,0.65) 75%,
    rgba(5,2,14,1)    100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__logo {
  width: clamp(120px, 22vw, 200px);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 24px rgba(191,0,255,0.6)) drop-shadow(0 0 48px rgba(255,45,155,0.3));
  animation: logoPulse 3s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  from { filter: drop-shadow(0 0 20px rgba(191,0,255,0.5)) drop-shadow(0 0 40px rgba(255,45,155,0.25)); }
  to   { filter: drop-shadow(0 0 35px rgba(191,0,255,0.85)) drop-shadow(0 0 65px rgba(255,45,155,0.5)); }
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-teal);
  margin-bottom: 1rem;
  text-shadow: 0 0 16px rgba(0,245,212,0.6);
}

/* Stacked display title: THE / GLOW / DISTRICT */
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.88;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  filter: drop-shadow(0 0 40px rgba(255,45,155,0.3));
}
.hero__title-glow {
  font-size: clamp(6rem, 18vw, 14rem);
  background: linear-gradient(135deg, #fff 0%, var(--neon-pink) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.85;
}
.hero__title-district {
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.18em;
  line-height: 1;
}
.hero__title-studio {
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.45em;
  line-height: 1.2;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.7rem);
  letter-spacing: 0.14em;
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(247,255,0,0.45);
  margin-bottom: 0.85rem;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__cta-row {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: calc(var(--safe-bottom) + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  animation: bounce 2.2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.events { padding: 6rem 0; background: var(--bg-dark); }

.events__loading {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 3rem 0;
}
.events__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

/* Event date card */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 40px rgba(191,0,255,0.07);
}

.event-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.event-card__date-badge {
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  border-radius: var(--radius-md);
  padding: 0.55rem 1rem;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255,45,155,0.3);
}
.event-card__month {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}
.event-card__day {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.05em;
}
.event-card__meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.event-card__shows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

/* Individual show slot */
.show-slot {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.2s;
}
@media (hover: hover) {
  .show-slot:hover { border-color: rgba(0,245,212,0.3); }
}

.show-slot__time {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--neon-teal);
  text-shadow: 0 0 14px rgba(0,245,212,0.45);
  line-height: 1;
}
.show-slot__label {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.show-slot__seats {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.show-slot__seats.low  { color: #ff9900; }
.show-slot__seats.sold { color: #ff5555; }

.show-slot--soldout .show-slot__time { opacity: 0.4; }
.show-slot--soldout .btn--primary {
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  box-shadow: none;
  pointer-events: none;
}

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
.included {
  padding: 6rem 0;
  background: var(--bg-card-alt);
}

.included__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.included__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 60px rgba(0,245,212,0.1);
  min-height: 320px;  /* fallback for iOS < 15 (no aspect-ratio) */
  aspect-ratio: 3/4;
}
.included__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.detail-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.15rem;
  transition: transform 0.2s, border-color 0.2s;
}
@media (hover: hover) {
  .detail-item:hover { transform: translateY(-3px); border-color: rgba(0,245,212,0.3); }
}
.detail-item--addon { border-color: rgba(0,245,212,0.2); }
.detail-item__addon-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-teal);
  background: rgba(0,245,212,0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.detail-item__icon { font-size: 1.7rem; margin-bottom: 0.5rem; }
.detail-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--neon-teal);
  margin-bottom: 0.3rem;
}
.detail-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: 6rem 0 0; background: var(--bg-dark); }
.gallery .container { margin-bottom: 2.5rem; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 5px;
}
.gallery__item { overflow: hidden; position: relative; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (hover: hover) {
  .gallery__item:hover img { transform: scale(1.06); }
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================================
   KNOW BEFORE YOU GO
   ============================================================ */
.know {
  padding: 6rem 0;
  background: var(--bg-card-alt);
}

.know__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.know__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem;
}
.know__icon { font-size: 1.5rem; flex-shrink: 0; }
.know__item strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.know__item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding: 6rem 0; background: var(--bg-dark); }

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location__venue {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255,45,155,0.35);
  margin-bottom: 0.25rem;
}
.location__address { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.75rem; }

.location__details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.location__detail-row {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.65rem;
  font-size: 0.92rem;
}
.location__detail-label {
  font-weight: 700;
  color: var(--neon-teal);
  min-width: 72px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding-top: 0.1rem;
}

.location__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: 0 0 60px rgba(255,45,155,0.08);
  min-height: 240px;  /* fallback for iOS < 15 (no aspect-ratio) */
  aspect-ratio: 4/3;
}
.location__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 6rem 0; background: var(--bg-card-alt); }

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq__item.open { border-color: rgba(0,245,212,0.3); }

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem; /* 16px — no iOS zoom */
  font-weight: 600;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 56px; /* larger tap target */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--neon-teal);
  flex-shrink: 0;
  transition: transform 0.22s;
  line-height: 1;
}
.faq__item.open .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 1.35rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq__item.open .faq__answer { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 4rem 0 2.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer__logo-img {
  width: 110px;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 14px rgba(191,0,255,0.5));
}
.footer__tagline { font-size: 0.88rem; color: var(--neon-yellow); margin-bottom: 0.25rem; letter-spacing: 0.06em; }
.footer__hosts   { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.footer__venue   { font-size: 0.8rem;  color: var(--text-dim); margin-bottom: 1.5rem; }

.footer__social {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.footer__social-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-teal);
  padding: 0.45rem 1rem;
  border: 1px solid rgba(0,245,212,0.3);
  border-radius: 50px;
  transition: background 0.2s;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) {
  .footer__social-link:hover { background: rgba(0,245,212,0.08); }
}
.footer__copy { font-size: 0.7rem; color: var(--text-dim); }

/* ============================================================
   MOBILE STICKY CTA (Fever-style)
   ============================================================ */
.sticky-cta {
  display: none; /* shown via JS after scroll */
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  background: rgba(5,2,14,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  /* Respect iPhone home indicator */
  padding: 0.85rem calc(var(--safe-right) + 1.25rem) calc(var(--safe-bottom) + 0.85rem) calc(var(--safe-left) + 1.25rem);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--neon-teal);
}
.sticky-cta__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: -0.2rem;
}
.sticky-cta__btn { flex-shrink: 0; padding: 0.75rem 1.75rem; }

/* Only show sticky CTA on mobile / tablet */
@media (min-width: 900px) { .sticky-cta { display: none !important; } }

/* ============================================================
   TICKET BOTTOM SHEET (Fever-style)
   ============================================================ */
.sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,2,14,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.sheet-backdrop.open { opacity: 1; }

.ticket-sheet {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 201;
  background: var(--bg-card);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid var(--border-neon);
  /* Safe area for iPhone home bar */
  padding: 0 1.35rem calc(var(--safe-bottom) + 1.5rem);
  max-height: 92vh;    /* fallback for iOS < 15.4 */
  max-height: 92dvh;   /* dynamic — avoids overlap with Safari toolbar */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
  box-shadow: 0 -8px 60px rgba(191,0,255,0.18);
}
.ticket-sheet.open { transform: translateY(0); }

/* Drag handle */
.ticket-sheet__handle {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

.ticket-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0 0.5rem;
}
.ticket-sheet__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}
.ticket-sheet__close, .ticket-sheet__back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.ticket-sheet__back {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neon-teal);
  justify-content: flex-start;
  font-family: var(--font-body);
}

.ticket-sheet__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* Event+show choices in sheet */
.sheet-event-group { margin-bottom: 1.25rem; }
.sheet-event-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 0.6rem;
}

.sheet-show-btn {
  width: 100%;
  background: var(--bg-card-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  font-family: var(--font-body);
  margin-bottom: 0.6rem;
  cursor: pointer;
  min-height: 64px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s, background 0.18s;
}
.sheet-show-btn:active { background: rgba(0,245,212,0.07); }
@media (hover: hover) {
  .sheet-show-btn:hover { border-color: var(--neon-teal); }
}
.sheet-show-btn--soldout { opacity: 0.45; pointer-events: none; }

.sheet-show-btn__time {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--neon-teal);
}
.sheet-show-btn__meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.1rem; }
.sheet-show-btn__arrow { font-size: 1.2rem; color: var(--text-dim); }
.sheet-show-btn__soldout-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff5555;
  background: rgba(255,85,85,0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Step 2 — selected info */
.sheet-selected-info {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 0.75rem 0 1.5rem;
}
.sheet-selected-info__time {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--neon-teal);
  line-height: 1;
}
.sheet-selected-info__date { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Seats urgency pill (inside selected-info) */
.sheet-seats-pill {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
}
.sheet-seats-pill--ok       { background: rgba(0,245,212,0.12); color: var(--neon-teal); }
.sheet-seats-pill--low      { background: rgba(255,153,0,0.15); color: #ff9900; }
.sheet-seats-pill--critical { background: rgba(255,85,85,0.15); color: #ff5555; }

/* Quantity controls */
.sheet-qty { text-align: center; margin-bottom: 1.5rem; }
.sheet-qty__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sheet-qty__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.sheet-qty__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border-neon);
  background: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, border-color 0.15s;
}
.sheet-qty__btn:active { background: rgba(191,0,255,0.15); }
.sheet-qty__btn:disabled { opacity: 0.3; pointer-events: none; }
.sheet-qty__num {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  min-width: 60px;
  text-align: center;
}
.sheet-qty__note          { font-size: 0.75rem; color: var(--text-dim);  margin-top: 0.5rem; transition: color 0.2s; }
.sheet-qty__note--warn    { color: var(--neon-teal); }
.sheet-qty__note--low     { color: #ff9900; font-weight: 600; }
.sheet-qty__note--critical{ color: #ff5555; font-weight: 700; }

/* Add-on: Glow Shot */
.sheet-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(0,245,212,0.05);
  border: 1.5px solid rgba(0,245,212,0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}
.sheet-addon:has(#glowShotToggle:checked) {
  border-color: var(--neon-teal);
  background: rgba(0,245,212,0.09);
}
.sheet-addon__info {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  flex: 1;
}
.sheet-addon__icon { font-size: 1.5rem; flex-shrink: 0; }
.sheet-addon__name {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sheet-addon__price-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-teal);
  background: rgba(0,245,212,0.12);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.sheet-addon__desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; line-height: 1.4; }
.sheet-addon__toggle { flex-shrink: 0; }

/* Total row */
.sheet-total {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  margin-bottom: 1.25rem;
}
.sheet-total__breakdown {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.sheet-total__final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.sheet-total__price {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.sheet-checkout-btn { margin-bottom: 0.75rem; font-size: 1rem; min-height: 52px; }
.sheet-legal {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Empty state in sheet */
.sheet-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
  font-size: 0.95rem;
}

/* ============================================================
   SCROLL-IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  body { padding-bottom: 0; } /* sticky CTA handles spacing */
  .included__layout { grid-template-columns: 1fr; }
  .included__image  { max-height: 300px; aspect-ratio: 16/9; }
  .location__grid   { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery__item--tall  { grid-row: span 1; }
  .gallery__item--wide  { grid-column: span 2; }

  .sticky-cta { display: block; }
}

@media (max-width: 540px) {
  .hero__cta-row       { flex-direction: column; align-items: center; }
  .hero__cta-row .btn  { width: 100%; max-width: 340px; }
  .included__grid      { grid-template-columns: 1fr; }

  .show-slot           { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .show-slot .btn      { width: 100%; }

  .event-card__shows   { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item       { height: 230px; }
  .gallery__item--wide { grid-column: span 1; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
