:root {
  color-scheme: dark;
  --ink: #080706;
  --ink-soft: #100e0c;
  --panel: #15120f;
  --panel-2: #1c1712;
  --gold: #d69b3e;
  --gold-light: #f1c878;
  --gold-pale: #ffe8b1;
  --copper: #9a4d26;
  --ivory: #f5efe3;
  --muted: #aaa093;
  --line: rgba(235, 183, 93, .2);
  --shadow: 0 28px 80px rgba(0, 0, 0, .46);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
section[id], main[id] { scroll-margin-top: 6rem; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 72% 12%, rgba(159, 76, 26, .1), transparent 25rem),
    linear-gradient(180deg, #090807 0%, #0d0b09 48%, #080706 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: '';
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }
em { color: var(--gold-light); font-weight: 400; }

.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;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  background: var(--gold);
  color: #090705;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 2px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--gold-pale));
  box-shadow: 0 0 14px var(--gold);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 24rem;
  height: 24rem;
  pointer-events: none;
  border-radius: 50%;
  opacity: .15;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(224, 150, 48, .44), transparent 68%);
  will-change: transform;
}

.embers { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ember {
  position: absolute;
  bottom: -1rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 9px var(--gold);
  opacity: 0;
  animation: rise var(--duration) linear var(--delay) infinite;
}
@keyframes rise {
  0% { transform: translate3d(0, 0, 0) scale(.5); opacity: 0; }
  12% { opacity: .55; }
  70% { opacity: .15; }
  100% { transform: translate3d(var(--drift), -105vh, 0) scale(1.4); opacity: 0; }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.3rem;
  padding: 0 clamp(1.2rem, 4vw, 5rem);
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  height: 4.8rem;
  border-color: var(--line);
  background: rgba(9, 8, 7, .86);
  backdrop-filter: blur(18px);
}
.brand { position: relative; z-index: 2; width: 10.5rem; }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 4px 12px #000); }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.3vw, 2.8rem); }
.site-nav a {
  position: relative;
  color: #d8cfc2;
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  bottom: -.55rem;
  left: 0;
  width: 0;
  height: 1px;
  content: '';
  background: var(--gold);
  transition: width .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .82fr);
  align-items: center;
  gap: 4vw;
  min-height: 100svh;
  padding: 8.5rem clamp(1.3rem, 7vw, 8.5rem) 6.5rem;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .97) 0%, rgba(8, 7, 6, .76) 48%, rgba(8, 7, 6, .36) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, .25), #080706 98%),
    url('assets/band.webp') 72% center / cover no-repeat;
  filter: saturate(.75) contrast(1.08);
}
.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: '';
  background: radial-gradient(circle at 78% 45%, rgba(215, 138, 41, .16), transparent 27rem);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.2rem;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 2.4rem; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .music-copy h2, .band-overlay h2, .epopeya-intro h2, .closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .94;
}
.hero h1 { font-size: clamp(3.5rem, 6.6vw, 7.5rem); }
.hero h1 em { display: inline-block; margin-left: .55em; font-size: .67em; font-style: italic; }
.hero-intro { max-width: 39rem; margin: 2rem 0 0; color: #c6bbb0; font-size: clamp(1rem, 1.3vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  min-height: 3.45rem;
  padding: .75rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .065em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { border-color: var(--gold); background: var(--gold); color: #0b0805; }
.button-primary:hover, .button-primary:focus-visible { background: var(--gold-light); border-color: var(--gold-light); }
.button-ghost { background: rgba(8, 7, 6, .42); color: var(--ivory); backdrop-filter: blur(10px); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--gold); color: var(--gold-light); }
.play-dot { display: grid; place-items: center; width: 1.8rem; height: 1.8rem; border: 1px solid currentColor; border-radius: 50%; font-size: .62rem; }

.hero-art { position: relative; justify-self: center; width: min(35vw, 33rem); min-width: 21rem; }
.hero-album {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.hero-art:hover .hero-album { transform: rotate(0) translateY(-.55rem); }
.album-orbit {
  position: absolute;
  inset: -9%;
  z-index: 0;
  border: 1px solid rgba(233, 180, 84, .18);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.album-orbit::before, .album-orbit::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
}
.album-orbit::before { top: 9%; left: 12%; width: 6px; height: 6px; }
.album-orbit::after { right: 5%; bottom: 23%; width: 3px; height: 3px; }
@keyframes orbit { to { transform: rotate(360deg); } }
.release-badge {
  position: absolute;
  right: -2.5rem;
  bottom: -1.7rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(13, 11, 9, .9);
  box-shadow: 0 12px 35px #0009;
  backdrop-filter: blur(12px);
}
.release-badge span { color: var(--muted); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.release-badge strong { color: var(--gold-pale); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.scroll-cue {
  position: absolute;
  bottom: 1.7rem;
  left: clamp(1.3rem, 7vw, 8.5rem);
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue span { display: block; width: 2.7rem; height: 1px; background: var(--gold); }

.latest-strip { position: relative; z-index: 2; overflow: hidden; border-block: 1px solid var(--line); background: #0d0a07; }
.latest-marquee { display: flex; width: max-content; color: var(--gold-pale); font-family: var(--serif); font-size: .92rem; letter-spacing: .17em; white-space: nowrap; }
.latest-marquee span { padding: .75rem 1.5rem; animation: marquee 27s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }

.section { position: relative; z-index: 1; padding: clamp(6rem, 10vw, 10rem) clamp(1.3rem, 7vw, 8.5rem); }
.section-heading { display: grid; grid-template-columns: minmax(14rem, .7fr) 1.3fr; gap: 5vw; max-width: 84rem; margin: 0 auto 4rem; }
.section-heading > .eyebrow { align-self: start; margin-top: .8rem; }
.section-heading h2 { font-size: clamp(3.4rem, 7.3vw, 7.2rem); }
.section-heading > div > p { max-width: 39rem; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.08rem; }

.saga-section { overflow: hidden; }
.saga-section::before { position: absolute; inset: 12% auto auto -15%; z-index: -1; width: 40rem; height: 40rem; content: ''; border-radius: 50%; background: rgba(130, 53, 20, .08); filter: blur(80px); }
.album-explorer { max-width: 91rem; margin: 0 auto; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(29, 23, 17, .85), rgba(11, 9, 7, .94)); box-shadow: var(--shadow); }
.chapter-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.chapter-tab {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 4.7rem;
  padding: .85rem 1.2rem;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  text-align: left;
  transition: background .25s, color .25s;
}
.chapter-tab:last-child { border-right: 0; }
.chapter-tab span { color: var(--gold); font-family: var(--serif); font-size: 1.8rem; flex-shrink: 0; min-width: 2.2rem; }
.chapter-tab b { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.chapter-tab:hover, .chapter-tab:focus-visible { color: var(--ivory); background: rgba(215, 159, 68, .055); }
.chapter-tab.is-active { color: #100c07; background: var(--gold); }
.chapter-tab.is-active span { color: #3b1d0a; }
.album-stage { display: grid; grid-template-columns: minmax(18rem, .78fr) 1.22fr; min-height: 45rem; }
.album-visual { position: relative; display: grid; place-items: center; min-height: 100%; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; border-right: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(213, 144, 48, .15), transparent 54%); }
.album-visual img { position: relative; z-index: 2; width: min(100%, 31rem); height: auto; aspect-ratio: 1; object-fit: contain; box-shadow: 0 28px 60px #000b; transition: opacity .2s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.album-visual.is-changing img { opacity: 0; transform: scale(.96) rotate(-2deg); }
.album-halo { position: absolute; width: 29rem; height: 29rem; border: 1px solid rgba(235, 183, 93, .15); border-radius: 50%; box-shadow: 0 0 90px rgba(203, 112, 32, .12); }
.album-halo::before, .album-halo::after { position: absolute; inset: 9%; content: ''; border: 1px solid rgba(235, 183, 93, .09); border-radius: 50%; }
.album-halo::after { inset: 22%; }
.album-index { position: absolute; bottom: 1.4rem; left: 1.7rem; margin: 0; color: var(--muted); font-size: .72rem; letter-spacing: .18em; }
.album-placeholder { position: relative; z-index: 2; display: grid; place-items: center; width: min(100%, 31rem); aspect-ratio: 1; padding: 2rem; border: 1px solid rgba(240, 195, 112, .33); background: radial-gradient(circle at center, #6c2c13 0, #23110a 35%, #080706 72%); box-shadow: var(--shadow); text-align: center; }
.album-placeholder::before { position: absolute; inset: 10%; content: ''; border: 1px solid rgba(240, 195, 112, .28); transform: rotate(45deg); }
.album-placeholder small { align-self: end; color: var(--muted); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.album-placeholder strong { color: var(--gold-pale); font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 400; letter-spacing: .07em; line-height: 1; }
.album-placeholder span { align-self: start; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .25em; }
.album-info { padding: clamp(2rem, 4.6vw, 5rem); }
.album-kicker { margin: 0; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.album-info h3 { margin: .55rem 0 1rem; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 400; line-height: 1; }
.album-description { max-width: 47rem; min-height: 5.2rem; margin: 0; color: #b8aea2; font-size: 1.02rem; }
.album-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }
.album-tags span { padding: .25rem .66rem; border: 1px solid var(--line); color: var(--gold-pale); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.track-heading { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.4rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.track-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.4rem; margin: .6rem 0 0; padding: 0; list-style: none; counter-reset: track; }
.track-list li { counter-increment: track; }
.track-button { display: grid; grid-template-columns: 2rem 1fr auto; align-items: center; gap: .65rem; width: 100%; min-height: 2.6rem; padding: .35rem 0; border: 0; border-bottom: 1px solid rgba(235, 183, 93, .09); cursor: pointer; background: transparent; color: #d9d0c5; text-align: left; transition: color .2s, padding-left .2s; }
.track-button::before { content: counter(track, decimal-leading-zero); color: #796e61; font-size: .67rem; letter-spacing: .08em; }
.track-button::after { content: '◆'; color: transparent; font-size: .55rem; transition: color .2s; }
.track-button:hover, .track-button:focus-visible, .track-button.is-selected { padding-left: .35rem; color: var(--gold-light); }
.track-button.is-selected::after { color: var(--gold); }

.music-section { padding-top: 3rem; }
.music-card { display: grid; grid-template-columns: minmax(18rem, .88fr) 1.12fr; max-width: 81rem; margin: 0 auto; background: linear-gradient(135deg, #1b150f, #0d0a08); box-shadow: var(--shadow); }
.music-image-wrap { position: relative; min-height: 0; aspect-ratio: 1; align-self: center; overflow: hidden; }
.music-image-wrap > img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.music-card:hover .music-image-wrap > img { transform: scale(1.035); }
.music-image-wrap::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 58%, rgba(4, 3, 2, .74)); }
.video-play { position: absolute; top: 50%; left: 50%; z-index: 3; display: grid; place-items: center; width: 6rem; height: 6rem; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; cursor: pointer; transform: translate(-50%, -50%); background: rgba(9,7,5,.44); color: white; backdrop-filter: blur(7px); transition: transform .25s, background .25s; }
.video-play span { margin-left: .25rem; font-size: 1.35rem; }
.video-play:hover, .video-play:focus-visible { transform: translate(-50%, -50%) scale(1.09); background: var(--gold); color: #090705; }
.sound-lines { position: absolute; right: 1.4rem; bottom: 1.4rem; z-index: 3; display: flex; align-items: end; gap: 4px; height: 2.5rem; }
.sound-lines i { display: block; width: 2px; height: var(--h, 50%); transform-origin: bottom; background: var(--gold-light); animation: equalize .9s ease-in-out infinite alternate; }
.sound-lines i:nth-child(2n) { --h: 90%; animation-delay: -.3s; }
.sound-lines i:nth-child(3n) { --h: 35%; animation-delay: -.6s; }
@keyframes equalize { to { transform: scaleY(.2); } }
.music-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(2.5rem, 6vw, 6rem); }
.music-copy h2 { font-size: clamp(3.2rem, 6vw, 6.3rem); }
.music-copy > p:not(.eyebrow) { max-width: 38rem; color: var(--muted); font-size: 1.08rem; }
.music-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 1.1rem 0 2rem; color: var(--gold-pale); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.music-meta span { position: relative; }
.music-meta span:not(:last-child)::after { position: absolute; right: -.8rem; content: '·'; color: var(--gold); }

.band-section { padding-inline: 0; overflow: hidden; }
.band-hero { position: relative; min-height: min(71vw, 48rem); }
.band-hero > img { width: 100%; height: min(71vw, 48rem); object-fit: cover; filter: saturate(.8) contrast(1.06); }
.band-hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(8,7,6,.92), rgba(8,7,6,.12) 70%), linear-gradient(0deg, #080706 0, transparent 35%); }
.band-overlay { position: absolute; z-index: 2; top: 50%; left: clamp(1.3rem, 7vw, 8.5rem); width: min(36rem, 76vw); transform: translateY(-50%); }
.band-overlay h2 { font-size: clamp(4rem, 8vw, 8rem); }
.band-overlay p:not(.eyebrow) { max-width: 30rem; color: #c0b5aa; font-size: 1.08rem; }
.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 95rem; margin: -6rem auto 0; padding: 0 clamp(1.3rem, 4vw, 4rem); }
.member-card { position: relative; z-index: 3; min-height: 31rem; padding: 0; overflow: hidden; border: 1px solid rgba(229, 171, 73, .11); cursor: pointer; background: #100d0a; color: var(--ivory); text-align: left; }
.member-card::after { position: absolute; inset: 35% 0 0; content: ''; background: linear-gradient(transparent, rgba(5,4,3,.94)); }
.member-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.65) brightness(.74); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s; }
.member-card:hover img, .member-card:focus-visible img { transform: scale(1.045); filter: saturate(.92) brightness(.9); }
.member-card strong, .member-card .member-role, .member-card i { position: absolute; z-index: 2; }
.member-card strong { bottom: 1.6rem; left: 1.5rem; font-family: var(--serif); font-size: 2.35rem; font-weight: 400; }
.member-role { bottom: 5rem; left: 1.5rem; color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.member-card i { right: 1.5rem; bottom: 1.7rem; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--gold-light); font-size: 1.4rem; font-style: normal; transition: transform .3s, background .3s; }
.member-card:hover i, .member-card:focus-visible i { transform: rotate(90deg); background: var(--gold); color: #090705; }

.epopeya-section { display: grid; grid-template-columns: minmax(19rem, .8fr) 1.2fr; gap: clamp(3rem, 8vw, 9rem); max-width: 100rem; margin: 0 auto; }
.epopeya-intro { position: sticky; top: 8.5rem; align-self: start; }
.epopeya-intro h2 { font-size: clamp(3.7rem, 7vw, 7rem); }
.epopeya-intro h2 em { display: block; font-size: .73em; font-style: italic; }
.epopeya-intro > p:not(.eyebrow) { max-width: 35rem; color: var(--muted); font-size: 1.08rem; }
.epopeya-path { position: relative; }
.epopeya-path::before { position: absolute; top: 2.2rem; bottom: 2.2rem; left: 2.15rem; width: 1px; content: ''; background: linear-gradient(var(--gold), rgba(214,155,62,.06)); }
.epopeya-track { position: relative; display: grid; grid-template-columns: 4.35rem 1fr; align-items: center; min-height: 7.6rem; border-bottom: 1px solid var(--line); transition: padding-left .3s, background .3s; }
.epopeya-track:hover { padding-left: .9rem; background: linear-gradient(90deg, rgba(214,155,62,.055), transparent); }
.epopeya-track > span { position: relative; z-index: 1; display: grid; place-items: center; width: 4.35rem; height: 4.35rem; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; }
.epopeya-track small { color: var(--muted); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.epopeya-track h3 { margin: .1rem 0 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.4rem); font-weight: 400; }

.closing { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; min-height: 53rem; padding: 8rem 1.3rem; overflow: hidden; text-align: center; }
.closing::before { position: absolute; inset: 0; z-index: -2; content: ''; background: linear-gradient(180deg, #080706, rgba(8,7,6,.72), #080706), url('assets/hero.jpg') center / cover no-repeat; opacity: .82; }
.closing-glow { position: absolute; top: 34%; left: 50%; z-index: -1; width: 34rem; height: 34rem; border-radius: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(225,151,49,.18), transparent 67%); filter: blur(22px); }
.closing > img { width: min(19rem, 60vw); margin: 0 auto 1rem; filter: drop-shadow(0 0 28px rgba(218,141,42,.2)); }
.closing .eyebrow { justify-content: center; }
.closing h2 { max-width: 75rem; font-size: clamp(3.3rem, 7vw, 7rem); }
.closing h2 em { font-style: italic; }
.contact-link { margin-top: 3rem; color: var(--gold-pale); font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2rem); text-decoration: none; border-bottom: 1px solid var(--gold); }
.contact-link:hover, .contact-link:focus-visible { color: white; }
.project-note { max-width: 47rem; margin-top: 3.5rem; color: #8f857a; font-size: .83rem; }
.site-footer { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(1.3rem, 5vw, 5rem); border-top: 1px solid var(--line); color: #8f857a; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--gold-light); text-decoration: none; }

dialog { color: var(--ivory); }
dialog::backdrop { background: rgba(3, 2, 1, .86); backdrop-filter: blur(8px); }
.member-dialog, .video-dialog { width: min(74rem, calc(100vw - 2rem)); max-height: calc(100svh - 2rem); padding: 0; overflow: auto; border: 1px solid var(--line); background: #0e0b08; box-shadow: 0 35px 100px #000; }
.member-dialog[open] { display: grid; grid-template-columns: minmax(18rem, .75fr) 1.25fr; }
.member-dialog-image { min-height: 39rem; }
.member-dialog-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 6rem); }
.member-dialog-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; line-height: 1; }
.member-dialog-copy h3 { margin: .8rem 0 2rem; color: var(--gold-light); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.member-dialog-copy blockquote { margin: 0 0 1.5rem; padding-left: 1.2rem; border-left: 1px solid var(--gold); color: #ddd1c2; font-family: var(--serif); font-size: 1.45rem; font-style: italic; }
.member-dialog-copy > p:last-child { color: var(--muted); }
.dialog-close { position: absolute; top: .8rem; right: .8rem; z-index: 6; display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; background: rgba(8,7,6,.72); color: white; font-size: 1.6rem; line-height: 1; }
.dialog-close:hover, .dialog-close:focus-visible { background: var(--gold); color: #090705; }
.video-dialog { overflow: visible; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-caption { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.3rem; }
.video-caption span { color: var(--gold-light); font-size: .7rem; letter-spacing: .16em; }
.video-caption strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }

.reveal { opacity: 1; transform: none; transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--delay, 0) * 60ms); }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(12px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }

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

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr .72fr; padding-inline: 2.5rem; }
  .hero-art { width: min(38vw, 27rem); min-width: 17rem; }
  .release-badge { right: -1rem; }
  .album-stage { grid-template-columns: .85fr 1.15fr; }
  .track-list { grid-template-columns: 1fr; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .epopeya-section { gap: 3rem; }
}

@media (max-width: 760px) {
  .cursor-glow { display: none; }
  .site-header { height: 4.8rem; padding-inline: 1.1rem; background: rgba(9,8,7,.88); backdrop-filter: blur(14px); }
  .brand { width: 7.8rem; }
  .menu-toggle { position: relative; z-index: 102; display: grid; gap: 5px; width: 2.7rem; padding: .65rem; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; background: var(--gold-light); transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem; padding: 6rem 2rem; transform: translateX(100%); background: rgba(8,7,6,.97); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .hero { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 3.5rem; min-height: auto; padding: 8.5rem 1.25rem 7.5rem; }
  .hero-backdrop { background: linear-gradient(180deg, rgba(8,7,6,.76), rgba(8,7,6,.93) 65%, #080706), url('assets/band.webp') center top / auto 55% no-repeat; }
.hero h1 { font-size: clamp(2.8rem, 12vw, 6rem); }
  .hero h1 em { margin-left: .28em; }
  .hero-art { align-self: center; width: min(78vw, 26rem); min-width: 0; }
  .release-badge { right: -.6rem; bottom: -2.2rem; }
  .scroll-cue { left: 1.25rem; }
  .section { padding: 6.2rem 1.25rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.3rem; }
  .section-heading h2 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  .chapter-tabs { grid-template-columns: minmax(0, 1fr); }
  .chapter-tab { border-right: 0; }
  .chapter-tab:not(:last-child) { border-bottom: 1px solid var(--line); }
  .album-stage { grid-template-columns: 1fr; }
  .album-visual { min-height: 27rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .album-info { padding: 2rem 1.25rem 2.7rem; }
  .album-description { min-height: 0; }
  .music-card { grid-template-columns: 1fr; }
  .music-image-wrap { min-height: 0; aspect-ratio: 1; }
  .music-copy { padding: 2.5rem 1.5rem 3rem; }
  .music-copy h2 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .band-hero, .band-hero > img { min-height: 35rem; height: 35rem; }
  .band-hero > img { object-position: 58% center; }
  .member-grid { grid-template-columns: 1fr 1fr; margin-top: -2rem; padding-inline: 1.25rem; }
  .member-card { min-height: 24rem; }
  .member-card strong { left: 1rem; bottom: 1rem; font-size: 1.65rem; }
  .member-role { left: 1rem; bottom: 3.8rem; }
  .member-card i { right: 1rem; bottom: 1rem; }
  .epopeya-section { display: block; }
  .epopeya-intro { position: static; margin-bottom: 3rem; }
  .epopeya-intro h2 { font-size: clamp(3.3rem, 15vw, 5.2rem); }
  .epopeya-track { grid-template-columns: 3.6rem 1fr; min-height: 6.5rem; }
  .epopeya-path::before { left: 1.75rem; }
  .epopeya-track > span { width: 3.6rem; height: 3.6rem; }
  .closing { min-height: 48rem; padding: 7rem 1.25rem; }
  .site-footer { flex-direction: column; align-items: center; text-align: center; }
  .member-dialog[open] { display: block; }
  .member-dialog-image { height: 48svh; min-height: 20rem; }
  .member-dialog-copy { padding: 2.2rem 1.4rem 3rem; }
  .video-caption { flex-direction: column; gap: .2rem; }
}

@media (max-width: 480px) {
  .hero-actions .button { width: 100%; }
  .chapter-tab { min-height: 4.3rem; padding-inline: .8rem; }
  .chapter-tab span { font-size: 1.45rem; }
  .chapter-tab b { font-size: .63rem; }
  .member-grid { grid-template-columns: 1fr; }
  .member-card { min-height: 30rem; }
  .track-heading span:last-child { display: none; }
}

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

/* Completion of the existing catalogue, reading views and keyboard navigation. */
body.overlay-open { overflow: hidden; }
.hero-copy, .album-info, .music-copy, .epopeya-intro, .song-intro { min-width: 0; }
h1, h2, h3 { overflow-wrap: break-word; }
.site-nav a, .chapter-tab b, .eyebrow, .album-kicker, .track-heading,
.member-role, .motion-toggle, .cover-actions button, .portrait-actions button { font-size: .875rem; }
.release-badge span, .album-tags span, .music-meta, .epopeya-track small,
.album-placeholder small, .album-placeholder span, .scroll-cue, .site-footer,
.track-button::before { font-size: .8125rem; }
.chapter-tab b { font-size: 1rem; letter-spacing: .02em; text-transform: none; line-height: 1.45; }
.eyebrow { letter-spacing: .1em; }
#dialog-favorites a { color: var(--gold-light); text-underline-offset: .2em; text-decoration-thickness: 1px; }
#dialog-favorites a:hover { color: var(--gold-pale); }
.text-link { display: inline-block; margin-top: 1.3rem; color: var(--gold-light); text-underline-offset: .35em; }
.text-link:hover { color: var(--gold-pale); }
.text-button, .motion-toggle { border: 0; background: transparent; color: var(--gold-light); font: inherit; cursor: pointer; padding: .2rem 0; text-align: left; }
.text-button:hover, .motion-toggle:hover { color: var(--ivory); }
.reading-details { margin-top: 1.5rem; border-top: 1px solid var(--line); }
summary { cursor: pointer; color: var(--gold-light); padding: 1rem 0; font-size: 1rem; }
summary:hover { color: var(--gold-pale); }
.prose p { margin: 0 0 1.15rem; white-space: pre-line; overflow-wrap: anywhere; }
.prose { color: #c8beb1; line-height: 1.8; font-size: 1rem; }
.album-visual { align-content: center; gap: 1.6rem; min-width: 0; }
.album-index { bottom: .7rem; }
.cover-actions, .portrait-actions { position: relative; z-index: 3; display: flex; gap: .3rem; justify-content: center; }
.cover-actions button, .portrait-actions button { min-height: 2.75rem; padding: .45rem 1rem; color: var(--muted); border: 1px solid var(--line); background: #0d0a08; cursor: pointer; font: inherit; }
.cover-actions button[aria-pressed="true"], .portrait-actions button[aria-pressed="true"] { color: var(--gold-pale); border-color: var(--gold); }
.track-list { grid-template-columns: 1fr; }
.track-button { min-height: 3.1rem; text-decoration: none; }
.track-button > span { min-width: 0; }
.song-link::after { content: '↗'; color: var(--gold); font-size: 1rem; }
.track-unreleased { cursor: default; color: #a89e91; }
.track-unreleased small { color: #a89e91; font-size: .875rem; }
.track-unreleased::after { display: none; }
.track-unreleased:hover { padding-left: 0; color: #a89e91; }
.band-story { max-width: 75rem; margin: 3rem auto 0; padding-inline: 1.5rem; }
.member-card { aspect-ratio: 4/5; min-height: 0; }
.member-card img { position: absolute; inset: 0; }
.member-card strong { max-width: calc(100% - 5rem); overflow-wrap: normal; }
.member-dialog-image { position: sticky; top: 0; align-self: start; min-height: 0; }
.member-dialog-image img { width: 100%; height: auto; max-height: calc(100svh - 8rem); object-fit: contain; background: var(--ink); }
.portrait-actions { padding: .9rem .4rem; background: var(--ink); }
.member-dialog-copy { justify-content: flex-start; padding: 3.5rem 2.5rem; min-width: 0; }
.member-dialog-copy h2 { font-size: clamp(2.8rem, 6vw, 5rem); }
.member-dialog-copy > p { color: var(--muted); }
.member-facts { display: grid; grid-template-columns: auto 1fr; gap: .7rem 1rem; }
.member-facts dt { color: var(--muted); }
.member-facts dd { margin: 0; }
.video-dialog { overflow: auto; }
.video-caption { align-items: center; flex-wrap: wrap; }
.video-caption a { color: var(--gold-light); font-size: .875rem; }
.video-caption span { font-size: .875rem; }
.dialog-close { position: fixed; top: max(1rem, env(safe-area-inset-top)); right: 1rem; width: 3rem; height: 3rem; }
.site-nav a[aria-current="location"]::after { width: 100%; }
.latest-strip:hover .latest-marquee span { animation-play-state: paused; }
.no-script { padding: 2rem; text-align: center; }
html[data-motion="reduced"] { scroll-behavior: auto; }
html[data-motion="reduced"] *, html[data-motion="reduced"] *::before, html[data-motion="reduced"] *::after { animation: none !important; transition: none !important; }
html[data-motion="reduced"] .reveal { opacity: 1; transform: none; }
html[data-motion="reduced"] .cursor-glow, html[data-motion="reduced"] .embers { display: none; }

.song-page .site-header { background: rgba(9,8,7,.94); border-bottom-color: var(--line); }
.song-main { padding: 9rem clamp(1.25rem, 7vw, 8.5rem) 5rem; max-width: 100rem; margin: auto; min-height: 85svh; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: 2.3rem; color: var(--muted); font-size: .875rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }
.song-lead { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.song-cover { width: 100%; height: auto; box-shadow: var(--shadow); }
.song-intro h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5.2vw, 5.5rem); line-height: 1.08; letter-spacing: -.035em; margin: 0; }
.song-excerpt { color: #c0b5a8; font-size: 1.12rem; margin: 1.6rem 0; }
.song-video-section { margin-top: 3.5rem; scroll-margin-top: 6rem; }
.song-video-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .3rem 1rem; border: 1px solid var(--line); }
.song-video-bar p { color: var(--muted); }
.song-video-bar strong { color: var(--ivory); font-weight: 400; }
.media-hint { color: var(--muted); font-size: .875rem; }
.song-reading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 5rem); padding-top: 5rem; }
.song-reading h2 { font-family: var(--serif); font-size: 3rem; font-weight: 400; margin: 0 0 2rem; }
.song-lyrics { align-self: start; border: 1px solid var(--line); background: var(--panel); scroll-margin-top: 6rem; }
.song-lyrics summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem; font-size: 1.2rem; list-style: none; }
.song-lyrics summary::-webkit-details-marker { display: none; }
.song-lyrics summary > span { font-size: 1.5rem; }
.song-lyrics[open] summary > span { transform: rotate(45deg); }
.lyrics-text { padding: 1.5rem; color: var(--ivory); border-top: 1px solid var(--line); line-height: 1.95; }
.song-navigation { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 1.5rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.song-navigation a { text-decoration: none; color: var(--gold-light); }
.song-navigation a:hover { color: var(--ivory); }
.song-navigation span { display: block; font-size: .875rem; margin-bottom: .5rem; }
.song-navigation strong { display: block; font-size: 1rem; color: var(--ivory); font-weight: 400; }
#back-album { grid-column: 2; grid-row: 1; }
#next-song { grid-column: 3; text-align: right; }
.song-error { padding: 5rem 0; }
.song-error h1 { font-family: var(--serif); font-weight: 400; font-size: 3rem; }
@media (max-width: 1000px) {
  .chapter-tab { gap: .6rem; padding-inline: .8rem; }
  .chapter-tab b { font-size: 1rem; letter-spacing: .02em; }
  .album-stage { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .album-info h3 { font-size: clamp(2.7rem, 4.3vw, 4.5rem); }
  .member-grid { gap: .8rem; }
  .member-card strong { font-size: 2rem; }
}
@media (max-width: 760px) {
  .site-nav { top: 4.8rem; bottom: auto; height: calc(100dvh - 4.8rem); padding: 2rem; overflow-y: auto; visibility: hidden; pointer-events: none; }
  .site-nav.is-open { visibility: visible; pointer-events: auto; }
  body.menu-open .site-header { backdrop-filter: none; background: #090807; }
  .site-nav a { font-size: 2.25rem; }
  .menu-toggle { min-height: 2.75rem; width: 2.75rem; align-content: center; }
  .hero h1 em { line-height: 1.2; }
  .hero-intro { margin-top: 1.3rem; }
  .album-stage { grid-template-columns: minmax(0, 1fr); }
  .album-visual { padding: 2rem 1.5rem 3.5rem; }
  .album-info h3 { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .album-placeholder strong { font-size: clamp(2.15rem, 9vw, 4rem); }
  .album-placeholder::before { inset: 16%; }
  .album-placeholder { padding: 1rem; }
  .album-placeholder span { font-size: .75rem; letter-spacing: .1em; }
  .epopeya-intro h2 { font-size: clamp(2.75rem, 10.5vw, 4.8rem); }
  .epopeya-track { column-gap: .75rem; }
  .member-card { min-height: 0; }
  .member-card strong { font-size: 1.65rem; }
  .member-dialog-image { position: relative; height: auto; min-height: 0; }
  .member-dialog-image img { height: 42svh; min-height: 16rem; object-fit: contain; background: var(--ink); }
  .member-dialog-copy { padding: 2rem 1.4rem; }
  .song-main { padding-top: 7rem; }
  .song-lead, .song-reading { grid-template-columns: minmax(0, 1fr); }
  .song-cover { max-width: 28rem; margin: auto; }
  .song-intro h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .song-navigation { grid-template-columns: 1fr 1fr; }
  #back-album { grid-column: 1/-1; margin-bottom: .5rem; }
  #previous-song { grid-column: 1; grid-row: 2; }
  #next-song { grid-column: 2; grid-row: 2; }
  .song-video-bar { flex-direction: column; align-items: flex-start; padding: .8rem; }
  .song-video-bar p { margin: 0; }
  .song-reading { padding-top: 3.5rem; }
}
@media (max-width: 480px) {
  .eyebrow { font-size: .8125rem; letter-spacing: .07em; }
  .hero-actions .button { font-size: .875rem; }
  .member-grid { grid-template-columns: minmax(0, 1fr); }
  .member-card strong { font-size: 2.25rem; }
  .song-lyrics summary, .lyrics-text { padding: 1.1rem; }
}
