:root {
  --home-bg: #02070d;
  --home-surface: #07131d;
  --home-surface-2: #0b1a25;
  --home-line: rgba(145, 211, 222, 0.16);
  --home-line-strong: rgba(25, 230, 255, 0.46);
  --home-accent: #19e6ff;
  --home-accent-soft: #93f4ff;
  --home-text: #f0f8fa;
  --home-muted: #93a7af;
  --home-display: "Oswald", "Arial Narrow", sans-serif;
  --home-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --home-ease: cubic-bezier(0.2, 0, 0, 1);
  --home-page-gutter: clamp(20px, 5vw, 80px);
  --home-max: 1480px;
  --player-offset: 0px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.home-page {
  min-width: 320px;
  padding: 0;
  overflow-x: hidden;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--home-body);
  line-height: 1.5;
  transition: padding-bottom 260ms var(--home-ease);
}

body.home-page.has-active-player {
  padding-bottom: var(--player-offset);
}

.home-page button,
.home-page input,
.home-page summary {
  font: inherit;
}

.home-page button,
.home-page summary {
  cursor: pointer;
}

.home-page a,
.home-page button {
  -webkit-tap-highlight-color: transparent;
}

.home-page :focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  color: #001014;
  background: var(--home-accent);
  transform: translateY(-150%);
  transition: transform 140ms var(--home-ease);
}

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

.home-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 26%, rgba(20, 181, 203, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(20, 99, 124, 0.15), transparent 32%),
    linear-gradient(180deg, #02070d 0%, #040a10 54%, #02070d 100%);
}

.home-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header,
.home-page main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  z-index: 20;
  width: min(100%, var(--home-max));
  min-height: 92px;
  margin: 0 auto;
  padding: 22px var(--home-page-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 230, 255, 0.44);
  color: var(--home-accent);
  font-family: var(--home-display);
  font-size: 20px;
  letter-spacing: 1px;
}

.brand-name {
  font-family: var(--home-display);
  font-size: 29px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 140ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--home-accent);
  transition: right 260ms var(--home-ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--home-text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-listen {
  justify-self: end;
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--home-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.header-listen:hover {
  color: #001014;
  background: var(--home-accent);
  transform: translateY(-1px);
}

.play-glyph {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.mobile-nav {
  display: none;
}

.home-hero {
  width: min(100%, var(--home-max));
  min-height: calc(100svh - 92px);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 64px) var(--home-page-gutter) clamp(74px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(46px, 7vw, 112px);
  align-items: center;
}

.hero-artwork.hero-card {
  width: min(100%, 680px);
  max-width: none;
  margin: 0;
  padding: 0;
  justify-self: start;
  position: relative;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: default;
  animation: homeReveal 720ms var(--home-ease) both;
}

.hero-artwork.hero-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.artwork-halo {
  position: absolute;
  inset: 9% -6% -8% 7%;
  z-index: -1;
  background: radial-gradient(circle, rgba(25, 230, 255, 0.2), rgba(7, 24, 35, 0.04) 56%, transparent 74%);
  filter: blur(34px);
  animation: haloBreathe 7s ease-in-out infinite;
}

.hero-cover-link {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  line-height: 0;
}

.hero-cover-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(166, 234, 242, 0.18);
  box-shadow: inset 0 -70px 90px rgba(0, 7, 13, 0.14);
}

.hero-cover,
.hero-cover--empty {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  border-radius: 0;
  object-fit: cover;
  background: linear-gradient(135deg, #0e2a36, #03121a 70%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.58);
  transition: transform 520ms var(--home-ease), box-shadow 520ms var(--home-ease);
}

.hero-cover-link:hover .hero-cover {
  transform: scale(1.008);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.66);
}

.artwork-caption {
  width: calc(100% - 40px);
  min-height: 82px;
  margin: -42px 20px 0;
  padding: 16px 20px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 18px;
  align-items: center;
  border-top: 1px solid rgba(170, 234, 242, 0.22);
  background: rgba(3, 12, 18, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.artwork-caption .artwork-kicker {
  grid-column: 1 / -1;
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.artwork-caption a {
  min-width: 0;
  overflow: hidden;
  color: var(--home-text);
  font-size: 16px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artwork-caption > span:last-child {
  color: var(--home-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy {
  min-width: 0;
  max-width: 650px;
  animation: homeReveal 780ms 90ms var(--home-ease) both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-page h1,
.home-page h2 {
  font-family: var(--home-display);
  font-weight: 400;
  text-transform: uppercase;
}

.home-page h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(58px, 5.8vw, 94px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: none;
}

.hero-lead {
  max-width: 570px;
  margin: clamp(25px, 3vw, 42px) 0 0;
  color: var(--home-muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--home-accent);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 140ms ease, color 140ms ease, background 140ms ease, border-color 140ms ease;
}

button.primary-action.preview-btn {
  margin: 0;
  color: #001014;
  background: var(--home-accent);
  box-shadow: none;
}

.secondary-action {
  color: var(--home-text);
  border-color: var(--home-line);
  background: rgba(8, 19, 28, 0.34);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  color: var(--home-accent);
  border-color: var(--home-line-strong);
}

.hero-services {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--home-muted);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-services > span {
  color: #617780;
}

.hero-services a {
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}

.hero-services a:hover {
  color: var(--home-accent);
  border-color: var(--home-accent);
}

.home-section {
  width: min(100%, var(--home-max));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 128px) var(--home-page-gutter);
  scroll-margin-top: 80px;
}

.section-heading {
  margin-bottom: clamp(34px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 32px;
  align-items: end;
}

.section-heading > * {
  min-width: 0;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-shadow: none;
}

.section-heading > p,
.contact-copy > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.discography-section {
  border-top: 1px solid var(--home-line);
}

.release-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.release-card[hidden] {
  display: none !important;
}

.release-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  background: linear-gradient(165deg, rgba(10, 25, 35, 0.86), rgba(3, 12, 18, 0.92));
  overflow: hidden;
  transition: transform 260ms var(--home-ease), border-color 260ms ease, box-shadow 260ms ease;
}

.release-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 230, 255, 0.36);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.release-cover-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #061019;
  line-height: 0;
}

.release-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  background: linear-gradient(135deg, #0e2a36, #03121a);
  transition: transform 520ms var(--home-ease), filter 520ms var(--home-ease);
}

.release-card:hover .release-cover {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.release-index {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 7px;
  color: rgba(240, 248, 250, 0.84);
  background: rgba(2, 7, 13, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--home-body);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.release-body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.release-meta {
  margin: 0 0 8px;
  color: var(--home-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-body h3 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.16;
}

.release-body h3 a {
  transition: color 140ms ease;
}

.release-body h3 a:hover {
  color: var(--home-accent);
}

.release-actions {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.release-play.preview-btn {
  min-height: 44px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(25, 230, 255, 0.34);
  border-radius: 0;
  color: var(--home-accent);
  background: rgba(25, 230, 255, 0.05);
  font-size: 11px;
  box-shadow: none;
}

.release-play.preview-btn:hover {
  background: rgba(25, 230, 255, 0.11);
  box-shadow: none;
}

.release-platforms {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--home-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 140ms ease;
}

.release-platforms:hover {
  color: var(--home-text);
}

.discography-toggle {
  min-height: 48px;
  margin: 38px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--home-line);
  color: var(--home-text);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 140ms ease, border-color 140ms ease;
}

.discography-toggle:hover {
  color: var(--home-accent);
  border-color: var(--home-line-strong);
}

.discography-toggle .toggle-hide {
  display: none;
}

.discography-toggle[aria-expanded="true"] .toggle-show {
  display: none;
}

.discography-toggle[aria-expanded="true"] .toggle-hide {
  display: inline;
}

.discography-toggle[aria-expanded="true"] > span:last-child {
  transform: rotate(180deg);
}

.sound-section,
.profiles-section,
.live-section,
.contact-section {
  border-top: 1px solid var(--home-line);
}

.sound-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--home-line);
  border: 1px solid var(--home-line);
}

.sound-card {
  min-height: 260px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border: 0;
  color: var(--home-text);
  background: rgba(4, 14, 21, 0.96);
  transition: background 260ms ease;
}

button.sound-card:hover {
  background: var(--home-surface);
}

.sound-number {
  margin-bottom: auto;
  color: var(--home-accent);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.sound-card h3 {
  margin: 36px 0 10px;
  font-size: 20px;
}

.sound-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.65;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
}

.profile-list a {
  min-height: 76px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-muted);
  transition: color 140ms ease, background 140ms ease;
}

.profile-list a:nth-child(odd) {
  border-right: 1px solid var(--home-line);
}

.profile-list a:hover {
  color: var(--home-accent);
  background: rgba(25, 230, 255, 0.025);
}

.live-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(40px, 8vw, 120px);
}

.live-stats div {
  display: flex;
  flex-direction: column;
}

.live-stats strong {
  color: var(--home-accent);
  font-family: var(--home-display);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 400;
  line-height: 1;
}

.live-stats span,
.live-note {
  color: var(--home-muted);
}

.live-stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-note {
  max-width: 600px;
  margin-top: 32px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.contact-copy .eyebrow {
  margin-bottom: 18px;
}

.contact-copy > p:last-child {
  margin-top: 24px;
}

.contact-list {
  border-top: 1px solid var(--home-line);
}

.contact-list > * {
  min-height: 82px;
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--home-line);
}

.contact-list span {
  color: var(--home-muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  font-weight: 500;
  text-align: right;
}

.contact-list a {
  transition: color 140ms ease;
}

.contact-list a:hover {
  color: var(--home-accent);
}

.site-footer {
  width: min(100%, var(--home-max));
  min-height: 86px;
  margin: 0 auto;
  padding: 24px var(--home-page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--home-line);
  color: var(--home-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--home-accent);
}

.home-page .global-player {
  width: min(calc(100% - 32px), 1180px);
  min-height: 72px;
  left: 50%;
  right: auto;
  bottom: 16px;
  padding: 9px 14px;
  grid-template-columns: minmax(200px, 0.9fr) minmax(360px, 1.4fr) minmax(140px, 0.6fr);
  gap: 18px;
  border: 1px solid rgba(25, 230, 255, 0.24);
  border-radius: 0;
  background: rgba(3, 12, 18, 0.94);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 28px));
  transition: opacity 180ms ease, visibility 180ms ease, transform 320ms var(--home-ease);
}

.home-page .global-player.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.72);
}

.home-page .player-cover {
  width: 50px;
  height: 50px;
  border-radius: 0;
}

.home-page .player-left {
  gap: 12px;
  min-width: 0;
}

.home-page .player-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-page .player-title {
  max-width: 230px;
  overflow: hidden;
  color: var(--home-text);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-page .player-artist {
  color: var(--home-muted);
  font-size: 9px;
}

.home-page .player-controls {
  gap: 12px;
  margin-bottom: 5px;
}

.home-page .player-btn {
  width: 34px;
  height: 34px;
  border-color: var(--home-line);
  border-radius: 0;
  font-size: 12px;
}

.home-page .player-play {
  width: 40px;
  height: 40px;
  color: #001014;
  background: var(--home-accent);
  box-shadow: none;
}

.home-page .player-progress {
  gap: 9px;
  font-size: 9px;
}

.home-page .player-right {
  font-size: 9px;
}

.home-page .player-right input[type="range"] {
  width: 90px;
}

@keyframes homeReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes haloBreathe {
  0%, 100% { opacity: 0.58; transform: scale(0.98); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

@media (min-width: 1280px) {
  .release-shelf {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 40px;
  }

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

  .sound-grid {
    grid-template-columns: 1fr;
  }

  .sound-card {
    min-height: 210px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --home-page-gutter: 20px;
  }

  html {
    scroll-padding-top: 74px;
  }

  body.home-page,
  body.home-page.has-active-player {
    padding-bottom: 0;
  }

  body.home-page.has-active-player {
    padding-bottom: calc(var(--player-offset) + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 72px;
    padding-top: max(14px, env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 24px;
  }

  .header-listen {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
    position: relative;
  }

  .mobile-nav summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    list-style: none;
    border: 1px solid var(--home-line);
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--home-text);
    transition: transform 180ms ease;
  }

  .mobile-nav[open] summary span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-nav[open] summary span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav nav {
    width: min(260px, calc(100vw - 40px));
    position: absolute;
    z-index: 30;
    top: 52px;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 8px;
    border: 1px solid var(--home-line-strong);
    background: rgba(3, 12, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
  }

  .mobile-nav nav a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    color: var(--home-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .home-hero {
    min-height: auto;
    padding-top: clamp(36px, 10vw, 64px);
    padding-bottom: 86px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 600px;
    grid-row: 1;
  }

  .hero-artwork.hero-card {
    width: 100%;
    min-width: 0;
    grid-row: 2;
  }

  .home-page h1 {
    max-width: 100%;
    font-size: clamp(50px, 14vw, 64px);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .primary-action,
  .secondary-action {
    min-height: 50px;
    padding: 0 17px;
  }

  .hero-services {
    margin-top: 24px;
  }

  .artwork-caption {
    width: calc(100% - 24px);
    margin: -34px 12px 0;
    padding: 13px 14px;
  }

  .home-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2,
  .contact-copy h2 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 52px);
    overflow-wrap: anywhere;
  }

  .artwork-halo {
    inset: 6% 0 -5% 4%;
  }

  .release-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .release-body {
    padding: 16px;
  }

  .release-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .release-play.preview-btn,
  .release-platforms {
    width: 100%;
    justify-content: center;
  }

  .profile-list {
    grid-template-columns: 1fr;
  }

  .profile-list a:nth-child(odd) {
    border-right: 0;
  }

  .contact-list > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-list strong {
    text-align: left;
  }

  .site-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .home-page .global-player {
    width: 100%;
    min-height: 70px;
    left: 0;
    bottom: 0;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "left controls"
      "progress progress";
    gap: 5px 10px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    transform: translateY(100%);
  }

  .home-page .global-player.is-active {
    transform: translateY(0);
  }

  .home-page .player-left {
    grid-area: left;
  }

  .home-page .player-center {
    display: contents;
  }

  .home-page .player-controls {
    grid-area: controls;
    margin: 0;
  }

  .home-page .player-progress {
    grid-area: progress;
  }

  .home-page .player-right {
    display: none;
  }

  .home-page .player-btn {
    width: 44px;
    height: 44px;
  }

  .home-page .player-play {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  .home-page h1 {
    font-size: clamp(44px, 12vw, 56px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .release-shelf {
    width: calc(100% + var(--home-page-gutter));
    margin-right: calc(var(--home-page-gutter) * -1);
    padding-right: var(--home-page-gutter);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: unset;
    grid-template-rows: 1fr;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .release-shelf::-webkit-scrollbar {
    display: none;
  }

  .release-card {
    scroll-snap-align: start;
  }

  .release-actions {
    flex-direction: row;
    align-items: center;
  }

  .release-play.preview-btn,
  .release-platforms {
    width: auto;
  }

  .sound-card {
    min-height: 230px;
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .home-page .player-meta {
    max-width: calc(100vw - 210px);
  }

  .home-page .player-controls .player-btn:not(.player-play) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-artwork.hero-card,
  .hero-copy,
  .artwork-halo {
    animation: none !important;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    transition-duration: 0.01ms !important;
  }
}
