/* ============ TOKENS / BASE ============ */
:root {
  --bg: #0a0607;
  --bg2: #140a0d;
  --cream: #fff3e4;
  /* pink and yellow are deliberately swapped site-wide (design iteration);
     class names like --pink/--yellow refer to the original roles.
     .cta-band pins the original values to opt out of the swap. */
  --pink: #e9d758;
  --yellow: #ff1f6d;
  --purple: #390099;
  --pad-x: clamp(22px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: Archivo, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--yellow); }

/* ============ SHARED ============ */
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.kicker--dim    { color: rgba(255,243,228,.5); letter-spacing: .34em; font-size: 10.5px; }
.kicker--pink   { color: var(--pink); }
.kicker--yellow { color: var(--yellow); letter-spacing: .3em; }
.kicker--cream  { color: rgba(255,243,228,.7); }

.h2 {
  margin: 16px 0 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .92;
  text-transform: uppercase;
}
.h2--center { margin: 0 0 clamp(64px, 9vw, 120px); text-align: center; font-size: clamp(38px, 6.4vw, 92px); line-height: .9; }

.script {
  font-family: Yellowtail, cursive;
  text-transform: none;
  font-size: clamp(44px, 6.6vw, 96px);
  line-height: .95;
}
.script--yellow { color: var(--yellow); }
.script--pink   { color: var(--pink); }

.outline-yellow { color: transparent; -webkit-text-stroke: 1.6px var(--yellow); }

.lead {
  margin: 24px 0 0;
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.45;
  color: var(--cream);
  text-wrap: pretty;
}
.body-copy {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,243,228,.7);
  max-width: 52ch;
  text-wrap: pretty;
}

.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn--yellow {
  /* pinned to true yellow (opts out of the pink/yellow swap) */
  background: #e9d758;
  color: var(--bg);
  box-shadow: 0 14px 44px rgba(233,215,88,.34);
}
.btn--yellow:hover { color: var(--bg); background: #f4e77c; transform: translateY(-3px); box-shadow: 0 20px 56px rgba(233,215,88,.5); }
.btn--ghost {
  border: 1px solid rgba(255,243,228,.35);
  color: var(--cream);
}
.btn--ghost:hover { color: var(--cream); border-color: var(--yellow); transform: translateY(-3px); }
.btn--cream {
  margin-top: 34px;
  background: var(--cream);
  color: var(--bg);
  font-size: 11px;
}
.btn--cream:hover { color: var(--bg); background: var(--yellow); transform: translateY(-3px); }
.btn--dark {
  margin-top: 30px;
  padding: 18px 38px;
  background: var(--bg);
  color: var(--cream);
}
.btn--dark:hover { color: var(--bg); background: var(--pink); transform: translateY(-3px); }

/* ============ PLACEHOLDERS ============ */
.ph {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border: 1px dashed rgba(255,243,228,.28);
}
.ph span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,243,228,.62);
}
.ph--pink-purple   { background: linear-gradient(135deg, rgba(233,215,88,.4),  rgba(57,0,153,.65)),  var(--bg2); }
.ph--purple-pink   { background: linear-gradient(135deg, rgba(57,0,153,.7),   rgba(233,215,88,.35)), var(--bg2); }
.ph--yellow-pink   { background: linear-gradient(135deg, rgba(255,31,109,.3),  rgba(233,215,88,.45)), var(--bg2); }
.ph--pink-dark     { background: linear-gradient(135deg, rgba(233,215,88,.45), rgba(20,10,13,.9)),    var(--bg2); }
.ph--purple-yellow { background: linear-gradient(135deg, rgba(57,0,153,.6),   rgba(255,31,109,.3)),  var(--bg2); }
.ph--yellow-purple { background: linear-gradient(135deg, rgba(255,31,109,.28), rgba(57,0,153,.6)),   var(--bg2); }
.ph--purple-dark   { background: linear-gradient(135deg, rgba(57,0,153,.75),  rgba(20,10,13,.9)),    var(--bg2); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--pad-x);
  background: rgba(10,6,7,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,243,228,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo {
  display: block;
  color: var(--cream);
  padding: 16px 20px 32px;
  margin: -14px 0 -40px;
  background: var(--purple);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  transition: background .2s ease, color .2s ease;
}
.nav-logo:hover { color: var(--bg); background: var(--yellow); }
.nav-logo span {
  display: block;
  font-family: Anton, sans-serif;
  font-size: 20px;
  line-height: .94;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.nav-logo small {
  font-size: 12px;
  letter-spacing: .16em;
  font-family: Archivo, sans-serif;
  font-weight: 700;
}
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  margin: -8px 0;
  cursor: pointer;
  color: var(--cream); /* bars pick this up via currentColor, so light mode flips automatically */
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-links > a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,243,228,.7);
}
.nav-links > a:hover { color: var(--yellow); }
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  /* pinned to true yellow (opts out of the pink/yellow swap) */
  background: #e9d758;
  font-weight: 700 !important;
  letter-spacing: .16em !important;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-links > a.nav-cta { color: var(--bg); }
.nav-links > a.nav-cta:hover { color: var(--bg); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(233,215,88,.5); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px) var(--pad-x) 0;
  background:
    radial-gradient(62% 66% at 14% -8%, rgba(233,215,88,.3), transparent 70%),
    radial-gradient(46% 54% at 88% 10%, rgba(255,31,109,.16), transparent 72%),
    radial-gradient(78% 68% at 55% 116%, rgba(57,0,153,.5), transparent 72%),
    var(--bg);
}
.hero-glow {
  position: absolute;
  left: -10%;
  top: -30%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,0,153,.42), transparent 62%);
  filter: blur(30px);
  animation: pulseGlow 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 110px);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-title {
  margin: 24px 0 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.hero-title span { display: block; font-size: clamp(58px, 10.5vw, 150px); }
.hero-title-outline {
  font-size: clamp(40px, 6.8vw, 96px) !important;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
}
.hero-script {
  margin: 10px 0 0;
  font-family: Yellowtail, cursive;
  font-size: clamp(24px, 3.2vw, 42px);
  color: var(--cream);
  line-height: 1;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin: 38px 0 0;
}
.hero-meta span:not(.dot) {
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.hero-blurb {
  max-width: 38ch;
  margin: 22px 0 0;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  color: rgba(255,243,228,.62);
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 clamp(56px, 8vw, 96px);
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: clamp(30px, 5vw, 64px);
}
.hero-visual-backing {
  position: absolute;
  left: clamp(-30px, -2vw, -12px);
  top: clamp(18px, 3vw, 42px);
  right: clamp(30px, 4vw, 60px);
  bottom: clamp(52px, 7vw, 96px);
  background: var(--purple);
  clip-path: polygon(0 2.5%, 100% 0, 100% 97%, 0 100%);
}
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin-left: auto;
  background: var(--cream);
  padding: 9px;
  clip-path: polygon(0 2.2%, 100% 0, 100% 97.8%, 0 100%);
  box-shadow: 0 40px 90px rgba(0,0,0,.6);
}
.hero-ph { clip-path: polygon(0 2.2%, 100% 0, 100% 97.8%, 0 100%); }
.hero-tag {
  position: absolute;
  z-index: 20;
  left: -14px;
  bottom: clamp(64px, 10vw, 116px);
  transform: rotate(-4deg);
  padding: 9px 16px;
  background: var(--cream);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  z-index: 5;
  margin: -18px 0 0;
  transform: rotate(-1.6deg);
  background: var(--purple);
  overflow: hidden;
  padding: 16px 0;
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
}
.marquee-track { display: flex; width: max-content; animation: marq 26s linear infinite; }
.marquee-row {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: Anton, sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.marquee-row i { font-style: normal; color: var(--yellow); }

/* ============ ABOUT ============ */
.about {
  position: relative;
  padding: clamp(110px, 14vw, 210px) var(--pad-x);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(46px, 7vw, 120px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-collage { position: relative; min-width: 0; }
.about-collage-backing {
  position: absolute;
  left: clamp(-32px, -3vw, -14px);
  top: clamp(-18px, -2vw, -8px);
  width: 72%;
  height: 64%;
  background: var(--purple);
  opacity: .95;
  clip-path: polygon(0 3%, 100% 0, 100% 96%, 0 100%);
}
.about-collage-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.about-img { aspect-ratio: 1 / 1; overflow: hidden; clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%); }
.about-img--tall { grid-row: span 2; aspect-ratio: 3 / 4.4; clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%); }
.about-img:last-child { clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%); }

/* ============ FEATURES ============ */
.features {
  padding: clamp(100px, 13vw, 190px) var(--pad-x) clamp(110px, 14vw, 200px);
  background: var(--bg2);
  overflow: hidden;
}
.features-inner { max-width: 1320px; margin: 0 auto; }
.feature {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  margin: 0 0 clamp(80px, 11vw, 150px);
}
.feature:last-child { margin-bottom: 0; }
.feature-visual { position: relative; min-width: 0; }
.feature-visual::before {
  content: "";
  position: absolute;
  left: clamp(-40px, -4vw, -16px);
  top: clamp(-22px, -2.4vw, -10px);
  width: 86%;
  height: 78%;
}
.feature-visual--pink::before   { background: var(--pink);   opacity: .9; clip-path: polygon(0 4%, 100% 0, 100% 95%, 0 100%); }
.feature-visual--yellow::before { background: var(--yellow); left: auto; top: auto; right: clamp(-40px, -4vw, -16px); bottom: clamp(-22px, -2.4vw, -10px); clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%); }
.feature-visual--purple::before { background: var(--purple); top: auto; bottom: clamp(-22px, -2.4vw, -10px); clip-path: polygon(0 3%, 100% 0, 100% 96%, 0 100%); }
.feature-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  margin-left: clamp(14px, 3vw, 44px);
  overflow: hidden;
  clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
}
.feature--flip .feature-frame { margin-left: 0; margin-right: clamp(14px, 3vw, 44px); clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%); }
.feature-copy { min-width: 0; }
.feature-copy h3 {
  margin: 12px 0 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: .98;
  text-transform: uppercase;
}
.feature-copy p {
  margin: 16px 0 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,243,228,.72);
  text-wrap: pretty;
}

/* ============ LINEUP ============ */
.lineup { padding: clamp(110px, 14vw, 200px) var(--pad-x); background: var(--bg2); }
.lineup-inner { max-width: 1400px; margin: 0 auto; }
.lineup-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.lineup-head .h2 { margin-top: 14px; font-size: clamp(40px, 6.4vw, 96px); line-height: .9; }
.lineup-note { max-width: 34ch; font-size: 14.5px; line-height: 1.6; color: rgba(255,243,228,.6); }

.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(26px, 3.4vw, 48px);
  margin: clamp(52px, 7vw, 88px) 0 0;
}
.dj { min-width: 0; }
.dj-avatar {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dj-avatar span {
  font-family: Anton, sans-serif;
  font-size: clamp(34px, 3.8vw, 56px);
  letter-spacing: .05em;
  color: rgba(255,243,228,.92);
}
.dj-avatar--pink   { border: 3px solid var(--pink);   background: radial-gradient(circle at 32% 28%, rgba(233,215,88,.5),  rgba(10,6,7,.15) 72%), #1c1014; }
.dj-avatar--yellow { border: 3px solid var(--yellow); background: radial-gradient(circle at 32% 28%, rgba(255,31,109,.42), rgba(10,6,7,.15) 72%), #1c1014; }
.dj-avatar--purple { border: 3px solid var(--purple); background: radial-gradient(circle at 32% 28%, rgba(87,26,203,.6),   rgba(10,6,7,.15) 72%), #1c1014; }
.dj h3 {
  margin: 18px 0 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
}
.dj p {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.schedule { margin: clamp(80px, 11vw, 140px) 0 0; }
.schedule-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.schedule-tabs button {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,243,228,.3);
  font-family: Archivo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: rgba(255,243,228,.65);
  transition: background .2s ease, color .2s ease;
}
.schedule-tabs button.is-active { background: var(--cream); color: var(--bg); }
.schedule-row {
  display: grid;
  grid-template-columns: clamp(74px, 9vw, 120px) 1fr auto;
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
  padding: clamp(24px, 2.8vw, 38px) clamp(10px, 1.6vw, 20px);
  border-top: 1px solid rgba(255,243,228,.14);
  transition: background .2s ease, padding-left .2s ease;
}
.schedule-row:hover { background: rgba(57,0,153,.3); padding-left: clamp(18px, 2.4vw, 34px); }
.schedule-time { font-family: Anton, sans-serif; font-size: clamp(18px, 2vw, 26px); color: var(--yellow); }
.schedule-act  { font-family: Anton, sans-serif; font-size: clamp(20px, 2.4vw, 34px); text-transform: uppercase; line-height: 1.05; }
.schedule-detail { margin-top: 4px; font-size: 13px; color: rgba(255,243,228,.6); }
.schedule-room {
  padding: 7px 13px;
  border: 1px solid rgba(255,243,228,.28);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,243,228,.75);
  white-space: nowrap;
}
.schedule-endline { border-top: 1px solid rgba(255,243,228,.14); }

/* ============ TICKETS ============ */
.tickets {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vw, 200px) var(--pad-x);
  background:
    radial-gradient(60% 70% at 85% 10%, rgba(233,215,88,.4), transparent 68%),
    radial-gradient(50% 60% at 10% 90%, rgba(255,31,109,.28), transparent 70%),
    var(--bg);
}
.tickets-inner { max-width: 1300px; margin: 0 auto; position: relative; }
.tickets-inner .h2 { margin-top: 14px; font-size: clamp(40px, 6.4vw, 96px); line-height: .9; }
.tickets-note { margin: 16px 0 0; font-size: 15px; color: rgba(255,243,228,.65); }
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin: clamp(52px, 7vw, 88px) 0 0;
  align-items: start;
}
.ticket {
  padding: 32px 28px 30px;
  border: 1px solid rgba(255,243,228,.22);
  border-radius: 8px;
  background: rgba(255,243,228,.03);
  transition: transform .22s ease, border-color .22s ease;
}
.ticket:hover { transform: translateY(-6px); border-color: var(--yellow); }
.ticket--vip:hover { border-color: var(--purple); }
.ticket-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,243,228,.6);
}
.vip-accent { color: var(--purple); }
.ticket-price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 0; }
.ticket-price span { font-family: Anton, sans-serif; font-size: 64px; line-height: 1; }
.ticket-price span.big { font-size: 72px; }
.ticket-price small { font-size: 13px; color: rgba(255,243,228,.55); }
.ticket-price small.strike { text-decoration: line-through; color: inherit; opacity: .6; }
.ticket-rule { height: 1px; background: rgba(255,243,228,.16); margin: 24px 0; }
.ticket-rule--dark { background: rgba(10,6,7,.25); }
.ticket-list { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: rgba(255,243,228,.78); }
.ticket-list .muted { color: rgba(255,243,228,.4); }
.ticket-list--dark { color: inherit; font-weight: 500; }
.ticket-btn {
  display: block;
  margin: 28px 0 0;
  padding: 15px;
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.ticket-btn--ghost { border: 1px solid rgba(255,243,228,.35); color: var(--cream); }
.ticket-btn--ghost:hover { color: var(--bg); background: var(--cream); border-color: var(--cream); }
.ticket-btn--yellow {
  padding: 16px;
  background: var(--yellow);
  color: var(--bg);
  box-shadow: 0 12px 34px rgba(10,6,7,.35);
}
.ticket-btn--yellow:hover { color: var(--bg); background: #ff5c93; transform: translateY(-2px); }
.ticket-btn--purple { border: 1px solid var(--purple); color: var(--cream); }
.ticket-btn--purple:hover { color: var(--cream); background: var(--purple); }
.ticket--featured {
  position: relative;
  padding: 36px 30px 34px;
  border: none;
  border-radius: 8px;
  background: var(--pink);
  color: var(--bg);
  box-shadow: 0 30px 70px rgba(233,215,88,.35);
  transform: scale(1.03);
}
.ticket--featured:hover { transform: scale(1.055) translateY(-4px); border-color: transparent; }
.ticket--featured .ticket-name { color: inherit; opacity: .75; }
.ticket-flag {
  position: absolute;
  top: -13px;
  left: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.ticket-fine { margin: 14px 0 0; font-size: 11.5px; text-align: center; opacity: .7; }

/* ============ VENUE ============ */
.venue { padding: 0; background: var(--bg2); }
.venue-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.venue-visual {
  position: relative;
  min-height: clamp(320px, 42vw, 560px);
  clip-path: polygon(0 0, 100% 3.5%, 100% 100%, 0 96.5%);
}
.venue-ph { position: absolute; inset: 0; }
.venue-panel {
  padding: clamp(70px, 9vw, 130px) clamp(28px, 5vw, 90px);
  background: var(--purple);
  color: var(--cream);
}
.h2--venue { margin-top: 14px; font-size: clamp(38px, 5.2vw, 74px); }
.venue-lead {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
}
.venue-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  margin: 34px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,243,228,.85);
}
.venue-fact-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,243,228,.62);
  margin-bottom: 7px;
}

/* ============ GALLERY ============ */
.gallery { padding: clamp(110px, 14vw, 200px) var(--pad-x); background: var(--bg); }
.gallery-inner { max-width: 1440px; margin: 0 auto; }
.gallery-head { margin: 0 0 clamp(28px, 4vw, 48px); }
.gallery-head .h2 { margin: 0; font-size: clamp(38px, 6vw, 88px); line-height: .9; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-rows: clamp(150px, 17vw, 230px);
  gap: clamp(16px, 2vw, 26px);
}
.g-cell { overflow: hidden; border-radius: 4px; }
.g-cell--big { grid-column: span 2; grid-row: span 2; border-radius: 0; clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%); }
.g-cell--tall { grid-row: span 2; }
.g-cell--wide { grid-column: span 2; }
.g-cell--framed { border: 6px solid var(--yellow); }
.g-cell--tag {
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}
.g-cell--tag span {
  font-family: Anton, sans-serif;
  font-size: clamp(15px, 1.8vw, 24px);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.15;
}
@media (max-width: 520px) {
  .g-cell--big, .g-cell--wide { grid-column: span 1; }
}

/* ============ CTA BAND ============ */
.cta-band {
  /* opts out of the site-wide pink/yellow swap: original values pinned here */
  --pink: #ff1f6d;
  --yellow: #e9d758;
  padding: clamp(90px, 12vw, 160px) var(--pad-x);
  background: var(--yellow);
  color: var(--bg);
  text-align: center;
}
.cta-band h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(38px, 7vw, 110px);
  line-height: 1.12;
  text-transform: uppercase;
}
.cta-script { font-size: clamp(44px, 8vw, 124px); line-height: 1; }

/* ============ FOOTER ============ */
.footer {
  padding: clamp(90px, 11vw, 150px) var(--pad-x) 40px;
  background: var(--bg);
  border-top: 1px solid rgba(255,243,228,.14);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(40px, 5vw, 88px);
}
.footer-script { font-family: Yellowtail, cursive; font-size: 34px; color: var(--yellow); line-height: 1; }
.footer-blurb { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: rgba(255,243,228,.65); max-width: 30ch; }
.footer-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,243,228,.5);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-news { margin: 0 0 14px; font-size: 13.5px; color: rgba(255,243,228,.6); }
.footer-form { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-form input {
  flex: 1 1 130px;
  min-width: 0;
  padding: 13px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255,243,228,.28);
  background: transparent;
  color: var(--cream);
  font-family: Archivo, sans-serif;
  font-size: 13.5px;
  outline: none;
}
.footer-form button {
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  background: var(--pink);
  color: var(--bg);
  font-family: Archivo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.footer-form button:hover { background: var(--yellow); }
.footer-giant {
  margin: clamp(40px, 6vw, 72px) 0 0;
  font-family: Anton, sans-serif;
  font-size: clamp(34px, 9vw, 140px);
  line-height: .8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,243,228,.22);
  text-align: center;
  user-select: none;
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,243,228,.12);
  font-size: 11.5px;
  color: rgba(255,243,228,.45);
}

/* ============ ANIMATION ============ */
@keyframes rise { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: none; } }
@keyframes riseTilt { from { opacity: 0; transform: translateY(60px) rotate(6deg) scale(.94); } to { opacity: 1; transform: translateY(0) rotate(-3deg) scale(1); } }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseGlow { 0%, 100% { opacity: .55; } 50% { opacity: .95; } }

.rise { animation: rise .8s cubic-bezier(.2,.8,.2,1) both; }
.rise.d1 { animation-delay: .08s; }
.rise.d2 { animation-delay: .18s; }
.rise.d3 { animation-delay: .28s; }
.rise.d4 { animation-delay: .38s; }
.rise.d5 { animation-delay: .46s; }
.rise.d6 { animation-delay: .56s; }
.rise-tilt { animation: riseTilt 1s .3s cubic-bezier(.2,.8,.2,1) both; transform: rotate(-3deg); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.05s cubic-bezier(.16,1,.3,1), transform 1.05s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ MOBILE ============ */
@media (max-width: 720px) {
  /* nav: smaller pennant, links collapse into a hamburger dropdown */
  .nav { padding: 12px 18px; }
  .nav-logo { padding: 12px 14px 24px; margin: -12px 0 -30px; }
  .nav-logo span { font-size: 16px; }
  .nav-logo small { font-size: 10px; }
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 26px 22px 30px;
    background: var(--bg);
    box-shadow: 0 24px 40px rgba(0,0,0,.2);
  }
  .nav.nav-open .nav-links { display: flex; }
  .nav-links > a { font-size: 13px; }
  .nav-cta { padding: 12px 26px; }

  /* hero: the type owns the first screen as a poster, centered and
     vertically filling it; the polaroid drops below the fold. */
  .hero { padding-top: 20px; }
  .hero-grid { gap: 0; align-items: stretch; }
  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /* svh keeps the panel clear of mobile browser chrome; vh is the fallback */
    min-height: calc(100vh - 96px);
    min-height: calc(100svh - 96px);
    padding-bottom: 20px;
  }
  /* vw-driven so the wordmark scales with the screen rather than sitting
     at its desktop floor. Both lines land at ~85% of the text column:
     SALSA is 5 glyphs, AOTEAROA 8, hence the ~0.64 ratio between them. */
  .hero-title { margin-top: 18px; }
  .hero-title span { font-size: min(32vw, 200px); }
  .hero-title-outline {
    font-size: min(20.5vw, 128px) !important;
    -webkit-text-stroke-width: 1.5px;
  }
  .hero-script { margin-top: 14px; font-size: min(7.5vw, 42px); }
  .hero-meta { justify-content: center; margin-top: 30px; gap: 8px 16px; }
  .hero-blurb { margin: 22px auto 0; max-width: 34ch; }
  /* stacked, full-width tap targets */
  .hero-ctas { flex-direction: column; margin: 34px 0 0; }
  .hero-ctas .btn { width: 100%; padding: 17px 26px; text-align: center; }

  .hero-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 8px 0 44px;
  }
  .hero-frame { margin: 0 auto; }

  /* lineup: one column stretches each circle to the full content width,
     so pair them up */
  .dj-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .dj h3 { margin-top: 14px; font-size: 20px; }
  .dj p { font-size: 11px; letter-spacing: .14em; }
  .dj-avatar span { font-size: 30px; }

  /* features: the middle block is source-ordered text-first for the desktop
     zigzag, which reads inconsistently in one column. Lead with the image
     everywhere, and offset all three backing panels the same way. */
  .feature--flip .feature-visual { order: -1; }
  .feature--flip .feature-frame {
    margin-left: clamp(14px, 3vw, 44px);
    margin-right: 0;
  }
  .feature-visual--yellow::before {
    left: clamp(-40px, -4vw, -16px);
    right: auto;
    top: clamp(-22px, -2.4vw, -10px);
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rise, .rise-tilt { animation: none; opacity: 1; }
  .rise-tilt { transform: rotate(-3deg); }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
