﻿:root {
  --night: #0a0908;
  --panel: #14110e;
  --panel-2: #1c1813;
  --line: rgba(243, 234, 216, 0.12);
  --cream: #f3ead8;
  --muted: #b9ae9c;
  --amber: #f0a202;
  --ember: #e85d04;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[x-cloak] { display: none !important; }
html { scroll-behavior: smooth; }
body.is-locked,
body.is-loading { overflow: hidden; }

body {
  background: var(--night);
  color: var(--cream);
  font-family: Outfit, system-ui, sans-serif;
  scrollbar-color: var(--amber) #1c1813;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1c1813;
}

::-webkit-scrollbar-thumb {
  background: var(--amber);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffb703;
}

::selection { background: var(--amber); color: var(--night); }
.font-display { font-family: "Bebas Neue", sans-serif; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  z-index: 70;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(16, 13, 10, 0.38);
  border-bottom: 1px solid rgba(243, 234, 216, 0.14);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.55);
  -webkit-backdrop-filter: blur(22px) saturate(1.55);
}

.hero-slides { position: absolute; inset: 0; }
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: heroFade 48s infinite;
}
.hero-slides img:first-child { opacity: 1; }
.hero-slides img:nth-child(2) { animation-delay: 8s; }
.hero-slides img:nth-child(3) { animation-delay: 16s; }
.hero-slides img:nth-child(4) { animation-delay: 24s; }
.hero-slides img:nth-child(5) { animation-delay: 32s; }
.hero-slides img:nth-child(6) { animation-delay: 40s; }

@keyframes heroFade {
  0% { opacity: 0; transform: scale(1.08); }
  6% { opacity: 1; }
  16% { opacity: 1; transform: scale(1); }
  22% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-veil {
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.25) 0%, rgba(10, 9, 8, 0.35) 40%, rgba(10, 9, 8, 0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(232, 93, 4, 0.28), transparent 50%);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.btn-amber { background: var(--amber); color: #1a1204; }

.btn-map {
  width: 3.1rem;
  min-width: 3.1rem;
  min-height: 3.1rem;
  padding: 0;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1204;
  font-size: 1.2rem;
}
.btn-ghost {
  border: 1px solid rgba(243, 234, 216, 0.35);
  color: var(--cream);
  background: rgba(10, 9, 8, 0.25);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.kicker {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-copy {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  padding-top: 9.5rem;
  padding-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.hero-lead {
  max-width: 42rem;
  margin-top: 1.1rem;
  font-size: clamp(1.25rem, 3.1vw, 1.85rem);
  line-height: 1.45;
  font-weight: 500;
  color: rgba(243, 234, 216, 0.92);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.hero-copy .kicker,
.hero-copy .hero-title,
.hero-copy .hero-lead {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.hero-copy.is-out .kicker,
.hero-copy.is-out .hero-title,
.hero-copy.is-out .hero-lead {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: 0s;
}

.hero-copy.is-in .kicker { transition-delay: 0.04s; }
.hero-copy.is-in .hero-title { transition-delay: 0.1s; }
.hero-copy.is-in .hero-lead { transition-delay: 0.16s; }

.menu-toggle-slot {
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
}

.menu-toggle {
  position: fixed;
  top: 0.75rem;
  right: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(240, 162, 2, 0.45);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.45);
  color: var(--cream);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--amber);
  border-radius: 99px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.menu-toggle-bars { position: relative; }
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }

.menu-toggle.is-open .menu-toggle-bars { background: transparent; }
.menu-toggle.is-open .menu-toggle-bars::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  position: relative;
  padding: 0.2rem 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e85d04, var(--amber));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 0 10px rgba(240, 162, 2, 0.35);
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: var(--amber);
  transform: translateY(-1px);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 5, 4, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.mobile-nav-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 85;
  display: flex;
  flex-direction: column;
  width: min(100%, 22.5rem);
  height: 100dvh;
  padding: 5.5rem 1.5rem 2rem;
  background:
    linear-gradient(180deg, rgba(240, 162, 2, 0.16), transparent 28%),
    linear-gradient(180deg, #17130f 0%, #0a0908 100%);
  border-left: 1px solid rgba(240, 162, 2, 0.28);
  color: var(--cream);
  transform: translateX(110%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s var(--ease);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(243, 234, 216, 0.08);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px);
}

.mobile-nav.is-open a {
  animation: menuLink 0.45s var(--ease) forwards;
}

.mobile-nav.is-open a:nth-child(1) { animation-delay: 0.08s; }
.mobile-nav.is-open a:nth-child(2) { animation-delay: 0.14s; }
.mobile-nav.is-open a:nth-child(3) { animation-delay: 0.20s; }
.mobile-nav.is-open a:nth-child(4) { animation-delay: 0.26s; }
.mobile-nav.is-open a:nth-child(5) { animation-delay: 0.32s; }
.mobile-nav.is-open a:nth-child(6) { animation-delay: 0.38s; }
.mobile-nav a:hover { color: var(--amber); }

@keyframes menuLink {
  to { opacity: 1; transform: none; }
}

.site-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 5, 4, 0.78);
  backdrop-filter: blur(10px);
}

.dialog-fade { transition: opacity 0.32s var(--ease); }
.dialog-fade-from { opacity: 0; }
.dialog-fade-to { opacity: 1; }

.dialog-card-in { transition: transform 0.45s var(--ease), opacity 0.45s var(--ease); }
.dialog-card-out { transition: transform 0.22s ease, opacity 0.22s ease; }
.dialog-card-from { opacity: 0; transform: translateY(32px) scale(0.94); }
.dialog-card-to { opacity: 1; transform: none; }

.site-footer {
  border-top: 1px solid rgba(240, 162, 2, 0.18);
  background:
    linear-gradient(180deg, rgba(240, 162, 2, 0.06), transparent 42%),
    #0d0b09;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.85rem;
}

.footer-link {
  position: relative;
  background: none;
  border: 0;
  padding: 0.2rem 0 0.4rem;
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e85d04, var(--amber));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 0 10px rgba(240, 162, 2, 0.35);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--amber);
  transform: translateY(-1px);
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  transform: scaleX(1);
}

.footer-credit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  color: rgba(243, 234, 216, 0.72);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.footer-credit { margin-top: 0; }
.footer-credit:hover { color: var(--amber); }

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

@media (min-width: 640px) {
  .footer-copy {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .footer-credit { justify-content: flex-end; }
}
.footer-credit strong {
  font-weight: 700;
  color: var(--cream);
}
.footer-credit .brace {
  color: var(--amber);
  font-weight: 500;
}

.site-dialog button,
.site-dialog a,
.site-dialog .btn {
  cursor: pointer;
}

.dj-row {
  margin-top: 4.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(243, 234, 216, 0.08);
  text-align: center;
}

.dj-kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.dj-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dj-list li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.dj-sep {
  color: rgba(240, 162, 2, 0.55);
  font-size: 1.6rem;
  line-height: 1;
}

.dj-name {
  padding: 0.2rem 0.15rem;
  border: 0;
  background: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: 0.06em;
  color: var(--cream);
  cursor: pointer;
  position: relative;
  transition: color 0.35s var(--ease);
}

.dj-name::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.1rem;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease);
}

.dj-name:hover,
.dj-name:focus-visible {
  color: var(--amber);
}

.dj-name:hover::after,
.dj-name:focus-visible::after {
  transform: scaleX(1);
}

.view360-card {
  padding: 2.15rem 1.7rem;
  border: 1px solid rgba(255, 224, 102, 0.65);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 10% 0%, #ffe066 0%, transparent 38%),
    linear-gradient(180deg, #ffcc33 0%, #f0a202 58%, #e08900 100%);
  color: #1a1204;
  box-shadow: 0 0 0 1px rgba(255, 224, 102, 0.18), 0 22px 50px rgba(240, 162, 2, 0.28);
  animation: view360Glow 2.8s ease-in-out infinite;
}

.view360-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.22rem 0.7rem;
  border-radius: 99px;
  background: #1a1204;
  color: #ffcc33;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  animation: pulseNext 2.4s ease-in-out infinite;
}

.view360-card h3 { color: #1a1204; }
.view360-card .view360-copy {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  font-weight: 500;
  color: rgba(26, 18, 4, 0.78);
}

.view360-btn {
  background: #1a1204;
  color: #ffcc33;
}

.view360-btn:hover {
  background: #2a1c08;
  color: #ffe08a;
}

@keyframes view360Glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 224, 102, 0.18), 0 22px 50px rgba(240, 162, 2, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(255, 224, 102, 0.12), 0 26px 58px rgba(240, 162, 2, 0.38); }
}

@media (prefers-reduced-motion: reduce) {
  .view360-card,
  .view360-badge {
    animation: none;
  }
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0908;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.preloader.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.is-done {
  display: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.preloader-ring {
  width: 3.5rem;
  height: 3.5rem;
  border: 3px solid rgba(240, 162, 2, 0.22);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: preloaderSpin 0.85s linear infinite;
}

.preloader-inner p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.1rem;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(240, 162, 2, 0.28);
  border-radius: 1.15rem;
  background: rgba(16, 13, 10, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.cookie-bar p {
  flex: 1 1 13rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-bar .btn {
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.news-bar {
  border-top: 1px solid rgba(243, 234, 216, 0.1);
  border-bottom: 1px solid rgba(243, 234, 216, 0.1);
  background: #1c1813;
}

.news-bar-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
}

.news-bar-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--amber);
  color: #1a1204;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}

.news-viewport {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.45em;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 1.25rem), transparent 100%);
}

.news-item {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: nowrap;
}

.news-item-track {
  display: inline-block;
  max-width: none;
  white-space: nowrap;
  will-change: transform;
}

.news-item strong {
  margin-right: 0.4rem;
  color: var(--cream);
}

.news-item.is-in { animation: newsIn 0.55s var(--ease) both; }
.news-item.is-out { animation: newsOut 0.55s var(--ease) both; }

@keyframes newsIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes newsOut {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(-110%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .news-viewport { mask-image: none; }
  .news-item.is-in,
  .news-item.is-out { animation: none; }
  .news-item,
  .news-item-track { white-space: normal; }
  .news-viewport,
  .news-item { height: auto; min-height: 1.45em; }
}

.hero-vanta {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  pointer-events: none;
}

.site-dialog .site-dialog-card {
  animation: dialogCardIn 0.45s var(--ease);
}

@keyframes dialogCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.site-dialog-card {
  width: 100%;
  max-width: 42rem;
  max-height: 80vh;
  overflow: auto;
  padding: 1.5rem;
  border: 1px solid rgba(240, 162, 2, 0.28);
  border-radius: 1.5rem;
  background: #171410;
  color: var(--cream);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.site-dialog-card p,
.site-dialog-card li {
  font-size: 1.08rem;
  line-height: 1.85;
}

.site-dialog-card ol {
  line-height: 1.85;
}

@media (min-width: 768px) {
  .site-dialog { align-items: center; }
  .menu-toggle { right: 1.5rem; }
}

@media (min-width: 1024px) {
  .menu-toggle,
  .menu-toggle-slot,
  .mobile-nav,
  .mobile-nav-scrim { display: none !important; }
  .nav-desktop { display: flex; }
  .map-card { min-height: 100%; }
  .hero-copy {
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.ticket {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%), var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.ticket:hover { transform: translateY(-4px); border-color: rgba(240, 162, 2, 0.4); }

.event-copy {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  hyphenate-limit-chars: 8 3 3;
  text-wrap: pretty;
}

.event-dj-logo {
  display: block;
  height: 3.4rem;
  width: auto;
  max-width: min(100%, 16rem);
  object-fit: contain;
  object-position: left center;
}

.ticket--next .event-dj-logo {
  height: 4rem;
}
.ticket--next {
  background: linear-gradient(180deg, rgba(240, 162, 2, 0.12), transparent 45%), var(--panel-2);
  border-color: rgba(240, 162, 2, 0.35);
}
.ticket--live {
  border-color: rgba(232, 93, 4, 0.7);
  box-shadow: 0 0 0 1px rgba(232, 93, 4, 0.25), 0 20px 50px rgba(232, 93, 4, 0.12);
}
.ticket--cancelled { opacity: 0.62; }
.badge-live { animation: pulseGlow 1.6s ease-in-out infinite; }

.badge-next {
  animation: pulseNext 2.4s ease-in-out infinite;
}

@keyframes pulseNext {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 162, 2, 0.45); }
  50% { transform: scale(1.04); box-shadow: 0 0 0 8px rgba(240, 162, 2, 0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(232, 93, 4, 0); }
}

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  background: #111;
}
@media (min-width: 768px) {
  .gallery-grid a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-grid a:hover img { transform: scale(1.06); }

.review-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0.25rem -0.35rem 0;
  padding: 0.9rem 0.35rem 1.15rem;
  -webkit-overflow-scrolling: touch;
}
.review-rail::-webkit-scrollbar { height: 6px; }
.review-rail::-webkit-scrollbar-thumb { background: rgba(240, 162, 2, 0.5); border-radius: 99px; }
.review-card { flex: 0 0 min(86vw, 360px); scroll-snap-align: start; }

.dialog-scrim { background: rgba(6, 5, 4, 0.72); backdrop-filter: blur(10px); }
.lightbox-img { max-height: 88vh; max-width: 94vw; object-fit: contain; }

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.6rem, env(safe-area-inset-top)) max(0.6rem, env(safe-area-inset-right)) max(0.6rem, env(safe-area-inset-bottom)) max(0.6rem, env(safe-area-inset-left));
  background: rgba(6, 5, 4, 0.86);
}

.poster-modal-card {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.poster-modal-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 42rem);
  max-height: min(92svh, 92vh);
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.poster-modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 1;
  min-height: 2.15rem;
  padding: 0.35rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1204;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.poster-modal-close:hover,
.poster-modal-close:focus-visible {
  background: #0a0908;
  color: var(--amber);
}

@media (max-width: 640px) {
  .poster-modal-card img {
    max-width: 100%;
    max-height: min(90svh, 90vh);
  }
  .poster-modal-close {
    top: 0.35rem;
    right: 0.35rem;
  }
}
.hour-row + .hour-row { border-top: 1px solid var(--line); }

.map-card {
  position: relative;
  min-height: 28rem;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(240, 162, 2, 0.28);
  border-radius: 1.5rem;
  background: #171410;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.7) contrast(1.08) brightness(0.78);
}

.page-404 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-404-header {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem;
}

.page-404-header img {
  height: 3.2rem;
  width: auto;
}

.page-404-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 3.5rem;
}

.page-404-code {
  margin: 0 0 0.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(6.5rem, 24vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.page-404-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.page-404-lead {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.page-404-footer {
  padding: 2.2rem 1.25rem;
}

.page-404-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.page-404-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slides img, .badge-live, .badge-next, .btn, .ticket, .gallery-grid img { animation: none; transition: none; }
  .hero-slides img:first-child { opacity: 1; transform: none; }
  .hero-slides img:not(:first-child) { display: none; }
  .mobile-nav, .mobile-nav a,
  .hero-copy .kicker, .hero-copy .hero-title, .hero-copy .hero-lead,
  .dialog-fade, .dialog-card-in, .dialog-card-out, .preloader, .preloader-ring { animation: none; transition: none; }
}
