:root {
  --ink: #120d09;
  --ink-soft: #1c130d;
  --paper: #f3eadc;
  --paper-bright: #fffaf2;
  --gold: #c59a58;
  --gold-light: #e5c58f;
  --copper: #8e512c;
  --cream-muted: #cfc0aa;
  --line: rgba(229, 197, 143, .24);
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { 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;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  background: var(--paper-bright);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: .4rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(18, 13, 9, .88);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-wrap {
  width: min(1240px, calc(100% - 2.5rem));
  height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: max-content;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .94rem;
  font-weight: 500;
}
.brand small {
  margin-top: .3rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: .58rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}
.primary-nav a {
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 250, 242, .78);
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--gold-light); }
.primary-nav .nav-cta {
  border: 1px solid rgba(229, 197, 143, .55);
  padding: .75rem 1rem;
  border-radius: 999px;
  color: var(--paper-bright);
}
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(13, 9, 6, .96) 0%, rgba(13, 9, 6, .84) 42%, rgba(13, 9, 6, .45) 72%, rgba(13, 9, 6, .72) 100%),
    url("assets/hero-bg.webp") center / cover no-repeat;
  display: grid;
  align-items: center;
  padding: 9rem 0 6rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 22% 30%, rgba(197, 154, 88, .12), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255,255,255,.015) 79px 80px);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18,13,9,.15), rgba(18,13,9,.35) 70%, var(--ink));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.eyebrow {
  margin: 0 0 1.15rem;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 790px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .92;
}
.hero h1 span { color: var(--gold-light); }
.hero-lede {
  max-width: 640px;
  margin: 1.8rem 0 0;
  color: rgba(255, 250, 242, .78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-light); color: var(--ink); }
.button-primary:hover { background: #f1d8ad; }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: var(--paper-bright); }
.button-ghost:hover { border-color: var(--gold-light); }
.hero-proof {
  margin-top: 2.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .35rem;
  color: rgba(255, 250, 242, .44);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.platform-text { color: rgba(255, 250, 242, .7); letter-spacing: .04em; text-transform: none; font-size: .76rem; }
.hero-art { position: relative; justify-self: end; width: min(100%, 480px); }
.record-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(197, 154, 88, .24);
  filter: blur(60px);
}
.cover-frame {
  position: relative;
  border: 1px solid rgba(229, 197, 143, .38);
  padding: .7rem;
  background: rgba(16, 10, 6, .68);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.cover-frame::after {
  content: "";
  position: absolute;
  inset: .7rem;
  box-shadow: inset 0 0 80px rgba(0,0,0,.15);
  pointer-events: none;
}
.release-chip {
  position: absolute;
  right: -1.1rem;
  bottom: -1.15rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .78rem 1rem;
  border: 1px solid var(--line);
  background: rgba(19, 13, 8, .94);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 0 rgba(229,197,143,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(229,197,143,0); } 100% { box-shadow: 0 0 0 0 rgba(229,197,143,0); } }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  color: rgba(255,250,242,.45);
  font-size: .61rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.4; }

.release-section { padding: clamp(5rem, 9vw, 9rem) 0; background: var(--ink); }
.release-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7.5rem);
  align-items: center;
}
.release-art { position: relative; }
.release-art img { box-shadow: var(--shadow); border: 1px solid rgba(229,197,143,.18); }
.art-label {
  position: absolute;
  left: -1.2rem;
  bottom: 1.6rem;
  padding: .55rem .75rem;
  background: var(--gold-light);
  color: var(--ink);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.release-copy h2, .story-copy h2, .artist-copy h2, .contact-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
}
.release-copy h2 { font-size: clamp(3.4rem, 7vw, 6rem); }
.release-quote { margin: 1rem 0 1.2rem; color: var(--gold-light); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.release-copy > p:not(.eyebrow):not(.release-quote) { max-width: 690px; color: rgba(255,250,242,.7); }
.audio-player {
  margin: 2rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.play-button {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-light);
  color: var(--ink);
  cursor: pointer;
}
.play-button svg { width: 23px; fill: currentColor; }
.pause-icon { display: none; }
.audio-player.is-playing .play-icon { display: none; }
.audio-player.is-playing .pause-icon { display: block; }
.player-main { flex: 1; min-width: 0; }
.player-meta { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .65rem; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.player-meta .time { color: rgba(255,250,242,.48); font-variant-numeric: tabular-nums; }
.progress {
  width: 100%;
  height: 3px;
  accent-color: var(--gold-light);
  cursor: pointer;
}
.stream-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stream-grid a {
  min-height: 53px;
  padding: .85rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: rgba(255,250,242,.78);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .2s ease, color .2s ease;
}
.stream-grid a:hover { background: rgba(229,197,143,.09); color: var(--gold-light); }

.story-section { padding: clamp(5rem, 9vw, 9rem) 0; background: var(--paper); color: var(--ink); }
.story-grid { display: grid; grid-template-columns: minmax(290px, .82fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.story-mark { padding: 2rem; border: 1px solid rgba(18,13,9,.12); background: rgba(255,255,255,.38); }
.story-mark img { width: 100%; height: auto; }
.story-copy .eyebrow { color: var(--copper); }
.story-copy h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.story-copy > p:not(.eyebrow) { color: rgba(18,13,9,.72); max-width: 720px; }
.values { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(18,13,9,.18); border-left: 1px solid rgba(18,13,9,.18); }
.values div { padding: 1rem; border-right: 1px solid rgba(18,13,9,.18); border-bottom: 1px solid rgba(18,13,9,.18); }
.values strong, .values span { display: block; }
.values strong { font-family: var(--serif); font-size: 1.05rem; }
.values span { margin-top: .2rem; color: rgba(18,13,9,.55); font-size: .7rem; letter-spacing: .06em; }

.artist-section { position: relative; isolation: isolate; overflow: hidden; padding: clamp(6rem, 11vw, 11rem) 0; background: #17100b; }
.artist-backdrop { position: absolute; inset: 0; z-index: -2; background: url("assets/hero-bg.webp") center / cover no-repeat; opacity: .28; filter: grayscale(.35); transform: scale(1.04); }
.artist-section::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(18,13,9,.98), rgba(18,13,9,.75) 58%, rgba(18,13,9,.5)); }
.artist-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 5rem; align-items: center; }
.artist-copy { max-width: 650px; }
.artist-copy h2 { font-size: clamp(4.4rem, 10vw, 8.5rem); color: var(--gold-light); }
.artist-tagline { margin: .8rem 0 1rem; font-family: var(--serif); font-size: 1.35rem; }
.artist-copy > p:not(.eyebrow):not(.artist-tagline) { color: rgba(255,250,242,.7); }
.artist-copy .button { margin-top: 1rem; }
.artist-monogram { justify-self: center; width: min(100%, 430px); aspect-ratio: 1; border: 1px solid rgba(229,197,143,.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: .2rem; color: var(--gold-light); font-family: var(--serif); font-size: clamp(4rem, 9vw, 8rem); box-shadow: inset 0 0 70px rgba(197,154,88,.05), 0 0 80px rgba(0,0,0,.35); }
.artist-monogram i { font-style: normal; font-size: .35em; color: rgba(255,250,242,.4); }

.contact-section { padding: clamp(4.5rem, 8vw, 8rem) 0; background: var(--paper); color: var(--ink); }
.contact-card { padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(18,13,9,.16); display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; background: rgba(255,255,255,.34); }
.contact-card .eyebrow { color: var(--copper); }
.contact-card h2 { max-width: 760px; font-size: clamp(2.2rem, 4.3vw, 4.2rem); }
.email-link { display: inline-flex; align-items: center; gap: 1rem; text-decoration: none; padding-bottom: .35rem; border-bottom: 1px solid rgba(18,13,9,.45); font-weight: 750; font-size: .9rem; }
.email-link svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s ease; }
.email-link:hover svg { transform: translateX(4px); }

.site-footer { padding: 2.2rem 0; border-top: 1px solid var(--line); background: #0e0906; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 1.6rem; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: .85rem; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.footer-brand span { color: var(--gold-light); font-size: .68rem; letter-spacing: .08em; }
.social-links { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; justify-content: flex-end; }
.social-links a { text-decoration: none; color: rgba(255,250,242,.62); font-size: .69rem; text-transform: uppercase; letter-spacing: .12em; }
.social-links a:hover { color: var(--gold-light); }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 1.3rem; border-top: 1px solid var(--line); color: rgba(255,250,242,.38); font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 920px) {
  .nav-wrap { height: 74px; }
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(18,13,9,.75);
    gap: 5px;
    align-content: center;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { height: 1px; background: var(--paper); display: block; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 1.2rem 1.25rem 1.5rem;
    background: rgba(18,13,9,.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .primary-nav .nav-cta { margin-top: .8rem; text-align: center; border-bottom: 1px solid rgba(229,197,143,.55); }
  .hero-grid, .release-grid, .story-grid, .artist-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 8.4rem; }
  .hero-art { justify-self: center; width: min(78vw, 480px); }
  .scroll-cue { display: none; }
  .release-grid, .story-grid { gap: 3rem; }
  .release-art { max-width: 620px; margin-inline: auto; }
  .story-mark { max-width: 650px; margin-inline: auto; }
  .artist-grid { gap: 3rem; }
  .artist-monogram { width: min(78vw, 410px); }
  .contact-card { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 620px) {
  .section-shell, .nav-wrap { width: min(100% - 1.35rem, 1160px); }
  .brand strong { font-size: .8rem; }
  .brand small { font-size: .5rem; }
  .hero { padding-bottom: 4.5rem; background-position: 62% center; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 4.6rem); }
  .hero-lede { font-size: .98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-art { width: 92%; margin-top: 1rem; }
  .release-chip { right: .5rem; bottom: -1rem; }
  .stream-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .audio-player { align-items: flex-start; }
  .player-meta { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-links { justify-content: flex-start; }
}

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