:root {
  --ink: #080705;
  --ink-soft: #100e0b;
  --stone: #1b1813;
  --stone-2: #29241d;
  --gold: #c89532;
  --gold-light: #f2d17e;
  --ivory: #f4ecde;
  --muted: #b5aa97;
  --line: rgba(213, 167, 73, .36);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 22% 5%, rgba(255,255,255,.035), transparent 26%),
    radial-gradient(circle at 77% 32%, rgba(255,255,255,.025), transparent 24%),
    linear-gradient(rgba(0,0,0,.74), rgba(0,0,0,.86)),
    repeating-linear-gradient(14deg, #242019 0 3px, #191611 3px 8px);
  font-family: var(--serif);
  line-height: 1.65;
  overflow-x: hidden;
}

body.intro-running { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--gold-light);
  color: #000;
  border-radius: 999px;
  font-family: var(--sans);
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.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;
}

/* Cinematic opening */
.intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: #030302;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.intro.complete {
  opacity: 0;
  visibility: hidden;
}
.intro-stone {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.06), transparent 34%),
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.82)),
    repeating-linear-gradient(13deg, #28231c 0 4px, #16130f 4px 9px);
  animation: stoneReveal 2.3s .25s ease forwards;
}
.intro-emblem {
  position: relative;
  width: min(42vw, 330px);
  border-radius: 50%;
  opacity: 0;
  filter: brightness(.72);
  transform: scale(.9);
  box-shadow: 0 0 80px rgba(206,158,61,.09);
  animation: emblemReveal 2s 1s ease forwards, emblemLift 1.2s 5.8s ease forwards;
}
.intro-lines {
  position: absolute;
  top: calc(50% + min(30vw, 220px));
  display: grid;
  gap: .2rem;
  width: min(90vw, 760px);
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: .06em;
}
.intro-lines span {
  opacity: 0;
  transform: translateY(8px);
}
.intro-lines span:nth-child(1) { animation: lineReveal .8s 2.8s ease forwards; }
.intro-lines span:nth-child(2) { animation: lineReveal .8s 3.7s ease forwards; }
.intro-lines span:nth-child(3) { animation: lineReveal .8s 4.6s ease forwards; }

@keyframes stoneReveal { to { opacity: 1; } }
@keyframes emblemReveal {
  to { opacity: 1; transform: scale(1); filter: brightness(1); }
}
@keyframes emblemLift {
  to { opacity: 0; transform: translateY(-22px) scale(.97); }
}
@keyframes lineReveal {
  to { opacity: 1; transform: none; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,6,5,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: auto;
}
.brand {
  display: block;
  padding-top: .7rem;
}
.brand img {
  display: block;
  width: min(100%, 1050px);
  margin: auto;
  mix-blend-mode: screen;
}
.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(.8rem, 3vw, 2.3rem);
  padding: .9rem 0 1rem;
  border-top: 1px solid var(--line);
}
.main-nav a {
  position: relative;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 1px;
  background: var(--gold-light);
  transition: right .22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.menu-button { display: none; }

/* Main sections */
.hero, .section {
  position: relative;
  isolation: isolate;
}
.hero {
  min-height: 84svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.stone-light {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(238,205,132,.09), transparent 27%),
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.58));
}
.hero-content {
  width: min(calc(100% - 2rem), 940px);
  padding: 5rem 0 8rem;
}
.hero-line {
  margin: .04em 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 1.04;
  letter-spacing: .015em;
  text-shadow: 0 4px 20px rgba(0,0,0,.8);
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 28px;
  height: 46px;
  transform: translateX(-50%);
  border: 1px solid rgba(242,209,126,.55);
  border-radius: 18px;
}
.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: var(--gold-light);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%,0); }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,17px); }
}

.section {
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 9vw, 9rem) 1rem;
  border-top: 1px solid rgba(205,157,61,.14);
}
.section-inner {
  width: min(calc(100% - 1rem), var(--max));
  margin: auto;
}
.release-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(300px, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.release-art img,
.about-mark img {
  display: block;
  width: min(100%, 520px);
  margin: auto;
  border-radius: 50%;
  box-shadow:
    0 30px 70px rgba(0,0,0,.58),
    0 0 45px rgba(205,157,61,.07);
}
.about-mark img {
  width: min(85%, 390px);
  opacity: .82;
}
.music-section,
.about-section {
  background: rgba(8,7,6,.55);
}
.wash-section {
  overflow: hidden;
  text-align: center;
}
.wash-glow {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(194,144,48,.09), transparent 28%),
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.48));
}
.centered {
  max-width: 840px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0 0 .4em;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .025em;
}
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(3rem, 7vw, 5.8rem); }
p { font-size: clamp(1.02rem, 1.7vw, 1.2rem); }
.lead {
  color: var(--ivory);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
}
.release-date {
  margin-top: 1.6rem;
  color: var(--gold-light);
  letter-spacing: .04em;
}
.small-note {
  color: var(--muted);
  font-size: .93rem;
  font-style: italic;
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 2rem 0 1rem;
}
.service-row span {
  padding: .58rem 1rem;
  color: var(--muted);
  border: 1px solid rgba(181,170,151,.28);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .82rem;
}
.button {
  display: inline-block;
  margin-top: 2rem;
  padding: .92rem 2.15rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-gold {
  color: #0b0906;
  background: linear-gradient(#f5d98f, #bd8424);
  box-shadow: 0 0 34px rgba(206,158,61,.15);
}
.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 0 44px rgba(206,158,61,.28);
}
.button-outline {
  color: var(--gold-light);
  border: 1px solid var(--gold);
  background: rgba(0,0,0,.18);
}
.gold-divider {
  position: relative;
  height: 44px;
  background: rgba(6,5,4,.52);
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 28px);
  height: 1px;
  background: linear-gradient(to var(--direction, right), transparent, var(--gold));
}
.gold-divider::before { left: 0; --direction: right; }
.gold-divider::after { right: 0; --direction: left; }
.gold-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translate(-50%,-50%) rotate(45deg);
  border: 1px solid var(--gold-light);
  background: #15110c;
}

/* Dialog */
.wash-dialog {
  width: min(calc(100% - 2rem), 650px);
  color: var(--ivory);
  background:
    linear-gradient(rgba(9,8,6,.94), rgba(9,8,6,.94)),
    repeating-linear-gradient(14deg, #27221b 0 3px, #17130f 3px 8px);
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 30px 100px rgba(0,0,0,.75);
}
.wash-dialog::backdrop {
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  top: .8rem;
  right: 1rem;
  color: var(--muted);
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}
.dialog-button { margin-bottom: 0; }

/* Footer */
.site-footer {
  padding: 1.4rem 1rem;
  background: #050403;
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(calc(100% - 1rem), var(--max));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-inner img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .08em;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 760px) {
  .header-shell {
    width: min(calc(100% - 1rem), var(--max));
  }
  .brand { padding: .55rem 2.8rem .45rem .2rem; }
  .menu-button {
    position: absolute;
    right: 1rem;
    top: 1.15rem;
    display: grid;
    gap: 5px;
    padding: .55rem;
    color: var(--ivory);
    border: 1px solid rgba(242,209,126,.28);
    border-radius: 10px;
    background: rgba(0,0,0,.3);
  }
  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
  }
  .main-nav {
    display: none;
    padding: 1rem 0 1.25rem;
  }
  .main-nav.open { display: flex; }
  .release-layout,
  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .release-art img { width: min(78vw, 420px); }
  .about-mark { order: 2; }
  .about-mark img { width: min(62vw, 300px); }
  .service-row { justify-content: center; }
  .footer-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  .footer-inner img { order: -1; }
  .intro-lines {
    top: calc(50% + min(34vw, 175px));
  }
}

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