:root {
  --ink: #f4efe6;
  --muted: #b8c0c7;
  --soft: #d7ae6b;
  --blue: #74a9d1;
  --charcoal: #080b0d;
  --panel: rgba(10, 14, 17, .88);
  --line: rgba(215, 174, 107, .32);
  --line-soft: rgba(255, 255, 255, .1);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: var(--charcoal);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, .94), rgba(5, 7, 8, .58) 52%, rgba(5, 7, 8, .86)),
    url("../images/background1.png") center / cover no-repeat;
}

body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 100% 8px;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 104px);
  line-height: .92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  color: #071018;
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 84px;
  padding: 14px max(32px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(5, 7, 8, .88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  font-size: 17px;
}

.main-nav,
.footer-social,
.hero-actions,
.commerce-strip,
.release-actions,
.metric-row,
.track-list,
.radio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.main-nav {
  justify-content: flex-end;
  gap: 4px;
}

.main-nav a,
.footer-social a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover,
.footer-social a:hover {
  color: var(--ink);
  background: rgba(116, 169, 209, .13);
}

.main-nav .nav-feature {
  margin-left: 8px;
  color: #080b0d;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(215, 174, 107, .18);
}

.main-nav .nav-feature:hover {
  color: #080b0d;
  background: #efca86;
}

main {
  overflow: hidden;
}

.hero-section,
.listen-section,
.release-section,
.showcase-section,
.story-section,
.contact-band {
  position: relative;
  z-index: 0;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  scroll-margin-top: 112px;
}

.hero-section {
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  padding: 52px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--soft);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-lede,
.story-section p,
.release-copy p,
.listen-copy p,
.showcase-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 23px;
}

.commerce-strip {
  margin-top: 26px;
  max-width: 680px;
}

.commerce-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(215, 174, 107, .28);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(215, 174, 107, .1);
  font-size: 13px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  color: #080b0d;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(215, 174, 107, .2);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.artist-card,
.radio-panel,
.showcase-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

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

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.artist-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 6px;
  padding: 22px;
  background: linear-gradient(transparent, rgba(4, 7, 9, .92) 30%, rgba(4, 7, 9, .98));
}

.artist-card-caption span,
.showcase-grid span,
.metric-row span {
  color: var(--muted);
  font-size: 13px;
}

.artist-card-caption strong {
  font-size: 23px;
}

.artist-card-caption em {
  width: max-content;
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 6px;
  color: #080b0d;
  background: var(--soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.listen-section,
.release-section,
.showcase-section,
.story-section,
.contact-band {
  padding: 78px 0;
}

.listen-section,
.release-section,
.showcase-section,
.story-section {
  background: rgba(7, 10, 12, .94);
  box-shadow: 0 0 0 100vmax rgba(7, 10, 12, .94);
  clip-path: inset(0 -100vmax);
}

.release-section {
  background: rgba(12, 16, 18, .97);
  box-shadow: 0 0 0 100vmax rgba(12, 16, 18, .97);
}

.showcase-section {
  background: rgba(5, 7, 8, .97);
  box-shadow: 0 0 0 100vmax rgba(5, 7, 8, .97);
}

.story-section {
  background: rgba(10, 13, 15, .97);
  box-shadow: 0 0 0 100vmax rgba(10, 13, 15, .97);
}

.listen-section:before,
.release-section:before,
.showcase-section:before,
.story-section:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  background: rgba(7, 10, 12, .94);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.release-section:before {
  background:
    linear-gradient(90deg, rgba(12, 16, 18, .98), rgba(14, 18, 20, .94)),
    url("../images/latest-release.png") right center / auto 120% no-repeat;
}

.showcase-section:before {
  background: rgba(5, 7, 8, .96);
}

.story-section:before {
  background: rgba(10, 13, 15, .97);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 36px;
  align-items: center;
}

.radio-card {
  min-height: 0;
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 22px;
  overflow: visible;
  background: linear-gradient(145deg, rgba(10, 14, 17, .96), rgba(12, 24, 33, .9));
}

.radio-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(215, 174, 107, .34);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(215, 174, 107, .08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e75e5e;
  box-shadow: 0 0 0 6px rgba(231, 94, 94, .14);
}

.radio-feature {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.radio-cover {
  width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(215, 174, 107, .35);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

.radio-identity {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.radio-identity img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: .74;
}

.radio-identity strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.06;
}

.radio-identity span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.stream-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, .055);
}

.stream-play {
  min-width: 88px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: #080b0d;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.stream-play.is-playing {
  color: #061018;
  background: var(--blue);
}

.song-progress {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.song-progress-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.song-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--soft), var(--blue));
  transition: width .35s linear;
}

.song-times {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.radio-audio {
  display: none;
}

.radio-links a {
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.radio-links a:hover {
  background: rgba(116, 169, 209, .16);
}

.listen-copy {
  align-self: center;
}

.metric-row {
  margin-top: 28px;
}

.metric-row div {
  min-width: 132px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
}

.metric-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 21px;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.release-art img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.track-list {
  margin: 26px 0;
}

.release-actions {
  margin-top: 4px;
}

.track-list span,
.track-list a {
  padding: 9px 12px;
  border: 1px solid rgba(116, 169, 209, .32);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(116, 169, 209, .13);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.text-link {
  color: var(--soft);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  font-weight: 900;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-grid article {
  min-height: 244px;
  padding: 26px;
}

.showcase-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--soft);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
}

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: .68fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-band {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.7vw, 54px);
}

.site-footer {
  padding: 32px 20px 42px;
  text-align: center;
  color: var(--muted);
  background: rgba(5, 7, 8, .96);
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-social {
  justify-content: center;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .listen-grid,
  .release-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .artist-card {
    max-width: 520px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 0;
    padding: 12px 16px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .main-nav a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .hero-section,
  .listen-section,
  .release-section,
  .showcase-section,
  .story-section,
  .contact-band {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0 30px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-lede,
  .story-section p,
  .release-copy p,
  .listen-copy p,
  .showcase-grid p {
    font-size: 16px;
  }

  .listen-section,
  .release-section,
  .showcase-section,
  .story-section {
    padding: 52px 0;
  }

  .radio-card {
    padding: 18px;
  }

  .radio-feature {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .radio-cover {
    width: 96px;
  }

  .radio-feature .radio-identity > img {
    display: none;
  }

  .radio-feature .radio-identity strong {
    font-size: 21px;
  }

  .stream-controls {
    grid-template-columns: 1fr;
  }

  .stream-play,
  .radio-links a,
  .button {
    width: 100%;
  }

  .radio-links a {
    text-align: center;
  }

  .contact-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
