/* Decibel Easter Festival — Techno Open Air style */

/* Self-hosted (Bebas Neue + Inter) — no Google Fonts dependency */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/BebasNeue-Regular-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/Inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/Inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #0a0a0c;
  --bg-panel: #121216;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e8ff47;
  --accent-2: #e8ff47;
  --accent-hover: #f0ff6e;
  --accent-hover-2: #f0ff6e;
  --accent-on: #0a0a0c;
  --accent-bg: var(--accent);
  --accent-hover-bg: var(--accent-hover);
  --border: rgba(255, 255, 255, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 64px;
  --page-gutter: clamp(24px, 5vw, 64px);
  --section-pad: clamp(72px, 8vw, 112px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 140ms;
  --duration: 180ms;
  --duration-slow: 220ms;
  --duration-panel: 220ms;
  --duration-media: 400ms;
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px color-mix(in srgb, var(--accent) 85%, white);
  --media-filter-core: saturate(0.62) contrast(1.04);
  --media-brightness: 0.96;
  --media-filter: var(--media-filter-core) brightness(var(--media-brightness));
  --media-filter-hover: saturate(1) contrast(1.02) brightness(1);
  --media-tint-opacity: 0.1;
}

*, *::before, *::after { box-sizing: border-box; }

button,
input,
textarea,
select,
a,
summary,
[role="button"],
[tabindex]:not([tabindex="-1"]) {
  -webkit-tap-highlight-color: transparent;
}
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
a:focus:not(:focus-visible),
summary:focus:not(:focus-visible),
[role="button"]:focus:not(:focus-visible),
[tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
  outline: none;
}
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
button::-moz-focus-inner {
  border: 0;
}

::selection {
  background: color-mix(in srgb, var(--accent) 45%, transparent);
  color: var(--text);
}

html {
  scrollbar-color: color-mix(in srgb, var(--accent) 55%, #3f3f46) var(--bg-panel);
  scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 10px; height: 10px; }
html::-webkit-scrollbar-track { background: var(--bg-panel); }
html::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 40%, #3f3f46);
  border-radius: 999px;
  border: 2px solid var(--bg-panel);
}
html::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent) 65%, #3f3f46);
}

html { scroll-behavior: smooth; }
html, body { margin: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Global editorial media treatment ── */
:is(
  .feature-card > img,
  .feature-card .feature-bg,
  .lockers-hero::before
) {
  filter: var(--media-filter);
  transition:
    filter var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out);
}

.feature-card:hover > img,
.feature-card:hover .feature-bg,
.lockers-hero:hover::before {
  filter: var(--media-filter-hover);
}

/* Carousel slides: opacity + filter owned here (not cms-managed-media fade) */
.hotel-slides img {
  position: relative;
  z-index: 0;
  filter: var(--media-filter);
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out),
    filter var(--duration-media) var(--ease-out);
  will-change: opacity, transform, filter;
}
.hotel-slides img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hotel-slides img:not(.active) {
  z-index: 1;
}
.hotel-card:hover .hotel-slides img {
  filter: var(--media-filter-hover);
}

:is(.feature-card, .hotel-media)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--accent-bg);
  opacity: var(--media-tint-opacity);
  pointer-events: none;
  transition: opacity var(--duration-media) var(--ease-out);
}

.feature-card:hover::after,
.hotel-card:hover .hotel-media::after {
  opacity: 0;
}

.feature-card > img,
.feature-card .feature-bg {
  position: relative;
  z-index: 0;
}

.feature-overlay,
.feature-content,
.hotel-info,
.hotel-header,
.btn-locker-single {
  position: relative;
  z-index: 2;
}
a { color: inherit; }

.container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

/* ── Header — Nav Rail + Overlay ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
  padding-inline: var(--page-gutter);
  max-width: min(1320px, 100%);
  margin: 0 auto;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.brand-link { display: flex; align-items: center; min-width: 0; text-decoration: none; }
.brand-logo-text {
  display: inline-flex;
  align-items: stretch;
  gap: 0.12em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(1.45rem, 3.8vw, 2rem);
  max-width: min(300px, 62vw);
}
.brand-logo-text[data-len="medium"] {
  font-size: clamp(1.28rem, 3.4vw, 1.78rem);
}
.brand-logo-text[data-len="long"] {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  gap: 0.1em;
}
.brand-logo-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding-block: 0.035em;
}
.brand-logo-main {
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-logo-accent,
.brand-logo-end {
  font-family: var(--font-display);
  font-size: 0.34em;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.brand-logo-accent {
  transform: translate(0em, 0.07em);
}
.brand-logo-end {
  transform: translate(0em, -0.29em);
}
.brand-logo-text--footer {
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  max-width: none;
  margin-bottom: 16px;
}
.brand-logo-text--footer[data-len="medium"] {
  font-size: clamp(1.4rem, 3.8vw, 1.95rem);
}
.brand-logo-text--footer[data-len="long"] {
  font-size: clamp(1.2rem, 3.2vw, 1.7rem);
}
.back-home {
  display: inline-flex;
  align-items: center;
  align-self: center;
  color: var(--muted);
  text-decoration: none;
  padding: 8px;
  margin-left: -4px;
  transition: color var(--duration) var(--ease-out);
  flex-shrink: 0;
}
.back-home:hover { color: var(--text); }
.back-home svg { width: 18px; height: 18px; }

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}
.lang-switch-sep {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.58rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.lang-switch-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 7px;
  cursor: pointer;
  transition: color var(--duration) var(--ease-out);
}
.lang-switch-btn.active {
  background: transparent;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}
.lang-switch-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
}

.nav-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  padding: 10px 18px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
  height: 40px;
}
.nav-explore-btn:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}
.nav-explore-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 14px;
}
.nav-explore-icon span {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-explore-icon span:nth-child(2) { width: 70%; }

.btn-header-tickets {
  background: var(--accent-bg);
  color: var(--accent-on);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
  white-space: nowrap;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-header-tickets:hover {
  background: var(--accent-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}

/* Nav rail removed — links live in overlay menu only */

/* Overlay menu grid */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}
.nav-overlay.open {
  pointer-events: auto;
  visibility: visible;
}
.nav-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  opacity: 0;
  transition: opacity var(--duration-panel) var(--ease-out);
}
.nav-overlay.open .nav-overlay-backdrop { opacity: 1; }
.nav-overlay-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  background: var(--bg-panel);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform var(--duration-panel) var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 40px);
}
.nav-overlay.open .nav-overlay-panel { transform: translateX(0); }
.nav-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.nav-overlay-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-overlay-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  transition:
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.nav-overlay-close:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.nav-overlay-grid {
  display: grid;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}
.nav-overlay-tile {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition:
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.nav-overlay-tile:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  transform: translateX(6px);
  box-shadow: -4px 8px 24px rgba(0,0,0,0.35);
}
.nav-overlay-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.nav-overlay-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-overlay-arrow {
  color: var(--muted);
  font-size: 1rem;
  transition:
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}
.nav-overlay-tile:hover .nav-overlay-arrow {
  color: var(--accent);
  transform: translateX(4px);
}
.nav-overlay-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
body.nav-overlay-open { overflow: hidden; }

/* ── Marquee ── */
.page-sections {
  padding-top: var(--header-h);
}
.marquee-bar {
  background: var(--accent-bg);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-bar--hero { margin-top: 0; }
.marquee-bar.is-off,
.marquee-bar[hidden] {
  display: block !important;
  height: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 28s) linear infinite;
}
.marquee-track span {
  flex-shrink: 0;
  padding: 10px 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-on);
  white-space: nowrap;
  padding-right: 48px;
}
@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(var(--marquee-end, -50%), 0, 0); }
}

/* ── TEMP PROMO (#promo): rimuovere con markup in index.html a fine campagna ── */
.promo {
  --promo-chrome: var(--header-h);
  --promo-h: calc(100svh - var(--promo-chrome));
  --promo-h: calc(100dvh - var(--promo-chrome));
  /* Same horizontal inset as .header-shell */
  --promo-nav-inset: max(
    var(--page-gutter),
    calc((100vw - min(1320px, 100vw)) / 2 + var(--page-gutter))
  );
  position: relative;
  width: 100%;
  height: var(--promo-h);
  min-height: var(--promo-h);
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}
/* When rolling text immediately precedes promo, subtract its bar from available height */
#marqueeBar:not(.is-off):not([hidden]) + .promo {
  --promo-chrome: calc(var(--header-h) + 36px);
  /* Keep artwork clear of the accent bar (baked title sits on the image edge) */
  padding-top: 12px;
  background-color: #050505;
}
.promo-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
}
.promo-media picture {
  display: contents;
}
.promo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045);
  filter: brightness(2.4) contrast(1.35) saturate(1.15);
  will-change: transform, filter;
  transform-origin: center center;
}
html.site-ready .promo-media {
  opacity: 1;
}
html.site-ready .promo-media img {
  transform: none;
  filter: none;
}
html.site-ready .promo-media:not(.promo-settled) img,
.promo-media.is-reflashing img {
  animation: promo-glitch-in 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.promo-cta {
  position: absolute;
  z-index: 2;
  left: var(--promo-nav-inset);
  right: var(--promo-nav-inset);
  bottom: calc(clamp(28px, 7vw, 56px) + env(safe-area-inset-bottom, 0px));
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.promo-box {
  --promo-btn: #d4d4d4;
  pointer-events: auto;
  width: min(100%, 22.5rem);
  display: grid;
  gap: 0;
  padding: 10px;
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(18, 18, 20, 0.88) 0%, rgba(8, 8, 10, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  will-change: transform, opacity;
}
html.site-ready .promo-box {
  animation: promo-btn-in 380ms cubic-bezier(0.16, 1, 0.3, 1) 320ms forwards;
}
.promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--promo-btn);
  color: #0a0a0c;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: clamp(14px, 2vw, 18px) clamp(18px, 3vw, 28px);
  border: 2px solid var(--promo-btn);
  border-radius: 8px;
  transition:
    background var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}
.promo-btn:hover {
  background: transparent;
  color: var(--promo-btn);
  border-color: var(--promo-btn);
  box-shadow: 0 0 0 1px var(--promo-btn) inset, 0 12px 32px rgba(0, 0, 0, 0.4);
}
.promo-btn:active {
  transform: scale(0.98);
}
.promo-schedule {
  list-style: none;
  margin: 0;
  padding: 12px 10px 6px;
  display: grid;
  gap: 10px;
}
.promo-schedule-row {
  display: grid;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 8px;
}
.promo-schedule-row + .promo-schedule-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 2px;
  border-radius: 0 0 8px 8px;
}
.promo-schedule-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}
.promo-schedule-when {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f2f2f2;
  line-height: 1.15;
}
@keyframes promo-glitch-in {
  0% {
    opacity: 0;
    transform: scale(1.06) translateX(-6px);
    filter: brightness(3.2) contrast(1.6) saturate(1.4);
    clip-path: inset(18% 0 42% 0);
  }
  18% {
    opacity: 1;
    transform: scale(1.03) translateX(5px);
    filter: brightness(1.8) contrast(1.35) hue-rotate(-8deg);
    clip-path: inset(0 0 12% 0);
  }
  32% {
    transform: scale(1.015) translateX(-3px);
    filter: brightness(0.75) contrast(1.25) saturate(1.2);
    clip-path: inset(0 0 0 0);
  }
  48% {
    transform: scale(1.01) translateX(2px);
    filter: brightness(1.35) contrast(1.1);
  }
  100% {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes promo-btn-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.9);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 767.98px) {
  .promo {
    /* Full poster in flow; CTA stacks below (no overlay on artwork). */
    height: auto;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    padding-bottom: clamp(32px, 8vw, 64px);
  }
  .promo-media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #050505;
  }
  .promo-media img {
    /* Show the full mobile artwork — no cover-crop under header/marquee */
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
    transform: none;
    filter: none;
    animation: none !important;
  }
  .promo-cta {
    position: relative !important;
    z-index: 2;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto !important;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    margin-top: -40px;
    padding: 0 var(--promo-nav-inset);
  }
  .promo-box {
    width: min(100%, 22.5rem);
  }
}
@media (min-width: 768px) {
  .promo-cta {
    justify-content: flex-end;
    bottom: clamp(28px, 4vw, 48px);
  }
  .promo-box {
    width: min(100%, 24rem);
    padding: 12px;
  }
  .promo-schedule {
    padding: 14px 12px 8px;
    gap: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .promo-media,
  .promo-media img,
  .promo-box {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
  .promo-media.is-reflashing img {
    animation: none !important;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  min-height: calc(100dvh - var(--header-h) - 36px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background: transparent;
  --hero-image: none;
  --hero-filter-core: saturate(0.81) contrast(1.02);
  --hero-brightness: 0.98;
  --hero-filter: var(--hero-filter-core) brightness(var(--hero-brightness));
  --hero-filter-hover: saturate(0.905) contrast(1.01) brightness(0.99);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-image) center/cover no-repeat;
  filter: var(--hero-filter);
  transition:
    filter var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out);
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0.125) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.475) 100%);
  opacity: 1;
  transition: opacity var(--duration-media) var(--ease-out);
}
.hero:hover::before {
  filter: var(--hero-filter-hover);
  transform: scale(1.015);
}
.hero:hover::after {
  opacity: 0.89;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1320px, 100%);
  padding-block: clamp(56px, 7vw, 96px) clamp(72px, 9vw, 128px);
  box-sizing: border-box;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.hero-title .accent { color: var(--accent); }
.hero-meta {
  margin-top: 20px;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-meta .sep { color: var(--muted); margin: 0 8px; }
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-reveal-item {
  opacity: 0;
  transform: translateY(22px);
}
html.site-ready .hero-reveal-item {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out);
}
html.site-ready .hero-eyebrow.hero-reveal-item {
  transition-delay: 120ms;
}
html.site-ready .hero-title.hero-reveal-item {
  transition-delay: 240ms;
}
html.site-ready .hero-meta.hero-reveal-item {
  transition-delay: 400ms;
}
html.site-ready .hero-actions .hero-reveal-item:nth-child(1) {
  transition-delay: 400ms;
}
html.site-ready .hero-actions .hero-reveal-item:nth-child(2) {
  transition-delay: 400ms;
}
@media (prefers-reduced-motion: reduce) {
  .hero-reveal-item {
    opacity: 1;
    transform: none;
  }
  html.site-ready .hero-reveal-item {
    transition: none;
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-bg);
  color: var(--accent-on);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}
.btn-primary:hover {
  background: var(--accent-hover-bg);
  border-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition:
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.btn-ghost:active { transform: translateY(0) scale(0.98); }
.btn-arrow::after { content: '→'; }

/* ── Countdown ── */
.countdown-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.countdown-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
}
.countdown-item { text-align: center; }
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--text);
}
.countdown-unit {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.countdown-target {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Section common ── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section:not(.section-dark):not(#faq)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0.75;
}
.section-dark {
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 58%),
    radial-gradient(ellipse 60% 45% at 0% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 52%),
    var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Dynamic stripes: special sections must follow the same alternate tones */
.section-lockers.section-dark,
.section-media.section-dark,
.section#faq.section-dark,
.newsletter-section.section-dark {
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 58%),
    radial-gradient(ellipse 60% 45% at 0% 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 52%),
    var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-media.section-dark::before {
  opacity: 0.35;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(32px, 5vw, 52px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: clamp(72px, 10vw, 140px);
  height: 2px;
  background: var(--accent-bg);
}
.section-head .section-tagline {
  margin-bottom: 0;
  max-width: min(360px, 42vw);
  text-align: right;
  line-height: 1.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
  color: var(--text);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.section-tagline {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-lockers {
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%),
    var(--bg);
}
.section-media {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.4) 100%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.012) 3px,
      rgba(255, 255, 255, 0.012) 4px
    ),
    radial-gradient(ellipse 80% 50% at 50% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 58%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.section-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.35));
  opacity: 1;
}

/* ── Lineup marquee block ── */
.lineup-marquee-section {
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}
.lineup-marquee-wrap { overflow: hidden; }
.lineup-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 22s) linear infinite;
}
.lineup-marquee-text {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  padding: clamp(24px, 4vw, 48px) 0.35em clamp(24px, 4vw, 48px) 0;
}
@media (prefers-reduced-motion: reduce) {
  .lineup-marquee-track {
    --marquee-duration: 48s !important;
  }
}
.lineup-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.lineup-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lineup-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.lineup-btn:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.lineup-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.lineup-btn:hover {
  background: var(--accent-hover-bg);
  border-color: var(--accent-hover);
  color: var(--accent-on);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}
.lineup-btn.active {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-on);
}
.lineup-separator { display: none; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.artist-card { position: relative; }
.artist-card.hidden { display: none !important; }
.artist-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #141414;
}
.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  --lineup-brightness: 1;
  filter: var(--media-filter-core) brightness(calc(var(--media-brightness) * var(--lineup-brightness)));
  transition:
    transform var(--duration-media) var(--ease-out),
    filter var(--duration-media) var(--ease-out);
}
.artist-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--accent-bg);
  opacity: var(--media-tint-opacity);
  pointer-events: none;
  transition: opacity var(--duration-media) var(--ease-out);
}
.artist-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 22%,
    transparent 46%,
    transparent 58%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.artist-card:hover .artist-media img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.02) brightness(var(--lineup-brightness, 1));
}
.artist-card:hover .artist-media::before {
  opacity: 0;
}
.day-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.day-badge::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent) 55%, transparent);
  flex-shrink: 0;
}
.day-badge-label {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
}
.day-badge-num {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
}
.artist-card:hover .day-badge-label,
.artist-card:hover .day-badge-num {
  color: #fff;
}
.artist-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 12px 8px;
  background: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}
.lineup-text {
  margin-top: 40px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.lineup-cta-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0 0;
}

/* ── Feature cards (location, gallery, etc.) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.feature-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
}
.feature-card img,
.feature-card .feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--duration-media) var(--ease-out),
    filter var(--duration-media) var(--ease-out),
    opacity var(--duration-panel) var(--ease-out);
}
.feature-card .feature-bg {
  background: var(--feature-gallery-image, none) center/cover no-repeat;
}
#featureLocationBg {
  background: var(--feature-location-image, none) center/cover no-repeat;
}
.feature-card:hover img,
.feature-card:hover .feature-bg { transform: scale(1.04); }
.feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.feature-content {
  position: relative;
  z-index: 3;
  padding: 32px;
}
.feature-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}
.feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  max-width: 400px;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  transition:
    gap var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out);
}
.feature-card:hover .feature-link {
  gap: 14px;
  border-color: var(--accent);
}

/* ── Tickets pricing grid (shadcn-inspired) ── */
.tickets-pricing {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
.tickets-controls {
  --tickets-control-label-h: 2.45em;
  --tickets-control-row-h: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(28px, 5vw, 56px);
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tickets-tier-panel {
  flex: 0 1 300px;
  width: min(100%, 300px);
  margin: 0;
  display: grid;
  grid-template-rows: var(--tickets-control-label-h) var(--tickets-control-row-h);
  gap: 12px;
  align-content: start;
}
.tickets-early-panel {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
  display: grid;
  grid-template-rows: var(--tickets-control-label-h) var(--tickets-control-row-h);
  gap: 12px;
  align-content: start;
}
.tickets-early-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--tickets-control-row-h);
  min-height: var(--tickets-control-row-h);
}
.tickets-early-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tickets-early-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tickets-early-toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid color-mix(in srgb, var(--text) 18%, var(--border));
  transition:
    background var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-out);
}
.tickets-early-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--duration-slow) var(--ease-out),
    background var(--duration-slow) var(--ease-out);
}
.tickets-early-checkbox:checked + .tickets-early-toggle {
  background: var(--accent-bg);
  border-color: color-mix(in srgb, var(--accent) 70%, var(--border));
}
.tickets-early-checkbox:checked + .tickets-early-toggle .tickets-early-toggle-thumb {
  transform: translateX(20px);
  background: #fff;
}
.tickets-early-label {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color var(--duration-slow) var(--ease-out);
}
.tickets-early-checkbox:checked ~ .tickets-early-label,
.tickets-pricing.is-early .tickets-early-label {
  color: var(--text);
}
.tickets-early-help-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.tickets-early-help {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 20%, var(--border));
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  cursor: help;
  display: grid;
  place-items: center;
  padding: 0;
  transition:
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out);
}
.tickets-early-help:hover,
.tickets-early-help:focus-visible {
  color: var(--text);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}
.tickets-early-tooltip {
  position: absolute;
  right: 0;
  left: auto;
  bottom: calc(100% + 10px);
  transform: translateY(4px);
  width: min(320px, 78vw);
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.96);
  color: var(--text);
  text-align: left;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    visibility var(--duration) var(--ease-out);
  z-index: 20;
}
.tickets-early-tooltip-title {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--accent-on), #fff);
}
.tickets-early-tooltip-text {
  display: block;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.tickets-early-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(8, 8, 8, 0.96);
}
.tickets-early-help-wrap:hover .tickets-early-tooltip,
.tickets-early-help-wrap:focus-within .tickets-early-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tickets-tier-eyebrow {
  margin: 0;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tickets-tier-panel .tickets-tier-eyebrow {
  justify-content: center;
  text-align: center;
}
.tickets-early-panel .tickets-tier-eyebrow {
  justify-content: flex-start;
  text-align: left;
}
.tickets-tier-switch {
  width: 100%;
  height: var(--tickets-control-row-h);
  min-height: var(--tickets-control-row-h);
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  transition: border-color var(--duration-slow) var(--ease-out);
}
.tickets-pricing:not(.is-vip) .tickets-tier-switch,
.tickets-pricing.is-vip .tickets-tier-switch {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
}
.tickets-tier-switch.is-tier-dragging {
  cursor: grabbing;
  touch-action: none;
}
.tickets-tier-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 2);
  height: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
  transition:
    transform var(--duration-slow) var(--ease-out),
    background var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}
@keyframes tier-indicator-nudge-regular {
  0%, 76%, 100% { transform: translateX(0); }
  28% { transform: translateX(11px); }
  42% { transform: translateX(-3px); }
  52% { transform: translateX(0); }
}
@keyframes tier-indicator-nudge-vip {
  0%, 76%, 100% { transform: translateX(100%); }
  28% { transform: translateX(calc(100% - 6px)); }
  42% { transform: translateX(calc(100% + 6px)); }
  52% { transform: translateX(100%); }
}
.tickets-tier-switch:not(:hover):not(:focus-within):not(.is-tier-interacted):not(.is-tier-dragging) .tickets-tier-indicator {
  animation: tier-indicator-nudge-regular 2.8s var(--ease-out) infinite;
}
.tickets-pricing.is-vip .tickets-tier-switch:not(:hover):not(:focus-within):not(.is-tier-interacted):not(.is-tier-dragging) .tickets-tier-indicator {
  animation-name: tier-indicator-nudge-vip;
}
.tickets-tier-switch:hover .tickets-tier-indicator,
.tickets-tier-switch:focus-within .tickets-tier-indicator,
.tickets-tier-switch.is-tier-interacted .tickets-tier-indicator,
.tickets-tier-switch.is-tier-dragging .tickets-tier-indicator {
  animation: none;
}
.tickets-pricing:not(.is-vip) .tickets-tier-indicator {
  background: var(--accent-bg);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.tickets-pricing.is-vip .tickets-tier-indicator {
  transform: translateX(100%);
  background: var(--accent-bg);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.tickets-tier-switch.is-tier-dragging .tickets-tier-indicator {
  transition: none !important;
}
.tickets-tier-indicator.is-drag-preview-vip,
.tickets-tier-switch.is-tier-dragging .tickets-tier-indicator.is-drag-preview-vip {
  background: var(--accent-bg);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.tickets-tier-switch.is-tier-dragging .tickets-tier-indicator:not(.is-drag-preview-vip) {
  background: var(--accent-bg);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--accent) 45%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.tickets-tier-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 15px 18px;
}
.tickets-tier-option-label {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  line-height: 1;
}
.tickets-tier-option-label-base,
.tickets-tier-option-label-fill {
  grid-column: 1;
  grid-row: 1;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: inherit;
  font-size: inherit;
  white-space: nowrap;
}
.tickets-tier-option-label-base {
  color: var(--muted);
}
.tickets-tier-option-vip .tickets-tier-option-label-base {
  color: var(--accent);
}
.tickets-tier-option-label-fill {
  color: var(--text);
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
}
.tickets-tier-option:not(.tickets-tier-option-vip) .tickets-tier-option-label-fill {
  color: var(--accent-on);
}
.tickets-tier-option-vip .tickets-tier-option-label-fill {
  color: var(--accent-on);
}
.tickets-tier-switch:not(.is-tier-dragging) .tickets-tier-option.is-active .tickets-tier-option-label-fill {
  clip-path: inset(0 0 0 0);
}
.tickets-tier-switch:not(.is-tier-dragging) .tickets-tier-option:not(.is-active) .tickets-tier-option-label-fill {
  clip-path: inset(0 100% 0 0);
}
.tickets-tier-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .tickets-tier-indicator {
    transition: none;
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .tickets-controls {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }
  .tickets-tier-panel,
  .tickets-early-panel {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    justify-items: center;
    text-align: center;
  }
  .tickets-tier-panel .tickets-tier-eyebrow,
  .tickets-early-panel .tickets-tier-eyebrow {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .tickets-tier-switch {
    width: min(100%, 300px);
  }
  .tickets-early-row {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: auto;
    min-height: var(--tickets-control-row-h);
  }
  .tickets-early-switch {
    justify-content: center;
    max-width: 100%;
  }
  .tickets-early-label {
    white-space: normal;
    text-align: center;
  }
  .tickets-tier-option { padding: 14px 12px; font-size: 0.88rem; }
  .tickets-early-tooltip {
    left: 50%;
    right: auto;
    transform: translate(-50%, 4px);
  }
  .tickets-early-help-wrap:hover .tickets-early-tooltip,
  .tickets-early-help-wrap:focus-within .tickets-early-tooltip {
    transform: translate(-50%, 0);
  }
}
.tickets-pricing-grid {
  --tickets-cols: 4;
  --tickets-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--tickets-gap);
  align-items: stretch;
  padding: 36px 0 24px;
  max-width: 1120px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.tickets-pricing-grid.is-tier-resizing {
  overflow: hidden;
  transition: height var(--tier-resize-duration, 220ms) var(--tier-resize-ease, var(--ease-out));
}
.tickets-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - (var(--tickets-cols) - 1) * var(--tickets-gap)) / var(--tickets-cols));
  max-width: calc((100% - (var(--tickets-cols) - 1) * var(--tickets-gap)) / var(--tickets-cols));
  min-width: 0;
  height: 100%;
  align-self: stretch;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: var(--bg-panel);
  text-align: left;
  overflow: hidden;
  transition:
    border-color var(--duration-panel) var(--ease-out),
    box-shadow var(--duration-panel) var(--ease-out);
}
.tickets-pricing-card.is-popular {
  z-index: 2;
  overflow: visible;
  border-color: var(--accent);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}
.tickets-pricing-card.is-popular .tickets-pricing-card-inner {
  overflow: hidden;
  border-radius: inherit;
}
.tickets-pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent-on);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--accent) 25%, transparent);
}
.tickets-pricing-card:only-child {
  flex: 0 1 min(100%, 340px);
  max-width: min(100%, 340px);
}
.tickets-pricing-card.lineup-reveal-prep {
  opacity: 0 !important;
  transition: none !important;
}
.tickets-slot-price {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
  line-height: 1;
}
.tickets-slot-col {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: baseline;
}
.tickets-slot-reel {
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0);
  transition: transform var(--duration-panel) var(--ease-out);
  will-change: transform;
}
.tickets-slot-col.is-rolling .tickets-slot-reel {
  transition-duration: var(--duration-panel);
}
.tickets-slot-cell {
  height: 1em;
  line-height: 1;
  display: block;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.tickets-slot-sep {
  display: inline-block;
  padding: 0 0.02em;
}
.tickets-pricing-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 10px 10px 22px;
  transition: opacity var(--duration-slow) var(--ease-out);
}
.tickets-pricing-card-head {
  background: #1a1a1a;
  border-radius: 18px;
  padding: 22px 18px 20px;
}
.tickets-pricing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 22px 10px 0;
}
.tickets-pricing-name {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  white-space: nowrap;
}
.tickets-pricing-name:empty {
  display: none;
}
.tickets-pricing-date {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #888888;
  text-align: left;
}
.tickets-pricing-date[hidden] {
  display: none;
}
.tickets-pricing-eyebrow {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  color: color-mix(in srgb, var(--text) 48%, transparent);
  letter-spacing: -0.01em;
  text-transform: none;
}
.tickets-pricing-eyebrow:empty,
.tickets-pricing-eyebrow[hidden] {
  display: none;
}
.tickets-pricing-price-row {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: 'tnum' 1, 'lnum' 1;
}
.tickets-pricing-price-row[hidden] {
  display: none;
}
.tickets-pricing-main-row {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.tickets-pricing-compare-row {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tickets-pricing-compare-row.is-open {
  display: flex;
}
.tickets-pricing-compare-row-inner {
  display: contents;
}
.tickets-pricing-compare-row[hidden] {
  display: none !important;
}
.tickets-pricing-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #121212;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}
.tickets-pricing-discount-badge[hidden] {
  display: none !important;
}
.tickets-pricing-price-compare {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: color-mix(in srgb, var(--accent) 50%, var(--muted));
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
}
.tickets-pricing-price-compare .currency {
  font-size: 1em;
  font-weight: 400;
}
.tickets-pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}
.tickets-pricing-price.has-compare {
  color: #ffffff;
}
.tickets-pricing-price .currency {
  font-size: 1em;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.tickets-pricing-period {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
}
.tickets-pricing-price[hidden],
.tickets-pricing-period[hidden] {
  display: none !important;
}
.tickets-pricing-features-wrap {
  flex: 0 0 auto;
  margin-top: 20px;
  min-height: 0;
}
.tickets-pricing-features-wrap[hidden] {
  display: none;
}
.tickets-pricing-features-label {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
}
.tickets-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: left;
}
.tickets-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #aaaaaa;
}
.tickets-pricing-features li span {
  color: color-mix(in srgb, var(--text) 82%, transparent);
}
.tickets-feature-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 999px;
  background: #242424;
  color: color-mix(in srgb, var(--accent) 70%, #cccccc);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.tickets-check-icon {
  display: block;
}
.tickets-pricing-card-footer {
  display: none;
}
.tickets-pricing-cta {
  display: block;
  width: 100%;
  margin-top: 22px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  transition:
    background var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-out),
    color var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}
.tickets-pricing-cta:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: var(--bg-panel);
  color: var(--text);
}
.tickets-pricing-cta:active {
  transform: scale(0.98);
}
.tickets-pricing-cta.is-primary {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent-on);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 28%, transparent);
}
.tickets-pricing-cta.is-primary:hover {
  background: var(--accent-hover-bg);
  color: var(--accent-on);
  border-color: var(--accent-hover);
}
.tickets-pricing-cta[hidden] {
  display: none !important;
}
.tickets-pricing-divider {
  width: 100%;
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  margin: 24px 0 0;
}
.tickets-pricing-divider[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .tickets-pricing-card {
    transition:
    border-color var(--duration-panel) var(--ease-out),
    box-shadow var(--duration-panel) var(--ease-out);
  }
  .tickets-pricing-grid.is-tier-resizing {
    transition: none;
  }
  .tickets-pricing-card-inner {
    transition: none;
  }
}
@media (max-width: 1100px) {
  .tickets-pricing-grid {
    --tickets-cols: 2;
    perspective: none;
    padding-top: 12px;
  }
  .tickets-pricing-card.is-popular { order: -1; }
  .tickets-pricing-card:last-child:nth-child(odd):not(:only-child) {
    margin-inline: auto;
  }
  .tickets-pricing-grid:has(.is-popular) .tickets-pricing-card:last-child {
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .tickets-pricing-grid { perspective: none; }
}
@media (max-width: 640px) {
  .tickets-tier-toggle-wrap { margin-bottom: 24px; }
  .tickets-tier-toggle { gap: 10px; }
  .tickets-tier-label { font-size: 0.75rem; }
  .tickets-pricing-grid {
    --tickets-cols: 1;
    --tickets-gap: 14px;
    padding: 16px 0 12px;
  }
  .tickets-pricing-card {
    flex: 0 1 100%;
    max-width: 100%;
    min-height: 0;
    border-radius: 20px;
  }
  .tickets-pricing-card.is-popular {
    order: -1;
    flex: 0 1 100%;
    max-width: 100%;
  }
  .tickets-pricing-card:last-child:nth-child(odd):not(:only-child),
  .tickets-pricing-grid:has(.is-popular) .tickets-pricing-card:last-child {
    margin-inline: 0;
  }
  .tickets-pricing-card-inner {
    padding: 8px 8px 18px;
  }
  .tickets-pricing-card-head {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }
  .tickets-pricing-card-body {
    padding: 18px 6px 0;
  }
  .tickets-pricing-name {
    font-size: 1.15rem;
  }
  .tickets-pricing-date {
    font-size: 0.8rem;
  }
  .tickets-pricing-price {
    font-size: clamp(2.15rem, 9vw, 2.55rem);
    font-weight: 800;
  }
  .tickets-pricing-price .currency {
    font-weight: 800;
  }
  .tickets-pricing-period {
    font-size: 0.82rem;
  }
  .tickets-pricing-cta {
    margin-top: 18px;
    padding: 13px 16px;
    font-size: 0.86rem;
  }
  .tickets-pricing-features-wrap {
    margin-top: 16px;
  }
  .tickets-pricing-features {
    gap: 12px;
  }
  .tickets-pricing-features li {
    font-size: 0.82rem;
    gap: 10px;
  }
}

/* legacy ticket cards (unused) */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ticket-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-out);
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}
.ticket-art {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    #222 0%,
    #141414 45%,
    color-mix(in srgb, var(--accent) 18%, #101010) 100%
  );
}
.ticket-card .ticket-art { border-top: 3px solid var(--accent); }
.label-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.label-date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.ticket-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.price-row { margin-bottom: 16px; }
.price-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 4px;
}
.price .currency { font-size: 1.5rem; }
.price .suffix { font-size: 0.75rem; color: var(--muted); font-family: var(--font-body); }
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.ticket-features li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.ticket-features li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.btn-buy {
  display: block;
  text-align: center;
  background: var(--accent-bg);
  color: var(--accent-on);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out);
}
.btn-buy:hover {
  background: var(--accent-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}
.btn-buy.alt { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-buy.alt:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-on);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

/* ── Lockers ── */
.lockers-panel {
  position: relative;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    color-mix(in srgb, var(--accent) 30%, transparent) 28%,
    color-mix(in srgb, var(--accent-2), var(--accent)) 30%, transparent) 72%,
    var(--accent-2), var(--accent)) 100%
  );
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.lockers-hero {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  border: none;
  overflow: hidden;
  background: #0a0a0a;
  --lockers-image: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(28px, 5vw, 56px);
}
.lockers-hero-watermark {
  position: absolute;
  right: -0.02em;
  bottom: -0.04em;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  user-select: none;
}
.lockers-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 32px);
  max-width: min(520px, 100%);
}
.lockers-steps-preview {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: grid;
  gap: 10px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.lockers-steps-preview li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.lockers-steps-preview li span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--accent);
  min-width: 1.5em;
}
.lockers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--lockers-image) center/cover no-repeat;
  filter: var(--media-filter);
  transition:
    filter var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out);
  transform: scale(1);
}
.lockers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 42%, rgba(10, 10, 10, 0.25) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.85), transparent 45%);
  opacity: 1;
  transition: opacity var(--duration-media) var(--ease-out);
}
.lockers-panel:hover .lockers-hero::before {
  filter: var(--media-filter-hover);
  transform: scale(1.04);
}
.lockers-panel:hover .lockers-hero::after {
  opacity: 0.72;
}
.btn-locker-single {
  background: var(--accent-bg);
  border: 2px solid var(--accent);
  color: var(--accent-on);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}
.btn-locker-single:hover {
  background: var(--accent-hover-bg);
  border-color: var(--accent-hover);
  color: var(--accent-on);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  filter: brightness(1.08);
}

/* ── Hotels ── */
.hotels-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hotel-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out),
    border-color var(--duration-slow) var(--ease-out);
}
.hotel-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}
.hotel-header {
  padding: 12px 16px;
  background: var(--accent-bg);
  color: var(--accent-on);
}
.hotel-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hotel-distance {
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 2px;
}
.hotel-media { position: relative; height: 200px; overflow: hidden; }
.hotel-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 35%, transparent 100%);
}
.hotel-carousel, .hotel-slides { width: 100%; height: 100%; position: relative; }
.hotel-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-prev, .hotel-next,
.gallery-prev, .gallery-next,
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  opacity: 0.62;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    background var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out),
    box-shadow var(--duration-slow) var(--ease-out);
}
.carousel-nav svg {
  width: 18px;
  height: 18px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}
.hotel-media:hover .hotel-prev,
.hotel-media:hover .hotel-next,
.hotel-media:focus-within .hotel-prev,
.hotel-media:focus-within .hotel-next,
.gallery-carousel:hover .gallery-prev,
.gallery-carousel:hover .gallery-next,
.gallery-carousel:focus-within .gallery-prev,
.gallery-carousel:focus-within .gallery-next {
  opacity: 1;
}
.hotel-prev:hover, .hotel-next:hover,
.gallery-prev:hover, .gallery-next:hover {
  background: color-mix(in srgb, var(--accent) 88%, #000 12%);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 40%, transparent);
}
.hotel-prev:focus-visible, .hotel-next:focus-visible,
.gallery-prev:focus-visible, .gallery-next:focus-visible {
  opacity: 1;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.hotel-prev { left: 10px; }
.hotel-next { right: 10px; }
.hotel-info { padding: 16px; }
.hotel-price .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.hotel-price .per { font-size: 0.75rem; color: var(--muted); }
.hotel-title { font-weight: 700; font-size: 0.9rem; margin: 8px 0; }
.hotel-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.hotel-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.hotel-link:hover { color: var(--accent-hover); }
.hotels-prev, .hotels-next { display: none; }

/* ── Media ── */
#media .container {
  width: min(1320px, 100%);
}

.media-shell {
  position: relative;
  z-index: 1;
}

.media-head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

#media.media-videos-off .media-head {
  border-bottom: none;
  padding-bottom: 0;
}

#media.media-videos-off .media-head::after {
  display: none;
}

#media.media-videos-off .media-photos-block {
  position: relative;
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--border);
}

.media-photos-block::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(180px, 40%);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.media-photos-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(18px, 2.8vw, 26px);
}

.media-photos-head-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.media-photos-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.gallery-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-counter {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.media-photos-desc {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ── Gallery rail (swipe / trackpad) ── */
.gallery-rail {
  --gallery-gap: clamp(10px, 1.6vw, 16px);
  --gallery-slide-w: min(78vw, 860px);
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery-track {
  display: flex;
  gap: var(--gallery-gap);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: max(var(--page-gutter), calc((100vw - min(1320px, 100vw)) / 2 + var(--page-gutter)));
  padding-inline: max(var(--page-gutter), calc((100vw - min(1320px, 100vw)) / 2 + var(--page-gutter)));
  padding-block: 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.gallery-track:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--accent) 55%, transparent);
}

.gallery-slide {
  position: relative;
  flex: 0 0 var(--gallery-slide-w);
  width: var(--gallery-slide-w);
  aspect-ratio: 16 / 10;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin: 0;
  overflow: hidden;
  background: #0c0c10;
  border: 1px solid var(--border);
  isolation: isolate;
  transform: scale(0.965);
  opacity: 0.72;
  transition:
    transform 220ms var(--ease-out),
    opacity 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
  will-change: transform, opacity;
}
.gallery-slide.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}
.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: var(--media-filter);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: filter var(--duration-media) var(--ease-out);
}
.gallery-slide.is-active img {
  filter: var(--media-filter-hover);
}
.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.85;
}

.gallery-rail .gallery-prev,
.gallery-rail .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}
.gallery-rail:hover .gallery-prev,
.gallery-rail:hover .gallery-next,
.gallery-rail:focus-within .gallery-prev,
.gallery-rail:focus-within .gallery-next {
  opacity: 1;
  pointer-events: auto;
}
.gallery-rail .gallery-prev {
  left: max(12px, calc((100vw - min(1320px, 100vw)) / 2 + var(--page-gutter) - 8px));
}
.gallery-rail .gallery-next {
  right: max(12px, calc((100vw - min(1320px, 100vw)) / 2 + var(--page-gutter) - 8px));
}
.gallery-rail .gallery-prev:hover,
.gallery-rail .gallery-next:hover {
  transform: translateY(-58%) scale(1.05);
}
.gallery-rail .gallery-prev:disabled,
.gallery-rail .gallery-next:disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: default;
}

.gallery-progress {
  position: relative;
  width: min(1320px, 100%);
  height: 2px;
  margin: 4px auto 0;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.gallery-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent-bg);
  transform-origin: left center;
  transition: width 160ms var(--ease-out);
}

@media (max-width: 720px) {
  .gallery-rail {
    --gallery-slide-w: min(86vw, 520px);
    --gallery-gap: 10px;
  }
  .gallery-slide {
    aspect-ratio: 4 / 5;
  }
  .gallery-rail .gallery-prev,
  .gallery-rail .gallery-next {
    opacity: 1;
    pointer-events: auto;
    width: 40px;
    height: 40px;
  }
  .gallery-rail .gallery-prev { left: 10px; }
  .gallery-rail .gallery-next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-slide,
  .gallery-progress-fill {
    transition: none;
  }
  .gallery-track {
    scroll-behavior: auto;
  }
}

@media (max-width: 960px) {
  .media-videos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    align-items: stretch;
    gap: clamp(12px, 3.5vw, 18px);
    max-width: none;
    padding: 0;
    overflow: visible;
  }

  .media-video-card {
    flex: initial;
    width: 100%;
    max-width: none;
    transform:
      translateY(calc((var(--clip-i, 0) - 1) * 8px))
      rotate(calc((var(--clip-i, 0) - 1) * -1deg));
  }

  .media-video-card:hover,
  .media-video-card:focus-within {
    transform: translateY(-4px) rotate(0deg) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-video-card,
  .media-video-card:hover,
  .media-video-card:focus-within {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hotel-prev, .hotel-next,
  .carousel-nav {
    width: 40px;
    height: 40px;
    opacity: 1;
  }
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
  .hotel-prev { left: 8px; }
  .hotel-next { right: 8px; }
}

/* ── FAQ ── */
.section#faq {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 38, 44, 0.08), transparent 70%),
    var(--bg);
}
.section#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.faq-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}
.faq-tagline {
  margin-bottom: 0;
}
.faq-shell {
  position: relative;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.faq-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.faq-search {
  flex: 1;
  min-width: min(100%, 440px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0 16px;
  transition:
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.faq-search:focus-within {
  border-color: color-mix(in srgb, var(--accent) 70%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
}
.faq-search input {
  flex: 1;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  padding: 14px 0;
  font-size: 0.92rem;
  outline: none;
}
.faq-search input::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}
.faq-search-icon {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.85;
}
.faq-count {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 48px);
}
.faq-item {
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background var(--duration-slow) var(--ease-out);
}
.faq-column .faq-item:last-child {
  border-bottom: none;
}
.faq-item.is-open {
  background: rgba(255, 255, 255, 0.02);
}
.faq-trigger {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 14px 16px;
  width: 100%;
  margin: 0;
  padding: 18px 10px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  transition: color var(--duration) var(--ease-out);
}
.faq-trigger:hover { color: #fff; }
.faq-trigger:focus:not(:focus-visible) {
  outline: none;
}
.faq-trigger:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}
.faq-item-index {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  opacity: 0.9;
  padding-top: 1px;
}
.faq-item-question {
  padding-right: 8px;
}
.faq-item-icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.faq-item-icon::before,
.faq-item-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition:
    transform var(--duration-slow) var(--ease-out),
    background var(--duration-slow) var(--ease-out),
    opacity var(--duration-slow) var(--ease-out);
}
.faq-item-icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item-icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-item-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.faq-item.is-open .faq-item-icon::before,
.faq-item.is-open .faq-item-icon::after {
  background: var(--accent);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-panel) var(--ease-out);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 10px 20px 42px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 56ch;
  opacity: 0;
  transition: opacity var(--duration-panel) var(--ease-out);
}
.faq-item.is-open .faq-body-inner {
  opacity: 1;
  transition: opacity var(--duration-panel) var(--ease-out);
}
.faq-body-inner a {
  color: var(--accent);
  text-decoration: none;
}
.faq-body-inner a:hover {
  text-decoration: underline;
}
.faq-item.hidden { display: none; }
@media (prefers-reduced-motion: reduce) {
  .faq-body,
  .faq-body-inner {
    transition: none;
  }
}
.faq-empty {
  margin: 0;
  padding: 36px 16px 8px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

/* ── Regolamento ── */
.regolamento-box {
  border: 1px solid var(--border);
  background: var(--bg-panel);
  max-height: 500px;
  overflow-y: auto;
}
.regolamento-content { padding: 24px; }
.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 24px 0 8px;
}
.regolamento-content p,
.regolamento-content ul {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.regolamento-content ul { padding-left: 20px; }

/* ── Come Arrivare ── */
.arrive-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.arrive-card {
  background: var(--bg-panel);
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.arrive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

.arrive-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-panel);
}

.arrive-img-tone {
  display: block;
  width: 58%;
  aspect-ratio: 1;
  background: var(--accent-bg);
  -webkit-mask-image: var(--arrive-icon);
  mask-image: var(--arrive-icon);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  transition:
    background var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}

.arrive-card:hover .arrive-img-tone {
  background: var(--accent-hover-bg);
  filter: brightness(1.22) saturate(1.15);
  transform: scale(1.06);
}

.arrive-img-tone .arrive-img {
  display: none;
}

.arrive-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px;
  color: var(--text);
}
.arrive-desc {
  font-size: 0.7rem;
  color: var(--muted);
  padding: 0 8px 12px;
}
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
}
.btn-map:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-on);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.arrive-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.arrive-modal.open { display: flex; }
.arrive-dialog {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  max-width: 520px;
  width: 100%;
  padding: 32px;
  position: relative;
}
.arrive-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.arrive-dialog h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.arrive-dialog p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.arrive-dialog a { color: var(--accent); }

/* ── Location ── */
.location-block { text-align: center; padding: 48px 0; }
.location-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 16px 0 8px;
}
.location-city {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.location-address { font-size: 0.9rem; color: var(--muted); margin-top: 8px; }

/* ── Contact ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.info-list a {
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}
.btn-send {
  background: var(--accent-bg);
  color: var(--accent-on);
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}
.btn-send:hover {
  background: var(--accent-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}

/* ── Newsletter ── */
.newsletter-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.newsletter-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}
.newsletter-form-wrap { flex: 1; min-width: 0; }
.newsletter-form { display: grid; gap: 12px; }
.newsletter-fields {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
}
.newsletter-fields input {
  flex: 1;
  background: var(--bg-panel);
  border: none;
  color: var(--text);
  padding: 16px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}
.newsletter-fields input:focus { outline: none; }
.newsletter-fields input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
.newsletter-fields button {
  background: var(--accent-bg);
  border: none;
  color: var(--accent-on);
  padding: 16px 24px;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}
.newsletter-fields button:hover {
  background: var(--accent-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.48);
  filter: brightness(1.08);
}
.newsletter-consent { margin-top: 4px; }
.newsletter-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.newsletter-check input {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.newsletter-check .req { color: var(--accent); }
.newsletter-feedback {
  font-size: 0.8rem;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
}
.newsletter-feedback.ok { border-color: #4ade80; color: #4ade80; }
.newsletter-feedback.err { border-color: var(--accent); color: var(--accent); }

/* ── Footer ── */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.site-footer > .container {
  padding-bottom: 32px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 4px 0;
  transition: color var(--duration) var(--ease-out);
}
.footer-col a:hover { color: var(--accent); }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand .brand-logo-text { margin-bottom: 16px; }
.back-home-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  margin-top: 8px;
}
.back-home-footer:hover { color: var(--text); }
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  transition: color var(--duration) var(--ease-out);
}
.social-link:hover,
.social-link:focus-visible {
  color: var(--accent);
}
.social-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}
.social-icon path,
.social-icon rect,
.social-icon circle,
.social-icon polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-marquee {
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: clamp(16px, 3vw, 28px) 0 clamp(12px, 2vw, 20px);
}
.footer-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 24s) linear infinite;
}
.footer-marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  padding-right: clamp(32px, 5vw, 64px);
}

/* ── Band marquee (tilted, before Media) ── */
.band-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(36px, 6vw, 72px) 0;
  background: var(--bg);
}
.band-marquee.is-off,
.band-marquee[hidden] {
  display: none !important;
}
.band-marquee-inner {
  overflow: hidden;
  transform: rotate(-2.8deg) scale(1.12);
  transform-origin: center center;
  will-change: transform;
}
.band-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--marquee-duration, 24s) linear infinite;
}
.band-marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  padding-right: clamp(36px, 5vw, 72px);
}
@media (prefers-reduced-motion: reduce) {
  .band-marquee-track {
    animation: none;
  }
}

/* ── Locker modal ── */
.locker-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.locker-modal.open { display: flex; }

/* ── Media video lightbox ── */
.media-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.9);
}
.media-video-lightbox.open {
  display: flex;
}
.media-video-lightbox-dialog {
  position: relative;
  width: auto;
  max-width: min(960px, 92vw);
  max-height: calc(100vh - 48px);
}
.media-video-lightbox-player {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  vertical-align: top;
}
.media-video-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--duration) var(--ease-out);
}
.media-video-lightbox-close:hover,
.media-video-lightbox-close:focus-visible {
  color: #fff;
  outline: none;
}
@media (max-width: 640px) {
  .media-video-lightbox {
    padding: 12px;
  }
  .media-video-lightbox-dialog {
    width: 100%;
  }
  .media-video-lightbox-close {
    top: 8px;
    right: 8px;
    z-index: 2;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
  }
}

.locker-dialog {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  position: relative;
}
.locker-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.locker-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
}
.locker-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.locker-sizes { display: grid; gap: 16px; margin-bottom: 24px; }
.locker-size-btn {
  display: block;
  text-align: center;
  background: var(--accent-bg);
  color: var(--accent-on);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  margin-bottom: 4px;
  cursor: pointer;
  transition:
    background var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    filter var(--duration) var(--ease-out);
}
.locker-size-btn:hover {
  background: var(--accent-hover-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  filter: brightness(1.08);
}
.locker-size-desc { font-size: 0.75rem; color: var(--muted); text-align: center; }
.locker-steps {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 20px;
  line-height: 1.8;
}

/* ── Banners & modals ── */
.success-banner {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #111;
  border: 1px solid var(--accent);
  color: #fff;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all var(--duration-panel) var(--ease-out);
  max-width: 350px;
}
.success-banner.show { transform: translateX(0); opacity: 1; }
.banner-content { display: flex; align-items: center; padding: 16px 20px; gap: 12px; }
.banner-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-bg);
  color: var(--accent-on);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.banner-title { font-weight: 700; font-size: 14px; }
.banner-message { font-size: 13px; color: var(--muted); }
.banner-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}
.success-banner.error { border-color: #ff4d4f; }

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal.show { display: flex; }
.privacy-content {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
}
.privacy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}
.privacy-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.privacy-body { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

html.site-pending body {
  opacity: 0;
}
html.site-ready body {
  opacity: 1;
}

/* Site offline / coming soon gate */
html.site-locked body > *:not(#siteLockedGate) {
  display: none !important;
}
.site-locked-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%),
    var(--bg);
  color: var(--text);
  text-align: center;
}
.site-locked-gate[hidden] {
  display: none !important;
}
.site-locked-inner {
  max-width: 28rem;
}
.site-locked-eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-locked-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 10vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}
.site-locked-body {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.site-preview-banner {
  position: fixed;
  top: calc(var(--header-h, 64px) + 10px);
  right: 12px;
  z-index: 100000;
  max-width: min(11.5rem, calc(100vw - 24px));
  margin: 0;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--accent-on) 18%, transparent);
  background: color-mix(in srgb, var(--accent) 92%, #111);
  color: var(--accent-on);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
@media (max-width: 720px) {
  .site-preview-banner {
    top: auto;
    bottom: 12px;
    right: 12px;
  }
}
html.site-ready .cms-managed-media {
  opacity: 1;
  transition: opacity var(--duration-panel) var(--ease-out);
}
/* cms-managed-media must not override carousel crossfade */
html.site-ready .hotel-slides img.cms-managed-media:not(.active) {
  opacity: 0;
  transition:
    opacity var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out),
    filter var(--duration-media) var(--ease-out);
}
html.site-ready .hotel-slides img.cms-managed-media.active {
  opacity: 1;
  transition:
    opacity var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out),
    filter var(--duration-media) var(--ease-out);
}
html.site-pending .hotel-slides img.cms-managed-media {
  opacity: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-media) var(--ease-out),
    transform var(--duration-media) var(--ease-out);
}
.reveal-item.reveal-left { transform: translateX(-24px); }
.reveal-item.reveal-right { transform: translateX(24px); }
.reveal-item.reveal-in { opacity: 1; transform: none; }

.artist-card.lineup-reveal-prep {
  opacity: 0 !important;
  transition: none !important;
}

.bg-unified { background: var(--bg); }
#intro-lineup { padding-top: 0; }
.hero-lineup { padding: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .tickets-grid { grid-template-columns: repeat(2, 1fr); }
  .hotels-track { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .arrive-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head .section-tagline {
    text-align: left;
    max-width: none;
  }
  .lockers-hero-watermark {
    font-size: clamp(3rem, 22vw, 6rem);
    opacity: 0.6;
  }
  .nav-overlay-panel { width: 100%; border-left: none; }
  .header-actions { gap: 8px; }
  .nav-explore-btn { padding: 10px 14px; }
  .nav-explore-label { display: none; }
  .btn-header-tickets { padding: 10px 16px; }
  .lang-switch {
    padding-left: 10px;
    margin-left: 0;
  }
  .lang-switch-btn { padding: 6px 5px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .tickets-grid { grid-template-columns: 1fr; }
  .faq-columns { grid-template-columns: 1fr; gap: 0; }
  .faq-column:first-child .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-toolbar { align-items: stretch; }
  .faq-count { width: 100%; text-align: left; }
  .contact-inner { grid-template-columns: 1fr; }
  .arrive-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .countdown-grid { gap: 16px; }
}


/* ── Motion polish: reduced-motion global ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track,
  .marquee-partners-track,
  .footer-marquee-track,
  .band-marquee-track,
  .lineup-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}
