:root {
  --bg: #090706;
  --panel: #12100f;
  --text: #f3eadf;
  --muted: #b9a995;
  --gold: #d8ab74;
  --line: rgba(216, 171, 116, .22);
  --shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(126, 75, 36, .18), transparent 28%),
    linear-gradient(180deg, #0b0807 0%, #090706 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
img, picture { max-width: 100%; display: block; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: #140e09;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(9, 7, 6, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .18em;
  font-size: 1.35rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover { color: var(--text); }

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0 90px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .76rem;
  margin: 0 0 18px;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 9vw, 8rem);
  letter-spacing: .08em;
  line-height: .9;
}

.hero-copy {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  color: #e7dacd;
}

.hero-sub {
  margin: 14px 0 0;
  color: var(--muted);
  letter-spacing: .08em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  padding: 14px 20px;
  border: 1px solid var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn.primary {
  background: var(--gold);
  color: #140e09;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(216, 171, 116, .18);
}

.hero-art { position: relative; }

.hero-art picture {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--line);
  z-index: -1;
}

.hero-art img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

section {
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); }

.section-head > p {
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.release {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 18px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  scroll-margin-top: 92px;
}

.release:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.release.featured {
  border-color: rgba(216, 171, 116, .42);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.release picture {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #080605;
}

.release img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #080605;
}

.release-meta { padding: 20px 4px 4px; }

.release-meta h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.release-status {
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}

.release-meta p {
  color: var(--muted);
  margin: 12px 0 0;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.mini-link {
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: #ead9c6;
  font-size: .82rem;
  padding: 0 0 2px;
}

.mini-link.is-disabled {
  color: #8f806f;
  border-color: rgba(216, 171, 116, .25);
  cursor: default;
}

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.about h2 { font-size: clamp(2.2rem, 5vw, 4rem); }

.about p {
  color: #ddcfbf;
  font-size: 1.08rem;
  margin-top: 0;
}

.quote {
  margin: 36px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.social {
  padding: 18px 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .08);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  color: var(--muted);
  transition: border-color .25s ease, color .25s ease;
}

a.social:hover {
  border-color: var(--gold);
  color: var(--text);
}

.social[aria-disabled="true"] {
  color: #8f806f;
  cursor: default;
}

footer {
  padding: 42px 0 60px;
  color: #8f806f;
  font-size: .82rem;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p { margin: 0; }

.share-link {
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(216, 171, 116, .42);
  background: transparent;
  color: #a99782;
  cursor: pointer;
}

.share-link:hover { color: var(--text); }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 70px 0;
}

@media (max-width: 800px) {
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  .hero-art { order: -1; }
  .hero-art img { aspect-ratio: 4 / 5; }

  .music-grid, .about { grid-template-columns: 1fr; }
  .links { grid-template-columns: repeat(2, 1fr); }
  section { padding: 74px 0; }
}

@media (max-width: 480px) {
  .wrap { width: min(100% - 32px, 1160px); }
  .hero { gap: 44px; }
  .release { padding: 14px; }
  .release-meta h3 { font-size: 1.32rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
