.spotify-player {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  margin: 48px 0 24px;
  padding: 28px;
  background: linear-gradient(135deg, #251324, #160d16);
  border: 1px solid var(--line);
}

.spotify-player h3 {
  margin: .15em 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.spotify-player iframe {
  border: 0;
  border-radius: 12px;
}

.artists {
  padding: 110px clamp(22px, 8vw, 130px);
  background: linear-gradient(145deg, #32142f, #160d16 72%);
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(340px, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.artist-copy h2 {
  margin: .15em 0 .3em;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
}

.artist-copy > p:not(.eyebrow) {
  color: #d9ccd8;
  font-size: 1.08rem;
}

.artist-copy .artist-note {
  color: var(--gold);
}

.artist-player {
  padding: 28px;
  background: #120b13b8;
  border: 1px solid var(--line);
}

.artist-player h3 {
  margin: .15em 0 .7em;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.artist-player iframe {
  display: block;
  border: 0;
  border-radius: 12px;
}

.upcoming-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.upcoming-artist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: #ffffff08;
}

.upcoming-artist h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.upcoming-artist p {
  margin: 0;
  color: #d9ccd8;
}

.upcoming-artist .eyebrow {
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
}

.coming-soon {
  margin-top: auto;
  padding: 8px 13px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.music-store {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 9vw, 130px);
  align-items: center;
  padding: 110px clamp(22px, 8vw, 130px);
  background: var(--paper);
  color: var(--ink);
}

.store-copy h2 {
  margin: .18em 0 .35em;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.04;
}

.store-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: #554a54;
  font-size: 1.1rem;
}

.purchase-note {
  padding: clamp(28px, 4vw, 50px);
  background: var(--ink);
  color: #fff;
  border-top: 4px solid var(--gold);
}

.purchase-note > span {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.purchase-note h3 {
  margin: .45em 0 .3em;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.purchase-note p {
  color: #cfc3cd;
}

.purchase-note a {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .artist-profile {
    grid-template-columns: 1fr;
  }

  .upcoming-roster {
    grid-template-columns: 1fr;
  }

  .music-store {
    grid-template-columns: 1fr;
  }

  .spotify-player {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .artists {
    padding: 78px 22px;
  }

  .music-store {
    padding: 78px 22px;
  }

  .artist-player {
    padding: 18px;
  }

  .spotify-player {
    padding: 18px;
    margin-top: 34px;
  }
}
