/* ── Variables ── */
:root {
  --bg: #0a0908;
  --bg-elevated: #141210;
  --bg-card: #1a1714;
  --text: #e8e4df;
  --text-muted: #8a8278;
  --accent: #c45c3e;
  --accent-glow: rgba(196, 92, 62, 0.35);
  --gold: #b8956a;
  --gold-dim: rgba(184, 149, 106, 0.2);
  --border: rgba(184, 149, 106, 0.15);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --glass: rgba(20, 18, 16, 0.55);
  --glass-border: rgba(184, 149, 106, 0.22);
  --glass-blur: 14px;
  --neu-shadow: 6px 6px 14px rgba(0, 0, 0, 0.45), -4px -4px 12px rgba(40, 35, 30, 0.15);
  --neu-inset: inset 2px 2px 6px rgba(0, 0, 0, 0.35), inset -1px -1px 4px rgba(50, 45, 40, 0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 10002;
  background: rgba(184, 149, 106, 0.08);
  pointer-events: none;
}
.scroll-progress-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  box-shadow: 0 0 12px var(--accent-glow);
  transition: width 0.08s linear;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ── Album title reference (not italic) ── */
.album-ref {
  font-family: var(--font-display);
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ── Spirit wisp cursor — decorative only, clicks pass through ── */
.spirit-cursor,
.spirit-cursor *,
.cursor-smoke {
  pointer-events: none !important;
  user-select: none;
}
body.has-spirit-cursor,
body.has-spirit-cursor a,
body.has-spirit-cursor button,
body.has-spirit-cursor .track-item,
body.has-spirit-cursor .gallery-item {
  cursor: none;
}
.spirit-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  z-index: 9998;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.35s;
}
body.has-spirit-cursor .spirit-cursor { opacity: 1; }
.spirit-wisp {
  position: relative;
  width: 100%; height: 100%;
  transform-origin: center center;
}
.spirit-halo {
  position: absolute; inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(77, 184, 171, 0.22) 0%,
    rgba(184, 149, 106, 0.08) 45%,
    transparent 70%);
  animation: spirit-halo-pulse 3.2s ease-in-out infinite;
}
.spirit-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(77, 184, 171, 0.35);
  box-shadow: 0 0 12px rgba(77, 184, 171, 0.15);
  animation: spirit-ring-spin 8s linear infinite;
}
.spirit-core {
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    #e8f8f6 0%,
    #5ec4b8 28%,
    #2a756e 55%,
    #1a4540 100%);
  box-shadow:
    0 0 14px rgba(94, 196, 184, 0.65),
    0 0 28px rgba(184, 149, 106, 0.25),
    inset 0 -2px 6px rgba(0, 0, 0, 0.35);
}
.spirit-flare {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.85;
  filter: blur(0.5px);
}
.spirit-cursor.is-idle .spirit-wisp {
  animation: spirit-float 3.6s ease-in-out infinite;
}
.spirit-cursor.is-flying .spirit-halo {
  animation-duration: 1.4s;
  opacity: 0.9;
}
.spirit-cursor.is-flying .spirit-ring {
  animation-duration: 2.5s;
  border-color: rgba(196, 92, 62, 0.4);
}
.spirit-cursor.is-flying .spirit-core {
  box-shadow:
    0 0 20px rgba(94, 196, 184, 0.8),
    0 0 36px rgba(196, 92, 62, 0.2);
}
.spirit-cursor.is-flying-fast .spirit-core {
  box-shadow:
    0 0 26px rgba(94, 196, 184, 0.95),
    0 0 48px rgba(196, 92, 62, 0.35);
}
@keyframes spirit-halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes spirit-ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes spirit-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.cursor-smoke {
  position: fixed;
  z-index: 9997;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(94, 196, 184, 0.35) 0%,
    rgba(184, 149, 106, 0.18) 35%,
    rgba(60, 55, 50, 0.12) 55%,
    transparent 75%);
  filter: blur(5px);
  transform: translate(-50%, -50%);
}

/* ── Grain overlay ── */
.grain {
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Storm layer (rain + lightning, sound-on only) ── */
.storm-layer {
  position: fixed; inset: 0; z-index: 9985;
  pointer-events: none; overflow: hidden;
}
.storm-layer[hidden] { display: none !important; }
.storm-rain {
  position: absolute; inset: -20% 0 0 0;
  opacity: 0;
  background: repeating-linear-gradient(
    105deg,
    transparent 0px, transparent 3px,
    rgba(180, 200, 220, 0.03) 3px, rgba(180, 200, 220, 0.03) 4px
  );
  animation: rain-fall 0.55s linear infinite;
  transition: opacity 1.2s ease;
}
body.sound-on .storm-rain { opacity: 1; }
@keyframes rain-fall {
  to { transform: translateY(28px); }
}
.storm-flash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%,
    rgba(210, 225, 255, 0) 0%,
    rgba(180, 200, 240, 0) 100%);
  opacity: 0;
}
.storm-flash.is-active {
  animation: storm-flash-pulse 0.55s ease-out forwards;
}
@keyframes storm-flash-pulse {
  0% { opacity: 0; background: radial-gradient(ellipse at var(--bolt-x, 50%) 15%, rgba(235, 242, 255, 0.55) 0%, rgba(160, 185, 230, 0.18) 45%, transparent 75%); }
  8% { opacity: 1; }
  18% { opacity: 0.15; }
  28% { opacity: 0.65; }
  100% { opacity: 0; }
}
.storm-bolt {
  position: absolute;
  width: clamp(28px, 4vw, 52px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(200, 220, 255, 0.9)) drop-shadow(0 0 28px rgba(140, 180, 255, 0.5));
  transform: scale(0.85);
}
.storm-bolt.is-active {
  animation: bolt-strike 0.45s ease-out forwards;
}
@keyframes bolt-strike {
  0% { opacity: 0; transform: scale(0.6) translateY(-8px); }
  12% { opacity: 1; transform: scale(1) translateY(0); }
  35% { opacity: 0.85; }
  100% { opacity: 0; transform: scale(1.05) translateY(4px); }
}

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
  pointer-events: auto;
}
.preloader.hidden {
  display: none !important;
  opacity: 0; visibility: hidden;
  pointer-events: none !important;
}
.preloader-line {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--text-muted);
  display: block; margin-bottom: 1.5rem;
  animation: pulse-text 2s ease infinite;
}
.preloader-bar {
  width: 120px; height: 1px; background: var(--border);
  overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0; background: var(--accent);
  animation: load-bar 1.8s var(--ease) forwards;
}

@keyframes load-bar { to { width: 100%; } }
@keyframes pulse-text { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gold);
  transition: transform 0.35s var(--ease), text-shadow 0.35s;
}
.nav-logo:hover {
  transform: scale(1.04);
  text-shadow: 0 0 20px rgba(184, 149, 106, 0.35);
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.3s, transform 0.3s var(--ease);
  position: relative; display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1); transform-origin: left;
}
.nav-links a.active { color: var(--gold); }
.nav-tease { color: var(--accent) !important; }
.nav-tease:hover { color: #e07050 !important; }
.nav-end {
  display: flex; align-items: center; gap: 1.25rem;
}
.sound-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(20, 18, 16, 0.45);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease);
}
.sound-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(184, 149, 106, 0.15);
}
.sound-toggle[aria-pressed="true"] {
  color: var(--accent);
  border-color: rgba(196, 92, 62, 0.45);
  box-shadow: 0 0 24px rgba(196, 92, 62, 0.2);
  animation: sound-pulse 2.4s ease-in-out infinite;
}
@keyframes sound-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(196, 92, 62, 0.15); }
  50% { box-shadow: 0 0 28px rgba(196, 92, 62, 0.35), 0 0 48px rgba(140, 184, 58, 0.12); }
}
.sound-icon--on { display: none; }
body.sound-on .sound-icon--off { display: none; }
body.sound-on .sound-icon--on { display: block; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover {
  background: #d46a4a;
  box-shadow: 0 0 30px var(--accent-glow), var(--neu-shadow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: rgba(20, 18, 16, 0.4); color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--neu-shadow);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.85) saturate(1.05);
  transform: scale(1.05);
  animation: hero-zoom 20s ease infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
/* ── Billowing smoke ── */
.smoke-layer {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.smoke-layer--compact .smoke-wisp { filter: blur(14px); }
.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(200, 210, 220, 0.45) 0%,
    rgba(160, 175, 190, 0.2) 40%,
    transparent 70%);
  filter: blur(22px);
  opacity: 0;
  animation: smoke-billow ease-in-out infinite;
}
.smoke-wisp--1 { width: 180px; height: 120px; left: 18%; top: 8%; animation-duration: 9s; animation-delay: 0s; }
.smoke-wisp--2 { width: 220px; height: 140px; left: 28%; top: 5%; animation-duration: 11s; animation-delay: -2s; }
.smoke-wisp--3 { width: 160px; height: 100px; left: 12%; top: 14%; animation-duration: 8s; animation-delay: -4s; }
.smoke-wisp--4 { width: 200px; height: 130px; left: 35%; top: 10%; animation-duration: 12s; animation-delay: -1s; }
.smoke-wisp--5 { width: 140px; height: 90px; left: 22%; top: 18%; animation-duration: 10s; animation-delay: -6s; }
.smoke-wisp--6 { width: 190px; height: 110px; left: 8%; top: 12%; animation-duration: 13s; animation-delay: -3s; }

body.konami-burst .smoke-wisp {
  animation-duration: 1.8s !important;
  opacity: 0.95 !important;
  filter: blur(22px) brightness(1.25);
}
body.konami-burst .hero-overlay {
  background: linear-gradient(180deg, rgba(196, 92, 62, 0.12) 0%, rgba(10, 9, 8, 0.7) 100%) !important;
}

@keyframes smoke-billow {
  0% {
    opacity: 0;
    transform: translate(0, 20px) scale(0.8);
  }
  15% { opacity: 0.55; }
  50% {
    opacity: 0.75;
    transform: translate(30px, -40px) scale(1.15);
  }
  85% { opacity: 0.35; }
  100% {
    opacity: 0;
    transform: translate(60px, -90px) scale(1.4);
  }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 9, 8, 0.15) 0%,
    rgba(10, 9, 8, 0.45) 55%,
    rgba(10, 9, 8, 0.82) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.1) 0%,
    rgba(10, 9, 8, 0.35) 70%,
    var(--bg) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: right; padding: 2rem 4rem 2rem 2rem;
  max-width: 900px;
  margin-left: auto;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700; line-height: 0.95;
  margin-bottom: 1.25rem;
}
.hero-title-wrap {
  position: relative;
  display: inline-block;
  padding: 0.1em 0.16em;
}
.hero-title-text {
  position: relative;
  z-index: 1;
  display: block;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
}
.hero-title-wrap:hover .hero-title-text,
.hero-title-wrap.is-leafy .hero-title-text {
  opacity: 0.08;
  filter: blur(4px);
}
.hero-leaves {
  position: absolute;
  inset: -22% -18% -28% -18%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.hero-leaf {
  position: absolute;
  left: var(--tx);
  top: var(--ty);
  width: var(--w);
  height: var(--h);
  margin-left: calc(var(--w) * -0.5);
  margin-top: calc(var(--h) * -0.5);
  z-index: var(--z, 2);
  color: var(--leaf-color);
  transform: translate(var(--cx), var(--cy)) scale(0) rotate(var(--rot));
  opacity: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
  transition:
    transform 0.72s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.4s ease,
    filter 0.3s ease;
  transition-delay: var(--delay);
}
.hero-leaf--back {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
  opacity: 0;
}
.hero-leaf--accent {
  color: var(--leaf-accent, #8cb83a);
}
.hero-leaf-inner {
  display: block;
  width: 100%; height: 100%;
  transform-origin: center bottom;
}
.hero-leaf-inner svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.hero-leaf::after {
  content: '';
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(94, 196, 184, 0.55) 0%,
    rgba(184, 149, 106, 0.25) 40%,
    transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
  pointer-events: none;
}
.hero-title-wrap:hover .hero-leaf,
.hero-title-wrap.is-leafy .hero-leaf {
  transform: translate(0, 0) scale(var(--scale-end, 1)) rotate(var(--rot2));
  opacity: var(--leaf-opacity, 0.95);
  pointer-events: auto;
}
.hero-title-wrap:hover .hero-leaf--back,
.hero-title-wrap.is-leafy .hero-leaf--back {
  opacity: var(--leaf-opacity, 0.72);
}
.hero-leaf:hover,
.hero-leaf.is-magic {
  z-index: 12 !important;
  filter:
    drop-shadow(0 0 10px rgba(94, 196, 184, 0.75))
    drop-shadow(0 0 22px rgba(184, 149, 106, 0.45))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transform: translate(0, 0) scale(calc(var(--scale-end, 1) * 1.14)) rotate(var(--rot2)) !important;
}
.hero-leaf:hover::after,
.hero-leaf.is-magic::after {
  opacity: 1;
  transform: scale(1);
}
.hero-leaf:hover .hero-leaf-inner,
.hero-leaf.is-magic .hero-leaf-inner {
  animation: leaf-shake 0.55s ease-in-out;
}
@keyframes leaf-shake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  12% { transform: rotate(-14deg) scale(1.06); }
  28% { transform: rotate(12deg) scale(1.1); }
  44% { transform: rotate(-10deg) scale(1.08); }
  60% { transform: rotate(8deg) scale(1.06); }
  76% { transform: rotate(-5deg) scale(1.03); }
}
.hero-title-line { display: block; }
.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1px var(--text);
  text-stroke: 1px var(--text);
}
.hero-genre {
  font-size: 0.85rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  cursor: pointer; border: 0; background: none; color: inherit;
  font-family: inherit;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.hero-scroll:hover {
  opacity: 0.85;
  transform: translateX(-50%) translateY(4px);
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* ── Sections ── */
.section { padding: 7rem 0; position: relative; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ── Wall cracks — wild dogs easter egg ── */
.wall-crack {
  position: absolute;
  width: 200px;
  height: 180px;
  z-index: 6;
  cursor: crosshair;
  overflow: visible;
  transition: width 0.45s var(--ease), height 0.45s var(--ease);
}
.wall-crack.is-active {
  width: 300px;
  height: 260px;
}
.wall-crack--about {
  bottom: 14%;
  right: clamp(1rem, 5vw, 4rem);
}
.wall-crack--connect {
  top: 58%;
  left: clamp(0.5rem, 4vw, 3rem);
}
.wall-crack-face {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 72px;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 55%, #0e0c0a 100%);
  border: 1px solid rgba(184, 149, 106, 0.08);
  box-shadow: var(--neu-inset);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease), border-color 0.45s;
}
.wall-crack-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.wall-crack-hollow {
  position: absolute;
  left: 50%;
  top: 8%;
  width: 18px;
  height: 78%;
  margin-left: -9px;
  background: radial-gradient(ellipse at 50% 30%, #1a0a08 0%, #050403 55%, #000 100%);
  transform: scaleY(0.15);
  transform-origin: center top;
  opacity: 0.5;
  transition: transform 0.5s cubic-bezier(0.34, 1.35, 0.64, 1), opacity 0.4s, box-shadow 0.4s;
  box-shadow: inset 0 0 12px #000;
  border-radius: 2px;
}
.wall-crack:hover .wall-crack-face,
.wall-crack.is-active .wall-crack-face {
  border-color: rgba(196, 92, 62, 0.25);
  box-shadow: var(--neu-inset), 0 0 28px rgba(196, 92, 62, 0.12);
}
.wall-crack:hover .wall-crack-lines,
.wall-crack.is-active .wall-crack-lines { opacity: 1; }
.wall-crack:hover .wall-crack-hollow,
.wall-crack.is-active .wall-crack-hollow {
  transform: scaleY(1);
  opacity: 1;
  box-shadow:
    inset 0 0 24px #000,
    0 0 20px rgba(196, 92, 62, 0.35),
    0 0 40px rgba(0, 0, 0, 0.6);
}
.crack-smoke-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -28px;
  width: 120px;
  height: 100px;
  margin-left: -60px;
  pointer-events: none;
  overflow: visible;
  z-index: 7;
}
.crack-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(140, 135, 125, 0.5) 0%,
    rgba(80, 75, 70, 0.2) 45%,
    transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}
.crack-dogs {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -36px;
  width: 200px;
  height: 120px;
  margin-left: -100px;
  pointer-events: none;
  overflow: visible;
  z-index: 8;
}
.crack-dog {
  position: absolute;
  width: 88px;
  height: 52px;
  opacity: 0;
  transform:
    translateX(var(--base-x, 0))
    translateY(var(--base-y, 0))
    translateX(var(--lunge, 0px))
    rotate(var(--aim, 0deg))
    scale(0.35);
  transform-origin: 15% 60%;
  transition: opacity 0.35s ease, transform 0.12s ease-out;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.65));
}
.crack-dog--a {
  --base-x: -42px;
  --base-y: 8px;
  left: 50%;
  top: 12px;
  margin-left: -44px;
}
.crack-dog--b {
  --base-x: 8px;
  --base-y: 28px;
  left: 50%;
  top: 32px;
  margin-left: -36px;
  transition-delay: 0.06s;
}
.crack-dog--b .crack-dog-svg {
  transform: scaleX(-1);
}
.crack-dog-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.crack-dog-eye {
  transition: fill 0.2s;
}
.wall-crack.is-active .crack-dog {
  opacity: 1;
  transform:
    translateX(var(--base-x))
    translateY(var(--base-y))
    translateX(var(--lunge, 0px))
    rotate(var(--aim, 0deg))
    scale(1);
}
.wall-crack.is-active .crack-dog-eye { fill: #e85030; }
.crack-dog.is-biting {
  transform:
    translateX(var(--base-x))
    translateY(var(--base-y))
    translateX(calc(var(--lunge, 0px) + 14px))
    rotate(var(--aim, 0deg))
    scale(1.12) !important;
  transition: transform 0.08s ease-out;
}
.crack-dog.is-biting .crack-dog-snout { transform: translateX(3px); }
.crack-dog.is-biting .crack-dog-teeth { stroke: #fff; stroke-width: 1.2; }
.crack-dog-snout,
.crack-dog-teeth {
  transform-origin: center;
  transition: transform 0.08s ease;
}
.wall-crack.is-active .crack-dog--a {
  animation: dog-emerge-a 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}
.wall-crack.is-active .crack-dog--b {
  animation: dog-emerge-b 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) 0.08s forwards;
}
@keyframes dog-emerge-a {
  0% { opacity: 0; transform: translateX(-42px) translateY(24px) scale(0.2) rotate(-20deg); }
  70% { opacity: 1; }
  100% { opacity: 1; transform: translateX(var(--base-x)) translateY(var(--base-y)) translateX(var(--lunge, 0)) rotate(var(--aim, 0deg)) scale(1); }
}
@keyframes dog-emerge-b {
  0% { opacity: 0; transform: translateX(8px) translateY(40px) scale(0.15) rotate(15deg); }
  70% { opacity: 1; }
  100% { opacity: 1; transform: translateX(var(--base-x)) translateY(var(--base-y)) translateX(var(--lunge, 0)) rotate(var(--aim, 0deg)) scale(1); }
}
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-lead {
  color: var(--text-muted); max-width: 560px;
  margin-bottom: 3rem; font-size: 1.05rem;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Grief Eater ── */
.grief-eater {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ge-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.ge-visual {
  position: relative; aspect-ratio: 16/10;
  max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  box-shadow: var(--neu-shadow);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.ge-visual:hover {
  transform: translateY(-4px);
  box-shadow: 10px 12px 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(196, 92, 62, 0.15);
}
.ge-visual.ge-ember::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 6px;
  background: radial-gradient(ellipse at 50% 100%, rgba(196, 92, 62, 0.25), transparent 65%);
  animation: ember-flicker 1.2s ease-in-out infinite alternate;
  pointer-events: none; z-index: 3;
}
@keyframes ember-flicker {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}
.ge-visual .smoke-layer { z-index: 2; }
.ge-visual .ge-art { position: relative; z-index: 0; }
.ge-art {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
  animation: ge-breathe 6s ease-in-out infinite;
}
@keyframes ge-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.ge-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(196, 92, 62, 0.04) 3px, rgba(196, 92, 62, 0.04) 4px
  );
  animation: scan 6s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.ge-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; margin-bottom: 0.5rem;
}
.ge-glitch {
  position: relative; display: inline-block; color: var(--text);
}
.ge-glitch::before, .ge-glitch::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  width: 100%; overflow: hidden;
}
.ge-glitch::before {
  color: var(--accent); z-index: -1;
  animation: glitch-1 4s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.ge-glitch::after {
  color: var(--gold); z-index: -2;
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}
@keyframes glitch-2 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(2px, 2px); }
  93% { transform: translate(-2px, -1px); }
}
.ge-whisper {
  font-family: var(--font-display);
  font-style: italic; color: var(--text-muted);
  font-size: 1.1rem; margin-bottom: 2rem;
}
.ge-fragments { margin-bottom: 2rem; }
.ge-fragment {
  font-size: 0.9rem; color: var(--text-muted);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.ge-blur { filter: blur(3px); user-select: none; transition: filter 0.5s; }
.ge-blur:hover { filter: blur(1px); }
.ge-redacted {
  background: var(--text-muted); color: var(--text-muted);
  padding: 0 0.5rem; letter-spacing: 0.2em;
}
.ge-note {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 2rem;
}
.ge-note em { color: var(--gold); font-style: normal; }
.notify-form {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.notify-form input {
  flex: 1; min-width: 200px;
  padding: 0.85rem 1.25rem;
  background: rgba(20, 18, 16, 0.65);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body);
  font-size: 0.9rem; outline: none;
  border-radius: 2px;
  box-shadow: var(--neu-inset);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.notify-form input:focus {
  border-color: var(--accent);
  box-shadow: var(--neu-inset), 0 0 0 3px rgba(196, 92, 62, 0.12);
}
.notify-form input::placeholder { color: var(--text-muted); }
.notify-msg {
  margin-top: 1rem; color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.05em;
}

/* ── About ── */
.about { background: var(--bg-elevated); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: 2px;
  filter: grayscale(20%) contrast(1.05);
}
.about-image-frame {
  position: absolute; inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold-dim); pointer-events: none;
}
.about-body {
  color: var(--text-muted); margin-bottom: 1.25rem;
  font-size: 1rem; line-height: 1.75;
}
.about-body em { color: var(--gold); font-style: normal; }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.about-tags li {
  padding: 0.4rem 1rem; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--text-muted);
  border-radius: 2px;
  background: rgba(20, 18, 16, 0.5);
  box-shadow: var(--neu-inset);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.about-tags li:hover {
  color: var(--gold); border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── Music ── */
.music { background: var(--bg); }
.album-featured {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 3rem; align-items: start;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 2.5rem; margin-bottom: 3rem;
  border-radius: 4px;
  box-shadow: var(--neu-shadow);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.album-featured:hover {
  border-color: rgba(184, 149, 106, 0.32);
  box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.5), -4px -4px 16px rgba(40, 35, 30, 0.18);
}
.album-cover {
  position: relative;
  transition: transform 0.5s var(--ease);
}
.album-featured:hover .album-cover { transform: translateY(-4px); }
.vinyl-wrap {
  perspective: 800px;
}
.vinyl-disc {
  position: absolute;
  top: 8%; right: -18%;
  width: 88%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #1a1714 0%, #1a1714 12%, transparent 13%),
    repeating-radial-gradient(circle at center, #222 0, #222 2px, #111 2px, #111 4px);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 8px 24px rgba(0,0,0,0.5);
  transform: translateX(0) rotate(0deg);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
  z-index: 0;
}
.vinyl-sleeve {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 1; object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-radius: 2px;
  transition: transform 0.6s var(--ease);
}
.vinyl-wrap:hover .vinyl-disc {
  opacity: 1;
  transform: translateX(28%) rotate(180deg);
  animation: vinyl-spin 4s linear infinite;
}
.vinyl-wrap:hover .vinyl-sleeve {
  transform: translateX(-6%) rotateY(-8deg);
}
@keyframes vinyl-spin {
  to { transform: translateX(28%) rotate(540deg); }
}
.album-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent);
}
.album-name {
  font-family: var(--font-display);
  font-size: 2rem; margin: 0.25rem 0;
}
.album-artist { color: var(--gold); margin-bottom: 0.75rem; }
.album-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.track-lyrics-zone { margin-bottom: 2rem; }
.tracklist { margin-bottom: 0.5rem; position: relative; }
.track-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.35rem; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
  cursor: pointer; position: relative;
  border-radius: 3px;
  user-select: none;
}
.track-item:hover {
  color: var(--text); padding-left: 0.5rem;
  background: rgba(184, 149, 106, 0.04);
}
.track-item.selected {
  color: var(--text); padding-left: 0.5rem;
  background: rgba(184, 149, 106, 0.08);
  border-bottom-color: rgba(184, 149, 106, 0.25);
}
.track-item.selected .track-title { color: var(--gold); }
.track-item:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.track-check {
  width: 1.1rem; height: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.track-check::after {
  content: '';
  width: 0.35rem; height: 0.6rem;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  margin-top: -2px;
  transition: transform 0.25s var(--ease);
}
.track-item.selected .track-check {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.track-item.selected .track-check::after {
  transform: rotate(45deg) scale(1);
}
.track-num { color: var(--accent); font-size: 0.75rem; min-width: 1.5rem; }
.track-title { flex: 1; }

.lyrics-panel {
  min-height: 120px;
  padding: 1.25rem 1.5rem;
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: opacity 0.4s var(--ease), border-color 0.4s;
  pointer-events: auto;
}
.lyrics-panel.has-lyrics {
  border-color: rgba(184, 149, 106, 0.35);
  background: rgba(20, 18, 16, 0.72);
}
.lyrics-panel-hint {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  font-style: italic;
}
.lyrics-panel-text {
  margin-top: 0.75rem; font-size: 0.92rem;
  line-height: 1.75; color: rgba(232, 228, 223, 0.82);
  white-space: pre-line; font-style: italic;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.45s var(--ease), max-height 0.45s var(--ease);
}
.lyrics-panel.has-lyrics .lyrics-panel-hint { display: none; }
.lyrics-panel.has-lyrics .lyrics-panel-text {
  opacity: 1; max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.65rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 149, 106, 0.45) transparent;
}
.lyrics-panel-text:focus { outline: 1px solid rgba(184, 149, 106, 0.35); outline-offset: 2px; }
.lyrics-panel-text::-webkit-scrollbar { width: 6px; }
.lyrics-panel-text::-webkit-scrollbar-thumb {
  background: rgba(184, 149, 106, 0.4);
  border-radius: 3px;
}

.album-player {
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: rgba(10, 9, 8, 0.45);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.album-player-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.album-player-embed {
  border-radius: 4px; overflow: hidden;
  min-height: 152px;
}
.album-player-embed iframe {
  display: block; width: 100%; border: 0;
}

.studio-credit {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.8;
}
.studio-credit a:not(.fishtank-link) {
  color: var(--gold); border-bottom: 1px solid rgba(184, 149, 106, 0.3);
  transition: color 0.3s, border-color 0.3s;
}
.studio-credit a:not(.fishtank-link):hover { color: var(--accent); border-color: var(--accent); }
.fishtank-link {
  position: relative; display: inline-flex;
  align-items: center; vertical-align: middle;
  margin: 0 0.15rem;
  border-bottom: none;
}
.fishtank-logo {
  height: 28px; width: auto; max-width: 110px;
  object-fit: contain;
  border-radius: 2px;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.fishtank-link:hover .fishtank-logo {
  opacity: 1;
  transform: scale(1.04);
}
.fishtank-preview {
  position: absolute; left: 50%; bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  box-shadow: var(--neu-shadow);
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s;
  z-index: 20;
  white-space: nowrap;
}
.fishtank-preview img {
  height: 56px; width: auto; max-width: 200px; object-fit: contain;
}
.fishtank-preview span {
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--gold);
}
.fishtank-link:hover .fishtank-preview,
.fishtank-link:focus-visible .fishtank-preview {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.35rem; margin: 3rem 0 1.5rem;
  color: var(--gold);
}

/* ── Collaborations ── */
.collab-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.collab-card {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: linear-gradient(145deg, rgba(26, 23, 20, 0.9), rgba(14, 12, 10, 0.95));
  border: 1px solid var(--border); overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--neu-shadow);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.collab-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 8px 10px 28px rgba(0, 0, 0, 0.45);
}
.collab-image { min-height: 180px; }
.collab-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.4s;
}
.collab-card:hover .collab-image img { filter: grayscale(0%); }
.collab-body { padding: 1.25rem 1.25rem 1.25rem 0; }
.collab-year {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.collab-name {
  font-family: var(--font-display);
  font-size: 1.2rem; margin: 0.35rem 0 0.6rem;
}
.collab-desc {
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 0.85rem;
}
.collab-desc a { color: var(--gold); border-bottom: 1px solid rgba(184,149,106,0.25); }
.collab-desc a:hover { color: var(--accent); }
.collab-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.collab-links a {
  font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border); padding: 0.35rem 0.75rem;
  transition: all 0.3s;
}
.collab-links a:hover { color: var(--text); border-color: var(--gold); }

/* ── Press ── */
.press { background: var(--bg-elevated); }
.press-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.press-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem; border-radius: 4px;
  box-shadow: var(--neu-shadow);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.press-card:hover {
  border-color: rgba(184,149,106,0.35);
  transform: translateY(-3px);
  box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.4);
}
.press-source {
  display: block; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem;
}
.press-quote {
  font-size: 0.95rem; line-height: 1.7; color: var(--text);
  font-style: italic; margin-bottom: 0.75rem;
  padding-left: 1rem; border-left: 2px solid var(--gold-dim);
}
.press-context {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1rem; line-height: 1.5;
}
.press-link {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  transition: color 0.3s;
}
.press-link:hover { color: var(--accent); }

.lyrics-panel-text a { color: var(--gold); }
.lyrics-panel-text a:hover { color: var(--accent); }
.lyrics-panel-text em { color: var(--text); font-style: normal; }
.album-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.music-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.music-card {
  background: linear-gradient(160deg, rgba(26, 23, 20, 0.95), rgba(16, 14, 12, 0.98));
  border: 1px solid var(--border);
  padding: 2rem; border-radius: 4px;
  box-shadow: var(--neu-shadow);
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.music-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196, 92, 62, 0.08), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.music-card:hover::before { opacity: 1; }
.music-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 44px rgba(0,0,0,0.35), 0 0 0 1px rgba(184, 149, 106, 0.1);
}
.music-card-icon {
  font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem;
  transition: transform 0.4s var(--ease);
}
.music-card:hover .music-card-icon { transform: scale(1.15) rotate(-4deg); }
.music-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; margin-bottom: 0.5rem;
}
.music-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Media ── */
.media { background: var(--bg-elevated); }
.video-wrap { margin-bottom: 3rem; }
.video-frame {
  position: relative; padding-bottom: 56.25%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--neu-shadow);
}
.video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.video-poster img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.video-poster:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.03);
}
.video-play-ring {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: var(--neu-shadow), 0 0 40px rgba(196, 92, 62, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.video-poster:hover .video-play-ring {
  transform: scale(1.1);
  box-shadow: var(--neu-shadow), 0 0 50px rgba(196, 92, 62, 0.45);
}
.video-caption {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text);
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}
.video-source {
  text-align: center; margin-top: 1rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.video-source a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
  transition: color 0.3s, border-color 0.3s;
}
.video-source a:hover { color: var(--accent); border-color: var(--accent); }
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 4/3; position: relative; cursor: zoom-in;
  border-radius: 2px;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.gallery-item:hover {
  border-color: rgba(184, 149, 106, 0.35);
  box-shadow: var(--neu-shadow);
}
.gallery-zoom {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text);
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(6px);
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1; transform: scale(1);
}
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: transform 0.6s var(--ease), filter 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.media-more { text-align: center; margin-top: 2.5rem; }
.media-more a {
  color: var(--gold); font-size: 0.85rem;
  letter-spacing: 0.1em; transition: color 0.3s;
}
.media-more a:hover { color: var(--accent); }
.media-more-sep {
  margin: 0 0.75rem; color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Connect ── */
.connect {
  background: var(--bg);
  text-align: center;
}
.connect-inner { max-width: 600px; }
.qr-block { margin-bottom: 3rem; }
.qr-card {
  display: inline-flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: 4px;
  box-shadow: var(--neu-shadow);
  text-align: left;
}
.qr-card img {
  border-radius: 4px;
  background: #e8e4df;
  padding: 6px;
}
.qr-title {
  font-family: var(--font-display);
  font-size: 1.1rem; margin-bottom: 0.25rem;
}
.qr-url {
  color: var(--gold); font-size: 0.95rem;
  letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.qr-hint {
  font-size: 0.8rem; color: var(--text-muted);
  max-width: 280px; line-height: 1.5;
}
.qr-placeholder {
  width: 120px; height: 120px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 4px;
  background: rgba(20, 18, 16, 0.6);
}
.qr-placeholder-icon {
  font-size: 2rem; color: var(--text-muted);
  opacity: 0.5;
}
.qr-card:not(.qr-card--pending) .qr-placeholder { display: none; }
.footer-credit {
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.04em; width: 100%;
  text-align: center; margin-top: 0.25rem;
}
.social-grid {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  justify-content: center; padding: 1.5rem 0;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  background: rgba(20, 18, 16, 0.55);
  transition: color 0.3s, border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}
.social-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.18);
}
.social-icon--gaming .social-badge {
  position: absolute; bottom: 2px; right: 2px;
  font-size: 0.45rem; color: var(--accent);
  background: var(--bg); border-radius: 50%;
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.social-icon--fishtank {
  border-radius: 8px;
  overflow: hidden; padding: 4px;
}
.social-icon--fishtank img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 4px;
}

/* ── Footer ── */
.footer {
  padding: 3rem 0; border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem 1rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.1em;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-tease {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--text-muted);
}
.footer-pulse {
  color: var(--accent);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ge-grid, .about-grid, .album-featured { grid-template-columns: 1fr; }
  .music-cards, .collab-grid, .press-grid { grid-template-columns: 1fr; }
  .collab-card { grid-template-columns: 1fr; }
  .collab-body { padding: 1.25rem; }
  .collab-image { min-height: 200px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
}
/* ── Back to top ── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--neu-shadow);
  transition: opacity 0.4s, transform 0.4s var(--ease), color 0.3s;
  opacity: 0; pointer-events: none;
}
.back-top.visible {
  opacity: 1; pointer-events: auto;
}
.back-top:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(8px);
  padding: 2rem;
  opacity: 0; transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.lightbox[hidden] {
  display: none !important;
  pointer-events: none !important;
}
.lightbox:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text); font-size: 1.5rem;
  cursor: pointer; line-height: 1;
  transition: color 0.3s, transform 0.3s;
}
.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .spirit-cursor, .cursor-smoke, .storm-layer, .wall-crack { display: none; }
  body.has-spirit-cursor,
  body.has-spirit-cursor a,
  body.has-spirit-cursor button { cursor: auto; }

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .wall-crack { display: none; }
  .hero-content { text-align: center; padding: 2rem; margin-left: 0; }
  .sound-toggle { margin-right: 0.75rem; width: 34px; height: 34px; }
  .nav-toggle { display: block; }
  .nav-end { gap: 0.75rem; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10, 9, 8, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    transform: translateY(-120%); transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }
  .back-top { bottom: 1.25rem; right: 1.25rem; }
  .nav-links.open { transform: translateY(0); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .qr-card { flex-direction: column; text-align: center; }
  .qr-hint { max-width: none; }
}