/* ============================================================================
   DESIGN LAYER — edit colors, fonts, and layout here.
   Text, images, tickets, and links live in script.js (CONFIG).
   ============================================================================ */

:root {
  /* ---- Brand palette (change these to restyle the site) ---- */
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1c1b1a;
  --cream: #f3ece0;
  --cream-dim: #cabfaf;
  --gold: #c9a86a;
  --gold-soft: #e3c98f;
  --crimson: #c1342d;
  --crimson-soft: #e0564e;
  --line: rgba(243, 236, 224, 0.12);
  --glass: rgba(255, 255, 255, 0.04);

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}

/* Film-grain + ambient vignette overlays */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
section {
  position: relative;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.muted {
  color: rgba(243, 236, 224, 0.62);
}
.center {
  text-align: center;
}

/* ---- TG!X brand lockup: ! is always crimson, same size/weight ---- */
.tgx-ex {
  color: var(--crimson);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: #1a1304;
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(201, 168, 106, 0.6);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================  PRELOADER  ========================= */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
}
#loader .mark {
  font-family: var(--font-display);
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: 0.08em;
  color: var(--cream);
}
#loader .bar {
  width: 140px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
#loader .bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: load 1.1s var(--ease) infinite;
}
@keyframes load {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(360%);
  }
}

/* =========================  NAV  ========================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  transition: all 0.5s var(--ease);
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
}
nav .brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
}
nav .links {
  display: flex;
  gap: 34px;
  align-items: center;
}
nav .links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.7);
  transition: color 0.3s;
}
nav .links a:hover {
  color: var(--gold);
}
nav .nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.4s;
}
nav .nav-cta:hover {
  background: var(--gold);
  color: #1a1304;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 880px) {
  nav .links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}

/* =========================  HERO  ========================= */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero .bg .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: grayscale(0.2) contrast(1.05);
}
#hero .bg .fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 70% 18%, rgba(201, 168, 106, 0.22), transparent 55%),
    radial-gradient(90% 70% at 20% 90%, rgba(193, 52, 45, 0.16), transparent 60%),
    linear-gradient(180deg, #141210, #0a0a0a 70%);
}
#hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 50% 30%, transparent, rgba(10, 10, 10, 0.55) 80%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, transparent 28%, transparent 55%, rgba(10, 10, 10, 0.96) 100%);
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}
#hero .kicker {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
#hero h1 {
  font-size: clamp(58px, 13vw, 184px);
  color: var(--cream);
  text-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
#hero h1 .tour {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 2.1vw, 22px);
  letter-spacing: 0.34em;
  color: var(--gold-soft);
  margin-top: 22px;
  text-transform: uppercase;
}
#hero .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 30px);
  color: rgba(243, 236, 224, 0.86);
  margin-top: 30px;
}
#hero .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 38px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.75);
}
#hero .meta span {
  display: flex;
  align-items: center;
  gap: 10px;
}
#hero .meta i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
#hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.countdown {
  display: flex;
  gap: 18px;
  margin-top: 48px;
}
.countdown .unit {
  min-width: 74px;
}
.countdown .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  line-height: 1;
}
.countdown .lab {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-hint i {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 2s var(--ease) infinite;
}
@keyframes drop {
  0% {
    opacity: 0;
    transform: scaleY(0.3);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1) translateY(10px);
  }
}

/* =========================  SECTION SHELL  ========================= */
.section {
  padding: clamp(90px, 12vw, 170px) 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(34px, 6vw, 76px);
  color: var(--cream);
}
.section-head p {
  margin-top: 22px;
  font-size: 17px;
  color: rgba(243, 236, 224, 0.62);
  max-width: 560px;
}

/* =========================  MUSIC VIDEO  ========================= */
#video {
  background: linear-gradient(180deg, #0a0a0a, #100f0d);
}
.video-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 50px 120px -50px rgba(0, 0, 0, 0.9);
  aspect-ratio: 16/9;
  background: #000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.14), transparent 60%),
    linear-gradient(135deg, #1a1714, #0c0b0a);
}
.play {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease);
  position: relative;
}
.play::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2.6s var(--ease) infinite;
}
.play svg {
  margin-left: 5px;
}
.video-poster:hover .play {
  background: var(--gold);
  transform: scale(1.06);
}
.video-poster:hover .play svg path {
  fill: #1a1304;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* =========================  ABOUT  ========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
  height: 600px;
}
.about-media .m {
  position: absolute;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1612;
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}
.about-media .m1 {
  inset: 0 30% 22% 0;
}
.about-media .m2 {
  width: 62%;
  height: 62%;
  right: -4%;
  bottom: -6%;
}
#about2 {
  background-size: contain;
  background-color: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
}
.about-media .ph {
  background-image: linear-gradient(135deg, #221d18, #100e0c);
}
.about-body p {
  margin-bottom: 20px;
  font-size: 17px;
  color: rgba(243, 236, 224, 0.78);
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.about-stats .figure {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
}
.about-stats .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.55);
  margin-top: 6px;
}
@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-media {
    height: 440px;
  }
}

/* =========================  TG!X PRESENTS  ========================= */
#tgix {
  overflow: hidden;
}
#tgix .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
#tgix .bg.ph {
  background: radial-gradient(80% 80% at 30% 20%, rgba(193, 52, 45, 0.2), transparent 60%),
    radial-gradient(70% 70% at 80% 80%, rgba(201, 168, 106, 0.16), transparent 60%), #0c0b0a;
}
#tgix::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.92));
}
#tgix .wrap {
  position: relative;
  z-index: 1;
}
#tgix .lockup {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 150px);
  color: var(--cream);
  line-height: 1;
  margin: 18px 0 26px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}
.trust-row .pill {
  border: 1px solid var(--line);
  background: var(--glass);
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.82);
  backdrop-filter: blur(6px);
}

/* =========================  MARQUEE / PARTNERS  ========================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee .track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.marquee:hover .track {
  animation-play-state: paused;
}
.marquee .logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 224, 0.5);
  white-space: nowrap;
  transition: color 0.4s, filter 0.4s;
  filter: grayscale(1);
}
.marquee .logo:hover {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201, 168, 106, 0.5);
}
/* media-partner logo grid (image logos) */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mp-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  min-height: 160px;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.mp-card:hover {
  border-color: rgba(201, 168, 106, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 36px 80px -40px rgba(0, 0, 0, 0.9);
}
.mp-logo {
  max-width: 100%;
  max-height: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.4s;
}
.mp-card:hover .mp-logo {
  opacity: 1;
}
.mp-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 880px) {
  .mp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .mp-grid {
    grid-template-columns: 1fr;
  }
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.sponsor-grid .sp {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 22px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  transition: border-color 0.5s, transform 0.5s, box-shadow 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  flex-direction: column;
  gap: 14px;
}
.sponsor-grid .sp:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 30px 70px -36px rgba(0, 0, 0, 0.9);
}
.sponsor-grid .sp span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  color: rgba(243, 236, 224, 0.62);
  text-align: center;
  transition: color 0.4s;
}
.sponsor-grid .sp:hover span {
  color: var(--gold-soft);
}
.sponsor-grid .sp-logo {
  max-height: 54px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
  transition: opacity 0.4s, filter 0.4s;
}
.sponsor-grid .sp:hover .sp-logo {
  opacity: 1;
}
.sponsor-grid .sp-name {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.5) !important;
}
.sponsor-grid .sp:hover .sp-name {
  color: var(--gold) !important;
}
@media (max-width: 880px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================  SUPPORTED BY  =========================
   Credibility band above Media Partners. Premium glass logo cards,
   reusing the brand tokens (--glass, --gold, --line) for a native feel. */
.supported-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
/* One partner unit: category (above) · card · website link (below), all centered. */
.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.support-card {
  position: relative;
  width: 210px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  min-height: 150px;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 106, 0.5);
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 70px -38px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(201, 168, 106, 0.14),
    0 0 26px -6px rgba(201, 168, 106, 0.3);
}
.support-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.support-logo {
  max-width: 100%;
  max-height: 84px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(0.95);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}
.support-card:hover .support-logo {
  opacity: 1;
  filter: brightness(1.15);
}
.support-label {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 17px);
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: center;
  color: rgba(243, 236, 224, 0.66);
  transition: color 0.4s var(--ease);
}
.support-card:hover .support-label {
  color: var(--gold-soft);
}
/* Logo / wordmark lockup with subtitle */
.support-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.support-wordmark {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(17px, 2.2vw, 23px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.support-wordmark .wm-slash {
  position: absolute;
  top: -9px;
  bottom: -9px;
  left: 55%;
  width: 2px;
  border-radius: 2px;
  background: var(--cream);
  transform: rotate(22deg);
  transition: background 0.4s var(--ease);
}
.support-card:hover .support-wordmark {
  color: #ffffff;
}
.support-card:hover .wm-slash {
  background: var(--gold-soft);
}
.support-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.5);
  transition: color 0.4s var(--ease);
}
.support-card:hover .support-sub {
  color: var(--gold);
}
/* Partner category label (above the logo) */
.support-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color 0.4s var(--ease);
}
.support-item:hover .support-cat {
  color: var(--gold-soft);
}
/* Partner name (below the logo) */
.support-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
/* Understated premium website link — gold, underline + glow on hover (never blue) */
.support-link {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}
.support-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.support-link:hover {
  color: var(--gold-soft);
  text-shadow: 0 0 12px rgba(201, 168, 106, 0.55);
}
.support-link:hover::after {
  transform: scaleX(1);
}
/* Staggered partner units — share the global .reveal -> .in motion,
   delays cascade the entrance left-to-right when multiple are shown. */
.supported-grid .support-item.reveal {
  transition-delay: 0s;
}
.supported-grid .support-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.supported-grid .support-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.supported-grid .support-item.reveal:nth-child(4) { transition-delay: 0.21s; }
.supported-grid .support-item.reveal:nth-child(5) { transition-delay: 0.28s; }
.supported-grid .support-item.reveal:nth-child(6) { transition-delay: 0.35s; }
.supported-grid .support-item.reveal:nth-child(7) { transition-delay: 0.42s; }
.supported-grid .support-item.reveal:nth-child(8) { transition-delay: 0.49s; }
/* auto-fit + justify-center keeps cards balanced and centered at every width,
   including when only a single partner is shown. */

.creator-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.creator {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 16px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.creator:hover {
  border-color: rgba(201, 168, 106, 0.42);
  transform: translateY(-6px);
  box-shadow: 0 36px 80px -40px rgba(0, 0, 0, 0.9);
}
.creator .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #26211b, #13110f);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s, box-shadow 0.5s;
}
.creator:hover .avatar {
  border-color: rgba(201, 168, 106, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.1);
}
.creator .avatar .initial {
  font-family: var(--font-display);
  font-size: 30px;
  color: rgba(201, 168, 106, 0.65);
}
.creator .name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-top: 18px;
  line-height: 1.2;
}
.creator .handle {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(243, 236, 224, 0.55);
  margin-top: 6px;
}
.creator .ig {
  margin-top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 236, 224, 0.7);
  transition: all 0.4s;
}
.creator .ig:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* =========================  TICKETS  ========================= */
#tickets {
  background: linear-gradient(180deg, #0c0b0a, #0a0a0a);
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .ticket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}
.tcard {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease), border-color 0.6s, box-shadow 0.6s;
  overflow: hidden;
}
.tcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 60% at 50% 0%, rgba(201, 168, 106, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
}
.tcard:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 106, 0.45);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9);
}
.tcard:hover::before {
  opacity: 1;
}
.tcard.featured {
  border-color: rgba(201, 168, 106, 0.55);
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0.02));
}
.tcard.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(201, 168, 106, 0.35), 0 0 60px -10px rgba(201, 168, 106, 0.35) inset;
  pointer-events: none;
  animation: glow 3.4s var(--ease) infinite;
}
@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.tcard.soldout {
  opacity: 0.58;
}
.tcard .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 106, 0.4);
  padding: 5px 10px;
  border-radius: 30px;
}
.tcard.soldout .tag {
  color: var(--crimson-soft);
  border-color: rgba(224, 86, 78, 0.5);
}
.tcard .name {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.7);
  margin-bottom: 18px;
}
.tcard .price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--cream);
  line-height: 1;
}
.tcard ul {
  list-style: none;
  margin: 26px 0 28px;
  flex: 1;
}
.tcard li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: rgba(243, 236, 224, 0.78);
  margin-bottom: 12px;
  line-height: 1.5;
}
.tcard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.tcard .buy {
  margin-top: auto;
}
.tcard .buy .btn {
  width: 100%;
  justify-content: center;
}
.tcard .soldout-badge {
  margin-top: auto;
  text-align: center;
  border: 1px solid rgba(224, 86, 78, 0.5);
  color: var(--crimson-soft);
  padding: 16px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.fineprint {
  margin-top: 38px;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(243, 236, 224, 0.4);
  font-style: italic;
}

.fp {
  display: grid;
  grid-template-columns: 64px minmax(0, 660px) 64px;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}
.fp-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-side.left {
  justify-content: flex-end;
}
.fp-amen {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--glass);
  color: rgba(243, 236, 224, 0.55);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  min-height: 96px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  backdrop-filter: blur(6px);
  transition: border-color 0.5s, color 0.5s;
}
.fp-amen:hover {
  border-color: rgba(201, 168, 106, 0.4);
  color: var(--gold);
}
.fp-amen.bar {
  flex: 1;
}
.fp-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-zone {
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 18px;
  transition: transform 0.5s var(--ease);
}
.fp-zone:hover {
  transform: scale(1.012);
}
.fp-zone.stage {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 30px);
  letter-spacing: 0.24em;
  color: var(--cream);
  min-height: 118px;
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.32), rgba(201, 168, 106, 0.1));
  border: 1px solid rgba(201, 168, 106, 0.42);
  box-shadow: 0 0 70px -22px rgba(201, 168, 106, 0.55);
}
.fp-zone.ufe {
  background: linear-gradient(180deg, var(--crimson), #a82a24);
  color: #fff;
  min-height: 66px;
  box-shadow: 0 18px 40px -22px rgba(193, 52, 45, 0.8);
}
.fp-zone.enh {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1304;
  min-height: 66px;
  box-shadow: 0 18px 40px -22px rgba(201, 168, 106, 0.7);
}
.fp-zone.ga {
  background: rgba(243, 236, 224, 0.1);
  border: 1px solid var(--line);
  color: var(--cream);
  min-height: 150px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: 0.16em;
}
.fp-zone.entrance {
  background: transparent;
  border: 1px dashed rgba(243, 236, 224, 0.28);
  color: rgba(243, 236, 224, 0.6);
  min-height: 52px;
}
@media (max-width: 640px) {
  .fp {
    grid-template-columns: 46px 1fr 46px;
    gap: 10px;
  }
  .fp-amen {
    min-height: 78px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .fp-zone {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding: 18px 10px;
  }
}

/* =========================  VENUE  ========================= */
.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: stretch;
}
.venue-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
  filter: grayscale(1) contrast(1.05);
}
.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg);
}
.venue-notes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vnote {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--glass);
  transition: border-color 0.5s, transform 0.5s;
}
.vnote:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-4px);
}
.vnote h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.vnote p {
  font-size: 14px;
  color: rgba(243, 236, 224, 0.7);
}
@media (max-width: 880px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================  SOCIAL PROOF  ========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gtile {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1d1813, #100e0c);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.gtile:hover {
  transform: scale(1.04);
}
.gtile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(243, 236, 224, 0.85);
  text-shadow: 0 2px 8px #000;
}
.gtile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.7));
}
@media (max-width: 880px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================  FAQ  ========================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q .ic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  background: var(--gold);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .ic::before {
  width: 14px;
  height: 1px;
}
.faq-q .ic::after {
  width: 1px;
  height: 14px;
  transition: transform 0.5s var(--ease);
}
.faq-item.open .ic::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease);
}
.faq-a p {
  padding: 0 0 28px;
  font-size: 16px;
  color: rgba(243, 236, 224, 0.66);
  max-width: 680px;
}

/* =========================  FINAL CTA  ========================= */
#final {
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
#final .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#final .bg.ph {
  background: radial-gradient(70% 60% at 50% 40%, rgba(201, 168, 106, 0.22), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(193, 52, 45, 0.18), transparent), #0a0a0a;
}
#final::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.85));
  z-index: 1;
}
#final .wrap {
  position: relative;
  z-index: 2;
}
#final h2 {
  font-size: clamp(46px, 10vw, 128px);
  color: var(--cream);
  text-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
#final p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 3vw, 28px);
  color: rgba(243, 236, 224, 0.82);
  margin: 26px 0 44px;
}

/* =========================  FOOTER  ========================= */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 50px;
  background: #080807;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  max-width: 420px;
}
.newsletter input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 15px 18px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter button {
  background: var(--cream);
  color: #0a0a0a;
  border: none;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter button:hover {
  background: var(--gold);
}
.socials {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}
.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 236, 224, 0.7);
  transition: all 0.4s;
}
.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.foot-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(243, 236, 224, 0.4);
}
.foot-updated {
  margin-top: 54px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(243, 236, 224, 0.3);
}

/* =========================  CONTACT FORM  ========================= */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(8px);
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  min-width: 0;
}
.cf-field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 236, 224, 0.62);
  margin-bottom: 10px;
}
.cf-field label i {
  color: var(--crimson);
  font-style: normal;
}
.cf-field input,
.cf-field textarea,
.cf-select select {
  width: 100%;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 16px;
  border-radius: 4px;
  transition: border-color 0.4s, box-shadow 0.4s;
  appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(243, 236, 224, 0.32);
}
.cf-field input:focus,
.cf-field textarea:focus,
.cf-select select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.14);
}
.cf-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.cf-select {
  position: relative;
}
.cf-select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.cf-select select {
  cursor: pointer;
  padding-right: 42px;
}
.cf-select select option {
  background: #141414;
  color: var(--cream);
}
.cf-field.invalid input,
.cf-field.invalid textarea {
  border-color: var(--crimson);
}
.cf-err {
  display: none;
  color: var(--crimson-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.cf-field.invalid .cf-err {
  display: block;
}
.cf-foot {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cf-status {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}
@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 880px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================  STICKY MOBILE CTA  ========================= */
/* keep page content clear of the permanent footer bar */
body {
  padding-bottom: 124px;
}
#sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  transform: none; /* permanently visible footer bar */
  transition: transform 0.6s var(--ease);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* info · player · buy */
  align-items: center;
  gap: 16px;
}
#sticky-cta.show {
  transform: none;
}
#sticky-cta .info {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(243, 236, 224, 0.7);
  justify-self: start;
}
#sticky-cta .info b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  letter-spacing: 0;
}
#sticky-cta .btn {
  padding: 14px 24px;
  justify-self: end;
  white-space: nowrap;
}

#drawer {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
#drawer.open {
  transform: none;
}
#drawer a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
}
#drawer a:hover {
  color: var(--gold);
}
#drawer .close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 30px;
  cursor: pointer;
}

/* =========================  FOOTER SPOTIFY PLAYER  ========================= */
.footer-spotify {
  justify-self: center; /* centered column of the footer bar */
  width: min(440px, 46vw);
}
.footer-spotify iframe {
  display: block;
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 12px;
}
@media (max-width: 880px) {
  /* stack the footer bar: event info, Spotify player, then Buy Tickets */
  body {
    padding-bottom: 230px;
  }
  #sticky-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px 16px;
  }
  #sticky-cta .info,
  .footer-spotify {
    justify-self: center;
  }
  .footer-spotify {
    width: 100%;
    max-width: 420px;
  }
  #sticky-cta .btn {
    justify-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
