/* ═══════════════════════════════════════════════════════════════
   DAMROOH — Dance to the Cosmic Spirit
   Design system: deep-space navy · brand teal · cosmic gold
   Typeface: Gilroy (all roles, differentiated by weight + tracking)
   ═══════════════════════════════════════════════════════════════ */

/* ── GILROY @font-face SLOTS ─────────────────────────────────────
   Drop your licensed .woff2 files into /fonts/ with these names.  */
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-Light.woff2') format('woff2');     font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-Regular.woff2') format('woff2');   font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-Medium.woff2') format('woff2');    font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2');  font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-Bold.woff2') format('woff2');      font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Gilroy'; src: url('../fonts/Gilroy-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

/* ── TOKENS ── */
:root {
  --space:      #060A1C;
  --space-2:    #0B1130;
  --space-3:    #111A42;
  --teal:       #6FE8DC;
  --teal-deep:  #2BB3A6;
  --gold:       #E9B44C;
  --gold-hot:   #F6CE73;
  --rose:       #E87FBE;
  --ink:        #EEF1FF;
  --ink-dim:    #A9B1D6;
  --line:       rgba(111, 232, 220, 0.16);

  --font: 'Gilroy', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --shadow-glow: 0 0 60px rgba(111, 232, 220, 0.12);

  /* Background image visibility — raise for stronger images,
     lower if text becomes hard to read */
  --bg-img-opacity: 0.42;
  --city-img-opacity: 0.5;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--space);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), 92%); margin-inline: auto; position: relative; z-index: 2; }
.section { padding: clamp(84px, 10vw, 140px) 0; position: relative; }
.center { text-align: center; }

/* ── GENERIC SECTION BACKGROUND IMAGE SLOT ──
   Every section has: <div class="section-bg"><img src="images/bg-<section>.jpg"></div>
   Missing images remove themselves; a soft top/bottom fade keeps text readable. */
.section-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.section-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: var(--bg-img-opacity);
}
.section-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--space) 0%,
    rgba(6, 10, 28, 0.25) 22%,
    rgba(6, 10, 28, 0.25) 78%,
    var(--space) 100%);
}

/* ── TYPE SCALE ── */
h1, h2, h3 { font-weight: 800; line-height: 1.12; letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 22px; }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 300; color: var(--ink-dim); }
p + p { margin-top: 16px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow--center { display: block; text-align: center; }

.stat-huge { color: var(--teal); text-shadow: 0 0 32px rgba(111, 232, 220, 0.45); }

/* ── BRAND LOGO SWAP PATTERN ──
   <span class="brand"><img class="brand__img" src="…logo.png"><strong class="brand__text">NAME</strong></span>
   If the logo file is missing, the text shows automatically. */
.brand { display: inline-flex; align-items: center; vertical-align: middle; }
.brand__img { display: inline-block; height: 1.3em; width: auto; }
.brand__img--lg { height: 1.7em; }
.brand__img--damrooh { height: 1.15em; }
.brand__img--heading { height: 0.95em; transform: translateY(0.06em); }
.brand__text { letter-spacing: 0.08em; }

/* ── SECTION LOGO (large Damrooh logo under an eyebrow) ── */
.section-logo { text-align: center; margin-bottom: 26px; }
.section-logo__img { display: inline-block; height: clamp(44px, 6vw, 68px); width: auto; }
.section-logo__text {
  font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.12em; color: var(--teal);
  align-items: center; justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--lg { padding: 17px 40px; font-size: 0.98rem; }
.btn--block { display: block; text-align: center; margin-top: 22px; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-hot) 55%, var(--gold) 100%);
  color: #241A05;
  box-shadow: 0 6px 28px rgba(233, 180, 76, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(233, 180, 76, 0.5); }
.btn--ghost {
  border-color: rgba(238, 241, 255, 0.35);
  color: var(--ink);
  background: rgba(6, 10, 28, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn--teal {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal));
  color: #04211D;
  box-shadow: 0 6px 28px rgba(111, 232, 220, 0.3);
}
.btn--teal:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(111, 232, 220, 0.45); }

/* ── DAMARU GLYPH (CSS fallback mark) ── */
.damaru-glyph {
  display: inline-block;
  width: 0.62em; height: 0.62em;
  margin: 0 0.06em;
  vertical-align: baseline;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
  filter: drop-shadow(0 0 8px rgba(111, 232, 220, 0.7));
}
.damaru-glyph--lg { width: 0.58em; height: 0.58em; }
.damaru-glyph--xl { width: 64px; height: 64px; margin-bottom: 18px; }

/* ── STARFIELD + NEBULAE ── */
.stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, #fff 60%, transparent),
    radial-gradient(1px 1px at 28% 74%, rgba(255,255,255,0.9) 60%, transparent),
    radial-gradient(1.6px 1.6px at 41% 12%, rgba(111,232,220,0.95) 60%, transparent),
    radial-gradient(1px 1px at 57% 48%, #fff 60%, transparent),
    radial-gradient(1.3px 1.3px at 66% 84%, rgba(255,255,255,0.85) 60%, transparent),
    radial-gradient(1px 1px at 74% 28%, rgba(246,206,115,0.95) 60%, transparent),
    radial-gradient(1.6px 1.6px at 86% 62%, #fff 60%, transparent),
    radial-gradient(1px 1px at 93% 15%, rgba(255,255,255,0.8) 60%, transparent),
    radial-gradient(1.2px 1.2px at 8% 55%, rgba(232,127,190,0.85) 60%, transparent),
    radial-gradient(1px 1px at 35% 38%, #fff 60%, transparent),
    radial-gradient(1.1px 1.1px at 49% 90%, rgba(255,255,255,0.9) 60%, transparent),
    radial-gradient(1.4px 1.4px at 81% 41%, rgba(111,232,220,0.85) 60%, transparent),
    radial-gradient(1px 1px at 19% 8%, #fff 60%, transparent),
    radial-gradient(1px 1px at 63% 6%, rgba(255,255,255,0.75) 60%, transparent);
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.65; } to { opacity: 1; } }

.nebula {
  position: absolute; pointer-events: none; z-index: 1;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.nebula--teal   { background: radial-gradient(circle, rgba(43,179,166,0.35), transparent 65%); top: -18%; right: -14%; }
.nebula--violet { background: radial-gradient(circle, rgba(120,82,210,0.32), transparent 65%); bottom: -22%; left: -16%; }
.nebula--gold   { background: radial-gradient(circle, rgba(233,180,76,0.14), transparent 65%); top: 6%; left: 50%; transform: translateX(-50%); }

/* ── RIPPLE ── */
.ripple { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 1; }
.ripple span {
  grid-area: 1 / 1;
  width: 42vmin; height: 42vmin;
  border-radius: 50%;
  border: 1px solid rgba(111, 232, 220, 0.35);
  animation: beat 5.2s cubic-bezier(0.2, 0.6, 0.35, 1) infinite;
}
.ripple span:nth-child(2) { animation-delay: 1.7s; }
.ripple span:nth-child(3) { animation-delay: 3.4s; }
@keyframes beat {
  0%   { transform: scale(0.42); opacity: 0; }
  12%  { opacity: 0.85; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav--solid {
  background: rgba(6, 10, 28, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav__inner {
  width: min(var(--container), 92%);
  margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 34px; width: auto; }
.nav__wordmark, .footer__wordmark {
  font-weight: 800; font-size: 1.35rem; letter-spacing: 0.12em;
  color: var(--teal); align-items: center;
}
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--teal); }
.nav__cta { white-space: nowrap; }
.nav__toggle { display: none; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  position: relative;
  text-align: center;
  padding: 120px 20px 90px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 115%, rgba(233, 180, 76, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(43, 179, 166, 0.16), transparent 60%),
    var(--space);
  overflow: hidden;
}
/* Video / gif / jpg background — all share .hero__media */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__media {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,28,0.4) 0%, rgba(6,10,28,0.12) 45%, var(--space) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; width: 100%; }

/* Responsive key-art graphic */
.hero__graphic { margin: 0 auto 42px; }
.hero__graphic img {
  width: min(560px, 88vw);
  height: auto;
  margin-inline: auto;
  border-radius: calc(var(--radius) + 4px);
  filter: drop-shadow(0 0 60px rgba(111, 232, 220, 0.22)) drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
}

/* Text fallback (only visible if hero-graphic.png is missing) */
.hero__fallback { margin-bottom: 42px; }
.hero__title { margin: 6px 0 4px; }
.hero__wordmark {
  font-size: clamp(3.4rem, 11vw, 7.8rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(120deg, #9FF3EA 0%, var(--teal) 45%, #C8F9F3 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(111, 232, 220, 0.35));
}
.hero__tagline {
  font-size: clamp(0.85rem, 1.7vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--gold-hot);
  margin-bottom: 40px;
}
.hero__artist { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.hero__artist-name {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.hero__artist-cred {
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.hero__meta {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--ink-dim);
}
.hero__meta strong { color: var(--ink); font-weight: 700; letter-spacing: 0.12em; }
.hero__meta .brand { margin-left: 8px; }
.hero__meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }

.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-dim);
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--teal), transparent);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ═══════════ CITY MARQUEE ═══════════ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--space-2);
  overflow: hidden;
  padding: 20px 0;
  position: relative; z-index: 2;
}
.marquee__track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: slide 30s linear infinite;
}
.marquee__track span {
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.marquee__track i {
  width: 7px; height: 7px; flex: none;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
  opacity: 0.9;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ═══════════ ABOUT ═══════════ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about__cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about__cities li {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  background: rgba(6, 10, 28, 0.5);
}

/* ── IMAGE FRAMES ── */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(233, 180, 76, 0.22), transparent 55%),
    radial-gradient(circle at 20% 85%, rgba(43, 179, 166, 0.3), transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(120, 82, 210, 0.3), transparent 55%),
    var(--space-3);
  box-shadow: var(--shadow-glow), 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
}
.img-frame img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.img-frame__placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: var(--teal);
  font-weight: 800; letter-spacing: 0.28em; font-size: 1.1rem;
}
.img-frame__placeholder small {
  display: block; margin-top: 8px;
  font-weight: 400; letter-spacing: 0.3em; font-size: 0.6rem;
  color: var(--gold-hot); text-transform: uppercase;
}
.img-frame--poster { aspect-ratio: 4 / 5; }
.img-frame--artist { aspect-ratio: 1 / 1; margin-bottom: 26px; }

/* ═══════════ THE SOUND ═══════════ */
.sound { background: var(--space-2); overflow: hidden; }
.sound .section-bg::after {
  background: linear-gradient(180deg, var(--space-2) 0%, rgba(11,17,48,0.2) 25%, rgba(11,17,48,0.2) 75%, var(--space-2) 100%);
}
.sound__lead { max-width: 760px; margin-inline: auto; }
.sound__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 60px;
}
.sound-card {
  background: rgba(6, 10, 28, 0.66);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.sound-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 232, 220, 0.45);
  box-shadow: var(--shadow-glow);
}
.sound-card h3 { color: var(--teal); margin-bottom: 12px; font-size: 1.12rem; }
.sound-card p { color: var(--ink-dim); font-size: 0.95rem; font-weight: 300; }

/* ═══════════ ARTISTS ═══════════ */
.artists { overflow: hidden; }
.artists__lead { max-width: 780px; margin-inline: auto; }
.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 64px;
  align-items: start;
}
.artist {
  background: linear-gradient(180deg, rgba(17, 26, 66, 0.92), rgba(11, 17, 48, 0.92));
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 30px 28px 34px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.artist:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(111, 232, 220, 0.4); }
.artist--headline {
  border-color: rgba(233, 180, 76, 0.45);
  background:
    radial-gradient(ellipse 120% 50% at 50% 0%, rgba(233, 180, 76, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(17, 26, 66, 0.92), rgba(11, 17, 48, 0.92));
}
.artist--headline:hover { border-color: var(--gold); box-shadow: 0 0 60px rgba(233, 180, 76, 0.16); }
.artist__badge {
  position: absolute; top: -13px; left: 28px;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal);
  background: var(--space);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 16px;
}
.artist__badge--gold { color: var(--gold-hot); border-color: rgba(233, 180, 76, 0.45); }
.artist__initial {
  font-size: 4.4rem; font-weight: 800; letter-spacing: 0.08em;
  color: rgba(111, 232, 220, 0.5);
}
.artist__name { font-size: 1.65rem; margin-bottom: 8px; }
.artist__role {
  font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-hot);
  margin-bottom: 18px; line-height: 1.6;
}
.artist__creds li {
  font-size: 0.92rem; font-weight: 300; color: var(--ink-dim);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(111, 232, 220, 0.08);
  position: relative;
}
.artist__creds li:last-child { border-bottom: none; }
.artist__creds li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 8px; height: 8px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
  opacity: 0.8;
}
.artist__creds strong { color: var(--ink); font-weight: 600; }

/* ═══════════ TICKETS ═══════════ */
.tickets { background: var(--space-2); overflow: hidden; }
.tickets .section-bg::after {
  background: linear-gradient(180deg, var(--space-2) 0%, rgba(11,17,48,0.2) 25%, rgba(11,17,48,0.2) 75%, var(--space-2) 100%);
}
.tickets__lead { max-width: 640px; margin-inline: auto; }
.tickets__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.city-card {
  position: relative;
  overflow: hidden;
  background: rgba(6, 10, 28, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.city-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 180, 76, 0.5);
  box-shadow: 0 0 50px rgba(233, 180, 76, 0.1);
}
/* Per-city background image slot */
.city-card__bg { position: absolute; inset: 0; z-index: 0; }
.city-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: var(--city-img-opacity);
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.city-card:hover .city-card__bg img { opacity: calc(var(--city-img-opacity) + 0.15); transform: scale(1.05); }
.city-card__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,28,0.35) 0%, rgba(6,10,28,0.75) 100%);
}
.city-card__content { position: relative; z-index: 2; padding: 34px 26px 28px; }
.city-card__num {
  display: block; width: 12px; height: 12px; margin: 0 auto 18px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
  filter: drop-shadow(0 0 10px rgba(233, 180, 76, 0.7));
}
.city-card h3 { font-size: 1.3rem; letter-spacing: 0.04em; margin-bottom: 10px; text-shadow: 0 2px 14px rgba(0,0,0,0.6); }
.city-card__date {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
}
.city-card__venue { font-size: 0.82rem; font-weight: 300; color: var(--ink-dim); margin-top: 6px; }

/* ═══════════ CAUSE STRIP ═══════════ */
.cause {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--space);
  padding: 54px 0;
  text-align: center;
  overflow: hidden;
}
.cause__text {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--ink-dim);
  max-width: 760px; margin-inline: auto;
}
.cause__text strong { color: var(--teal); font-weight: 700; }

/* ═══════════ PARTNER ═══════════ */
.partner { overflow: hidden; text-align: center; }
.ripple--partner span { border-color: rgba(233, 180, 76, 0.22); }
.partner__lead { max-width: 720px; margin: 0 auto 40px; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--space);
  padding: 54px 0 44px;
  text-align: center;
}
.footer__brand { display: inline-flex; justify-content: center; }
.footer__logo { height: 42px; width: auto; margin-inline: auto; }
.footer__wordmark { font-size: 1.5rem; display: inline-flex; }
.footer__line {
  margin-top: 16px; font-size: 0.85rem; letter-spacing: 0.1em; color: var(--ink-dim);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px;
}
.footer__line .brand { margin-left: 6px; }
.footer__legal { margin-top: 12px; font-size: 0.74rem; color: rgba(169, 177, 214, 0.55); letter-spacing: 0.06em; }

/* ═══════════ REVEAL ANIMATION ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--in { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .artists__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__poster { max-width: 400px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav__cta { display: none; }
  .nav__toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto;
    width: 44px; height: 44px; align-items: center;
    background: none; border: 1px solid var(--line); border-radius: 10px;
    cursor: pointer;
  }
  .nav__toggle span { width: 20px; height: 2px; background: var(--teal); transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle--open span:nth-child(2) { opacity: 0; }
  .nav__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    background: rgba(6, 10, 28, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav__links--open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.1rem; }

  .hero { padding-top: 104px; }
  .hero__graphic img { width: min(440px, 90vw); }
  .hero__ctas .btn { width: 100%; max-width: 340px; }
  .hero__meta { flex-direction: column; gap: 8px; }
  .hero__meta-dot { display: none; }

  .marquee__track { gap: 30px; animation-duration: 22s; }
  .tickets__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .tickets__grid { grid-template-columns: 1fr; }
  .sound__grid { grid-template-columns: 1fr; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stars, .ripple span, .hero__scroll-line, .marquee__track { animation: none; }
  .ripple { display: none; }
  .hero__media { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ═══════════ EXPLORE THE MUSIC ═══════════ */
.music { overflow: hidden; }
.music__lead { max-width: 700px; margin-inline: auto; }
.music__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 460px));
  justify-content: center;
  gap: 26px;
  margin-top: 56px;
}
.platform-card {
  display: block;
  background: rgba(6, 10, 28, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 40px 34px 36px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.platform-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.platform-card:hover .platform-card__icon { transform: scale(1.08); }
.platform-card h3 { font-size: 1.45rem; margin-bottom: 6px; }
.platform-card__stat {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.platform-card__desc { font-size: 0.95rem; font-weight: 300; color: var(--ink-dim); max-width: 320px; margin-inline: auto; }
.platform-card__cta {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform 0.25s ease;
}
.platform-card:hover .platform-card__cta { transform: translateX(4px); }

.platform-card--yt .platform-card__icon { background: rgba(255, 0, 0, 0.14); color: #FF4B4B; }
.platform-card--yt .platform-card__stat,
.platform-card--yt .platform-card__cta { color: #FF6B6B; }
.platform-card--yt:hover { transform: translateY(-6px); border-color: rgba(255, 75, 75, 0.5); box-shadow: 0 0 50px rgba(255, 75, 75, 0.12); }

.platform-card--sp .platform-card__icon { background: rgba(30, 215, 96, 0.13); color: #1ED760; }
.platform-card--sp .platform-card__stat,
.platform-card--sp .platform-card__cta { color: #3BE477; }
.platform-card--sp:hover { transform: translateY(-6px); border-color: rgba(30, 215, 96, 0.5); box-shadow: 0 0 50px rgba(30, 215, 96, 0.12); }

/* ═══════════ FOLLOW ON INSTAGRAM ═══════════ */
.insta { background: var(--space-2); overflow: hidden; text-align: center; }
.insta .section-bg::after {
  background: linear-gradient(180deg, var(--space-2) 0%, rgba(11,17,48,0.2) 25%, rgba(11,17,48,0.2) 75%, var(--space-2) 100%);
}
.insta__lead { max-width: 680px; margin: 0 auto 38px; }
.insta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff;
  padding: 17px 40px;
  border-radius: 100px;
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 80%, #515BD4 100%);
  box-shadow: 0 6px 30px rgba(221, 42, 123, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(221, 42, 123, 0.5); }
.insta-btn__icon { display: inline-flex; }
.insta__handle {
  margin-top: 20px;
  font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 700px) {
  .music__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; margin-top: 48px; }
}

/* ═══════════ MORE ARTISTS — ANTICIPATION STRIP ═══════════ */
.artists__more {
  margin: 54px auto 0;
  max-width: 560px;
  text-align: center;
  padding: 34px 28px;
  border: 1px dashed rgba(111, 232, 220, 0.35);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(6, 10, 28, 0.4);
}
.artists__more-pulse { display: inline-flex; gap: 8px; margin-bottom: 16px; }
.artists__more-pulse i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.artists__more-pulse i:nth-child(2) { animation-delay: 0.25s; }
.artists__more-pulse i:nth-child(3) { animation-delay: 0.5s; }
@keyframes pulse-dot {
  0%, 100% { transform: scale(0.7); opacity: 0.4; }
  50%      { transform: scale(1.15); opacity: 1; box-shadow: 0 0 14px rgba(233, 180, 76, 0.7); }
}
.artists__more-text { font-size: 1.02rem; font-weight: 300; color: var(--ink-dim); line-height: 1.7; }
.artists__more-text strong {
  display: inline-block; margin-top: 4px;
  font-weight: 700; letter-spacing: 0.06em;
  background: linear-gradient(120deg, var(--gold-hot), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ═══════════ STICKY DAMARU FAB ═══════════ */
.fab-wrap {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 90;
  width: 116px; height: 116px;
  display: grid; place-items: center;
}
/* Revolving "BEAT THE DAMROOH" text ring */
.fab__orbit {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  animation: orbit-spin 40s linear infinite;
}
.fab__orbit text {
  fill: var(--teal);
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3.1px;
  opacity: 0.85;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.fab {
  position: relative;
  z-index: 2;
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border: 1px solid rgba(111, 232, 220, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(17, 26, 66, 0.95), rgba(6, 10, 28, 0.95));
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(111, 232, 220, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab:hover { transform: scale(1.08); box-shadow: 0 8px 36px rgba(0,0,0,0.55), 0 0 34px rgba(111, 232, 220, 0.3); }
.fab__img { width: 34px; height: 34px; object-fit: contain; position: relative; z-index: 2; }
.fab__glyph { width: 26px; height: 26px; position: relative; z-index: 2; }
.fab__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(111, 232, 220, 0.5);
  animation: fab-beat 2.8s ease-out infinite;
  pointer-events: none;
}
.fab__ring--2 { animation-delay: 1.4s; }
@keyframes fab-beat {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ═══════════ MNEMONIC MODAL ═══════════ */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 5, 14, 0.8);
  backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.25s ease;
}
.modal__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(86vh, 86svh);
  /* The PANEL no longer scrolls — .modal__content does. That keeps the
     background image fixed behind the whole pop-up instead of scrolling
     away with the text. */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(111, 232, 220, 0.3);
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(43, 179, 166, 0.16), transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(233, 180, 76, 0.1), transparent 60%),
    linear-gradient(180deg, #0D1436, #080D24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(111, 232, 220, 0.12);
  padding: 0;
  opacity: 0; transform: translateY(24px) scale(0.97);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.modal--open .modal__backdrop { opacity: 1; }
.modal--open .modal__panel { opacity: 1; transform: none; }
.modal__close {
  position: absolute; top: 14px; right: 16px; z-index: 5;
  width: 40px; height: 40px;
  font-size: 1.5rem; line-height: 1;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.modal__close:hover { color: var(--teal); border-color: var(--teal); }
/* Pop-up background image (text sits on top, overlay keeps it readable) */
/* Full-bleed background image behind the entire pop-up */
.modal__bg {
  position: absolute; inset: 0; z-index: 0;
  border-radius: inherit; overflow: hidden;
  pointer-events: none;
}
.modal__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.5;
}
/* Scrim: keeps the type readable over any artwork */
.modal__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,13,36,0.80) 0%, rgba(8,13,36,0.62) 30%,
                             rgba(8,13,36,0.68) 70%, rgba(8,13,36,0.88) 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(43,179,166,0.14), transparent 65%);
}

/* The scrolling layer — text overlays the background */
.modal__content {
  position: relative; z-index: 2;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  padding: 44px 36px 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(111,232,220,0.35) transparent;
}
.modal__content::-webkit-scrollbar { width: 6px; }
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(111,232,220,0.32); border-radius: 3px;
}
.modal__content::-webkit-scrollbar-track { background: transparent; }

/* Logo header */
.modal__logo { text-align: center; margin-bottom: 28px; }
.modal__logo-img { display: inline-block; height: clamp(46px, 9vw, 66px); width: auto; filter: drop-shadow(0 0 24px rgba(111, 232, 220, 0.35)); }
.modal__logo-text {
  font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.3rem);
  letter-spacing: 0.14em; color: var(--teal);
  align-items: center; justify-content: center;
}

/* Minimalist waveform player */
.wave-player { margin-bottom: 30px; }
.wave-player--missing { display: none; }
.wave {
  display: flex; align-items: center; gap: 2.5px;
  height: 72px;
  cursor: pointer;
  padding: 4px 2px;
}
.wave i {
  flex: 1 1 0;
  min-width: 2px;
  border-radius: 2px;
  background: rgba(111, 232, 220, 0.22);
  transition: background 0.12s linear;
}
.wave i.on {
  background: var(--teal);
  box-shadow: 0 0 8px rgba(111, 232, 220, 0.55);
}
/* the bar at the playhead burns brightest */
.wave i.head { background: #DFFFFA; box-shadow: 0 0 14px rgba(159, 243, 234, 0.9); }
.wave-player__time {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}
.modal__infographic { border-radius: var(--radius); margin-inline: auto; }

.modal__info { display: grid; gap: 6px; }
.info-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(111, 232, 220, 0.1);
}
.info-step:last-child { border-bottom: none; }
.info-step__num {
  font-weight: 800; font-size: 1.3rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111, 232, 220, 0.6);
  line-height: 1.4;
}
.info-step h3 { font-size: 1.02rem; color: var(--teal); margin-bottom: 5px; }
.info-step p { font-size: 0.9rem; font-weight: 300; color: var(--ink-dim); line-height: 1.65; }

@media (max-width: 520px) {
  .modal__content { padding: 38px 22px 32px; }
  .info-step { grid-template-columns: 40px 1fr; gap: 12px; }
  .fab-wrap { width: 100px; height: 100px; }
  .fab { width: 54px; height: 54px; }
  .fab__orbit text { font-size: 12.5px; letter-spacing: 2.6px; }
}

@media (prefers-reduced-motion: reduce) {
  .fab__ring, .fab__orbit, .artists__more-pulse i { animation: none; }
}

/* ═══════════ THE CURSOR IS THE FIRST INSTRUMENT ═══════════ */
.hero__canvas {
  position: fixed; inset: 0;
  z-index: 9990;                /* above content, below the custom cursor */
  pointer-events: none;
}
.sound-chip {
  position: fixed;
  left: clamp(16px, 3vw, 30px);
  bottom: clamp(20px, 3vw, 30px);
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(6, 10, 28, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.sound-chip:hover { color: var(--teal); border-color: rgba(111, 232, 220, 0.45); }
.sound-chip__wave { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 12px; }
.sound-chip__wave i {
  width: 2.5px; border-radius: 2px;
  background: currentColor;
  height: 30%;
}
.sound-chip--on { color: var(--teal); border-color: rgba(111, 232, 220, 0.5); box-shadow: 0 0 24px rgba(111, 232, 220, 0.15); }
.sound-chip--on .sound-chip__wave i { animation: chip-eq 0.9s ease-in-out infinite alternate; }
.sound-chip--on .sound-chip__wave i:nth-child(1) { animation-delay: 0s; }
.sound-chip--on .sound-chip__wave i:nth-child(2) { animation-delay: 0.18s; }
.sound-chip--on .sound-chip__wave i:nth-child(3) { animation-delay: 0.36s; }
.sound-chip--on .sound-chip__wave i:nth-child(4) { animation-delay: 0.54s; }
@keyframes chip-eq { from { height: 25%; } to { height: 100%; } }

/* ═══════════ TUNE THE UNIVERSE ═══════════ */
.tune { background: var(--space-2); overflow: hidden; text-align: center; }
.tune .section-bg::after {
  background: linear-gradient(180deg, var(--space-2) 0%, rgba(11,17,48,0.2) 25%, rgba(11,17,48,0.2) 75%, var(--space-2) 100%);
}
.tune__lead { max-width: 700px; margin-inline: auto; }
.tune__stage { margin-top: 56px; }
.tune__orbs {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(18px, 4vw, 46px);
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.orb-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.orb {
  --v: 0.5;                       /* channel level 0–1, set by JS */
  --size: 88px;
  position: relative;
  width: var(--size); height: var(--size);
  border-radius: 50%;
  cursor: ns-resize;
  touch-action: none;
  display: grid; place-items: center;
  transition: filter 0.2s ease;
}
.orb-wrap--center .orb { --size: 108px; }
.orb__core {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid;
  transform: scale(calc(0.72 + var(--v) * 0.28));
  opacity: calc(0.35 + var(--v) * 0.65);
  transition: transform 0.12s ease-out, opacity 0.12s ease-out, box-shadow 0.12s ease-out;
}
.orb--drag .orb__core { transition: none; }
.orb:focus-visible { outline: 2px solid var(--teal); outline-offset: 6px; }

/* per-channel palettes */
.orb--orchestra  .orb__core { background: radial-gradient(circle at 35% 30%, rgba(246,206,115,0.85), rgba(233,180,76,0.25) 60%, transparent 75%); border-color: rgba(233,180,76,0.6);  box-shadow: 0 0 calc(14px + var(--v) * 34px) rgba(233,180,76,0.45); }
.orb--indigenous .orb__core { background: radial-gradient(circle at 35% 30%, rgba(255,176,133,0.85), rgba(214,110,68,0.25) 60%, transparent 75%);  border-color: rgba(228,138,92,0.6);  box-shadow: 0 0 calc(14px + var(--v) * 34px) rgba(224,124,76,0.45); }
.orb--damaru     .orb__core { background: radial-gradient(circle at 35% 30%, rgba(159,243,234,0.9), rgba(111,232,220,0.28) 60%, transparent 75%);  border-color: rgba(111,232,220,0.7); box-shadow: 0 0 calc(16px + var(--v) * 40px) rgba(111,232,220,0.5); }
.orb--electronic .orb__core { background: radial-gradient(circle at 35% 30%, rgba(190,150,255,0.85), rgba(120,82,210,0.28) 60%, transparent 75%);  border-color: rgba(150,110,235,0.6); box-shadow: 0 0 calc(14px + var(--v) * 34px) rgba(135,95,225,0.45); }
.orb--nature     .orb__core { background: radial-gradient(circle at 35% 30%, rgba(140,235,170,0.85), rgba(60,180,110,0.25) 60%, transparent 75%);  border-color: rgba(90,210,140,0.6);  box-shadow: 0 0 calc(14px + var(--v) * 34px) rgba(70,195,125,0.45); }

/* breathing while live */
.tune--live .orb__core { animation: orb-breathe 2.4s ease-in-out infinite alternate; }
.tune--live .orb--damaru .orb__core { animation-duration: 1.90s; } /* stems sit at ~63 BPM */
@keyframes orb-breathe {
  from { filter: brightness(0.92); }
  to   { filter: brightness(1.15); }
}

.orb__label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.5;
}
.tune__start { min-width: 260px; }
.btn--playing {
  background: linear-gradient(120deg, var(--gold), var(--gold-hot));
  color: #241A05;
  box-shadow: 0 6px 28px rgba(233, 180, 76, 0.4);
}
.tune__hint {
  margin-top: 18px;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(169, 177, 214, 0.65);
}

@media (max-width: 640px) {
  .tune__orbs { gap: 22px 26px; }
  .orb { --size: 74px; }
  .orb-wrap--center .orb { --size: 90px; }
  .sound-chip { padding: 9px 14px; font-size: 0.62rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sound-chip--on .sound-chip__wave i, .tune--live .orb__core { animation: none; }
  .hero__canvas { display: none; }
}

/* ═══════════ TUNE THE UNIVERSE — v2: orbs ride a visible track ═══════════ */
.orb-track {
  position: relative;
  height: 176px;
  display: grid; place-items: center;
}
.orb-track::before {
  content: '';
  position: absolute;
  top: 4px; bottom: 4px; left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
    rgba(111, 232, 220, 0.45),
    rgba(111, 232, 220, 0.12) 55%,
    rgba(111, 232, 220, 0.03));
}
.orb-track::after {
  content: '';
  position: absolute;
  left: 50%; top: 4px;
  width: 9px; height: 9px;
  transform: translateX(-50%);
  background: rgba(111, 232, 220, 0.5);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);   /* tiny up arrow: louder */
}
/* orb physically rises/falls with its level */
.orb {
  transform: translateY(calc((0.5 - var(--v)) * 68px));
  transition: transform 0.16s ease-out;
  z-index: 2;
}
.orb--drag { transition: none; cursor: grabbing; }
.orb__value {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  min-height: 1em;
}
@media (max-width: 640px) {
  .orb-track { height: 150px; }
  .orb { transform: translateY(calc((0.5 - var(--v)) * 54px)); }
}

/* ═══════════ CUSTOM CURSOR ═══════════ */
@media (pointer: fine) {
  .custom-cursor, .custom-cursor a, .custom-cursor button,
  .custom-cursor .orb, .custom-cursor .wave { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  will-change: transform;
}
.cursor-dot.on, .cursor-ring.on { opacity: 1; }
.cursor-dot {
  width: 12px; height: 12px;
  margin: -6px 0 0 -6px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);  /* damaru mark */
  filter: drop-shadow(0 0 6px rgba(111, 232, 220, 0.8));
  transition: opacity 0.2s ease;
}
.cursor-dot--img {
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  clip-path: none;
  background-color: transparent !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
.cursor-ring {
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(111, 232, 220, 0.55);
  border-radius: 50%;
  transition: opacity 0.2s ease, width 0.22s ease, height 0.22s ease,
              margin 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.cursor-ring--hover {
  width: 58px; height: 58px;
  margin: -29px 0 0 -29px;
  border-color: rgba(111, 232, 220, 0.9);
  background: rgba(111, 232, 220, 0.06);
}
.cursor-ring--gold {
  border-color: rgba(233, 180, 76, 0.9);
  background: rgba(233, 180, 76, 0.07);
}
.cursor-ring--down {
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none; }
  .custom-cursor, .custom-cursor a, .custom-cursor button { cursor: auto; }
}

/* ═══════════ ARTISTS v2 — RICKY FEATURE PANEL ═══════════ */
.feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: 56px;
}
.feature__portrait { position: relative; min-height: 420px; display: grid; align-items: end; }
.feature__portrait img {
  width: 100%; max-height: 640px;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 50px rgba(232, 127, 190, 0.12));
}
.feature__portrait-ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  border-radius: var(--radius);
  border: 1px dashed rgba(111, 232, 220, 0.25);
  background: radial-gradient(circle at 50% 45%, rgba(120, 82, 210, 0.18), transparent 65%);
}
.feature__portrait img + .feature__portrait-ph { display: none; }
.feature__portrait-ph span { font-size: 4.5rem; font-weight: 800; color: rgba(111, 232, 220, 0.4); letter-spacing: 0.08em; }

/* awards row */
.feature__awards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.award { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.award__art {
  width: 72px; height: 72px;
  display: grid; place-items: center;
}
.award__art img { width: 100%; height: 100%; object-fit: contain; }
/* laurel fallback drawn in CSS when the award image is missing */
.award__art--fallback { position: relative; }
.award__art--fallback::before, .award__art--fallback::after {
  content: '';
  position: absolute; top: 8px; bottom: 8px; width: 26px;
  border: 2.5px solid var(--gold);
  border-right: none;
  border-radius: 60% 0 0 60% / 50% 0 0 50%;
  left: 6px;
  mask: linear-gradient(90deg, #000 70%, transparent);
}
.award__art--fallback::after {
  left: auto; right: 6px;
  transform: scaleX(-1);
}
.award__label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-hot);
  line-height: 1.45;
}
/* cred rows */
.feature__creds { margin-bottom: 30px; }
.feature__creds li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(111, 232, 220, 0.1);
}
.feature__creds li:last-child { border-bottom: none; }
.feature__creds strong {
  display: block;
  font-size: 1.05rem; font-weight: 700;
  color: var(--teal);
  margin-bottom: 2px;
}
.feature__creds span { font-size: 0.92rem; font-weight: 300; color: var(--ink-dim); }
.feature__closer h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--gold-hot);
  margin-bottom: 10px;
}
.feature__closer p { font-weight: 300; color: var(--ink-dim); max-width: 560px; }

/* ═══════════ WAVEFORM PILLARS ═══════════ */
.pillars__intro {
  margin-top: 84px;
  text-align: center;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--teal);
}
.pillars {
  display: flex;
  justify-content: center;
  align-items: center;          /* center-aligned = waveform silhouette */
  gap: clamp(10px, 1.8vw, 22px);
  margin-top: 34px;
}
.pillar {
  position: relative;
  flex: 1 1 0;
  max-width: 190px;
  border: 1px solid rgba(111, 232, 220, 0.2);
  border-radius: 22px;          /* rounded rectangle */
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(120, 82, 210, 0.28), transparent 70%),
    var(--space-3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* waveform heights: swell to the centre */
.pillar:nth-child(1), .pillar:nth-child(5) { height: 300px; }
.pillar:nth-child(2), .pillar:nth-child(4) { height: 372px; }
.pillar:nth-child(3) { height: 430px; }
.pillar:hover, .pillar:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(233, 180, 76, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(233, 180, 76, 0.15);
}
.pillar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
/* layered: swappable background behind the portrait */
.pillar__bg { z-index: 0; }
.pillar__photo { z-index: 1; object-position: top center; }
.pillar:hover img { transform: scale(1.06); }
.pillar__veil {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(6,10,28,0.05) 40%, rgba(6,10,28,0.82) 100%);
}
.pillar__name {
  position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3;
  font-family: var(--font);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  text-align: center;
}

/* ═══════════ ARTIST POP-UP ═══════════ */
.modal__panel--artist { padding: 0; overflow: hidden; }
.amodal { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 380px; }
.amodal__photo { position: relative; min-height: 260px; background:
  radial-gradient(circle at 50% 40%, rgba(120, 82, 210, 0.3), transparent 65%), var(--space-3); }
.amodal__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.amodal__ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 4rem; font-weight: 800; color: rgba(111, 232, 220, 0.4);
}
.amodal__photo img ~ .amodal__ph { z-index: -1; }
.amodal__body { padding: 44px 36px 40px; }
.amodal__name { font-size: 1.7rem; margin-bottom: 8px; }
.amodal__role {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-hot);
  line-height: 1.6;
  margin-bottom: 18px;
}
.amodal__bio li {
  font-size: 0.92rem; font-weight: 300; color: var(--ink-dim);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(111, 232, 220, 0.08);
  position: relative;
}
.amodal__bio li:last-child { border-bottom: none; }
.amodal__bio li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 8px; height: 8px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 58% 50%, 100% 100%, 0 100%, 42% 50%);
}

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
  .feature__portrait { min-height: 0; max-width: 380px; margin-inline: auto; }
  .feature__awards { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .award__art { width: 54px; height: 54px; }
  .award__label { font-size: 0.6rem; }
}
@media (max-width: 700px) {
  .pillars { flex-wrap: nowrap; gap: 8px; }
  .pillar:nth-child(1), .pillar:nth-child(5) { height: 200px; }
  .pillar:nth-child(2), .pillar:nth-child(4) { height: 248px; }
  .pillar:nth-child(3) { height: 288px; }
  .pillar__name { font-size: 0.58rem; bottom: 14px; letter-spacing: 0.1em; }
  .amodal { grid-template-columns: 1fr; }
  .amodal__photo { min-height: 240px; }
}


/* ═══════════ SPACING FIX: artists → music ═══════════ */
.artists { padding-bottom: clamp(48px, 5vw, 72px); }
.music { padding-top: clamp(56px, 6vw, 84px); }
.pillars__intro { margin-top: 64px; }

/* ═══════════ ROADBLOCK BANNER — a centered card, not a full takeover ═══════════
   .roadblock is the dimmed backdrop, full viewport.
   .roadblock__media is the actual banner — capped so its LONG edge is
   at most ~50% of the viewport, i.e. roughly half the screen "real
   estate" of the original full-bleed version. Everything inside
   (hotspot, Enter Site, close) is positioned relative to that card,
   not the viewport, so it moves with the card at every size. */
.roadblock {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6, 10, 28, 0.86);
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.roadblock--in { opacity: 1; }
.roadblock[hidden] { display: none; }

/* The card: the actual banner, centered, roughly half the screen's
   real estate compared to the old full-bleed version. */
.roadblock__card {
  position: relative;
  width: min(50vw, 50vh * 16 / 9, 640px);
  max-height: 50vh;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(111, 232, 220, 0.12);
  border: 1px solid rgba(111, 232, 220, 0.25);
  transform: scale(0.96);
  transition: transform 0.45s ease;
}
.roadblock--in .roadblock__card { transform: scale(1); }
.roadblock__media { position: absolute; inset: 0; }
.roadblock__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
@media (max-width: 767px) {
  /* Portrait crop needs a portrait card, so the ratio and size rule
     flip rather than letterboxing a tall image into a wide box. */
  .roadblock__card {
    width: min(72vw, 62vh * 9 / 16, 380px);
    max-height: 62vh;
    aspect-ratio: 9 / 16;
  }
}

/* Invisible hotspot over the artwork's own "GET TICKETS ON District"
   button, positioned as a % of the CARD — measured against the two
   supplied roadblock images. Nudge these percentages if a future
   artwork moves the button. */
.roadblock__hotspot {
  position: absolute;
  left: 42%; width: 17%;
  top: 81%; height: 15%;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 767px) {
  .roadblock__hotspot { left: 38%; width: 26%; top: 85%; height: 8%; }
}

/* Enter Site — sits below the card, in the dimmed backdrop, so it
   never overlaps the artwork itself. */
.roadblock__enter {
  position: relative;
  margin-top: 18px;
  font-family: var(--font); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(238, 241, 255, 0.75);
  background: rgba(6, 10, 28, 0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(238, 241, 255, 0.25);
  border-radius: 100px;
  padding: 9px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.roadblock__enter:hover {
  border-color: rgba(111, 232, 220, 0.5);
  color: var(--teal);
  background: rgba(6, 10, 28, 0.8);
}
.roadblock__close {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  font-size: 1.3rem; line-height: 1;
  color: var(--ink);
  background: rgba(6, 10, 28, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.roadblock__close:hover { color: var(--teal); border-color: var(--teal); }
@media (max-width: 600px) {
  .roadblock__actions { flex-direction: column; gap: 12px; }
  .roadblock__actions .btn, .roadblock__enter { width: 100%; max-width: 320px; text-align: center; }
}

/* ═══════════ LINEUP v3 — featured + grid ═══════════ */
.pillars-featured {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  flex-wrap: wrap;
  margin-top: 34px;
}
/* three-note waveform: outer two shorter, centre taller */
.pillars-featured .pillar--featured:first-child,
.pillars-featured .pillar--featured:last-child {
  width: clamp(200px, 24vw, 250px);
  max-width: clamp(200px, 24vw, 250px);
  height: clamp(280px, 34vw, 360px);
}
.pillars-featured .pillar--featured:nth-child(2) {
  width: clamp(230px, 28vw, 300px);
  max-width: clamp(230px, 28vw, 300px);
  height: clamp(330px, 42vw, 440px);
}
.pillars__intro--sub {
  margin-top: clamp(46px, 5vw, 70px);
  color: var(--ink-dim);
  font-size: 0.72rem;
}
.pillar--featured {
  flex: 0 0 auto;
  width: clamp(210px, 26vw, 268px);
  height: clamp(300px, 38vw, 400px);
  max-width: clamp(210px, 26vw, 268px);
  border-color: rgba(233, 180, 76, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 46px rgba(233, 180, 76, 0.12);
}
.pillar--featured .pillar__name { font-size: 0.95rem; bottom: 26px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 20px;
  gap: clamp(10px, 1.4vw, 18px);
  margin-top: clamp(18px, 2.4vw, 30px);
}
.pillars-grid .pillar {
  height: clamp(180px, 20vw, 250px);
  max-width: none;
  flex: none;
}
.pillars-grid .pillar__name { font-size: 0.7rem; bottom: 14px; letter-spacing: 0.1em; }

@media (max-width: 1100px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .pillars-grid .pillar { height: 168px; }
  .pillars-grid .pillar__name { font-size: 0.6rem; bottom: 10px; }
}
@media (max-width: 460px)  {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid .pillar { height: 190px; }
}

/* TBD city cards read as pending, not broken */
.city-card--tbd .city-card__date { color: var(--ink-dim); }
.city-card--tbd .btn { opacity: 0.85; }

/* A missing portrait should show the cosmic card, never a broken icon */
.pillar__photo, .pillar__bg { color: transparent; font-size: 0; }
.pillar__photo:not([src]), .pillar__photo[src=""] { display: none; }

@media (max-width: 700px) {
  .pillars-featured { gap: 8px; flex-wrap: nowrap; }
  .pillars-featured .pillar--featured:first-child,
  .pillars-featured .pillar--featured:last-child { width: 30vw; max-width: 30vw; height: 190px; }
  .pillars-featured .pillar--featured:nth-child(2) { width: 34vw; max-width: 34vw; height: 220px; }
  .pillar--featured .pillar__name { font-size: 0.62rem; bottom: 12px; letter-spacing: 0.08em; }
}

/* ═══════════ MUSIC EMBEDS ═══════════ */
.music__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 52px;
  max-width: 1000px;
  margin-inline: auto;
}
.music-card {
  background: rgba(6, 10, 28, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px 22px 22px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.music-card__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.music-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
}
.music-card__head h3 { font-size: 1.15rem; line-height: 1.2; }
.music-card__stat {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 3px;
}
.music-card__link {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.25s ease;
}
.music-card__link:hover { transform: translateX(3px); }
.music-card__embed {
  border-radius: var(--radius);
  overflow: hidden;
  background: #0A0F26;
  line-height: 0;
}
.music-card__embed iframe {
  width: 100%; height: 352px;
  border: 0; display: block;
}
.music-card--yt .music-card__icon { background: rgba(255,0,0,0.14); color: #FF4B4B; }
.music-card--yt .music-card__stat, .music-card--yt .music-card__link { color: #FF6B6B; }
.music-card--yt:hover { border-color: rgba(255,75,75,0.45); box-shadow: 0 0 44px rgba(255,75,75,0.1); }
.music-card--sp .music-card__icon { background: rgba(30,215,96,0.13); color: #1ED760; }
.music-card--sp .music-card__stat, .music-card--sp .music-card__link { color: #3BE477; }
.music-card--sp:hover { border-color: rgba(30,215,96,0.45); box-shadow: 0 0 44px rgba(30,215,96,0.1); }
/* the YouTube player is 16:9, Spotify's is a list — match their heights */
.music-card--yt .music-card__embed iframe { height: 240px; }

@media (max-width: 820px) {
  .music__grid { grid-template-columns: 1fr; max-width: 520px; }
  .music-card--yt .music-card__embed iframe { height: 220px; }
  .music-card__embed iframe { height: 352px; }
}

/* ═══════════ SCREEN-READER ONLY ═══════════
   Visually hidden but present for assistive tech, search engines,
   and AI crawlers. Used for the always-on H1 and similar SEO text. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
