/* ═══════════════════════════════════════════════════════════════════════════
   MASTER ACCENT COLOR
   ═══════════════════════════════════════════════════════════════════════════
   To retheme the entire site, change ONLY these two values:
     --aw-h  = hue        (0–360)   e.g. 168 = mint-aqua | 0 = red | 220 = blue
     --aw-s  = saturation (0–100%)  e.g. 58%
   All accent shades, borders, and glows derive from them automatically.
═══════════════════════════════════════════════════════════════════════════ */
:root {
  --aw-h: 168;
  --aw-s: 58%;

  /* Derived accent shades — do not edit these directly */
  --aw-100: hsl(var(--aw-h), var(--aw-s), 80%);  /* lightest tint  */
  --aw-200: hsl(var(--aw-h), var(--aw-s), 68%);
  --aw-300: hsl(var(--aw-h), var(--aw-s), 56%);  /* main accent    */
  --aw-400: hsl(var(--aw-h), var(--aw-s), 44%);
  --aw-500: hsl(var(--aw-h), var(--aw-s), 32%);  /* darkest shade  */

  /* Transparent accent variants for borders / glows */
  --aw-glow:   hsla(var(--aw-h), var(--aw-s), 56%, 0.18);
  --aw-border: hsla(var(--aw-h), var(--aw-s), 56%, 0.22);
  --aw-dim:    hsla(var(--aw-h), var(--aw-s), 56%, 0.08);

  /* Base design tokens */
  --background:       #000000;
  --foreground:       #FFFFFF;
  --card:             #080808;
  --border:           #1A1A1A;
  --font-sans:        'Plus Jakarta Sans', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   IMPRESSIONS GALLERY
═══════════════════════════════════════════════════════════════════════ */

#impressions { padding-top: 56px; padding-bottom: 80px; }
@media (min-width: 768px) { #impressions { padding-top: 80px; padding-bottom: 80px; } }
.impressions-stack { display: flex; flex-direction: column; gap: 20px; }
.impressions-row { display: flex; flex-direction: column; gap: 8px; }
.impressions-row__meta { display: flex; align-items: baseline; gap: 14px; }
.impressions-city { font-size: 11px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.impressions-date { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--aw-300); font-variant-numeric: tabular-nums; }
.impressions-slider-wrap {
  position: relative;       /* ← needed as anchor */
  display: flex;
  align-items: center;
}

.impressions-slider {
  display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; flex: 1;
  width: 100%;              /* ← fills full width now */
}
.impressions-slider::-webkit-scrollbar { display: none; }
.impressions-slide {
  flex: 0 0 auto; width: 260px; min-width: 260px; height: 180px;
  scroll-snap-align: start; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); position: relative;
}
@media (max-width: 640px) { .impressions-slide { width: 72vw; min-width: 72vw; height: 160px; } }
.impressions-img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(60%) brightness(0.75);
  transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.impressions-slide:hover .impressions-img { filter: grayscale(0%) brightness(0.9); transform: scale(1.04); }
.impressions-arrow {
  position: absolute;       /* ← float over images */
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.45);        /* darker than before for contrast */
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease; z-index: 2;
}
.impressions-arrow:hover { background: rgba(0,0,0,0.75); color: #fff; }
.impressions-arrow--left  { left: 6px; }   /* ← replaces margin-right */
.impressions-arrow--right { right: 6px; }  /* ← replaces margin-left  */
@media (max-width: 640px) {
  .impressions-arrow { width: 28px; height: 28px; }
}

    /* ═══════════════════════════════════════════════════════════════════════
       DIVIDER
    ═══════════════════════════════════════════════════════════════════════ */
    .section-divider {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    }
    @media (min-width: 768px) { .section-divider { padding: 0 40px; } }


/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════════════════════════ */


.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

a.city-row {
  text-decoration: none;
  color: inherit;
  display: flex;
}


.flex          { display: flex; }
.inline-flex   { display: inline-flex; }
.grid          { display: grid; }
.grid-cols-1   { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.flex-col      { flex-direction: column; }
.flex-1        { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.w-full { width: 100%; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.overflow-hidden    { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.w-fit { width: fit-content; }

/* Responsive grid */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:gap-5       { gap: 1.25rem; }
  .md\:gap-8       { gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NOISE OVERLAY + SCANLINE
═══════════════════════════════════════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanline {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  animation: scanDown 10s linear infinite;
  pointer-events: none;
  z-index: 998;
  opacity: 0.2;
}

@keyframes scanDown {
  0%   { top: -2px; }
  100% { top: 100vh; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 2.5rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  z-index: 10;
  text-decoration: none;
}

.header-logo img {
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.scrolled .header-logo img { opacity: 1; }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.nav-link-item {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--aw-300);
  transition: width 0.3s ease;
}

.nav-link-item:hover { color: var(--aw-200); }
.nav-link-item:hover::after { width: 100%; }

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

@media (min-width: 1024px) { .hamburger-btn { display: none; } }

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-menu nav a {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu nav a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,1)   100%
  );
}

/* BG Slideshow */
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(100%) contrast(1.1) brightness(0.35);
  transform: scale(1.05);
  animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-bg-slide.active { opacity: 1; }

@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

/* Grid lines overlay */
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
  pointer-events: none;
  z-index: 2;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb--large {
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  top: 5%;
  left: -5%;
  animation-delay: 0s;
  z-index: 2;
}

.orb--small {
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.03);
  top: 20%;
  right: -3%;
  animation-delay: 4s;
  z-index: 2;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(25px, -35px) scale(1.08); }
  66%  { transform: translate(-18px, 22px) scale(0.94); }
  100% { transform: translate(12px, -12px) scale(1.04); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.hero-supra {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--aw-300);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-supra-line {
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  height: 6rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .hero-logo-img { height: 9rem; }
}

.hero-subline {
  font-size: clamp(8px, 1.1vw, 11px);
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 18px;
  display: block;
  line-height: 1.7;
  white-space: pre-line;
}

.hero-cta-row {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-cta-row { flex-direction: row; }
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-indicator {
  height: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.2;
  z-index: 10;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, white, transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TICKET / CTA BUTTONS
═══════════════════════════════════════════════════════════════════════════ */
.ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.ticket-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.ticket-btn:hover::before { transform: translateX(100%); }
.ticket-btn:hover {
  background: #e0e0e0;
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(255,255,255,0.25), 0 8px 30px rgba(0,0,0,0.5);
}

.ticket-btn--no-glow:hover { box-shadow: none !important; }

/* City row ticket button */
.city-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: transparent;
  color: var(--aw-200);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--aw-border);
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
  height: 36px;
  line-height: 1;
}

.city-ticket-btn:hover {
  background: var(--aw-dim);
  border-color: var(--aw-300);
  box-shadow: 0 0 20px var(--aw-glow);
  color: var(--aw-100);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ─────────────────────────────────────────────────────────────────────────
   Elements start invisible + shifted 20px down.
   JS adds .revealed when the element enters the viewport — the transition
   then plays from that point forward, so nothing animates "off-screen".
   City rows get a small per-row stagger via --row-i set inline by JS.
═══════════════════════════════════════════════════════════════════════════ */
.reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  /* Per-element stagger driven by JS via --row-i custom property */
  transition-delay: calc(var(--row-i, 0) * 80ms);
}

.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════════════════════════════════════ */
.section-wrap {
  position: relative;
  padding: 4rem 1rem;
}

@media (min-width: 640px)  { .section-wrap { padding: 4rem 1.5rem; } }
@media (min-width: 768px)  { .section-wrap { padding: 7rem 2.5rem; } }

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aw-300);
  margin-bottom: 1.25rem;
}

.accent-line {
  width: 40px;
  height: 1px;
  background: var(--aw-300);
  display: block;
  flex-shrink: 0;
}

.section-headline {
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.9;
  display: inline-block;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.glow-text {
  text-shadow: 0 0 60px rgba(255,255,255,0.2), 0 0 120px rgba(255,255,255,0.08);
}

/* Scroll-margin for fixed header */
#events, #resale, #support { scroll-margin-top: 88px; }

/* ═══════════════════════════════════════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════════════════════════════════════ */
.events-headline {
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 0.9;
  display: inline-block;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ─── CITY ROW ─────────────────────────────────────────────────────────── */
.city-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  /* hover transitions — reveal transition is handled by .reveal-init above */
  transition:
    background    0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform     0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity       0.7s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.city-row:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--aw-border);
  transform: translateY(-4px);
}

/* Left accent bar on hover */
.city-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--aw-300), var(--aw-500));
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.city-row:hover::before { opacity: 1; }

.city-row__date {
  min-width: 110px;
  flex-shrink: 0;
}

.city-row__date-text {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--aw-200);
  font-variant-numeric: tabular-nums;
}

.city-row__info {
  flex: 1;
  min-width: 0;
}

.city-row__city {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.city-row__venue {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.city-row__subtitle {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aw-400);
}

.city-row__ticket { flex-shrink: 0; }

/* Clickable city row — whole row is an <a> tag */
a.city-row {
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* ─── SOLD OUT ROW ─────────────────────────────────────────────────────────
   To mark any event as sold out, add class  city-row--sold-out  to the row.
   Example:
     <div class="city-row city-row--sold-out">...</div>
   The CSS below handles everything — no JS changes needed.
──────────────────────────────────────────────────────────────────────────── */
.city-row--sold-out {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* "SOLD OUT" badge */
.city-row--sold-out::after {
  content: 'SOLD OUT';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0 22px;
  height: 36px;
  pointer-events: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-sizing: border-box;
  font-family: var(--font-sans);
}

/* "COMPLETED" badge — overrides label text only */
.city-row--completed::after {
  content: 'COMPLETED';
}

/* Hide ticket button when sold out */
.city-row--sold-out .city-row__ticket { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESALE SECTION
═══════════════════════════════════════════════════════════════════════════ */
.resale-warning {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform    0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.resale-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aw-300), transparent);
}

.resale-warning--hover:hover {
  border-color: var(--aw-border);
  transform: translateY(-4px);
}

.resale-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.resale-no-resale-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.resale-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--aw-300);
  border-bottom: 1px solid var(--aw-border);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.3s ease;
}

.resale-cta-link:hover { color: var(--aw-200); }

.resale-rule-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background: rgba(255,255,255,0.06);
  color: var(--aw-300);
}

.pulse-ring { animation: pulseRing 2.5s ease-in-out infinite; }

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUPPORT SECTION
═══════════════════════════════════════════════════════════════════════════ */
.support-card {
  background: #050505;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  padding: 24px;
  transition:
    border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform    0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.support-card:hover,
.support-card--hover:hover {
  border-color: var(--aw-border);
  transform: translateY(-4px);
}

.email-cta-box {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.email-cta-box:hover { border-color: var(--aw-border); }

.email-cta-icon { background: rgba(255,255,255,0.06); }

.scam-box {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

/* FAQ accordion */
.faq-box {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.07);
  background: #050505;
  overflow: hidden;
  transition:
    border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background   0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform    0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-box.open {
  border-color: var(--aw-border);
  background: rgba(255,255,255,0.03);
}

.faq-box--hover:hover {
  border-color: var(--aw-border);
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}

.faq-chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease;
}

.faq-box.open .faq-chevron { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-box.open .faq-body { max-height: 120px; }

.faq-body p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.625;
  font-weight: 500;
  padding: 0 1rem 1rem 52px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo { margin-bottom: 0.5rem; }

.footer-logo img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  opacity: 0.30;
  filter: brightness(0) invert(1);
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.social-btn:hover {
  border-color: var(--aw-border);
  color: var(--aw-200);
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-copy { flex-direction: row; }
}

.footer-copy p,
.footer-copy a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copy a:hover { color: rgba(255,255,255,0.6); }
.footer-divider { color: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE OVERRIDES
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .ticket-btn { padding: 13px 20px; font-size: 9px; }
  .hamburger-line { width: 24px; }
  section { scroll-margin-top: 80px; }

  .city-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .city-row__date {
    min-width: auto;
    width: 100%;
    order: -1;
  }

  .city-row__info  { flex: 1 1 100%; }
  .city-row__ticket { width: 100%; }

  .city-ticket-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }

  /* Sold-out / completed badge repositioned on mobile */
  .city-row--sold-out::after,
  .city-row--completed::after {
    position: static;
    transform: none;
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLITCH TEXT (decorative)
═══════════════════════════════════════════════════════════════════════════ */
.glitch-text { position: relative; }

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch-text::before {
  color: rgba(255,255,255,0.8);
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-text::after {
  color: rgba(255,255,255,0.6);
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-3px,  1px); opacity: 0.8; }
  94% { transform: translate( 3px, -1px); opacity: 0.6; }
  96% { transform: translate(-2px,  2px); opacity: 0.8; }
  98% { transform: translate( 2px, -2px); opacity: 0; }
}

@keyframes glitch2 {
  0%, 88%, 100% { transform: translate(0); opacity: 0; }
  90% { transform: translate( 3px, -1px); opacity: 0.7; }
  93% { transform: translate(-3px,  1px); opacity: 0.5; }
  95% { transform: translate( 2px,  2px); opacity: 0.7; }
  97% { transform: translate(-2px, -2px); opacity: 0; }
}
