:root {
  --mx: 50%;
  --my: 20%;
  --black: #050505;
  --charcoal: #0a0a0a;
  --bone: #f2ede2;
  --muted: #91897f;
  --red: #d62027;
  --deep-red: #811015;
  --line: rgba(242, 237, 226, 0.18);
  --soft-line: rgba(242, 237, 226, 0.08);
  --display: Impact, Haettenschweiler, "Arial Narrow", Inter, sans-serif;
  --body: Inter, "Arial Narrow", Arial, sans-serif;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

[id] {
  scroll-margin-top: var(--header-height);
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 28%, rgba(80, 20, 18, 0.2), transparent 33rem),
    radial-gradient(circle at 78% 12%, rgba(242, 237, 226, 0.07), transparent 26rem),
    linear-gradient(180deg, #080808, var(--black) 42%, #020202);
  color: var(--bone);
  font-family: var(--body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

body::before {
  z-index: 2;
  opacity: 0.82;
  background-image:
    radial-gradient(circle at var(--mx) var(--my), rgba(214, 32, 39, 0.32), rgba(214, 32, 39, 0.12) 10rem, transparent 27rem);
  background-size: 100% 100%;
  mix-blend-mode: screen;
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 35%, rgba(0, 0, 0, 0.58) 85%),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.045) 49%, transparent 50% 100%),
    linear-gradient(78deg, transparent 0 72%, rgba(214, 32, 39, 0.06) 73%, transparent 74% 100%),
    repeating-radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.026) 0 1px, transparent 1px 86px);
  background-size: 100% 100%, 360px 360px, 420px 420px, 8px 8px, auto;
}

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

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

i[class^="fa-"],
i[class*=" fa-"],
.svg-inline--fa {
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.red {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(90px, 180px) 1fr minmax(170px, 230px);
  align-items: center;
  padding: 0 clamp(1.4rem, 4.6vw, 4rem);
  border-bottom: 1px solid var(--soft-line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.brand-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
}

.asset-fallback {
  position: relative;
}

.asset-fallback img {
  position: relative;
  z-index: 2;
}

.asset-fallback.is-missing img {
  display: none;
}

.icon-fallback > span,
.album-art > b {
  display: none;
}

.icon-fallback.is-missing > span,
.album-art.is-missing > b {
  display: grid;
  place-items: center;
  border: 2px solid var(--bone);
  border-radius: 50%;
  color: var(--bone);
  font-family: var(--display);
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.brand-mark.is-missing > span,
.footer-icon.is-missing > span {
  width: 64px;
  height: 64px;
  font-size: 1.55rem;
}

.brand-mark img,
.footer-icon,
.hero-logo,
.footer-lockup,
.album-art img {
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.8vw, 3rem);
}

.main-nav a {
  position: relative;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 0 16px rgba(242, 237, 226, 0.12);
}

.main-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(clamp(1.2rem, 2.8vw, 3rem) * -0.52);
  top: 50%;
  width: 2px;
  height: 24px;
  background: var(--red);
  transform: translateY(-50%);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(242, 237, 226, 0.35);
  background: rgba(5, 5, 5, 0.45);
  color: var(--bone);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  border-color: var(--red);
  background: rgba(214, 32, 39, 0.18);
}

.menu-toggle .fa-xmark,
.menu-toggle[aria-expanded="true"] .fa-bars {
  display: none;
}

.menu-toggle[aria-expanded="true"] .fa-xmark {
  display: inline-block;
}

.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.95rem 1.55rem;
  border: 2px solid var(--red);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 26px rgba(214, 32, 39, 0.22);
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.btn i,
.btn .svg-inline--fa {
  color: currentColor;
  font-size: 0.95em;
  line-height: 1;
}

.btn-fill {
  background: linear-gradient(90deg, var(--deep-red), var(--red));
  border-color: var(--red);
}

.section-frame {
  width: min(100% - 7rem, 1160px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 5vw, 5.6rem);
  align-items: start;
  padding: 2.1rem 0 2.8rem;
}

.hero-copy {
  position: relative;
  min-height: 690px;
  padding-top: 0.7rem;
}

.hero-logo {
  width: min(420px, 78%);
  margin: 0 0 2.2rem 3.2rem;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.lockup-fallback > span {
  display: none;
}

.lockup-fallback.is-missing > span {
  display: block;
  color: var(--bone);
  font-family: var(--display);
  text-align: center;
  text-transform: uppercase;
}

.hero-logo.is-missing > span b:first-child {
  display: block;
  font-size: clamp(7rem, 13vw, 11rem);
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.hero-logo.is-missing > span b:nth-child(2) {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(2.4rem, 4.7vw, 4.2rem);
  letter-spacing: 0.18em;
}

.hero-logo.is-missing > span em,
.footer-lockup.is-missing > span em {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--red);
  font-style: normal;
  letter-spacing: 0.58em;
}

.hero h1,
.newsletter-band h2,
.artist-panel h2,
.genre-card h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 3px 0 rgba(255,255,255,0.035), 0 18px 24px rgba(0,0,0,0.42);
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(5.8rem, 9vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 1rem 0 1.5rem;
  color: var(--bone);
  font-size: 1.05rem;
  line-height: 1.28;
}

.playlist-card {
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  margin-top: 1.8rem;
  border: 1px solid rgba(242, 237, 226, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(14, 14, 13, 0.88);
  box-shadow: 0 28px 70px rgba(0,0,0,0.55), inset 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}

.playlist-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.7rem;
  padding: 1.35rem 1.35rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.album-art {
  overflow: hidden;
  border: 1px solid rgba(214, 32, 39, 0.3);
  background: #111;
}

.album-art img {
  width: 100%;
  aspect-ratio: 1;
  padding: 1rem;
}

.album-art.is-missing > b {
  width: calc(100% - 2rem);
  aspect-ratio: 1;
  margin: 1rem;
  font-size: 3.5rem;
}

.album-art span {
  display: block;
  padding: 0.45rem;
  background: linear-gradient(90deg, var(--deep-red), var(--red), var(--deep-red));
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-align: center;
  text-transform: uppercase;
}

.playlist-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--red);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.playlist-meta h2 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 0.96;
}

.playlist-meta p:not(.eyebrow) {
  margin: 0.75rem 0 0;
  color: rgba(242, 237, 226, 0.78);
  line-height: 1.5;
}

.playlist-controls {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.55rem;
  border-bottom: 1px solid var(--line);
}

.mini-play,
.green-play {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mini-play {
  width: 34px;
  height: 34px;
  border: 2px solid var(--bone);
  background: transparent;
  color: var(--bone);
}

.green-play {
  width: 36px;
  height: 36px;
  background: #48d05f;
  color: #050505;
  box-shadow: 0 0 22px rgba(72, 208, 95, 0.35);
}

.spotify-embed-shell {
  padding: 1.15rem 1.35rem 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    rgba(0,0,0,0.28);
}

.spotify-embed {
  width: 100%;
  min-height: 380px;
  border: 1px solid rgba(242, 237, 226, 0.14);
  border-radius: 12px;
  background: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

.playlist-card .playlist-controls,
.playlist-card .tracklist {
  display: none;
}

.tracklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tracklist li {
  display: grid;
  grid-template-columns: 40px 1fr 42px;
  gap: 0.8rem;
  align-items: center;
  min-height: 50px;
  padding: 0.4rem 1.3rem;
  border-bottom: 1px solid var(--soft-line);
  color: var(--bone);
  transition: background 160ms ease;
}

.tracklist li:hover {
  background: rgba(242, 237, 226, 0.06);
}

.track-num {
  color: var(--muted);
  text-align: center;
}

.tracklist strong,
.tracklist em {
  display: block;
}

.tracklist strong {
  font-size: 0.85rem;
}

.tracklist em {
  color: rgba(242, 237, 226, 0.62);
  font-size: 0.7rem;
  font-style: normal;
}

.tracklist time {
  color: rgba(242, 237, 226, 0.82);
  font-size: 0.85rem;
  text-align: right;
}

.spotify-button {
  min-height: 40px;
  margin: 1rem 1.35rem 1.25rem;
  border: 1px solid rgba(242, 237, 226, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease;
}

.spotify-button i,
.spotify-button .svg-inline--fa {
  color: #f2ede2;
  font-size: 1.08rem;
  transition: color 160ms ease;
}

.spotify-button:hover,
.spotify-button:focus-visible {
  background: rgba(242, 237, 226, 0.08);
  border-color: rgba(242, 237, 226, 0.44);
}

.spotify-button:hover i,
.spotify-button:focus-visible i,
.spotify-button:hover .svg-inline--fa,
.spotify-button:focus-visible .svg-inline--fa {
  color: #1ed760;
}

.genres {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding-bottom: 0;
}

.genre-card {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.65rem;
  border: 1px solid rgba(242, 237, 226, 0.24);
  background-color: #101010;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.genre-card::before,
.genre-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.genre-card::before {
  background:
    radial-gradient(circle at 78% 26%, rgba(242,237,226,0.24), transparent 12rem),
    linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.26));
}

.genre-card::after {
  opacity: 0.65;
  background: repeating-linear-gradient(108deg, transparent 0 19px, rgba(255,255,255,0.04) 20px 21px, transparent 22px 42px);
  mix-blend-mode: screen;
}

.genre-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.genre-pop .genre-card-image {
  object-position: 64% center;
}

.genre-rnb .genre-card-image {
  object-position: center 40%;
}

.genre-gospel .genre-card-image {
  object-position: 68% center;
}

.genre-pop {
  background:
    radial-gradient(circle at 73% 35%, rgba(214,32,39,0.35), transparent 9rem),
    linear-gradient(135deg, rgba(129,16,21,0.82), #0a0a0a 58%);
}

.genre-rnb {
  background:
    radial-gradient(circle at 70% 28%, rgba(145,137,127,0.33), transparent 11rem),
    linear-gradient(135deg, #252321, #070707 62%);
}

.genre-gospel {
  background:
    radial-gradient(circle at 78% 20%, rgba(242,237,226,0.22), transparent 11rem),
    linear-gradient(135deg, #171717, #080808 56%, rgba(129,16,21,0.45));
}

.genre-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.13);
  border-color: rgba(214, 32, 39, 0.65);
}

.genre-card > * {
  position: relative;
  z-index: 2;
}

.genre-card > .genre-card-image {
  position: absolute;
  z-index: 0;
}

.genre-card h2 {
  font-size: clamp(3.6rem, 6vw, 5rem);
  line-height: 0.9;
  text-align: left;
}

.red-rule {
  width: 118px;
  height: 2px;
  display: block;
  margin: 0.7rem 0;
  background: var(--red);
}

.genre-card p,
.genre-card a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.genre-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.genre-card a {
  color: var(--red);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.genre-card a i,
.genre-card a .svg-inline--fa {
  font-size: 0.78em;
}

.newsletter-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(570px, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  padding: 2.65rem max(3.5rem, calc((100vw - 1160px) / 2)) 2.1rem;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(242,237,226,0.08), transparent 19rem),
    radial-gradient(circle at 48% 100%, rgba(129,16,21,0.45), transparent 18rem),
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.28), rgba(0,0,0,0.9)),
    #101010;
}

.newsletter-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    repeating-linear-gradient(84deg, transparent 0 22px, rgba(255,255,255,0.05) 23px 24px),
    radial-gradient(ellipse at 13% 100%, #111 0 34%, transparent 35%),
    radial-gradient(ellipse at 89% 100%, #111 0 28%, transparent 29%);
  background-size: auto, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
}

.newsletter-band > * {
  position: relative;
  z-index: 1;
}

.newsletter-band h2 {
  max-width: 520px;
  font-size: 4.1rem;
  line-height: 0.86;
}

.newsletter-kicker {
  margin: 0 0 1.25rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.newsletter-form p {
  max-width: 650px;
  margin: 0 0 1.45rem;
  color: rgba(242, 237, 226, 0.72);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 0.54fr) 170px;
  gap: 0.7rem;
  width: 100%;
  max-width: 650px;
}

.newsletter-form .btn {
  gap: 0.75rem;
  padding-inline: 1rem;
}

.form-row input,
.form-row select {
  display: block;
  height: 52px;
  min-height: 52px;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(242, 237, 226, 0.28);
  border-radius: 0;
  background: rgba(5,5,5,0.7);
  color: var(--bone);
  padding: 0 1rem;
  outline: 0;
}

.form-row select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bone) 50%),
    linear-gradient(135deg, var(--bone) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 50%,
    calc(100% - 0.85rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  cursor: pointer;
  font-weight: 800;
  padding-right: 2.35rem;
  color-scheme: dark;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--red);
}

.newsletter-form .newsletter-note {
  max-width: 650px;
  margin: 1rem 0 0;
  color: rgba(242, 237, 226, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

output {
  display: block;
  min-height: 1.4rem;
  margin-top: 0.65rem;
  color: var(--bone);
  font-size: 0.86rem;
}

.kit-signup-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.artist-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
  justify-items: center;
  margin-top: clamp(3rem, 6vw, 4.75rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  padding: clamp(2.75rem, 5vw, 4.35rem) clamp(1.3rem, 3.4vw, 2.4rem);
  text-align: center;
  border: 1px solid rgba(242, 237, 226, 0.25);
  background:
    linear-gradient(90deg, rgba(129,16,21,0.22), transparent 21rem),
    linear-gradient(90deg, rgba(242,237,226,0.035), rgba(5,5,5,0.76));
}

.artist-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242,237,226,0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(242,237,226,0.05) 1px, transparent 1px);
  background-size: 25% 100%, 100% 96px;
}

.artist-panel > * {
  position: relative;
  z-index: 1;
}

.artist-kicker {
  margin: 0 0 1.25rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.artist-panel h2 {
  max-width: 560px;
  margin-inline: auto;
  font-size: 5.65rem;
  line-height: 0.86;
}

.artist-details {
  width: min(100%, 860px);
  padding-top: 0;
}

.artist-lede {
  max-width: 760px;
  margin: 0 auto;
  color: var(--bone);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.42;
  text-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.artist-info-list {
  margin-top: 1.9rem;
  border-block: 1px solid rgba(242, 237, 226, 0.2);
}

.artist-info-row {
  display: grid;
  grid-template-columns: minmax(135px, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.45rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(242, 237, 226, 0.14);
}

.artist-info-row:last-child {
  border-bottom: 0;
}

.artist-info-row h3 {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.artist-info-row p {
  margin: 0;
  color: rgba(242, 237, 226, 0.72);
  font-weight: 800;
  line-height: 1.45;
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.legal-page {
  padding-bottom: 1.4rem;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  width: min(100% - 7rem, 1160px);
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 5.4rem) 0;
  border-bottom: 1px solid var(--line);
}

.legal-kicker {
  margin: 0 0 1.35rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: 7.1rem;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255,255,255,0.035), 0 18px 24px rgba(0,0,0,0.42);
}

.legal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 226, 0.18);
  background:
    linear-gradient(145deg, rgba(242,237,226,0.075), rgba(242,237,226,0.022)),
    radial-gradient(circle at 16% 12%, rgba(214,32,39,0.12), transparent 22rem),
    #080808;
  box-shadow: 0 22px 70px rgba(0,0,0,0.48);
}

.legal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  pointer-events: none;
  background:
    repeating-linear-gradient(84deg, transparent 0 22px, rgba(255,255,255,0.04) 23px 24px),
    radial-gradient(circle at 85% 20%, rgba(214,32,39,0.12), transparent 18rem);
}

.legal-panel > * {
  position: relative;
  z-index: 1;
}

.legal-intro {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.legal-intro img {
  width: min(100%, 355px);
  margin-bottom: 1.5rem;
}

.legal-intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(242, 237, 226, 0.78);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.65;
}

.legal-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.legal-dates p {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-dates span {
  color: var(--bone);
}

.legal-content {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1.5rem;
  padding: clamp(2.3rem, 5vw, 3.7rem) 0;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 108px;
  padding: 1.4rem;
}

.legal-toc nav {
  display: grid;
}

.legal-toc a {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(242, 237, 226, 0.12);
  color: rgba(242, 237, 226, 0.68);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--red);
  border-color: rgba(214, 32, 39, 0.65);
}

.legal-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-alert {
  margin: 0 0 2.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(214, 32, 39, 0.42);
  background: rgba(214, 32, 39, 0.1);
}

.legal-copy h2 {
  margin: 3rem 0 1rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(242, 237, 226, 0.14);
  color: var(--bone);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-transform: uppercase;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: rgba(242, 237, 226, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.82;
}

.legal-copy p {
  margin: 0 0 1rem;
}

.legal-copy ul {
  margin: 1rem 0 1.3rem;
  padding-left: 1.2rem;
}

.legal-copy strong {
  color: var(--bone);
}

.legal-copy a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(214, 32, 39, 0.85);
  text-underline-offset: 4px;
}

.cookie-table {
  width: 100%;
  min-width: 720px;
  margin-top: 1.5rem;
  border: 1px solid rgba(242, 237, 226, 0.14);
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(242, 237, 226, 0.12);
  color: rgba(242, 237, 226, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: rgba(214, 32, 39, 0.1);
  color: var(--bone);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1.6fr 0.95fr;
  gap: 2rem;
  width: min(100% - 7rem, 1160px);
  margin: 0 auto;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid var(--soft-line);
}

.footer-brand {
  display: flex;
  align-items: center;
  padding-right: 1.6rem;
  border-right: 1px solid var(--line);
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.footer-brand img {
  width: min(100%, 355px);
  height: auto;
  object-fit: contain;
}

.footer-icon {
  width: 92px;
}

.footer-lockup {
  width: 230px;
}

.footer-lockup.is-missing > span {
  text-align: left;
}

.footer-lockup.is-missing > span b {
  display: block;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.2em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.footer-links > div,
.socials {
  border-right: 1px solid var(--soft-line);
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 0.42rem 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.socials {
  padding-left: 1.4rem;
  border-right: 0;
}

.socials div {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 237, 226, 0.55);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1rem;
  color: var(--bone);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--soft-line);
  color: rgba(242, 237, 226, 0.72);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  color: var(--red);
}

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

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

@media (max-width: 1120px) {
  .newsletter-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .newsletter-band h2 {
    max-width: 850px;
    font-size: 4.55rem;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 80px 1fr 170px;
    padding-inline: 1.4rem;
  }

  .main-nav {
    gap: 1.4rem;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .main-nav a:not(:last-child)::after {
    right: -0.82rem;
  }

  .section-frame,
  .site-footer,
  .legal-hero {
    width: min(100% - 2rem, 760px);
  }

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

  .hero-copy {
    min-height: auto;
  }

  .hero-logo {
    margin-left: 0;
  }

  .playlist-card {
    margin-top: 0;
  }

  .genres,
  .newsletter-band,
  .artist-panel,
  .site-footer,
  .legal-hero,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    align-items: start;
  }

  .legal-toc {
    position: relative;
    top: auto;
  }

  .legal-hero h1 {
    font-size: 5.4rem;
  }

  .newsletter-band {
    padding: 2rem 1rem;
  }

  .newsletter-band h2 {
    font-size: 4.55rem;
  }

  .newsletter-form p {
    max-width: 620px;
  }

  .footer-brand,
  .footer-links > div {
    border: 0;
    padding-left: 0;
  }

  .artist-details {
    padding-top: 0;
  }

  .artist-panel h2 {
    font-size: 5.1rem;
  }

  .artist-lede {
    font-size: 1.42rem;
  }

  .legal-copy {
    overflow-x: hidden;
  }

  .cookie-table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0 0.85rem;
    table-layout: fixed;
  }

  .cookie-table tbody {
    display: grid;
    gap: 0.85rem;
    width: 100%;
  }

  .cookie-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .cookie-table tr {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid rgba(242, 237, 226, 0.16);
    background: rgba(242, 237, 226, 0.035);
  }

  .cookie-table td {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.28rem;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid rgba(242, 237, 226, 0.1);
    font-size: 0.84rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .cookie-table td:last-child {
    border-bottom: 0;
  }

  .cookie-table td::before {
    content: attr(data-label);
    color: var(--red);
    font-family: var(--display);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    line-height: 1.25;
    text-transform: uppercase;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .hero h1,
  .playlist-meta h2,
  .newsletter-band h2,
  .artist-panel h2,
  .artist-info-row h3,
  .legal-hero h1,
  .legal-copy h2,
  .site-footer h3,
  .eyebrow,
  .newsletter-kicker,
  .artist-kicker,
  .legal-kicker {
    text-align: center;
  }

  .red-rule {
    margin-inline: auto;
  }

  .genre-card .red-rule {
    margin-inline: 0;
  }

  .site-header {
    grid-template-columns: 58px 1fr 46px;
    gap: 0.65rem;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: block;
    padding: 0.85rem 1rem 1rem;
    border-bottom: 1px solid rgba(242, 237, 226, 0.18);
    background:
      linear-gradient(135deg, rgba(129,16,21,0.28), transparent 18rem),
      rgba(5, 5, 5, 0.96);
    box-shadow: 0 28px 60px rgba(0,0,0,0.52);
    backdrop-filter: blur(18px);
  }

  .mobile-menu nav {
    display: grid;
    gap: 0.55rem;
  }

  .mobile-menu a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem;
    border: 1px solid rgba(242, 237, 226, 0.18);
    background: rgba(242, 237, 226, 0.035);
    color: var(--bone);
    font-family: var(--display);
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    border-color: rgba(214, 32, 39, 0.65);
    background: rgba(214, 32, 39, 0.16);
  }

  .mobile-menu a.mobile-menu-cta {
    border-color: var(--red);
    background: linear-gradient(90deg, var(--deep-red), var(--red));
  }

  .header-cta {
    min-height: 42px;
    justify-self: end;
    padding: 0.6rem 0.8rem;
    font-size: 0.74rem;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-logo {
    width: min(320px, 84%);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-copy > .btn {
    width: 100%;
  }

  .playlist-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .album-art {
    max-width: 240px;
    margin-inline: auto;
  }

  .tracklist li {
    grid-template-columns: 28px 1fr 38px;
    padding-inline: 0.7rem;
  }

  .genre-card {
    min-height: 190px;
  }

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

  .newsletter-band h2 {
    font-size: 3.15rem;
  }

  .newsletter-kicker {
    font-size: 0.74rem;
  }

  .newsletter-form p {
    margin: 1.25rem 0;
    font-size: 1rem;
  }

  .artist-panel {
    margin-top: 2.2rem;
    margin-bottom: 2.25rem;
    padding: 1.35rem 1rem;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-hero {
    padding: 2rem 0;
  }

  .legal-hero h1 {
    font-size: 3.6rem;
  }

  .legal-intro,
  .legal-toc,
  .legal-copy {
    padding: 1.2rem;
  }

  .legal-dates {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 1.6rem 0;
  }

  .artist-kicker {
    margin-bottom: 1.1rem;
    font-size: 0.74rem;
  }

  .artist-panel h2 {
    font-size: 3.1rem;
  }

  .artist-lede {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .artist-info-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 1.15rem 0;
  }

  .artist-info-row h3 {
    font-size: 0.74rem;
  }

  .artist-actions {
    flex-direction: column;
  }

  .artist-actions .btn {
    width: 100%;
  }

  .footer-brand,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    justify-content: center;
    padding-right: 0;
  }

  .footer-links,
  .footer-links a,
  .socials,
  .footer-bottom {
    text-align: center;
  }

  .footer-links {
    gap: 1.15rem;
  }

  .footer-links > div {
    padding: 0.95rem 0 0;
    border-top: 1px solid rgba(242, 237, 226, 0.12);
  }

  .footer-links > div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .site-footer h3 {
    margin-bottom: 0.65rem;
    font-size: 0.98rem;
  }

  .footer-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.38rem 0;
    padding: 0 1rem;
    border: 1px solid rgba(242, 237, 226, 0.14);
    background: rgba(242, 237, 226, 0.035);
    font-size: 0.95rem;
    letter-spacing: 0.14em;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    border-color: rgba(214, 32, 39, 0.62);
    background: rgba(214, 32, 39, 0.14);
  }

  .socials {
    padding-left: 0;
  }

  .socials div {
    justify-content: center;
  }

  .socials a {
    width: 48px;
    height: 48px;
    font-size: 1.08rem;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.35rem;
  }
}
