:root {
  --ink: #0d0b08;
  --night: #100b08;
  --cream: #f2eadb;
  --paper: #fff8ea;
  --gold: #e0a72f;
  --gold-soft: #ffd978;
  --green: #155c4c;
  --red: #a62924;
  --blue: #182e58;
  --copper: #b96035;
  --muted: #766b5b;
  --line: rgba(13, 11, 8, 0.14);
  --shadow: 0 24px 70px rgba(13, 11, 8, 0.22);
  --page-max-width: 1440px;
  --page-padding-desktop: clamp(18px, 5vw, 72px);
  --page-padding-tablet: 28px;
  --page-padding-mobile: 16px;
  --page-padding: var(--page-padding-desktop);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(224, 167, 47, 0.18), transparent 30vw),
    radial-gradient(circle at 86% 26%, rgba(21, 92, 76, 0.18), transparent 28vw),
    var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: 100%;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

video,
canvas,
svg,
iframe {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.site-container {
  width: min(100%, var(--page-max-width));
  margin-inline: auto;
  padding-inline: var(--page-padding);
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--page-padding);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 217, 120, 0.18);
  background: rgba(10, 8, 6, 0.86);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 239, 226, 0.46);
  border-radius: 50%;
  background: rgba(215, 169, 71, 0.18);
  color: var(--gold-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  color: var(--gold-soft);
  opacity: 1;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(246, 239, 226, 0.34);
  border-radius: 50%;
  background: rgba(17, 16, 13, 0.28);
  color: var(--paper);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  padding: 132px var(--page-padding) 74px;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 217, 120, 0.18) 0 1px, transparent 1px 120px),
    linear-gradient(0deg, rgba(255, 217, 120, 0.12) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(90deg, black, transparent 58%);
  opacity: 0.18;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -25%;
  z-index: 3;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, transparent 0 38%, rgba(224, 167, 47, 0.08) 39% 40%, transparent 41% 100%);
  animation: slow-spin 28s linear infinite;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background: #050403;
}

.hero-media::before {
  content: none;
}

.hero-media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 46%;
  filter: saturate(1.04) contrast(1.16) brightness(0.66);
  mask-image: none;
  transform: scale(1);
  animation: portrait-breathe 12s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 217, 120, 0.22), transparent 18vw),
    linear-gradient(90deg, rgba(9, 7, 5, 0.98) 0%, rgba(11, 8, 5, 0.84) 37%, rgba(11, 8, 5, 0.22) 74%),
    linear-gradient(0deg, rgba(8, 6, 4, 0.96), rgba(8, 6, 4, 0.06) 58%);
}

.kinetic-name {
  position: absolute;
  top: 19%;
  left: 0;
  z-index: 3;
  display: flex;
  width: 100%;
  overflow: hidden;
  gap: 4vw;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.5rem, 11vw, 12rem);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 217, 120, 0.18);
  opacity: 0.84;
  transform: rotate(-5deg);
  animation: name-drift 22s linear infinite alternate;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 780px;
  animation: rise-in 900ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
}

h1 {
  max-width: 480px;
  font-size: clamp(1.45rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.58);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.83);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions a,
.primary-link,
.text-link,
.signup-form button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--paper);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-actions a::before,
.platform-tile::before,
.text-link::before,
.signup-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.hero-actions a:hover::before,
.platform-tile:hover::before,
.text-link:hover::before,
.signup-form button:hover::before {
  transform: translateX(120%);
}

.hero-actions a:hover,
.text-link:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.hero-actions .primary-link {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.song-toggle {
  position: fixed;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 30;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.6);
  border-radius: 999px;
  padding: 8px 24px 8px 9px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 217, 120, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(21, 92, 76, 0.98), rgba(13, 11, 8, 0.96));
  color: var(--paper);
  box-shadow:
    0 18px 50px rgba(13, 11, 8, 0.35),
    inset 0 0 0 1px rgba(255, 248, 234, 0.08);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.song-toggle:hover {
  border-color: var(--gold-soft);
  box-shadow:
    0 22px 60px rgba(13, 11, 8, 0.42),
    0 0 28px rgba(224, 167, 47, 0.16);
  transform: translateY(-3px);
}

.song-toggle:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.song-toggle-icon {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.22);
  font-size: 1.2rem;
}

body > audio[data-featured-audio] {
  display: none;
}

.hero-feature {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 132px;
  z-index: 4;
  width: min(340px, calc(100% - 36px));
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(17, 16, 13, 0.74), rgba(21, 92, 76, 0.46));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: feature-float 5.8s ease-in-out infinite;
}

.hero-feature span {
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-feature strong {
  display: block;
  margin-top: 8px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
}

.hero-feature p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform: translateX(-50%);
  animation: scroll-dot 1.65s ease-in-out infinite;
}

.section {
  padding: clamp(68px, 9vw, 126px) var(--page-padding);
  scroll-margin-top: 92px;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 34px;
}

.intro-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(235, 218, 181, 0.94)),
    radial-gradient(circle at 80% 22%, rgba(166, 41, 36, 0.18), transparent 28vw);
}

.intro-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 48%, rgba(224, 167, 47, 0.18), transparent 20vw),
    linear-gradient(120deg, transparent, rgba(255, 248, 234, 0.28), transparent);
  pointer-events: none;
}

.music-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.sound-marquee {
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  color: rgba(13, 11, 8, 0.1);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 7rem);
  font-weight: 700;
  white-space: nowrap;
}

.sound-marquee span {
  display: inline-block;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  animation: marquee 25s linear infinite;
}

.platform-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-tile {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.86);
  box-shadow: 0 18px 42px rgba(17, 16, 13, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-tile:hover {
  border-color: rgba(224, 167, 47, 0.4);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
  box-shadow: var(--shadow);
}

.platform-tile span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-tile strong {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.platform-tile.apple {
  border-top: 5px solid var(--red);
}

.platform-tile.spotify {
  border-top: 5px solid var(--green);
}

.platform-tile.youtube {
  border-top: 5px solid #cf2f28;
}

.platform-tile.all {
  border-top: 5px solid var(--blue);
}

.record-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(13, 11, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 248, 234, 0.64);
}

.record-disc {
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 10%, var(--ink) 11% 13%, var(--gold) 14% 18%, transparent 19%),
    repeating-radial-gradient(circle, #111 0 5px, #222 6px 7px, #050505 8px 11px);
  box-shadow: 0 20px 46px rgba(13, 11, 8, 0.28);
  animation: slow-spin 10s linear infinite;
}

.wave-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  height: 118px;
}

.wave-bars span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(var(--gold-soft), var(--copper));
  animation: wave 1.1s ease-in-out infinite alternate;
}

.wave-bars span:nth-child(1) { height: 42%; animation-delay: -0.1s; }
.wave-bars span:nth-child(2) { height: 72%; animation-delay: -0.4s; }
.wave-bars span:nth-child(3) { height: 52%; animation-delay: -0.7s; }
.wave-bars span:nth-child(4) { height: 94%; animation-delay: -0.2s; }
.wave-bars span:nth-child(5) { height: 60%; animation-delay: -0.8s; }
.wave-bars span:nth-child(6) { height: 82%; animation-delay: -0.35s; }
.wave-bars span:nth-child(7) { height: 48%; animation-delay: -0.6s; }
.wave-bars span:nth-child(8) { height: 76%; animation-delay: -0.25s; }
.wave-bars span:nth-child(9) { height: 38%; animation-delay: -0.9s; }
.wave-bars span:nth-child(10) { height: 88%; animation-delay: -0.3s; }
.wave-bars span:nth-child(11) { height: 58%; animation-delay: -0.5s; }
.wave-bars span:nth-child(12) { height: 70%; animation-delay: -0.75s; }

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  overflow: hidden;
  min-height: 820px;
  background:
    radial-gradient(circle at 22% 30%, rgba(224, 167, 47, 0.18), transparent 24vw),
    radial-gradient(circle at 94% 78%, rgba(21, 92, 76, 0.22), transparent 24vw),
    var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.split-section::after {
  content: "ECHO";
  position: absolute;
  right: -2vw;
  bottom: -2vw;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(7rem, 20vw, 19rem);
  font-weight: 700;
  line-height: 0.8;
  z-index: 1;
  -webkit-text-stroke: 1px rgba(255, 217, 120, 0.1);
}

.artist-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.portrait-panel {
  position: relative;
  z-index: 2;
  align-self: start;
  perspective: 1200px;
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 1px solid rgba(215, 169, 71, 0.6);
}

.portrait-panel img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 49% 28%;
  filter: contrast(1.16) brightness(1.04);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(224, 167, 47, 0.12);
  transform: rotate(-1.2deg) rotateY(-4deg) translateZ(0);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.portrait-panel:hover img {
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.5),
    0 0 64px rgba(224, 167, 47, 0.2);
  transform: rotate(-0.4deg) rotateY(0deg) translateY(-6px);
}

.story-panel {
  position: relative;
  z-index: 2;
  align-self: start;
  max-width: 780px;
  padding-top: clamp(4px, 1vw, 14px);
}

.story-panel p {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.05rem;
  line-height: 1.72;
}

.biography-text-wrapper {
  position: relative;
  max-width: 720px;
  height: clamp(330px, 30vw, 455px);
  overflow: hidden;
  padding-right: 12px;
  scrollbar-color: rgba(255, 217, 120, 0.48) rgba(255, 248, 234, 0.06);
  scrollbar-width: thin;
}

.biography-text-wrapper.is-expanded {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.biography-text-wrapper::-webkit-scrollbar {
  width: 8px;
}

.biography-text-wrapper::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.06);
}

.biography-text-wrapper::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(var(--gold-soft), var(--gold));
}

.biography-preview,
.biography-full {
  transition: opacity 180ms ease, transform 180ms ease;
}

.biography-preview[hidden],
.biography-full[hidden] {
  display: none;
}

.biography-text-wrapper p {
  margin: 0 0 16px;
}

.biography-text-wrapper p:last-child {
  margin-bottom: 0;
}

.biography-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(224, 167, 47, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.continue-reading-button {
  cursor: pointer;
}

.split-section {
  grid-template-columns: minmax(320px, 0.88fr) minmax(380px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 840px;
  padding-block: clamp(86px, 9vw, 128px);
  background:
    radial-gradient(circle at 18% 28%, rgba(224, 167, 47, 0.22), transparent 23vw),
    radial-gradient(circle at 88% 58%, rgba(21, 92, 76, 0.24), transparent 24vw),
    linear-gradient(135deg, rgba(255, 217, 120, 0.06), transparent 34%),
    var(--ink);
}

.split-section::before {
  content: "";
  position: absolute;
  right: 6vw;
  bottom: 8%;
  z-index: 1;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 24px, rgba(255, 217, 120, 0.055) 25px 26px),
    radial-gradient(circle at 40% 42%, rgba(255, 217, 120, 0.09), transparent 42%);
  opacity: 0.74;
  pointer-events: none;
}

.portrait-panel {
  align-self: center;
  max-width: 650px;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(255, 217, 120, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.13), rgba(255, 248, 234, 0.02)),
    rgba(5, 7, 5, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.14),
    0 34px 100px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(224, 167, 47, 0.11);
  transform-style: preserve-3d;
}

.portrait-panel::before {
  inset: clamp(18px, 2vw, 28px) clamp(-16px, -1.5vw, -10px) clamp(-16px, -1.5vw, -10px) clamp(18px, 2vw, 28px);
  border-color: rgba(255, 217, 120, 0.48);
  border-radius: 16px;
  transform: translateZ(-18px);
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.4vw, 18px);
  z-index: 3;
  border-radius: 12px;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.18), transparent 28%, transparent 72%, rgba(255, 217, 120, 0.08));
  pointer-events: none;
  mix-blend-mode: screen;
}

.portrait-panel img {
  border: 1px solid rgba(255, 217, 120, 0.24);
  border-radius: 12px;
  filter: grayscale(1) contrast(1.18) brightness(1.03);
  box-shadow:
    0 26px 82px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 248, 234, 0.08);
}

.story-panel {
  align-self: center;
  max-width: 760px;
  height: var(--biography-card-height, clamp(520px, 58vw, 760px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.018)),
    rgba(3, 7, 5, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.story-panel::before {
  content: "";
  position: absolute;
  inset: auto 24px 22px auto;
  width: min(220px, 38%);
  height: 92px;
  border-right: 1px solid rgba(255, 217, 120, 0.2);
  border-bottom: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 0 0 90px 0;
  opacity: 0.75;
  pointer-events: none;
}

.story-panel::after {
  content: "";
  display: block;
  width: min(320px, 62%);
  height: 2px;
  margin: 0 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(255, 217, 120, 0));
  box-shadow: 0 0 18px rgba(224, 167, 47, 0.32);
  order: 1;
}

.story-panel .eyebrow {
  position: relative;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

.story-panel .eyebrow::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.story-panel h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.075rem, 2.4vw, 2.65rem);
  line-height: 0.98;
  background: linear-gradient(130deg, var(--paper) 0%, #f8df9a 44%, var(--gold-soft) 68%, var(--paper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.58), 0 0 24px rgba(224, 167, 47, 0.15);
}

.biography-text-wrapper {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  border-left: 1px solid rgba(255, 217, 120, 0.18);
  padding-left: 18px;
  overflow-y: auto;
}

.story-panel p {
  color: rgba(255, 250, 240, 0.82);
}

.biography-link {
  min-height: 52px;
  margin-top: 22px;
  padding-inline: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.38),
    0 18px 46px rgba(224, 167, 47, 0.22),
    0 0 28px rgba(255, 217, 120, 0.08);
}

.biography-link:hover,
.biography-link:focus-visible {
  transform: translateY(-3px);
}

.molo-section {
  min-height: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 44px) 0 clamp(8px, 1.4vw, 18px);
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 217, 120, 0.16), transparent 28vw),
    radial-gradient(circle at 78% 68%, rgba(21, 92, 76, 0.18), transparent 28vw),
    linear-gradient(145deg, rgba(255, 217, 120, 0.055), transparent 36%),
    #030403;
}

.molo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 217, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 217, 120, 0.028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 72%);
  pointer-events: none;
}

.molo-orbit {
  position: absolute;
  right: 0;
  top: 12%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 120, 0.16);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 34px, rgba(255, 217, 120, 0.06) 35px 36px),
    radial-gradient(circle, rgba(224, 167, 47, 0.08), transparent 58%);
  opacity: 0.72;
}

.molo-feature {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  gap: clamp(22px, 3vw, 38px);
}

.molo-copy {
  max-width: none;
  text-align: center;
}

.molo-copy .eyebrow {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(0.6rem, 1.32vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(224, 167, 47, 0.16);
}

.molo-copy h2 {
  max-width: 760px;
  margin: 0;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.65rem, 3.92vw, 4.13rem);
  line-height: 0.96;
  background: linear-gradient(128deg, var(--paper), #f7df9c 42%, var(--gold-soft) 66%, var(--paper));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.58), 0 0 30px rgba(224, 167, 47, 0.12);
}

.molo-image-frame {
  position: relative;
  justify-self: center;
  width: 100%;
  margin: 0;
  padding: clamp(10px, 1.45vw, 18px);
  border: 1px solid rgba(255, 217, 120, 0.34);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 248, 234, 0.16), rgba(255, 248, 234, 0.025)),
    rgba(4, 7, 5, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.18),
    0 42px 120px rgba(0, 0, 0, 0.48),
    0 0 88px rgba(224, 167, 47, 0.11);
}

.molo-image-frame::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 24px;
  z-index: -1;
  border: 1px solid rgba(255, 217, 120, 0.34);
  border-radius: 22px;
  opacity: 0.75;
}

.molo-image-frame::after {
  content: "";
  position: absolute;
  inset: clamp(10px, 1.45vw, 18px);
  z-index: 3;
  border-radius: 18px;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.18), transparent 24%, transparent 72%, rgba(255, 217, 120, 0.1));
  mix-blend-mode: screen;
  pointer-events: none;
}

.molo-band-notes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(250px, 0.82fr);
  gap: clamp(18px, 2.4vw, 36px);
  margin: clamp(16px, 2.1vw, 28px) clamp(18px, 3.2vw, 44px) clamp(18px, 2.3vw, 30px);
  color: rgba(27, 22, 16, 0.9);
  font-family: "Caveat", "Bradley Hand", "Segoe Print", cursive;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  transform: rotate(-1.1deg);
  pointer-events: none;
}

.molo-band-notes section {
  padding: clamp(14px, 1.6vw, 24px) clamp(16px, 1.9vw, 28px);
  border: 1px solid rgba(126, 92, 40, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255, 248, 224, 0.48), rgba(255, 248, 224, 0.24)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 34px rgba(0, 0, 0, 0.08);
}

.molo-band-notes section:nth-child(2) {
  transform: rotate(1.8deg);
}

.molo-band-notes h3 {
  margin: 0 0 8px;
  color: rgba(82, 48, 13, 0.96);
  font-size: clamp(1.45rem, 2.5vw, 2.52rem);
  line-height: 0.94;
  font-weight: 700;
}

.molo-band-notes h3 span {
  display: block;
  margin-top: 4px;
  color: rgba(73, 55, 35, 0.82);
  font-size: 0.72em;
}

.molo-band-notes ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.molo-band-notes li {
  display: inline;
  font-size: clamp(1.18rem, 1.67vw, 1.68rem);
  line-height: 1.06;
  font-weight: 600;
}

.molo-band-notes li:not(:last-child)::after {
  content: ", ";
}

.molo-band-notes li:last-child::after {
  content: ".";
}

.molo-image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  height: auto;
  object-fit: cover;
  object-position: center 68%;
  background: #d7d7d5;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 18px;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.45);
}

.molo-song-button {
  position: absolute;
  right: clamp(20px, 3vw, 46px);
  bottom: clamp(20px, 3vw, 46px);
  z-index: 5;
  min-height: 58px;
  display: none;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.58);
  border-radius: 999px;
  padding: 7px 22px 7px 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 217, 120, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(21, 92, 76, 0.98), rgba(13, 11, 8, 0.96));
  color: var(--paper);
  box-shadow:
    0 18px 50px rgba(13, 11, 8, 0.35),
    inset 0 0 0 1px rgba(255, 248, 234, 0.08);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.molo-song-button span:first-child {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-size: 1.08rem;
}

.molo-song-button:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

body.reading-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  :root {
    --page-padding: var(--page-padding-tablet);
  }
}

.biography-reading-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(3, 4, 3, 0.82);
  backdrop-filter: blur(14px) saturate(1.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.biography-reading-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.biography-reading-dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(780px, 100%);
  max-height: 85vh;
  max-height: 85dvh;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.48);
  border-radius: 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 7%, rgba(224, 167, 47, 0.18), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(21, 92, 76, 0.22), transparent 32%),
    linear-gradient(145deg, #11130e, #07100c 58%, #030403);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.68), inset 0 1px 0 rgba(255, 248, 234, 0.12);
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms ease;
}

.biography-reading-overlay.is-open .biography-reading-dialog {
  transform: translateY(0) scale(1);
}

.biography-reading-header {
  position: relative;
  z-index: 2;
  padding: 30px 76px 22px 34px;
  border-bottom: 1px solid rgba(255, 217, 120, 0.22);
  background: rgba(5, 8, 6, 0.82);
}

.biography-reading-header h2 {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
}

.biography-reading-meta {
  margin: 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.biography-reading-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 217, 120, 0.58);
  border-radius: 50%;
  background: rgba(255, 248, 234, 0.08);
  color: var(--paper);
  cursor: pointer;
  font: 300 1.8rem/1 Arial, Helvetica, sans-serif;
}

.biography-reading-close:hover,
.biography-reading-close:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  background: rgba(224, 167, 47, 0.16);
}

.biography-reading-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 30px 36px 42px;
  scrollbar-color: var(--gold) rgba(255, 248, 234, 0.08);
  -webkit-overflow-scrolling: touch;
}

.biography-reading-content p {
  margin: 0 0 1.2em;
  color: rgba(255, 248, 234, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.78;
}

.biography-reading-content p:last-child {
  margin-bottom: 0;
}

.biography-link:hover,
.biography-link:focus-visible {
  box-shadow: 0 24px 58px rgba(224, 167, 47, 0.26);
  transform: translateY(-2px);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.stats-row div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(246, 239, 226, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.11), rgba(255, 250, 240, 0.04));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transform: perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stats-row div:hover {
  border-color: rgba(255, 217, 120, 0.34);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transform: perspective(800px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-5px);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--gold-soft);
}

.stats-row span {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.9rem;
}

.legacy-section {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding-inline: 0;
  padding-top: clamp(28px, 3.4vw, 54px);
  padding-bottom: clamp(38px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 167, 47, 0.2), transparent 31vw),
    radial-gradient(circle at 84% 42%, rgba(21, 92, 76, 0.36), transparent 34vw),
    radial-gradient(circle at 64% 78%, rgba(185, 96, 53, 0.16), transparent 28vw),
    linear-gradient(145deg, #030302, #0a1913 52%, #020302);
  color: var(--paper);
  isolation: isolate;
}

.performance-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

.legacy-section.is-stage-ready .performance-canvas {
  opacity: 0.94;
}

.legacy-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 217, 120, 0.035) 0 1px, transparent 1px 120px),
    linear-gradient(0deg, rgba(255, 217, 120, 0.025) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 50% 24%, transparent, rgba(2, 3, 2, 0.3) 44%, rgba(2, 3, 2, 0.78) 100%),
    linear-gradient(0deg, rgba(2, 3, 2, 0.78), rgba(2, 3, 2, 0.38) 42%, rgba(2, 3, 2, 0.62));
  pointer-events: none;
}

.stage-beams {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.stage-beams span {
  position: absolute;
  top: -28%;
  width: 22vw;
  height: 120%;
  background: linear-gradient(180deg, rgba(255, 217, 120, 0.12), transparent 75%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  filter: blur(12px);
  opacity: 0.22;
  transform-origin: top center;
  animation: stage-beam-sweep 14s ease-in-out infinite alternate;
}

.stage-beams span:nth-child(1) { left: 5%; transform: rotate(-14deg); }
.stage-beams span:nth-child(2) { left: 42%; animation-delay: -5s; transform: rotate(7deg); }
.stage-beams span:nth-child(3) { right: 2%; animation-delay: -9s; transform: rotate(-8deg); }

.legacy-section .section-heading,
.performance-experience {
  position: relative;
  z-index: 3;
}

.legacy-container {
  position: relative;
  z-index: 3;
}

.legacy-section .section-heading {
  max-width: 980px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.legacy-section.is-entered .section-heading {
  opacity: 1;
  transform: none;
}

.legacy-section h2 {
  max-width: 920px;
  font-size: clamp(1.25rem, 2.9vw, 3.1rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.65);
}

.section-subtitle {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.performance-archive-head {
  --selector-glow-x: 78%;
  display: grid;
  position: relative;
  grid-template-columns: minmax(320px, 0.72fr) auto minmax(360px, 1fr);
  gap: clamp(16px, 2.7vw, 36px);
  align-items: center;
  margin: 18px 0 18px;
  padding: clamp(10px, 1.45vw, 18px);
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.3);
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--selector-glow-x) 34%, rgba(255, 217, 120, 0.18), transparent 28%),
    radial-gradient(circle at 22% 0%, rgba(184, 111, 42, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 248, 234, 0.09), rgba(255, 248, 234, 0.018) 42%),
    linear-gradient(135deg, rgba(6, 7, 5, 0.92), rgba(14, 17, 13, 0.86) 52%, rgba(4, 5, 4, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.1),
    inset 0 0 70px rgba(255, 217, 120, 0.04),
    0 34px 100px rgba(0, 0, 0, 0.44),
    0 0 64px rgba(224, 167, 47, 0.08);
  backdrop-filter: blur(20px) saturate(1.08);
  isolation: isolate;
  transition: --selector-glow-x 700ms ease;
}

.performance-archive-head::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent, rgba(255, 217, 120, 0.18), transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 217, 120, 0.05) 0 1px, transparent 1px 96px);
  opacity: 0.34;
  pointer-events: none;
}

.performance-archive-head::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 46%;
  width: 42%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 120, 0.13), transparent 66%);
  filter: blur(24px);
  animation: title-glow-drift 11s ease-in-out infinite alternate;
  pointer-events: none;
}

.performance-tabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
  min-width: 0;
}

.performance-tab {
  position: relative;
  min-height: 44px;
  min-width: min(210px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.42);
  border-radius: 999px;
  padding: 0 clamp(18px, 2vw, 28px);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.065), rgba(255, 248, 234, 0.02));
  color: rgba(255, 248, 234, 0.9);
  cursor: pointer;
  font-size: clamp(0.66rem, 0.86vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 248, 234, 0.08), 0 16px 38px rgba(0, 0, 0, 0.2);
  transform: translateZ(0);
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, scale 260ms ease;
}

.performance-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 32%, rgba(255, 255, 255, 0.28) 45%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 800ms ease;
}

.performance-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 22px rgba(255, 217, 120, 0);
  transition: box-shadow 260ms ease;
}

.performance-tab:hover,
.performance-tab.is-active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #d49824, #ffd978 46%, #b96035);
  color: #0b0d08;
  box-shadow: 0 20px 46px rgba(224, 167, 47, 0.26), 0 0 36px rgba(255, 217, 120, 0.16);
  transform: translateY(-3px) scale(1.02) translateZ(0);
}

.performance-tab:hover::before,
.performance-tab.is-active::before {
  transform: translateX(130%);
}

.performance-tab:hover::after,
.performance-tab.is-active::after {
  box-shadow: inset 0 0 26px rgba(255, 248, 234, 0.18);
}

.performance-tab.is-active::before {
  animation: button-shimmer 5.8s ease-in-out infinite;
}

.performance-archive-divider {
  position: relative;
  z-index: 2;
  width: 1px;
  align-self: stretch;
  min-height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 217, 120, 0.62), transparent);
  box-shadow: 0 0 20px rgba(255, 217, 120, 0.24);
}

.performance-archive-divider span {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffd978;
  box-shadow: 0 0 18px rgba(255, 217, 120, 0.95), 0 0 44px rgba(224, 167, 47, 0.4);
  transform: translateX(-50%);
  animation: divider-light-drift 7.5s ease-in-out infinite alternate;
}

.performance-collection-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 0;
  border-left: 0;
  padding-left: 0;
}

.performance-collection-copy::after {
  content: "";
  width: min(280px, 68%);
  height: 2px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), rgba(255, 217, 120, 0));
  box-shadow: 0 0 18px rgba(255, 217, 120, 0.35);
  transform-origin: left;
  animation: underline-grow 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.performance-collection-copy .eyebrow {
  margin: 0;
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  text-shadow: 0 0 18px rgba(255, 217, 120, 0.24);
  animation: label-shimmer 6.5s ease-in-out infinite alternate;
}

.performance-collection-copy h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  color: var(--paper);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(0.85rem, 1.6vw, 1.675rem);
  line-height: 1.02;
  text-wrap: balance;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.74), 0 0 26px rgba(224, 167, 47, 0.18);
  background: linear-gradient(105deg, var(--paper), var(--gold-soft) 42%, var(--paper) 58%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: title-light-sweep 12s ease-in-out infinite, title-soft-float 6.4s ease-in-out infinite alternate;
  transition: letter-spacing 260ms ease, text-shadow 260ms ease, transform 260ms ease;
}

.performance-collection-copy h3:hover {
  letter-spacing: 0.018em;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.74), 0 0 42px rgba(255, 217, 120, 0.34);
}

.performance-collection-copy p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 248, 234, 0.74);
  line-height: 1.62;
  animation: description-drift 7.2s ease-in-out infinite alternate;
}

.performance-experience.is-copy-changing .performance-collection-copy {
  animation: collection-copy-swap 620ms ease both;
}

.title-word {
  display: inline-block;
  white-space: nowrap;
}

.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: letter-rise 620ms cubic-bezier(0.2, 0.78, 0.18, 1) forwards;
  animation-delay: calc(var(--char-index, 0) * 22ms);
}

.selector-particles,
.selector-wave-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.selector-particles span {
  position: absolute;
  width: 3px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 16px rgba(255, 217, 120, 0.8);
  opacity: 0.32;
  animation: particle-float 10s ease-in-out infinite alternate;
}

.selector-particles span:nth-child(1) { left: 9%; top: 22%; animation-delay: -1s; }
.selector-particles span:nth-child(2) { left: 28%; top: 72%; animation-delay: -4s; }
.selector-particles span:nth-child(3) { left: 48%; top: 18%; animation-delay: -7s; }
.selector-particles span:nth-child(4) { right: 17%; top: 20%; animation-delay: -3s; }
.selector-particles span:nth-child(5) { right: 9%; bottom: 23%; animation-delay: -6s; }
.selector-particles span:nth-child(6) { left: 66%; bottom: 14%; animation-delay: -2s; }

.selector-wave-lines {
  inset: auto -4% -18% auto;
  width: min(420px, 44vw);
  height: 220px;
}

.selector-wave-lines span {
  position: absolute;
  inset: auto 0 0 auto;
  width: 100%;
  height: 150%;
  border: 1px solid rgba(255, 217, 120, 0.18);
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 100% 0;
  transform-origin: right bottom;
  animation: selector-wave-drift 9s ease-in-out infinite alternate;
}

.selector-wave-lines span:nth-child(2) {
  width: 78%;
  height: 118%;
  animation-delay: -2s;
}

.selector-wave-lines span:nth-child(3) {
  width: 56%;
  height: 88%;
  animation-delay: -4s;
}

.performance-experience.is-switching .performance-stage {
  opacity: 0.62;
  transform: translateY(10px);
}

.performance-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  transition: opacity 300ms ease, transform 300ms ease;
}

.featured-performance {
  position: relative;
  min-height: clamp(430px, 52vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.38);
  border-radius: 18px;
  background: rgba(2, 4, 3, 0.86);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.58), 0 0 70px rgba(224, 167, 47, 0.08);
  opacity: 0;
  transform: perspective(1400px) translateZ(-80px) translateY(38px);
  transition: opacity 800ms ease 140ms, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms, box-shadow 600ms ease;
}

.legacy-section.is-entered .featured-performance { opacity: 1; transform: perspective(1400px) translateZ(0); }
.featured-performance.is-transitioning { transform: perspective(1400px) translateZ(34px) scale(0.985); }
.featured-performance.is-playing { box-shadow: 0 52px 130px rgba(0, 0, 0, 0.62), 0 0 86px rgba(224, 167, 47, 0.22); }

.featured-performance-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #030302;
  color: var(--paper);
  cursor: pointer;
}

.featured-performance-video {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: contain;
}

.featured-video-start {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  min-height: 52px;
  border: 1px solid rgba(255, 217, 120, 0.68);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(4, 8, 6, 0.78);
  color: var(--gold-soft);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.featured-video-start[hidden] {
  display: none;
}

.featured-performance-play {
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.featured-performance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.58) saturate(0.72) contrast(1.16);
  transform: scale(1.03);
  transition: opacity 380ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.featured-performance-media:hover img { transform: scale(1.065); filter: brightness(0.67) saturate(0.86) contrast(1.14); }
.featured-performance.is-transitioning .featured-performance-media img { opacity: 0.18; transform: scale(1.11); }
.featured-performance.is-video-open .featured-performance-media img,
.featured-performance.is-video-open .featured-performance-shade,
.featured-performance.is-video-open .featured-performance-play,
.featured-performance.is-video-open .featured-performance-copy,
.featured-performance.is-video-open .archive-vinyl,
.featured-performance.is-video-open .performance-equalizer {
  display: none;
}

.featured-performance-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 3, 0.98) 0%, rgba(2, 4, 3, 0.7) 28%, transparent 72%), linear-gradient(90deg, rgba(4, 8, 6, 0.5), transparent 60%);
}

.featured-performance-media::after,
.performance-card::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: 2;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 229, 166, 0.22), transparent);
  transform: skewX(-18deg) translateX(-220%);
  transition: transform 760ms ease;
  pointer-events: none;
}

.featured-performance-media:hover::after,
.performance-card:hover::before { transform: skewX(-18deg) translateX(620%); }

.featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(255, 217, 120, 0.68);
  border-radius: 50%;
  background: rgba(4, 8, 6, 0.54);
  box-shadow: 0 0 42px rgba(224, 167, 47, 0.2);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  transition: background 220ms ease, transform 220ms ease;
}

.featured-performance-media:hover .featured-play { background: rgba(224, 167, 47, 0.26); transform: translate(-50%, -50%) scale(1.08); }
.featured-play i { width: 0; height: 0; margin-left: 6px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid var(--gold-soft); }

.featured-performance-copy {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 4;
  max-width: 760px;
  pointer-events: none;
}

.featured-kicker { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 10px; color: var(--gold-soft); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.featured-performance-copy h3 { color: var(--paper); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1; text-shadow: 0 12px 34px rgba(0, 0, 0, 0.72); }
.featured-performance-copy > p:last-child { max-width: 650px; margin: 14px 0 0; color: rgba(255, 248, 234, 0.76); line-height: 1.5; }

.archive-vinyl {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #080806 0 6px, #171511 7px 9px, #050504 10px 13px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.archive-vinyl > div { width: 42%; aspect-ratio: 1; display: grid; place-content: center; border-radius: 50%; background: linear-gradient(145deg, var(--gold-soft), var(--copper)); color: var(--ink); text-align: center; }
.archive-vinyl span { font-weight: 900; }
.archive-vinyl small { display: block; font-size: 0.42rem; text-transform: uppercase; }
.featured-performance.is-playing .archive-vinyl { animation: archive-vinyl-spin 4.8s linear infinite; }

.performance-equalizer {
  position: absolute;
  top: 154px;
  right: 32px;
  z-index: 4;
  width: 98px;
  height: 44px;
  display: flex;
  gap: 3px;
  align-items: end;
  opacity: 0.28;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.performance-equalizer span { flex: 1; height: 8%; min-height: 4px; border-radius: 999px 999px 0 0; background: linear-gradient(var(--gold-soft), var(--copper)); transition: height 90ms linear; }
.featured-performance.is-playing .performance-equalizer { opacity: 0.9; }

.performance-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  align-self: stretch;
  max-height: clamp(430px, 52vw, 560px);
  overflow-y: auto;
  padding: 4px 5px 12px;
  perspective: 1000px;
  scrollbar-color: rgba(224, 167, 47, 0.46) transparent;
  scrollbar-width: thin;
}

.performance-card[hidden] { display: none; }

.performance-card {
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 10px;
  background: rgba(3, 7, 5, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 248, 234, 0.025);
  cursor: pointer;
  opacity: 0;
  transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(24px) translateZ(0);
  transform-style: preserve-3d;
  transition: opacity 520ms ease var(--enter-delay, 0ms), transform 260ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.legacy-section.is-entered .performance-card { opacity: 1; transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(0) translateZ(0); }
.legacy-section.is-entered .performance-card:hover { border-color: rgba(255, 217, 120, 0.74); box-shadow: 0 28px 66px rgba(0, 0, 0, 0.5), 0 0 34px rgba(224, 167, 47, 0.17); transform: perspective(900px) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x)) translateY(-5px) translateZ(22px); }
.performance-card.is-active { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(255, 217, 120, 0.2), 0 20px 56px rgba(0, 0, 0, 0.46), 0 0 42px rgba(224, 167, 47, 0.19); }

.performance-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: brightness(0.48) saturate(0.72) contrast(1.15); transition: transform 700ms ease, filter 320ms ease; }
.performance-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 4, 3, 0.96), transparent 74%); pointer-events: none; }
.performance-card:hover img,
.performance-card.is-active img { filter: brightness(0.68) saturate(0.9) contrast(1.12); transform: scale(1.045); }

.performance-meta { position: absolute; right: 12px; bottom: 11px; left: 12px; z-index: 3; display: grid; gap: 3px; color: var(--paper); text-align: left; pointer-events: none; }
.performance-meta strong { color: rgba(255, 241, 207, 0.92); font-size: 0.76rem; font-weight: 650; line-height: 1.2; text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9); }
.performance-meta small { color: var(--gold-soft); font-size: 0.52rem; font-weight: 800; letter-spacing: 0.04em; line-height: 1.14; text-transform: uppercase; }
.card-level { position: absolute; top: 9px; left: 9px; z-index: 3; color: rgba(255, 217, 120, 0.72); font-size: 0.58rem; font-weight: 900; letter-spacing: 0.12em; }
.card-play { position: absolute; top: 10px; right: 10px; z-index: 3; width: 32px; height: 32px; border: 1px solid rgba(255, 217, 120, 0.42); border-radius: 50%; background: rgba(3, 6, 4, 0.66); opacity: 0; transform: scale(0.8); transition: opacity 220ms ease, transform 220ms ease; }
.card-play::after { content: ""; position: absolute; top: 50%; left: 53%; width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--gold-soft); transform: translate(-50%, -50%); }
.performance-card:hover .card-play,
.performance-card.is-active .card-play { opacity: 1; transform: scale(1); }

.performance-tab:focus-visible,
.featured-performance-media:focus-visible,
.performance-card:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 4px; }

.performance-modal { width: min(900px, calc(100vw - 28px)); max-height: calc(100vh - 28px); padding: 0; border: 1px solid rgba(255,217,120,0.34); border-radius: 10px; background: #050403; box-shadow: 0 40px 120px rgba(0,0,0,0.7); }
.performance-modal::backdrop { background: rgba(3,3,2,0.9); backdrop-filter: blur(10px); }
.performance-modal video { display: block; width: 100%; max-height: min(72vh, 620px); background: #000; }
.close-performance { position: absolute; top: 12px; right: 12px; z-index: 2; min-height: 42px; border: 0; border-radius: 999px; padding: 0 17px; background: var(--gold); color: var(--ink); font-weight: 900; text-transform: uppercase; cursor: pointer; }
.performance-fallback { display: grid; gap: 12px; padding: clamp(34px, 6vw, 58px); color: var(--paper); text-align: center; }
.performance-fallback[hidden] { display: none; }
.performance-fallback strong { color: var(--gold-soft); font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(1.35rem, 3vw, 2rem); }
.performance-fallback p { max-width: 520px; margin: 0 auto; color: rgba(255, 248, 234, 0.72); line-height: 1.55; }
.performance-fallback a { justify-self: center; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 217, 120, 0.5); border-radius: 999px; padding: 0 18px; background: rgba(224, 167, 47, 0.18); color: var(--gold-soft); font-weight: 900; text-transform: uppercase; }

.legacy-orbit {
  position: absolute;
  top: 70px;
  right: clamp(20px, 7vw, 120px);
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(13, 11, 8, 0.12);
  border-radius: 50%;
  animation: slow-spin 35s linear infinite;
}

.legacy-orbit::before,
.legacy-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.legacy-orbit::before {
  inset: 17%;
  border: 1px solid rgba(166, 41, 36, 0.18);
}

.legacy-orbit::after {
  top: 8%;
  left: 50%;
  width: 16px;
  aspect-ratio: 1;
  background: var(--gold);
  box-shadow: 0 0 26px var(--gold);
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.58);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.timeline article::before {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 167, 47, 0.42);
  border-radius: 50%;
}

.timeline article:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-7px);
  background: var(--paper);
  box-shadow: 0 22px 54px rgba(13, 11, 8, 0.15);
}

.timeline span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3 {
  margin-top: 34px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  min-height: 980px;
  padding-top: clamp(46px, 6vw, 78px);
  border-top: 1px solid rgba(255, 217, 120, 0.22);
  background:
    linear-gradient(135deg, rgba(13, 11, 8, 0.98), rgba(13, 11, 8, 0.9)),
    radial-gradient(circle at 16% 18%, rgba(224, 167, 47, 0.34), transparent 28vw),
    radial-gradient(circle at 78% 26%, rgba(166, 41, 36, 0.28), transparent 28vw);
  color: var(--paper);
  isolation: isolate;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 217, 120, 0.07) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(255, 217, 120, 0.045) 0 1px, transparent 1px 92px);
  z-index: 1;
  opacity: 0.32;
  pointer-events: none;
}

.gallery-section::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 20%;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 120, 0.14);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 18px, rgba(255, 217, 120, 0.07) 19px 20px);
  animation: slow-spin 32s linear infinite;
  pointer-events: none;
}

.gallery-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.94;
}

.gallery-backdrop-text {
  position: absolute;
  top: 24px;
  left: clamp(16px, 4vw, 72px);
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(3.4rem, 9vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  z-index: 1;
  opacity: 0.14;
  -webkit-text-stroke: 1px rgba(255, 217, 120, 0.34);
  pointer-events: none;
}

.gallery-section .section-heading {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin-bottom: 34px;
}

.gallery-section .eyebrow {
  color: var(--gold-soft);
}

.gallery-section h2 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(2.5rem, 5.2vw, 5.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.44);
}

.gallery-intro {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 248, 234, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.archive-filter {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.archive-filter button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 217, 120, 0.24);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 248, 234, 0.06);
  color: rgba(255, 248, 234, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.archive-filter button:hover {
  border-color: rgba(255, 217, 120, 0.52);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.archive-filter button[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.archive-filter button:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

.gallery-item[hidden] {
  display: none;
}

.archive-empty {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 40px;
  border: 1px solid rgba(255, 217, 120, 0.22);
  color: rgba(255, 248, 234, 0.72);
  text-align: center;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-auto-rows: 230px;
  gap: clamp(16px, 2vw, 26px);
  perspective: 1400px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255, 217, 120, 0.2);
  border-radius: 0;
  overflow: hidden;
  background: #070604;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 248, 234, 0.04);
  cursor: pointer;
  transform: translateZ(0) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.gallery-item::before {
  content: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 44%),
    linear-gradient(120deg, rgba(224, 167, 47, 0.16), transparent 34%);
  pointer-events: none;
}

.gallery-item.tall {
  grid-row: span 1;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.18) brightness(0.88);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-item:hover::before {
  content: none;
}

.gallery-item:hover {
  border-color: rgba(255, 217, 120, 0.52);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.46),
    0 0 40px rgba(224, 167, 47, 0.14);
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.gallery-item:hover img {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.24) brightness(1.02);
}

.gallery-item span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 5px;
  max-width: calc(100% - 48px);
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2.05rem);
  font-weight: 900;
  line-height: 0.98;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.62);
}

.gallery-item span small {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.video-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 217, 120, 0.18), transparent 26vw),
    radial-gradient(circle at 82% 55%, rgba(224, 167, 47, 0.2), transparent 24vw),
    linear-gradient(135deg, #061a16, var(--green) 52%, #06100e);
  color: var(--paper);
  isolation: isolate;
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(120deg, rgba(255, 250, 240, 0.08) 0 1px, transparent 1px 86px);
  animation: grid-slide 10s linear infinite;
  pointer-events: none;
}

.video-section::after {
  content: "WATCH";
  position: absolute;
  right: -0.1em;
  bottom: -0.2em;
  z-index: 1;
  color: transparent;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(5rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  opacity: 0.16;
  -webkit-text-stroke: 1px rgba(255, 217, 120, 0.36);
  pointer-events: none;
}

.video-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.86;
}

.video-section .section-heading {
  position: relative;
  z-index: 2;
}

.video-section h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3.1vw, 3.2rem);
  line-height: 1.05;
}

.music-video-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 12px;
}

.music-video-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 10px;
  background: rgba(5, 20, 16, 0.7);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 11;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.music-video-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.music-video-card img,
.music-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.82) contrast(1.12);
  transition: transform 600ms ease, filter 300ms ease;
}

.music-video-card video {
  position: relative;
  z-index: 3;
  display: block;
  background: #000;
  object-fit: contain;
  filter: none;
}

.music-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 13, 10, 0.94), transparent 58%);
  pointer-events: none;
}

.music-video-card .cover-title {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  bottom: auto;
  z-index: 4;
  width: max-content;
  max-width: calc(100% - 36px);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(3, 13, 10, 0.72);
  color: rgba(255, 241, 207, 0.92);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.82);
}

.music-video-card-featured .cover-title {
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
}

.cover-disc {
  position: absolute;
  top: -28%;
  right: -18%;
  z-index: 1;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 120, 0.28);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 13px, rgba(255, 217, 120, 0.1) 14px 15px);
  transition: transform 700ms ease;
}

.cover-play {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 248, 234, 0.38);
  border-radius: 50%;
  background: rgba(8, 8, 6, 0.54);
  color: var(--gold-soft);
  font-size: 0.72rem;
  backdrop-filter: blur(10px);
}

.cover-gold::after { background: linear-gradient(0deg, rgba(31, 20, 6, 0.96), transparent 66%), linear-gradient(110deg, rgba(224, 167, 47, 0.22), transparent 52%); }
.cover-blue::after { background: linear-gradient(0deg, rgba(5, 13, 31, 0.96), transparent 68%), linear-gradient(120deg, rgba(38, 72, 134, 0.34), transparent 64%); }
.cover-copper::after { background: linear-gradient(0deg, rgba(42, 16, 9, 0.96), transparent 68%), linear-gradient(120deg, rgba(185, 96, 53, 0.38), transparent 62%); }
.cover-green::after { background: linear-gradient(0deg, rgba(4, 24, 18, 0.97), transparent 68%), linear-gradient(120deg, rgba(21, 92, 76, 0.32), transparent 62%); }
.cover-cream::after { background: linear-gradient(0deg, rgba(38, 29, 16, 0.97), transparent 68%), linear-gradient(120deg, rgba(255, 217, 120, 0.28), transparent 62%); }
.cover-blue img { filter: grayscale(1) sepia(0.15) hue-rotate(170deg) saturate(1.3) brightness(0.78) contrast(1.2); object-position: 49% 28%; }
.cover-copper img { filter: sepia(0.38) saturate(0.92) brightness(0.72) contrast(1.14); object-position: 50% 24%; }
.cover-green img { filter: saturate(0.7) hue-rotate(12deg) brightness(0.7) contrast(1.14); object-position: 56% 22%; }
.cover-cream img { filter: sepia(0.2) saturate(0.78) brightness(0.78) contrast(1.08); object-position: 68% 28%; transform: scale(1.08); }
.cover-gold img { object-position: 60% 32%; }

.music-video-card:hover {
  border-color: rgba(255, 217, 120, 0.58);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.42), 0 0 34px rgba(224, 167, 47, 0.12);
  transform: translateY(-5px);
}

.music-video-card:hover img,
.music-video-card:hover video {
  filter: none;
  transform: none;
}

.music-video-card:hover .cover-disc {
  transform: rotate(12deg) scale(1.04);
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  overflow: hidden;
  min-height: 460px;
  padding: clamp(58px, 8vw, 96px) var(--page-padding);
  background: #050403;
  color: var(--paper);
  isolation: isolate;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 42%, rgba(224, 167, 47, 0.12), transparent 30vw),
    linear-gradient(90deg, rgba(4, 4, 3, 0.82), rgba(4, 4, 3, 0.42) 52%, rgba(4, 4, 3, 0.68)),
    linear-gradient(0deg, rgba(4, 4, 3, 0.7), transparent 55%, rgba(4, 4, 3, 0.38));
  opacity: 1;
  pointer-events: none;
}

.newsletter::after {
  content: none;
}

.newsletter-background-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.86) contrast(1.08);
}

.newsletter-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.newsletter-copy,
.signup-form {
  position: relative;
  z-index: 2;
}

.newsletter-copy {
  max-width: 520px;
}

.newsletter h2 {
  max-width: 300px;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  line-height: 1.14;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.newsletter p {
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.signup-form {
  padding: 24px;
  border: 1px solid rgba(255, 217, 120, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.16), rgba(255, 250, 240, 0.06));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.signup-form:hover {
  border-color: rgba(255, 217, 120, 0.42);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.34);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  min-height: 52px;
  min-width: 0;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--ink);
}

.signup-form button {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 32px var(--page-padding);
  border-top: 1px solid rgba(255, 217, 120, 0.2);
  background:
    radial-gradient(circle at 82% 18%, rgba(224, 167, 47, 0.12), transparent 28vw),
    linear-gradient(125deg, #050504 0%, #0b1511 56%, #10251d 100%);
  color: var(--paper);
  box-shadow: inset 0 18px 46px rgba(0, 0, 0, 0.28);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.62);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.lightbox {
  width: min(920px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(17, 16, 13, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
  background: var(--ink);
}

.close-lightbox {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .platform-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .performance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .split-section,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .music-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .performance-archive-head {
    grid-template-columns: 1fr;
  }
  .performance-archive-divider {
    width: 100%;
    min-height: 1px;
    height: 1px;
    align-self: auto;
    background: linear-gradient(90deg, transparent, rgba(255, 217, 120, 0.62), transparent);
  }
  .performance-archive-divider span {
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    animation-name: divider-light-drift-horizontal;
  }
  .performance-collection-copy {
    border-left: 0;
    border-top: 0;
    padding-top: 0;
    padding-left: 0;
  }
  .performance-stage { grid-template-columns: 1fr; }
  .featured-performance { min-height: 500px; }
  .performance-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: none; overflow: visible; padding: 4px; }
  .performance-selector .performance-card { height: auto; min-height: 190px; scroll-snap-align: start; }

  .hero-feature {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 38px;
    margin-bottom: 92px;
  }

  .record-strip {
    grid-template-columns: 120px 1fr;
  }

  .record-disc {
    width: 112px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-padding: var(--page-padding-mobile);
  }

  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 180px;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 4px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: 8px;
    background: rgba(17, 16, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  }

  .hero {
    min-height: 92vh;
    padding-top: 110px;
  }

  h1 {
    max-width: 78vw;
    font-size: clamp(1.35rem, 6.5vw, 2.4rem);
    line-height: 1.06;
  }

  .hero-media img {
    right: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 44%;
    mask-image: none;
    transform: scale(1);
    animation: portrait-breathe 12s ease-in-out infinite alternate;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 64% 22%, rgba(255, 217, 120, 0.2), transparent 42vw),
      linear-gradient(0deg, rgba(17, 16, 13, 0.96) 2%, rgba(17, 16, 13, 0.62) 58%, rgba(17, 16, 13, 0.24)),
      linear-gradient(90deg, rgba(17, 16, 13, 0.72), rgba(17, 16, 13, 0.08));
  }

  .hero-actions a {
    flex: 1 1 145px;
  }

  .kinetic-name,
  .sound-marquee,
  .stage-beams {
    display: none;
  }

  .gallery-section h2 {
    max-width: 92vw;
    font-size: clamp(2.2rem, 12vw, 4.2rem);
    line-height: 1;
  }

  .video-section h2 {
    max-width: 92vw;
    font-size: clamp(1.6rem, 7vw, 2.6rem);
    line-height: 1.08;
  }

  .newsletter h2 {
    max-width: 260px;
    font-size: clamp(1.15rem, 4.2vw, 1.5rem);
    line-height: 1.15;
  }

  .platform-grid,
  .timeline,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .intro-band .platform-grid {
    z-index: 3;
  }

  .gallery-grid,
  .music-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
  }

  .gallery-item,
  .music-video-card {
    aspect-ratio: 1;
    min-height: 0;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  }

  .music-video-card {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .music-video-card-featured { grid-column: auto; grid-row: auto; }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .music-video-card .cover-title {
    left: 7px;
    right: 7px;
    top: 7px;
    bottom: auto;
  }

  .music-video-card .cover-title,
  .music-video-card-featured .cover-title {
    font-size: clamp(0.5rem, 2.25vw, 0.64rem);
    line-height: 1.12;
  }

  .cover-play {
    top: 7px;
    left: 7px;
    width: 27px;
    font-size: 0.48rem;
  }

  .gallery-section,
  .legacy-section,
  .video-section {
    padding-inline: 8px;
  }

  .legacy-section {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .gallery-section {
    padding-top: 42px;
  }

  .legacy-section .section-heading,
  .performance-experience { padding-inline: 10px; }
  .legacy-section h2 { font-size: clamp(1rem, 5.5vw, 1.9rem); }
  .performance-archive-head { gap: 9px; margin-top: 12px; padding: 9px; border-radius: 18px; }
  .performance-tabs { gap: 8px; }
  .performance-tab { min-width: 0; min-height: 42px; padding-inline: 10px; font-size: 0.62rem; line-height: 1.15; }
  .performance-collection-copy h3 { font-size: clamp(0.675rem, 3.5vw, 1.05rem); }
  .selector-wave-lines {
    width: 70vw;
    height: 150px;
    opacity: 0.62;
  }
  .selector-particles span:nth-child(n + 4) {
    display: none;
  }
  .featured-performance { min-height: 420px; border-radius: 12px; }
  .featured-performance-copy { right: 18px; bottom: 20px; left: 18px; }
  .featured-performance-copy h3 { font-size: clamp(1.75rem, 9vw, 3rem); }
  .featured-performance-copy > p:last-child { font-size: 0.86rem; }
  .featured-play { width: 68px; height: 68px; }
  .archive-vinyl { top: 16px; right: 16px; width: 86px; }
  .performance-equalizer { top: 118px; right: 20px; width: 72px; }
  .performance-selector { margin-inline: 0; max-height: none; overflow: visible; padding-inline: 0; gap: 8px; }
  .performance-selector .performance-card { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; border-radius: 9px; box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36); }
  .performance-card,
  .legacy-section.is-entered .performance-card,
  .legacy-section.is-entered .performance-card:hover {
    transform: none;
  }
  .performance-card img { min-height: 0; }
  .performance-meta { right: 14px; bottom: 13px; left: 14px; }
  .performance-meta strong { font-size: 0.82rem; }
  .card-play { width: 36px; height: 36px; opacity: 1; }

  .record-strip {
    grid-template-columns: 1fr;
  }

  .record-disc {
    margin-inline: auto;
  }

  .wave-bars {
    height: 86px;
  }

  .signup-form div {
    grid-template-columns: 1fr;
  }

  .signup-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .song-toggle {
    right: 14px;
    bottom: 14px;
    min-height: 58px;
    gap: 10px;
    padding: 7px 18px 7px 8px;
    font-size: 0.78rem;
  }

  .song-toggle-icon {
    width: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .title-char {
    opacity: 1;
    transform: none;
  }

  .biography-reading-overlay,
  .biography-reading-dialog {
    transition: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .performance-archive-head,
  .featured-play {
    background: #07100c;
    backdrop-filter: none;
  }

  .performance-canvas,
  .stage-beams {
    display: none;
  }
}

@keyframes stage-beam-sweep {
  from { opacity: 0.12; transform: rotate(-15deg) translateX(-8%); }
  to { opacity: 0.3; transform: rotate(12deg) translateX(10%); }
}

@keyframes archive-vinyl-spin {
  to { transform: rotate(360deg); }
}

@keyframes portrait-breathe {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.01) translate3d(-0.05%, 0.02%, 0);
  }
}

@keyframes name-drift {
  from {
    transform: translateX(-4vw) rotate(-5deg);
  }
  to {
    transform: translateX(-26vw) rotate(-5deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes feature-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 19px);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes wave {
  to {
    transform: scaleY(0.42);
    filter: hue-rotate(18deg);
  }
}

@keyframes grid-slide {
  to {
    background-position: 86px 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 217, 120, 0.36);
  }
  50% {
    box-shadow: 0 0 0 18px rgba(255, 217, 120, 0);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .split-section {
    grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
    gap: clamp(22px, 4vw, 42px);
    padding-inline: clamp(18px, 4vw, 42px);
  }

  .story-panel {
    height: var(--biography-card-height, clamp(430px, 57vw, 620px));
    padding: 22px;
  }

  .story-panel h2 {
    font-size: clamp(1rem, 2.3vw, 1.8rem);
  }

  .biography-text-wrapper {
    height: auto;
  }

  .molo-section {
    min-height: 86vh;
  }

  .molo-copy h2 {
    font-size: clamp(1.4rem, 4.2vw, 2.94rem);
  }

  .molo-image-frame img {
    max-height: none;
  }

  .molo-band-notes {
    inset: auto;
    grid-template-columns: 1fr 0.7fr;
    gap: 18px;
  }

  .molo-band-notes p {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.08;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #030403;
    overflow-x: clip;
  }

  main,
  .section,
  .hero,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero::after,
  .split-section::before,
  .molo-orbit,
  .gallery-section::before,
  .video-section::before,
  .newsletter::before {
    display: none;
  }

  .hero-content,
  .hero-actions,
  .hero-feature,
  .section-heading,
  .platform-grid,
  .record-strip,
  .portrait-panel,
  .story-panel,
  .performance-experience,
  .performance-archive-head,
  .performance-stage,
  .performance-selector,
  .gallery-grid,
  .music-video-grid,
  .newsletter,
  .site-footer {
    min-width: 0;
    max-width: 100%;
  }

  .hero-content {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-block: 72px;
  }

  .portrait-panel,
  .story-panel {
    max-width: none;
    align-self: auto;
  }

  .story-panel {
    height: auto;
    padding: 20px;
  }

  .story-panel h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .biography-text-wrapper {
    height: 380px;
  }

  .molo-section {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    min-height: auto;
    padding: 28px 8px 26px;
    justify-items: stretch;
    background:
      radial-gradient(circle at 26% 20%, rgba(255, 217, 120, 0.16), transparent 28vw),
      radial-gradient(circle at 78% 68%, rgba(21, 92, 76, 0.18), transparent 28vw),
      linear-gradient(145deg, rgba(255, 217, 120, 0.055), transparent 36%),
      #030403;
  }

  .molo-copy h2 {
    font-size: clamp(1.4rem, 8.4vw, 2.52rem);
  }

  .molo-copy .eyebrow {
    font-size: clamp(0.84rem, 3.5vw, 1.06rem);
    line-height: 1.18;
    padding-inline: 8px;
  }

  .molo-feature,
  .molo-copy,
  .molo-image-frame {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .molo-image-frame {
    overflow: hidden;
    padding: 8px;
    border-right: 1px solid rgba(255, 217, 120, 0.34);
    border-left: 1px solid rgba(255, 217, 120, 0.34);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 248, 234, 0.16), rgba(255, 248, 234, 0.025)),
      rgba(4, 7, 5, 0.58);
  }

  .molo-image-frame::before {
    display: none;
  }

  .molo-image-frame::after {
    inset: 8px;
    border-radius: 14px;
  }

  .molo-image-frame img {
    max-height: none;
    width: 100%;
    aspect-ratio: 1448 / 1086;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 248, 234, 0.48);
    border-radius: 14px;
  }

  .molo-band-notes {
    position: relative;
    z-index: 4;
    grid-template-columns: 1fr;
    gap: 7px;
    max-height: none;
    margin: 10px 10px 12px;
    overflow-y: auto;
    padding-right: 4px;
    transform: none;
    color: rgba(29, 24, 17, 0.92);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-shadow: none;
    pointer-events: auto;
  }

  .molo-band-notes section,
  .molo-band-notes section:nth-child(2) {
    transform: none;
    min-width: 0;
    padding: 8px 9px;
    border-color: rgba(126, 92, 40, 0.34);
    border-radius: 12px;
    background:
      linear-gradient(120deg, rgba(255, 248, 224, 0.84), rgba(255, 248, 224, 0.58)),
      rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(2px);
  }

  .molo-band-notes h3 {
    margin-bottom: 5px;
    color: rgba(82, 48, 13, 0.98);
    font-size: clamp(0.6rem, 2.35vw, 0.76rem);
    line-height: 1.05;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .molo-band-notes h3 span {
    display: inline;
    margin-left: 5px;
    color: rgba(73, 55, 35, 0.76);
    font-size: 0.9em;
  }

  .molo-band-notes ol {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 5px;
    counter-reset: member;
  }

  .molo-band-notes li {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: clamp(0.48rem, 1.9vw, 0.58rem);
    line-height: 1.12;
    font-weight: 800;
  }

  .molo-band-notes li::before {
    counter-increment: member;
    content: counter(member) ".";
    color: rgba(126, 77, 21, 0.92);
    font-weight: 900;
  }

  .molo-band-notes li:not(:last-child)::after,
  .molo-band-notes li:last-child::after {
    content: none;
  }

  .molo-band-notes::-webkit-scrollbar {
    width: 4px;
  }

  .molo-band-notes::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(126, 92, 40, 0.42);
  }

  .molo-song-button {
    display: inline-flex;
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    font-size: 0.68rem;
    box-shadow:
      0 12px 34px rgba(13, 11, 8, 0.38),
      inset 0 0 0 1px rgba(255, 248, 234, 0.08);
  }

  .molo-song-button span:first-child {
    width: 36px;
    font-size: 0.96rem;
  }

  .song-toggle {
    display: none;
  }

  .biography-reading-overlay {
    align-items: end;
    padding: 14px;
  }

  .biography-reading-dialog {
    width: 100%;
    max-height: 92dvh;
    border-radius: 20px;
  }

  .biography-reading-header {
    padding: 24px 70px 18px 22px;
  }

  .biography-reading-content {
    padding: 24px 22px 34px;
  }
}

@media (max-width: 600px) {
  :root {
    --page-padding: var(--page-padding-mobile);
  }
}

@media (min-width: 390px) and (max-width: 760px) {
  .molo-band-notes {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr);
    align-items: start;
  }

  .molo-band-notes section:nth-child(2) {
    align-self: start;
  }
}

@keyframes button-shimmer {
  0%, 42% { transform: translateX(-130%); }
  68%, 100% { transform: translateX(130%); }
}

@keyframes divider-light-drift {
  from { top: 10%; }
  to { top: 82%; }
}

@keyframes divider-light-drift-horizontal {
  from { left: 8%; }
  to { left: 92%; }
}

@keyframes label-shimmer {
  from {
    opacity: 0.72;
    transform: translateX(-3px);
    filter: drop-shadow(0 0 5px rgba(255, 217, 120, 0.12));
  }
  to {
    opacity: 1;
    transform: translateX(5px);
    filter: drop-shadow(0 0 16px rgba(255, 217, 120, 0.26));
  }
}

@keyframes title-light-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes title-soft-float {
  from { transform: translate3d(0, -4px, 0); }
  to { transform: translate3d(0, 6px, 0); }
}

@keyframes description-drift {
  from {
    opacity: 0.75;
    transform: translateX(-3px);
  }
  to {
    opacity: 1;
    transform: translateX(3px);
  }
}

@keyframes underline-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes collection-copy-swap {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  46% {
    opacity: 0;
    transform: translateY(-16px);
  }
  47% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes letter-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particle-float {
  from { transform: translate3d(-8px, 10px, 0); opacity: 0.18; }
  to { transform: translate3d(12px, -14px, 0); opacity: 0.54; }
}

@keyframes selector-wave-drift {
  from { transform: rotate(-2deg) translate3d(0, 0, 0); opacity: 0.34; }
  to { transform: rotate(4deg) translate3d(-12px, -8px, 0); opacity: 0.64; }
}

@keyframes title-glow-drift {
  from { transform: translateX(-8%) scale(0.92); opacity: 0.42; }
  to { transform: translateX(12%) scale(1.08); opacity: 0.7; }
}
