/* ============================================================
   KIARA REIGN — LOCKDOWN LOVER · single site
   Palette: jet black · rasta red · metallic gold · green neon
   ============================================================ */

/* ---------- Fonts (local, offline-safe) ---------- */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #070403;
  --bg-2: #0e0705;
  --panel: #150c07;
  --panel-2: #1d1009;
  --line: rgba(217, 164, 65, .16);
  --line-strong: rgba(217, 164, 65, .38);
  --red: #e02128;
  --red-deep: #9e111a;
  --gold: #d9a441;
  --gold-bright: #f3c664;
  --gold-dim: #8a6a2a;
  --green: #2fbf6b;
  --ink: #f6efe4;
  --muted: #b3a28c;
  --display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 16px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
figure { margin: 0; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }

::selection { background: var(--red); color: #fff; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.section__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.tx-gold { color: var(--gold-bright); }
.tx-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, #b07f28);
  color: #1a0e02;
  box-shadow: 0 6px 26px rgba(217, 164, 65, .28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(217, 164, 65, .42); }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, .03);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* Explicit badge */
.e-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1;
  vertical-align: 2px;
}
.e-badge--sm { width: 15px; height: 15px; font-size: .6rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  transition: background .25s ease, box-shadow .25s ease;
  background: linear-gradient(rgba(7, 4, 3, .82), rgba(7, 4, 3, 0));
}
.nav.is-solid {
  background: rgba(10, 6, 4, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: min(1320px, 94%);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav__logo { height: 44px; width: auto; border-radius: 8px; }
.nav__name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 1rem;
}
.nav__name em { font-style: normal; color: var(--gold); }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .18s ease;
  padding: 6px 0;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--gold-bright); }
.nav__cta { padding: 10px 22px; font-size: .82rem; }
.nav__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav__burger span { width: 24px; height: 3px; border-radius: 2px; background: var(--gold); transition: transform .2s ease, opacity .2s ease; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background: url('../assets/img/hero_stage.jpg') center 22% / cover no-repeat;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 80% at 74% 42%, rgba(224, 33, 40, .18), transparent 70%),
    linear-gradient(100deg, rgba(7, 4, 3, .96) 22%, rgba(7, 4, 3, .72) 48%, rgba(10, 5, 4, .45) 100%),
    linear-gradient(rgba(7, 4, 3, .25), rgba(7, 4, 3, .3));
}
.hero__fade {
  position: absolute; inset: auto 0 0; height: 140px; z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}
.hero__inner {
  width: min(1240px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.2rem, 8.4vw, 7rem);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 6px 0 22px;
  text-transform: uppercase;
}
.hero__line { display: block; }
.hero__line--white {
  color: var(--ink);
  text-shadow: 0 4px 40px rgba(0, 0, 0, .55);
}
.hero__line--gold {
  background: linear-gradient(175deg, #f7d98c 8%, var(--gold) 46%, #a5762a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 28px rgba(217, 164, 65, .25));
}
.hero__sub {
  max-width: 34em;
  color: #d8cbb8;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__meta {
  display: flex; align-items: center; gap: 14px;
  list-style: none; padding: 0; margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dim); }

.hero__art { display: flex; justify-content: center; }
.cover-card {
  position: relative;
  width: min(430px, 78vw);
  border-radius: 14px;
  overflow: hidden;
  transform: rotate(2.2deg);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .65),
    0 10px 40px rgba(224, 33, 40, .28),
    0 0 0 1px rgba(217, 164, 65, .25);
  transition: transform .4s ease;
}
.cover-card:hover { transform: rotate(0deg) scale(1.015); }
.cover-card img { aspect-ratio: 1; width: 100%; }
.cover-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, .1), transparent 38%);
  pointer-events: none;
}

/* ---------- Ticker ---------- */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #12080a, #1a0b06 50%, #12080a);
  padding: 13px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker__track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 18px;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Listen / player ---------- */
.listen { background: var(--bg); }
.player {
  display: flex;
  gap: 26px;
  align-items: center;
  background: linear-gradient(155deg, var(--panel-2), var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}
.player__cover {
  width: clamp(96px, 12vw, 148px);
  aspect-ratio: 1;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .55);
  flex-shrink: 0;
}
.player__main { flex: 1; min-width: 0; }
.player__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 14px;
}
.player__titles { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.player__track {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 10px;
}
.player__track .e-badge { color: var(--muted); }
.player__artist { color: var(--gold); font-weight: 500; letter-spacing: .08em; font-size: .95rem; }
.player__time {
  font-family: var(--display);
  font-weight: 500;
  color: var(--muted);
  font-size: .95rem;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.player__row { display: flex; align-items: center; gap: 18px; }
.player__btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, #b07f28);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 26px rgba(217, 164, 65, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.player__btn:hover { transform: scale(1.06); box-shadow: 0 10px 32px rgba(217, 164, 65, .5); }
.player__btn svg { width: 26px; height: 26px; fill: #1a0e02; }
.player__btn .ico-pause { display: none; }
.player.is-playing .ico-play { display: none; }
.player.is-playing .ico-pause { display: block; }

.wave {
  flex: 1;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  outline-offset: 4px;
}
.wave:focus-visible { outline: 2px solid var(--gold); border-radius: 6px; }
.wave__bar {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: #3d2c1a;
  transition: background .12s linear;
}
.wave__bar.is-played { background: linear-gradient(var(--gold-bright), var(--red)); }
.listen__note {
  margin: 18px 4px 0;
  color: var(--muted);
  font-size: .95rem;
}

/* ---------- The Single ---------- */
.single { background: linear-gradient(var(--bg), var(--bg-2)); }
.single__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.single__copy p { color: #d8cbb8; }
.single__copy em { color: var(--ink); }
.credits {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  background: rgba(21, 12, 7, .6);
}
.credits__title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .85rem;
  color: var(--gold);
  margin: 0 0 14px;
}
.credits ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.credits li { display: flex; justify-content: space-between; gap: 18px; font-size: .95rem; }
.credits li span { color: var(--muted); }
.single__quotes { display: grid; gap: 20px; }
.lyric-card {
  margin: 0;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(217, 164, 65, .07), rgba(21, 12, 7, .5) 55%);
  padding: 26px 28px;
}
.lyric-card--red {
  border-left-color: var(--red);
  background: linear-gradient(140deg, rgba(224, 33, 40, .08), rgba(21, 12, 7, .5) 55%);
}
.lyric-card p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.25;
  margin: 0 0 10px;
}
.lyric-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---------- Lyrics ---------- */
.lyrics { background: var(--bg-2); }
.lyrics__note {
  color: var(--muted);
  font-size: .92rem;
  display: flex; align-items: center; gap: 10px;
  margin: -8px 0 26px;
}
.lyrics__panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(29, 16, 9, .55), rgba(14, 7, 5, .8));
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  transition: max-height .5s ease;
}
.lyrics__panel[data-collapsed="true"] { max-height: 420px; }
.lyrics__panel[data-collapsed="false"] { max-height: none; }
.lyrics__grid {
  columns: 2;
  column-gap: clamp(28px, 4vw, 56px);
}
.lyric-block { break-inside: avoid; margin-bottom: 26px; }
.lyric-block h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
}
.lyric-block p {
  margin: 0;
  color: #ded2bf;
  line-height: 1.85;
  font-size: .98rem;
}
.lyrics__fade {
  position: absolute; inset: auto 0 0;
  height: 150px;
  background: linear-gradient(rgba(14, 7, 5, 0), #0e0705 82%);
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}
.lyrics__panel[data-collapsed="false"] .lyrics__fade { opacity: 0; }
.lyrics__toggle { margin-top: 22px; }

/* ---------- VIP / Lockdown List ---------- */
.vip {
  background:
    radial-gradient(55% 90% at 50% 0%, rgba(224, 33, 40, .12), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
}
.vip__inner { display: flex; flex-direction: column; align-items: center; }
.vip__lede { max-width: 40em; color: #d8cbb8; margin-bottom: 26px; }
.vip__small { color: #7d6f5c; font-size: .85rem; margin: 16px 0 0; }

/* ---------- Mini player (persistent) ---------- */
.mini {
  position: fixed;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(560px, calc(100vw - 24px));
  background: rgba(16, 9, 5, .92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px 10px 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(224, 33, 40, .1);
  opacity: 0;
  transform: translateY(84px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  overflow: hidden;
}
.mini.is-on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mini__open {
  display: flex; align-items: center; gap: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--ink);
  flex: 1; min-width: 0;
  text-align: left;
  padding: 0;
}
.mini__cover { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.mini.is-on.is-playing .mini__cover { animation: spin 9s linear infinite; }
@keyframes spin { to { rotate: 360deg; } }
.mini__titles { display: flex; flex-direction: column; min-width: 0; }
.mini__track {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini__artist { color: var(--gold); font-size: .78rem; letter-spacing: .08em; }
.mini__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, #b07f28);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mini__btn svg { width: 20px; height: 20px; fill: #1a0e02; }
.mini__btn .ico-pause { display: none; }
.mini.is-playing .mini__btn .ico-play { display: none; }
.mini.is-playing .mini__btn .ico-pause { display: block; }
.mini__progress {
  position: absolute; inset: auto 0 0;
  height: 3px;
  background: rgba(217, 164, 65, .15);
}
.mini__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

/* ---------- Quote banner ---------- */
.banner {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 90px 0;
}
.banner__bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('../assets/img/banner_neon.jpg') center 30% / cover no-repeat;
  background-attachment: fixed;
}
.banner__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(7, 4, 3, .25), rgba(7, 4, 3, .88)),
    linear-gradient(rgba(7, 4, 3, .8), rgba(7, 4, 3, .45) 30%, rgba(7, 4, 3, .45) 70%, var(--bg));
}
.banner__quote { margin: 0; text-align: center; padding: 0 6vw; }
.banner__quote p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  background: linear-gradient(170deg, #f7d98c 10%, var(--gold) 55%, #c08a2e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(0, 0, 0, .6));
}
.banner__quote cite {
  font-style: normal;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .82rem;
  color: #e5d6bd;
}

/* ---------- About ---------- */
.about { background: var(--bg-2); }
.about__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.about__photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .55), 0 0 60px rgba(224, 33, 40, .12);
}
.about__photo img { aspect-ratio: 941 / 1672; width: 100%; object-fit: cover; transition: transform .6s ease; }
.about__photo:hover img { transform: scale(1.025); }
.about__copy p { color: #d8cbb8; }
.about__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0; margin: 22px 0 26px;
}
.about__tags li {
  font-family: var(--display);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(217, 164, 65, .05);
}
.about__tagline {
  margin: 0;
  border-left: 3px solid var(--red);
  padding: 6px 0 6px 22px;
}
.about__tagline p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink);
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(var(--bg-2), var(--bg)); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(217, 164, 65, .1);
  grid-row: span 2;
}
.g-item--wide { grid-column: span 2; grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .4s ease;
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(7, 4, 3, 0) 65%, rgba(7, 4, 3, .55));
  opacity: 0;
  transition: opacity .3s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { opacity: 1; }

/* ---------- Off stage / UGC ---------- */
.offstage { background: var(--bg); }
.container--wide { width: min(1320px, 97%); }
.offstage__hint {
  color: var(--muted);
  font-size: .9rem;
  margin: -14px 0 18px;
}
.offstage__row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 4px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) rgba(217, 164, 65, .08);
}
.offstage__row::-webkit-scrollbar { height: 8px; }
.offstage__row::-webkit-scrollbar-track { background: rgba(217, 164, 65, .08); border-radius: 4px; }
.offstage__row::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }
.u-item {
  flex: 0 0 clamp(180px, 18vw, 236px);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, .07);
  aspect-ratio: 3 / 4;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .3s ease, box-shadow .3s ease;
}
.u-item:nth-child(odd) { --tilt: -1.2deg; }
.u-item:nth-child(even) { --tilt: 1.1deg; }
.u-item:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}
.u-item img { width: 100%; height: 100%; object-fit: cover; }
.offstage__tags {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0; margin: 26px 0 0;
}
.offstage__tags li {
  color: var(--muted);
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
}

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(50% 70% at 50% 110%, rgba(224, 33, 40, .16), transparent 70%),
    linear-gradient(var(--bg), #0c0503);
  border-top: 1px solid var(--line);
  padding: clamp(72px, 9vw, 110px) 0 46px;
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer__wordmark { width: min(240px, 56vw); border-radius: 12px; }
.footer__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: 0;
}
.footer__lede { color: var(--muted); margin: 0; }
.footer__lede em { color: var(--ink); }
.footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: 16px;
}
.footer__links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .18s ease;
}
.footer__links a:hover { color: var(--gold-bright); }
.footer__legal {
  margin: 26px 0 0;
  font-size: .82rem;
  color: #7d6f5c;
  line-height: 1.9;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 3, 2, .94);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 4vmin;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 92vw;
  max-height: 90vh;
  width: auto; height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .8);
}
.lightbox__close, .lightbox__nav {
  position: fixed;
  background: rgba(24, 14, 8, .8);
  color: var(--gold-bright);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .18s ease, transform .18s ease;
  z-index: 101;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(60, 34, 12, .9); transform: scale(1.07); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; translate: 0 -50%; }
.lightbox__nav--next { right: 22px; top: 50%; translate: 0 -50%; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--late { transition-delay: .15s; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
  .banner__bg { background-attachment: scroll; }
}
html.no-anim, html.no-anim * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
html.no-anim .reveal { opacity: 1; transform: none; }
html.no-anim .banner__bg { background-attachment: scroll; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__cta { justify-content: center; }
  .hero__art { order: -1; margin-top: 8px; }
  .cover-card { width: min(320px, 62vw); }
  .single__grid, .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 520px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}
@media (max-width: 860px) {
  .lyrics__grid { columns: 1; }
}
@media (max-width: 720px) {
  :root { --nav-h: 62px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open { background: rgba(10, 6, 4, .97); }
  .nav.is-open .nav__links {
    display: flex;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(10, 6, 4, .97);
    backdrop-filter: blur(14px);
    padding: 18px 0 26px;
    box-shadow: 0 30px 40px rgba(0, 0, 0, .5);
  }
  .nav.is-open .nav__links a { padding: 12px 0; font-size: 1rem; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .player { flex-direction: column; align-items: stretch; }
  .player__cover { width: 110px; margin-inline: auto; }
  .player__head { flex-direction: column; gap: 4px; }
  .player__time { align-self: flex-start; }
  .wave { height: 58px; }
  .gallery__grid { grid-auto-rows: 150px; gap: 10px; }
  .u-item { flex-basis: 46vw; }
  .credits li { flex-direction: column; gap: 2px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__close { top: 14px; right: 14px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}
