:root {
  --bg:       #090909;
  --bg-2:     #101010;
  --panel:    #141414;
  --gold:     #B8962A;
  --gold-lt:  #CDA84A;
  --gold-dk:  #8A6E1E;
  --text:     #EDE9E1;
  --text-dim: #6B6760;
  --line:     rgba(255,255,255,.065);
  --line-g:   rgba(184,150,42,.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* legacy Edge/IE */
}
html::-webkit-scrollbar { display: none; } /* Chrome/Safari/Edge */

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.1;
}

/* ── Page curtain ── */
.page-curtain {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  will-change: transform;
  pointer-events: none;
}
.page-curtain::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}

.page-main { min-height: calc(100vh - 65px); }

/* ── Nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9,9,9,.88);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background .4s, border-color .4s;
}
header.nav-scrolled {
  background: rgba(9,9,9,.97);
  border-color: var(--line-g);
}

.scroll-bar {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  opacity: .7;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; max-width: 1120px; margin: 0 auto;
  transition: padding .35s;
}
header.nav-scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 60px;
  width: auto;
  transition: transform .25s;
}
.brand:hover .brand-logo { transform: scale(1.05); }
.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--gold-lt);
  transition: color .25s;
}
.brand:hover .brand-text { color: var(--gold); }
.brand:hover .brand-tagline { color: var(--text-dim); }

.navlinks a {
  margin-left: 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .25s;
  position: relative; padding-bottom: 3px;
}
.navlinks a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.navlinks a:hover { color: var(--text); }
.navlinks a:hover::after { transform: scaleX(1); }
.navlinks a.nav-active { color: var(--text); }
.navlinks a.nav-active::after { transform: scaleX(1); opacity: .5; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 51;
}
.hamburger span {
  display: block; width: 20px; height: 1px;
  background: var(--text-dim);
  transform-origin: center;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .3s, background .25s;
}
.hamburger:hover span { background: var(--text); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 680px) {
  .navlinks { display: none; }
  .hamburger { display: flex; }
}

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(9,9,9,.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; visibility: hidden;
}
.mobile-menu.is-open { pointer-events: all; visibility: visible; }
.mobile-menu-glow { display: none; }

.mobile-links { text-align: center; }
.mobile-link {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 12vw, 72px);
  letter-spacing: .04em;
  color: rgba(237,233,225,.28);
  line-height: 1.35;
  transition: color .3s;
  position: relative;
}
.mobile-link:hover,
.mobile-link.is-active { color: var(--text); }

.mobile-link.is-active::before {
  content: '';
  position: absolute; left: -20px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 1px;
  background: var(--gold);
}

.mobile-foot {
  position: absolute; bottom: 40px;
  text-align: center;
}
.mobile-brand {
  font-family: var(--serif);
  font-size: 16px; color: rgba(237,233,225,.2);
  letter-spacing: .08em;
}
.mobile-tagline {
  font-family: var(--sans); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(237,233,225,.12); margin-top: 5px;
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 94vh;
  padding-top: 24px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(184,150,42,.05), transparent 70%);
}

/* Orbs hidden in the minimal redesign */
.hero-orb, .halo-wrap { display: none; }

.hero-content { position: relative; z-index: 2; padding: 40px 24px 80px; max-width: 760px; }
.hero .kicker {
  font-family: var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 28px;
}
/* Large hero title is now commented out in favor of a smaller, more concise tagline */
/* .hero h2 {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.04;
} */
.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 300;
  color: rgba(237,233,225,.55);
  margin-top: 24px;
  max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.cta {
  display: inline-flex; gap: 14px; margin-top: 40px;
  flex-wrap: wrap; justify-content: center;
}
.btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  transition: all .25s;
  border: 1px solid;
  display: inline-block;
}
.btn-primary {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: transparent;
  color: var(--text);
}
.btn-lyric {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg);
}
.btn-lyric:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--text-dim);
}
.btn-ghost:hover {
  border-color: rgba(237,233,225,.3);
  color: var(--text);
}

/* ── Sections ── */
section { padding: 104px 0; }
.eyebrow {
  font-family: var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--text);
  text-align: center;
  letter-spacing: .01em;
  margin-bottom: 12px;
}
.lead {
  max-width: 640px; margin: 0 auto;
  text-align: center;
  color: rgba(237,233,225,.5);
  font-size: 18px;
  line-height: 1.75;
}
.divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
  opacity: .45;
}
.alt { background: var(--bg-2); }

/* ── Artists ── */
.artists {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 60px;
}
@media (max-width: 760px) { .artists { grid-template-columns: 1fr; } }

.card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color .4s;
}
.card:hover { border-color: var(--line-g); }

.card .body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 56px 28px 28px;
  background: linear-gradient(to bottom, transparent, rgba(9,9,9,.96) 48%);
}
.card h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 4px;
}
.card .role {
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
}
.card p { color: rgba(237,233,225,.5); font-size: 14px; line-height: 1.65; }

/* ── Music Release ── */
.release {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 52px; align-items: center; margin-top: 60px;
}
@media (max-width: 680px) { .release { grid-template-columns: 1fr; text-align: center; } }

.release-no-cover > div { grid-column: 2; }
@media (max-width: 680px) {
  .release-no-cover { grid-template-columns: 1fr; text-align: center; }
  .release-no-cover > div { grid-column: 1; }
}

.release img {
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px var(--line-g);
  transition: transform .5s cubic-bezier(.22,.68,0,1.1);
}
.release img:hover { transform: scale(1.02); }
.release h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  color: var(--text);
  margin-bottom: 6px;
}
.release .by {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: rgba(237,233,225,.45);
  font-size: 19px;
  margin-bottom: 18px;
}
.release p { color: rgba(237,233,225,.48); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }

/* ── What We Do ── */
.grid4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 60px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 820px) { .grid4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .grid4 { grid-template-columns: 1fr; } }

.pill {
  text-align: center; padding: 40px 20px;
  background: var(--panel);
  transition: background .3s;
}
.pill:hover { background: var(--bg-2); }

.pill-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.pill-link:hover { border-color: var(--line-g); }
.pill-link:hover .pill-arrow { opacity: 1; transform: translate(1px, -1px); }

.pill-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  color: var(--gold);
  opacity: 0;
  transform: translate(0, 0);
  transition: opacity .2s, transform .2s;
}
.pill .mk {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 300;
  opacity: .7;
}
.pill h4 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.pill p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ── Hero duo shot ── */
.hero-duo {
  margin-top: 60px;
  display: flex; justify-content: center;
}
.hero-duo img {
  width: clamp(220px, 48vw, 460px);
  box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px var(--line);
  border-radius: 20px;
}

/* ── Artist card photo switcher ── */
.card-photos {
  position: absolute; inset: 0;
  cursor: pointer;
}
.card-photos .photo {
  position: absolute; inset: 0;
  background: var(--bg); background-size: cover; background-position: center top;
  opacity: 0;
}
.card-photos .photo.active { opacity: 1; }
.card-photos .photo.placeholder { display: flex; align-items: center; justify-content: center; }
.card-photos .photo.placeholder span {
  font-family: var(--serif); font-size: 64px;
  color: rgba(237,233,225,.15); z-index: 1;
}

.photo-dots {
  display: flex; gap: 6px;
  margin-bottom: 14px;
}
.dot {
  width: 6px; height: 1px;
  border: none;
  background: rgba(237,233,225,.25);
  cursor: pointer; padding: 0;
  transition: background .2s, width .25s cubic-bezier(.4,0,.2,1);
}
.dot.active { background: var(--gold); width: 18px; }

.thumb-strip {
  display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap;
}
.thumb {
  width: 44px; height: 44px;
  background-size: cover; background-position: center top;
  border: 1px solid rgba(237,233,225,.12);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: border-color .2s, opacity .2s;
  opacity: .5;
}
.thumb:hover { border-color: var(--line-g); opacity: .8; }
.thumb.active { border-color: var(--gold); opacity: 1; }

/* ── Contact ── */
.contact { text-align: center; }
.contact a.email {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--text);
  border-bottom: 1px solid var(--line-g);
  padding-bottom: 4px;
  transition: color .25s, border-color .25s;
  display: inline-block;
}
.contact a.email:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ── CTA alignment utility ── */
.cta-left { justify-content: flex-start; margin-top: 0; }
.cta-lyric { margin-bottom: 20px; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  text-align: center;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .05em;
}
.footer-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.footer-link:hover {
  color: var(--gold-lt);
  border-color: var(--line-g);
}

footer .brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  color: rgba(237,233,225,.4);
  margin-bottom: 10px;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════
   ERROR PAGES
══════════════════════════════════════════ */
.error-scene {
  position: relative;
  min-height: calc(100vh - 65px);
  min-height: calc(100svh - 65px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 60px 20px;
}
.error-scene::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,150,42,.04), transparent 65%);
}
.error-halo { display: none; }
.error-content { position: relative; z-index: 2; max-width: 600px; }

.error-code {
  font-family: var(--serif);
  font-size: clamp(88px, 18vw, 160px);
  font-weight: 300;
  color: transparent;
  line-height: 1;
  letter-spacing: .04em;
  -webkit-text-stroke: 1px rgba(237,233,225,.12);
  margin-bottom: 10px;
  user-select: none;
}
.error-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 5vw, 42px);
  color: var(--text);
  letter-spacing: .02em;
  margin: 14px 0 20px;
  line-height: 1.2;
}
.error-message {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(237,233,225,.45);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet ≤ 900px ── */
@media (max-width: 900px) {
  .release { grid-template-columns: 200px 1fr; gap: 36px; }
}

/* ── Mobile ≤ 680px ── */
@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  section { padding: 72px 0; }

  .nav-inner { padding: 14px 20px; }

  .hero {
    min-height: 100svh;
    min-height: 100vh;
    align-items: center;
  }
  .hero-content { padding: 60px 16px 60px; }

  .cta { margin-top: 28px; gap: 10px; }
  .btn { padding: 13px 24px; font-size: 10px; }

  .hero-duo { margin-top: 40px; }

  .artists { gap: 16px; margin-top: 44px; }
  .card { aspect-ratio: 3 / 4; }
  .card .body { padding: 48px 22px 22px; }
  .card h3 { font-size: 30px; }

  .release { margin-top: 44px; gap: 28px; }
  .release h3 { font-size: 34px; }
  .release .by { font-size: 17px; }
  .cta-left { justify-content: center; }

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

  footer { padding: 32px 20px; }

  .error-scene { padding: 40px 16px; }
}

/* ── Small phones ≤ 420px ── */
@media (max-width: 420px) {
  .nav-inner { padding: 12px 16px; }
  .brand { font-size: 19px; }
  .grid4 { grid-template-columns: 1fr; }
  .pill h4 { font-size: 18px; }
  .card { aspect-ratio: 4 / 5; }
  .card h3 { font-size: 24px; }
  .release h3 { font-size: 30px; }
}
