:root {
  color-scheme: dark;
  --ink: #f7f3ea;
  --muted: #c8c1b4;
  --paper: #101114;
  --panel: #191b20;
  --line: #3b3f49;
  --gold: #d9ad5f;
  --blue: #6fb3c6;
  --red: #a94e45;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(111, 179, 198, 0.2), transparent 24rem),
    linear-gradient(135deg, #101114 0%, #161316 48%, #221817 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(16, 17, 20, 0.82);
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

nav a,
.text-link {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  min-height: calc(100vh - 4.5rem);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(4.2rem, 13vw, 10rem);
  line-height: 0.86;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1rem;
  max-width: 13ch;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--blue);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.intro,
.section p,
.split-section p,
.contact p,
footer p {
  color: var(--muted);
  max-width: 64ch;
}

.actions,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button,
.link-list a {
  border: 1px solid rgba(247, 243, 234, 0.28);
  border-radius: 6px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120b;
}

.artist-visual {
  margin: 0;
  max-width: 26rem;
  position: relative;
}

.artist-visual img {
  aspect-ratio: 1;
  border: 1px solid rgba(247, 243, 234, 0.22);
  display: block;
  object-fit: cover;
  width: 100%;
}

.artist-visual figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.section,
.split-section,
.contact {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 6rem);
}

.section-heading,
.split-section {
  align-items: end;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.release-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.release {
  background: rgba(25, 27, 32, 0.86);
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: 6px;
  min-height: 9rem;
  padding: 1.2rem;
}

.release p {
  color: var(--blue);
  margin-bottom: 0;
}

.link-list a {
  background: rgba(25, 27, 32, 0.7);
}

.contact {
  background: rgba(169, 78, 69, 0.1);
}

footer {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 6vw, 6rem);
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .site-header,
  .section-heading,
  .split-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  h2 {
    max-width: 16ch;
  }
}
