:root {
  --gold: #c49a3c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9cc;
  --ink: #0e0c08;
  --ink-soft: #2a2618;
  --cream: #faf7f0;
  --mist: #f0ede5;
  --charcoal: #3a3628;
  --ash: #7a7564;
  --border: rgba(196, 154, 60, 0.25);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "DM Mono", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 18px;
  background:
    radial-gradient(ellipse 42% 38% at 50% 44%, rgba(196, 154, 60, 0.1), transparent 68%),
    var(--ink);
  color: var(--cream);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 60, 0.24);
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: rgba(232, 201, 122, 0.72);
  animation: loader-spin 950ms linear infinite;
}

.loader-mark::after {
  inset: 20px;
  border-top-color: rgba(250, 247, 240, 0.72);
  border-right-color: transparent;
  animation-duration: 1350ms;
  animation-direction: reverse;
}

.loader-mark span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 28px rgba(196, 154, 60, 0.52);
}

.loader p {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.loader p em { color: var(--cream); }

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus { transform: translateY(0); }

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: calc(22px + env(safe-area-inset-top)) clamp(22px, 5vw, 64px) 22px;
  color: var(--cream);
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 0.5px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(14, 12, 8, 0.86);
  border-color: rgba(196, 154, 60, 0.22);
  backdrop-filter: blur(12px);
}

.wordmark {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.wordmark em { color: var(--cream); }

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.nav-cta,
.platform-row a,
.social-row a,
.text-link {
  position: relative;
  color: rgba(250, 247, 240, 0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transition: right 200ms ease-in-out;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.text-link:hover { color: var(--gold); }

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.text-link:hover::after { right: 0; }

.nav-cta {
  justify-self: end;
  color: var(--ink);
  background: var(--gold);
  padding: 11px 20px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.04);
  place-items: center;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  background: var(--gold);
}

.menu-button span + span { margin-top: 5px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 80px 32px;
  background: rgba(14, 12, 8, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(42px, 13vw, 72px);
  font-weight: 900;
  text-decoration: none;
  line-height: 0.95;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 110px clamp(22px, 5vw, 72px) 72px;
  overflow: hidden;
  position: relative;
}

.hero::before,
.featured-release::before,
.events::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 55% at 80% 25%, rgba(196, 154, 60, 0.11), transparent 68%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(196, 154, 60, 0.08), transparent 70%);
}

.hero-copy,
.hero-art,
.section-heading,
.release-panel,
.discography-grid,
.bio-text,
.timeline,
.video-grid,
.event-list,
.contact-copy,
.booking-form {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
}

h1 em,
h2 em { color: var(--gold); font-style: italic; }

h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--ash);
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
}

.hero-text {
  max-width: 520px;
  color: rgba(250, 247, 240, 0.58);
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 150ms ease, background 200ms ease, color 200ms ease, filter 200ms ease;
}

.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { color: var(--gold); background: transparent; }
.btn-ghost:hover { background: var(--gold); color: var(--ink); }

.hero-art {
  min-height: 620px;
  display: grid;
  place-items: center;
  transform: translateY(var(--parallax, 0));
}

.hero-main-art {
  width: min(78%, 520px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.52);
}

.hero-float {
  position: absolute;
  width: min(30%, 170px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(196, 154, 60, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.hero-float-one { left: 8%; bottom: 12%; }
.hero-float-two { right: 3%; top: 19%; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  animation: cue 1.7s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { opacity: 0.35; translate: 0 -4px; }
  50% { opacity: 1; translate: 0 5px; }
}

.featured-release,
.events {
  position: relative;
  padding: 108px clamp(22px, 5vw, 72px);
  overflow: hidden;
}

.section-heading,
.song-section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.song-section-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.song-section-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.song-section-heading p:not(.eyebrow) {
  color: rgba(250, 247, 240, 0.62);
  font-weight: 300;
}

.release-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto 72px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(196, 154, 60, 0.28);
  background: rgba(250, 247, 240, 0.035);
  border-radius: 8px;
}

.release-cover {
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
}

.release-kicker {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-content h3,
.video-card h3,
.event-list h3,
.album-card h3 {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}

.release-content p { color: rgba(250, 247, 240, 0.64); font-weight: 300; }

.track-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.track-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(196, 154, 60, 0.16);
  border-radius: 8px;
  background: rgba(250, 247, 240, 0.04);
  color: var(--cream);
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease, transform 150ms ease;
}

.track-row:hover {
  border-color: rgba(196, 154, 60, 0.48);
  background: rgba(250, 247, 240, 0.075);
  transform: translateY(-1px);
}

.track-row span,
.album-card p,
.event-list time {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-row small { color: var(--ash); }

.platform-row a,
.social-row a {
  color: var(--gold);
  border: 1px solid rgba(196, 154, 60, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
}

.platform-row a:hover,
.social-row a:hover { background: var(--gold); color: var(--ink); }

.discography-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.album-card {
  position: relative;
  overflow: hidden;
}

.album-card img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.album-card::before {
  content: "";
  position: absolute;
  inset: 0 0 70px;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  transition: background 300ms ease;
}

.album-card:hover img { transform: scale(1.04); filter: saturate(1.05); }
.album-card:hover::before { background: rgba(0, 0, 0, 0.58); }
.album-card.is-playing img { outline: 2px solid var(--gold); outline-offset: -2px; }

.play-button,
.video-play {
  position: absolute;
  z-index: 2;
  top: calc(50% - 38px);
  left: 50%;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: transparent;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease;
  cursor: pointer;
  text-decoration: none;
}

.play-button::after,
.video-play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 15px solid var(--ink);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.album-card:hover .play-button,
.video-card:hover .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.album-card h3 {
  margin: 14px 0 2px;
  color: var(--cream);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.album-card p { margin-bottom: 0; color: var(--ash); }

.bio,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  padding: 108px clamp(22px, 5vw, 72px);
}

.bio p,
.contact p { color: var(--charcoal); font-weight: 300; }

.lead {
  margin: 22px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 25px;
  font-style: italic;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 5px;
  width: 2px;
  background: var(--gold);
}

.timeline div::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.timeline span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.timeline p { margin: 4px 0 0; }

.impact {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(196, 154, 60, 0.18);
  border-bottom: 1px solid rgba(196, 154, 60, 0.18);
}

.ticker {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-style: italic;
  white-space: nowrap;
  padding-right: 28px;
}

.ticker span::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  background: rgba(196, 154, 60, 0.2);
  box-shadow: 0 0 18px rgba(196, 154, 60, 0.28);
}

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

.videos {
  padding: 108px clamp(22px, 5vw, 72px);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.video-card {
  position: relative;
  min-height: 100%;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.95);
  transition: transform 300ms ease, filter 300ms ease;
}

.video-card:hover img {
  transform: scale(1.015);
  filter: brightness(0.78) saturate(1.05);
}

.video-feature { grid-row: span 2; }
.video-card h3 { margin: 14px 0 0; color: var(--ink); }
.video-card p { color: var(--ash); }

.video-play {
  top: 43%;
  opacity: 1;
}

.event-list {
  display: grid;
  gap: 0;
  max-width: 1100px;
}

.event-list article {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(196, 154, 60, 0.2);
}

.event-list article:last-child { border-bottom: 1px solid rgba(196, 154, 60, 0.2); }
.event-list h3 { color: var(--cream); margin: 0 0 4px; }
.event-list p { margin: 0; color: var(--ash); }

.contact {
  align-items: start;
}

.contact .social-row a {
  color: var(--ink);
  border-color: var(--border);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--mist);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  border: 1px solid rgba(196, 154, 60, 0.28);
  border-radius: 8px;
  background: rgba(250, 247, 240, 0.88);
  color: var(--ink);
  padding: 12px 13px;
  letter-spacing: 0;
  text-transform: none;
}

.full { grid-column: 1 / -1; }

.audio-player {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: 44px minmax(120px, 220px) 42px 1fr auto 34px;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(196, 154, 60, 0.34);
  border-radius: 8px;
  background: rgba(14, 12, 8, 0.94);
  color: var(--cream);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transform: translateY(130%);
  transition: transform 260ms ease;
}

.audio-player.is-visible { transform: translateY(0); }
.audio-player img { width: 44px; height: 44px; object-fit: cover; }
.player-meta { display: grid; line-height: 1.2; }
.player-meta span { color: var(--ash); font-size: 12px; }

.audio-player button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(196, 154, 60, 0.26);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
}

[data-toggle-player]::before {
  content: "";
  display: inline-block;
  margin-left: 3px;
  border-left: 10px solid var(--gold);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
}

.waveform span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  animation: wave 850ms ease-in-out infinite;
}

.waveform span:nth-child(2) { animation-delay: 90ms; }
.waveform span:nth-child(3) { animation-delay: 180ms; }
.waveform span:nth-child(4) { animation-delay: 270ms; }
.waveform span:nth-child(5) { animation-delay: 360ms; }

@keyframes wave {
  0%, 100% { height: 9px; opacity: 0.5; }
  50% { height: 26px; opacity: 1; }
}

.audio-player a {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px clamp(22px, 5vw, 72px);
  border-top: 1px solid rgba(196, 154, 60, 0.2);
}

.site-footer p {
  margin: 0;
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .discography-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; padding-top: 104px; }
  .hero-art { min-height: 460px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; gap: 12px; padding-inline: 18px; }
  .desktop-nav,
  .nav-cta { display: none; }
  .menu-button { display: grid; }
  .hero {
    min-height: 100svh;
    padding: calc(96px + env(safe-area-inset-top)) 18px 68px;
    gap: 20px;
  }
  h1 { font-size: clamp(64px, 18vw, 92px); }
  h2 { font-size: clamp(36px, 11vw, 58px); }
  .eyebrow { font-size: 10px; letter-spacing: 0.2em; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-art { min-height: 330px; }
  .hero-main-art { width: min(80%, 360px); }
  .hero-float { width: 110px; }
  .featured-release,
  .videos,
  .events,
  .bio,
  .contact { padding-inline: 18px; padding-block: 76px; }
  .release-panel,
  .bio,
  .contact { grid-template-columns: 1fr; }
  .release-panel { padding: 16px; }
  .track-row {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }
  .track-row small { grid-column: 2; }
  .discography-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .album-card h3 { font-size: 15px; }
  .album-card p { font-size: 9px; letter-spacing: 0.08em; }
  .play-button {
    opacity: 1;
    width: 42px;
    height: 42px;
    top: calc(50% - 34px);
    background: rgba(196, 154, 60, 0.92);
  }
  .play-button::after {
    left: 17px;
    top: 13px;
    border-left-width: 12px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  .event-list article { grid-template-columns: 1fr; gap: 10px; }
  .booking-form { grid-template-columns: 1fr; }
  .audio-player {
    left: 10px;
    right: 10px;
    grid-template-columns: 40px 1fr 34px 34px;
  }
  .waveform,
  .audio-player a { display: none; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .discography-grid { gap: 14px; }
  .wordmark { font-size: 22px; }
  .release-content h3,
  .video-card h3,
  .event-list h3 { font-size: 23px; }
  .mobile-menu a { font-size: clamp(38px, 15vw, 60px); }
}

@media (hover: none) and (pointer: coarse) {
  .play-button { opacity: 1; }
  .album-card::before { background: rgba(0, 0, 0, 0.16); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
