:root {
  --ink: #090606;
  --ink-soft: #151112;
  --panel: #1d1716;
  --wine: #7c1421;
  --red: #b72a32;
  --gold: #d7b56d;
  --gold-soft: #f1db9b;
  --paper: #fff7ea;
  --muted: #c2b9aa;
  --line: rgba(255, 247, 234, 0.16);
  --shadow: rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.2;
  pointer-events: none;
}

a {
  color: inherit;
}

img,
video,
iframe {
  display: block;
}

.site-header,
.single-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 5%;
  border-bottom: 1px solid rgba(255, 247, 234, 0.12);
  background: rgba(9, 6, 6, 0.78);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  min-width: 0;
}

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

.brand-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a,
.single-back {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(255, 247, 234, 0.78);
  text-decoration: none;
  font-size: 0.94rem;
}

.site-header nav a:hover,
.single-back:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.artist-hero {
  position: relative;
  min-height: 86vh;
  padding: 132px 5% 76px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 6, 6, 0.94) 0%, rgba(9, 6, 6, 0.74) 43%, rgba(9, 6, 6, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 6, 6, 0.96) 0%, rgba(9, 6, 6, 0.28) 54%, rgba(9, 6, 6, 0.74) 100%);
}

.hero-content {
  width: min(720px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.artist-hero h1,
.single-copy h1 {
  margin: 16px 0 20px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.9rem;
  line-height: 0.92;
  text-wrap: balance;
}

.artist-hero p,
.single-copy p,
.release-copy p,
.bio-section p,
.contact-section p {
  color: rgba(255, 247, 234, 0.8);
  font-size: 1.1rem;
  line-height: 1.78;
}

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

.button {
  min-height: 48px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  border-color: rgba(241, 219, 155, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.button.primary {
  color: #160e08;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.button.ghost {
  color: var(--paper);
}

.release-section,
.video-section,
.bio-section,
.contact-section {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 92px 0;
}

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

.release-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 80px var(--shadow);
}

.release-copy h2,
.section-heading h2,
.bio-section h2,
.contact-section h2 {
  margin: 12px 0 16px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  line-height: 1;
}

.platform-grid,
.single-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.platform-link {
  min-height: 72px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.platform-link:hover {
  border-color: rgba(241, 219, 155, 0.72);
  background: rgba(255, 255, 255, 0.095);
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 247, 234, 0.08);
}

.platform-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-link strong,
.platform-link small {
  display: block;
}

.platform-link strong {
  color: var(--paper);
  font-size: 1rem;
}

.platform-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.video-section {
  width: 100%;
  max-width: none;
  padding-left: 5%;
  padding-right: 5%;
  background: #110d0d;
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 28px;
}

.video-frame {
  width: min(980px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.bio-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.contact-section {
  text-align: center;
  border-top: 1px solid var(--line);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 32px 5%;
  color: rgba(255, 247, 234, 0.56);
  border-top: 1px solid var(--line);
  text-align: center;
}

.single-page-body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #030202;
}

.single-background,
.single-background-shade {
  position: fixed;
  inset: 0;
}

.single-background {
  z-index: -3;
  overflow: hidden;
  background: #030202;
}

.single-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100vw;
  height: 100vh;
  min-height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.18);
  border: 0;
  pointer-events: none;
}

.single-background video,
.single-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-background-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 2, 2, 0.92), rgba(3, 2, 2, 0.62), rgba(3, 2, 2, 0.42)),
    linear-gradient(0deg, rgba(3, 2, 2, 0.95), rgba(3, 2, 2, 0.18) 52%, rgba(3, 2, 2, 0.84));
}

.single-header {
  color: rgba(255, 247, 234, 0.82);
}

.single-header span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.single-stage {
  min-height: 100vh;
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 120px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 48px;
  align-items: end;
}

.single-copy {
  max-width: 700px;
}

.single-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .artist-hero h1,
  .single-copy h1 {
    font-size: 4.8rem;
  }

  .release-copy h2,
  .section-heading h2,
  .bio-section h2,
  .contact-section h2 {
    font-size: 3rem;
  }

  .release-section,
  .bio-section,
  .single-stage {
    grid-template-columns: 1fr;
  }

  .single-cover {
    max-width: 360px;
  }
}

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

  .site-header nav {
    justify-content: flex-start;
  }

  .artist-hero {
    min-height: 82vh;
    padding-top: 104px;
  }

  .artist-hero h1,
  .single-copy h1 {
    font-size: 3.4rem;
  }

  .release-copy h2,
  .section-heading h2,
  .bio-section h2,
  .contact-section h2 {
    font-size: 2.35rem;
  }

  .platform-grid,
  .single-platforms {
    grid-template-columns: 1fr;
  }

  .release-section,
  .video-section,
  .bio-section,
  .contact-section {
    padding: 68px 0;
  }

  .video-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 500px) {
  .brand-mark span,
  .single-header span {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .single-stage {
    width: min(92%, 420px);
  }
}
