/* ── Variables -- design system v2026.07 ── */
/* Dark = midnight under trees (default) · Light = early light through old glass */
:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0908;
  --bg-elevated: #141210;
  --bg-card: #1a1714;
  --bg-deep: #0d0b09;
  --bg-wash: rgba(20, 18, 16, 0.35);
  --text: #e8e4df;
  --text-muted: #8a8278;
  --accent: #c45c3e;
  --accent-hover: #7a3520;
  --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);
  --section-rule: rgba(184, 149, 106, 0.06);
  --sage: #5a7d68;
  --blue-mist: #6a7f8a;
  --sand: #c4b49a;
  --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;
  --hero-overlay-mid: rgba(10, 9, 8, 0.4);
  --hero-overlay-edge: rgba(10, 9, 8, 0.92);
  --grain-opacity: 0.04;
  --mosaic-opacity: 0.48;
  --mosaic-brightness: 0.72;
  --merch-glow-a: rgba(61, 107, 79, 0.12);
  --merch-glow-b: rgba(61, 107, 79, 0.08);
  --merch-glow-c: rgba(45, 72, 52, 0.22);
  --merch-glow-d: rgba(61, 107, 79, 0.1);
  --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);
  --theme-icon-filter: none;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f0e8;
  --bg-elevated: #fffdf8;
  --bg-card: #ebe6dc;
  --bg-deep: #efe9df;
  --bg-wash: rgba(138, 107, 61, 0.06);
  --text: #1c1916;
  --text-muted: #6b635a;
  --accent: #a84830;
  --accent-hover: #8a3828;
  --accent-glow: rgba(168, 72, 48, 0.22);
  --gold: #8a6b3d;
  --gold-dim: rgba(138, 107, 61, 0.16);
  --border: rgba(60, 50, 40, 0.12);
  --section-rule: rgba(60, 50, 40, 0.08);
  --sage: #4a6b55;
  --blue-mist: #5a6f7a;
  --sand: #a89878;
  --glass: rgba(255, 253, 248, 0.86);
  --glass-border: rgba(138, 107, 61, 0.22);
  --hero-overlay-mid: rgba(244, 240, 232, 0.35);
  --hero-overlay-edge: rgba(244, 240, 232, 0.92);
  --grain-opacity: 0.025;
  --mosaic-opacity: 0.38;
  --mosaic-brightness: 0.88;
  --merch-glow-a: rgba(74, 107, 85, 0.1);
  --merch-glow-b: rgba(74, 107, 85, 0.06);
  --merch-glow-c: rgba(74, 107, 85, 0.12);
  --merch-glow-d: rgba(74, 107, 85, 0.08);
  --neu-shadow: 6px 6px 16px rgba(80, 60, 40, 0.07), -3px -3px 10px rgba(255, 255, 255, 0.65);
  --neu-inset: inset 2px 2px 6px rgba(80, 60, 40, 0.06), inset -1px -1px 4px rgba(255, 255, 255, 0.55);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
/* Smooth scroll can inflate INP on in-page nav -- respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Skip layout/paint for off-screen folds until needed (INP / long tasks) */
#music.section-fold,
#merch.section-fold,
#shows.section-fold,
#about.section-fold,
#connect.section-fold,
#garden.section-fold,
.collab-section,
.shows-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 10003;
  padding: 0.65rem 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--gold);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

.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);
  will-change: width;
  transition: width 0.12s linear;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
}
button,
a,
[role="button"],
.track-item,
.gallery-item,
.nav-toggle,
.sound-toggle {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
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;
  contain: strict;
  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");
}
@media (pointer: coarse) {
  .grain { opacity: 0.025; }
  /* Touch / tablet: quieter ambient motion (battery + visual calm) */
  .storm-rain { animation: none !important; }
  body.sound-on .storm-rain { opacity: 0.28; }
  .smoke-wisp,
  .ambient-smoke-layer .smoke-wisp { animation-duration: 28s !important; opacity: 0.45; }
}

/* ── 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.45s var(--ease), visibility 0.45s;
  pointer-events: auto;
}
.preloader.is-hiding {
  opacity: 0; visibility: hidden;
  pointer-events: none !important;
}
.preloader.hidden {
  display: 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;
  overflow: visible;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: env(safe-area-inset-top, 0) 2rem 0;
  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;
  overflow: visible;
}
.sound-toggle-wrap {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  overflow: visible;
}
.sound-hint {
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10050;
  display: none !important;
  --hint-charge: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  width: max-content;
  max-width: min(220px, calc(100vw - 24px));
}
.sound-hint.is-dormant,
.sound-hint.is-visible {
  display: block !important;
  visibility: visible;
  opacity: calc(0.24 + var(--hint-charge) * 0.76);
}
body:not(.sound-on) .sound-hint.is-dormant,
body:not(.sound-on) .sound-hint.is-visible,
body.showing-sound-hint:not(.sound-on) .sound-hint.is-dormant,
body.showing-sound-hint:not(.sound-on) .sound-hint.is-visible {
  visibility: visible !important;
  display: block !important;
}
body.sound-on .sound-hint,
body.sound-on .sound-hint.is-dormant,
body.sound-on .sound-hint.is-visible {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
body.showing-sound-hint:not(.sound-on) .sound-toggle {
  border-color: rgba(255, 255, 255, calc(0.28 + var(--hint-charge) * 0.37));
  color: rgba(255, 255, 255, calc(0.55 + var(--hint-charge) * 0.45));
  box-shadow:
    0 0 0 calc(1px + var(--hint-charge) * 3px) rgba(255, 255, 255, calc(0.06 + var(--hint-charge) * 0.12)),
    0 0 calc(12px + var(--hint-charge) * 24px) rgba(255, 255, 255, calc(0.1 + var(--hint-charge) * 0.25)),
    0 0 calc(28px + var(--hint-charge) * 36px) rgba(255, 255, 255, calc(0.04 + var(--hint-charge) * 0.08));
  transition: box-shadow 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
}
.sound-toggle.sound-hint-target {
  --hint-charge: 0;
}
body.showing-sound-hint:not(.sound-on) .sound-toggle.sound-hint-target {
  animation: sound-toggle-beacon calc(2.4s - var(--hint-charge) * 0.8s) ease-in-out infinite;
}
@keyframes sound-toggle-beacon {
  0%, 100% { box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14), 0 0 24px rgba(255, 255, 255, 0.22), 0 0 44px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32), 0 0 40px rgba(255, 255, 255, 0.5), 0 0 72px rgba(255, 255, 255, 0.2); }
}
.sound-hint.is-visible .sound-hint-inner {
  animation: sound-hint-enter 0.75s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}
.sound-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  padding: 0;
}
.sound-hint-twig-wrap {
  position: relative;
  width: 48px;
  height: 120px;
  flex-shrink: 0;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: default;
}
.sound-hint-dust {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sound-hint-twig {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.92);
  overflow: visible;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.65))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.28));
}
.sound-hint-twig-line {
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  opacity: 0.35;
  transition: opacity 0.15s ease-out, filter 0.15s ease-out;
}
.sound-hint.is-dormant .sound-hint-twig-line,
.sound-hint.is-visible .sound-hint-twig-line {
  stroke-dashoffset: 0;
  opacity: calc(0.32 + var(--hint-charge) * 0.68);
}
.sound-hint.is-visible .sound-hint-twig-line {
  animation: sound-hint-wire-idle 2.8s ease-in-out infinite;
}
.sound-hint-twig-wrap.is-humming .sound-hint-twig-line {
  opacity: calc(0.45 + var(--hint-charge) * 0.55);
  filter:
    drop-shadow(0 0 calc(1px + var(--hint-charge) * 3px) rgba(255, 255, 255, calc(0.35 + var(--hint-charge) * 0.65)))
    drop-shadow(0 0 calc(3px + var(--hint-charge) * 10px) rgba(170, 220, 255, calc(0.25 + var(--hint-charge) * 0.7)))
    drop-shadow(0 0 calc(8px + var(--hint-charge) * 18px) rgba(120, 190, 255, calc(0.12 + var(--hint-charge) * 0.48)));
  animation:
    sound-hint-wire-idle 2.8s ease-in-out infinite,
    sound-hint-electric calc(0.22s - var(--hint-charge) * 0.1s) steps(3) infinite;
}
.sound-hint-twig-wrap.is-sparking .sound-hint-twig-line {
  opacity: 1 !important;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 1))
    drop-shadow(0 0 16px rgba(200, 235, 255, 1))
    drop-shadow(0 0 32px rgba(120, 190, 255, 0.85)) !important;
  animation: sound-hint-spark-flash 0.42s ease-out forwards !important;
}
@keyframes sound-hint-spark-flash {
  0% { opacity: 1; filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 20px #def) drop-shadow(0 0 40px rgba(120, 190, 255, 0.9)); }
  40% { opacity: 0.95; }
  100% { opacity: 0.2; filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.4)); }
}
@keyframes sound-hint-twig-draw {
  from { stroke-dashoffset: 130; opacity: 0.35; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes sound-hint-wire-idle {
  0%, 100% { opacity: 0.78; }
  50% { opacity: 0.95; }
}
@keyframes sound-hint-electric {
  0%, 100% { opacity: 1; }
  33% { opacity: 0.72; }
  66% { opacity: 0.92; }
}
.sound-hint-label {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.06rem;
  padding: 0.1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.8vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  flex-shrink: 0;
  opacity: calc(0.42 + var(--hint-charge) * 0.58);
  text-shadow:
    0 0 calc(4px + var(--hint-charge) * 6px) rgba(255, 255, 255, calc(0.35 + var(--hint-charge) * 0.65)),
    0 0 calc(12px + var(--hint-charge) * 14px) rgba(255, 255, 255, calc(0.2 + var(--hint-charge) * 0.65)),
    0 0 calc(24px + var(--hint-charge) * 28px) rgba(255, 255, 255, calc(0.08 + var(--hint-charge) * 0.37)),
    0 2px 6px rgba(0, 0, 0, calc(0.55 + var(--hint-charge) * 0.45));
  animation: sound-hint-flash calc(3.2s - var(--hint-charge) * 1.2s) ease-in-out infinite;
  overflow: visible;
  transition: opacity 0.15s ease-out, text-shadow 0.15s ease-out;
}
.sound-hint-label::before,
.sound-hint-label::after {
  content: '';
  position: absolute;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(14px);
}
.sound-hint-label::before {
  width: 160%;
  height: 200%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 72%);
  animation: sound-hint-smoke 3s ease-in-out infinite;
}
.sound-hint-label::after {
  width: 120%;
  height: 150%;
  top: -10%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 40% 60%, rgba(220, 220, 220, 0.22) 0%, transparent 65%);
  animation: sound-hint-smoke-alt 4.2s ease-in-out infinite;
  opacity: 0.85;
}
.sound-hint-line {
  display: block;
  line-height: 1.1;
}
.sound-hint-line--forest {
  font-size: 1.08em;
  letter-spacing: 0.24em;
  animation: sound-hint-paranormal 3.6s ease-in-out infinite;
}
.sound-hint-line--noises {
  font-size: 0.98em;
  letter-spacing: 0.32em;
  animation: sound-hint-paranormal 4.1s ease-in-out infinite reverse;
}
@keyframes sound-hint-paranormal {
  0%, 88%, 100% {
    transform: translate(0);
    opacity: 0.9;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 1),
      0 0 22px rgba(255, 255, 255, 0.85),
      0 0 44px rgba(255, 255, 255, 0.4),
      0 2px 6px rgba(0, 0, 0, 1);
  }
  90% {
    transform: translate(-1px, 0.5px) skewX(-2deg);
    opacity: 0.72;
    text-shadow:
      0 0 14px rgba(200, 235, 255, 1),
      0 0 30px rgba(255, 255, 255, 0.7),
      0 2px 8px rgba(0, 0, 0, 1);
  }
  93% {
    transform: translate(1px, -0.5px) skewX(1deg);
    opacity: 0.95;
  }
}
@keyframes sound-hint-enter {
  from { opacity: 0; transform: translateY(14px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes sound-hint-flash {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}
@keyframes sound-hint-smoke {
  0%, 100% { opacity: 0.45; transform: translateX(-50%) translateY(4px) scale(0.94); }
  50% { opacity: 0.95; transform: translateX(-50%) translateY(-8px) scale(1.08); }
}
@keyframes sound-hint-smoke-alt {
  0%, 100% { opacity: 0.35; transform: translateX(-48%) translateY(6px) scale(0.92); }
  50% { opacity: 0.8; transform: translateX(-52%) translateY(-6px) scale(1.05); }
}
.sound-toggle-smoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.sound-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 45%, rgba(235, 230, 220, 0.75), rgba(160, 155, 145, 0.35) 45%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.sound-toggle-wrap.is-sparking .sound-toggle {
  animation: sound-spark-flash 0.45s ease-out;
  border-color: rgba(220, 240, 255, 0.95) !important;
  color: #fff !important;
}
@keyframes sound-spark-flash {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5), 0 0 28px rgba(255, 255, 255, 0.9), 0 0 52px rgba(170, 220, 255, 0.65);
  }
  30% {
    transform: scale(1.14);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.7), 0 0 48px rgba(255, 255, 255, 1), 0 0 80px rgba(120, 190, 255, 0.75);
  }
  100% { transform: scale(1); }
}
.sound-toggle-wrap.is-smoking .sound-toggle {
  animation: sound-unmute-burst 0.75s ease-out;
}
@keyframes sound-unmute-burst {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); box-shadow: 0 0 40px rgba(255, 255, 255, 0.55), 0 0 64px rgba(196, 92, 62, 0.3); }
  100% { transform: scale(1); }
}
.sound-spark-burst {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10060;
  background: radial-gradient(circle, #fff 0%, rgba(200, 235, 255, 0.9) 35%, transparent 72%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.95), 0 0 16px rgba(170, 220, 255, 0.7);
}
.sound-wire-flash {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10055;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(180, 220, 255, 0.5) 40%, transparent 70%);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.8), 0 0 48px rgba(120, 190, 255, 0.5);
}
.sound-toggle {
  position: relative;
  z-index: 12;
  width: 44px; height: 44px;
  min-width: 44px; min-height: 44px;
  border-radius: 50%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  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;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.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;
  min-height: 44px;
  padding: 0.85rem 1.75rem;
  touch-action: manipulation;
  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: #7a3520; 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,
.nav-logo,
.platform-logo,
.collab-carousel-arrow,
.back-top,
.sound-toggle,
.hero-scroll,
.about-tag,
.ge-redacted {
  position: relative;
}
.btn:not(.btn-ghost):hover::after,
.nav-logo:hover::after,
.platform-logo:hover .platform-logo-icon::after,
.platform-logo:focus-visible .platform-logo-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(196, 92, 62, 0.14), transparent 68%);
  opacity: 0;
  animation: folk-ember-breathe 1.6s ease-in-out infinite;
}
@keyframes folk-ember-breathe {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.75; transform: scale(1.02); }
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--neu-shadow);
  transform: translateY(-1px);
}
.btn-ghost:active { transform: translateY(0); }

.jump-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin-top: 1.75rem;
  max-width: 36rem;
}
.jump-strip a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.35);
  backdrop-filter: blur(6px);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.jump-strip a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(1rem, 4vh, 2.5rem));
  padding-bottom: 4.5rem;
  box-sizing: border-box;
}
/* Mosaic layer height is viewport-locked so font/CSS reflow of .hero-content cannot resize grid tracks (CLS) */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100svh;
  height: 100dvh;
  bottom: auto;
  overflow: hidden;
}
@supports not (height: 100svh) {
  .hero { min-height: 100vh; }
  .hero-bg { height: 100vh; }
}
.hero-bg picture,
.ge-visual picture,
.album-cover-frame picture,
.about-image-wrap picture,
.fiery-bird-whisper picture,
.fishtank-promo-visual picture,
.video-poster picture,
.collab-image picture,
.photo-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.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; }

/* ── Phantom stag -- hidden media + folk bird ghosts ── */
.phantom-stag-media {
  position: fixed;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.bird-ghost-layer {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  overflow: hidden;
}
.bird-ghost-layer.is-playing .bird-fog-overlay {
  opacity: 1;
}
.bird-ghost-layer.is-faded .bird-fog-overlay {
  opacity: 0.2;
}
.bird-fog-overlay {
  position: absolute;
  inset: -12%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background:
    radial-gradient(ellipse 48% 36% at 18% 28%, rgba(90, 110, 100, 0.22), transparent 72%),
    radial-gradient(ellipse 42% 34% at 78% 22%, rgba(70, 90, 85, 0.18), transparent 70%),
    radial-gradient(ellipse 55% 40% at 52% 68%, rgba(60, 75, 70, 0.2), transparent 74%),
    radial-gradient(ellipse 38% 30% at 30% 82%, rgba(80, 95, 90, 0.16), transparent 68%);
  filter: blur(28px) saturate(0.45) contrast(0.9);
  mix-blend-mode: screen;
  animation: bird-fog-billow 18s ease-in-out infinite;
}
.bird-fog-overlay::before,
.bird-fog-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bird-fog-overlay::before {
  background: radial-gradient(ellipse 44% 32% at 64% 44%, rgba(110, 130, 120, 0.14), transparent 70%);
  filter: blur(22px);
  animation: bird-fog-drift-a 24s ease-in-out infinite;
}
.bird-fog-overlay::after {
  background: radial-gradient(ellipse 50% 38% at 36% 56%, rgba(75, 95, 88, 0.12), transparent 72%);
  filter: blur(26px);
  animation: bird-fog-drift-b 30s ease-in-out infinite;
}
@keyframes bird-fog-billow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.72; }
  33% { transform: translate3d(2%, -1.5%, 0) scale(1.04); opacity: 0.88; }
  66% { transform: translate3d(-1.5%, 2%, 0) scale(0.98); opacity: 0.78; }
}
@keyframes bird-fog-drift-a {
  0%, 100% { transform: translate3d(-3%, 1%, 0); }
  50% { transform: translate3d(4%, -2%, 0); }
}
@keyframes bird-fog-drift-b {
  0%, 100% { transform: translate3d(2%, -2%, 0); }
  50% { transform: translate3d(-3%, 3%, 0); }
}
.bird-ghost-layer.is-faded {
  opacity: 0.25;
  transition: opacity 0.9s ease;
}
.bird-ghost {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: screen;
  will-change: opacity, transform, filter;
  transition: filter 0.6s ease;
  transform-origin: center center;
}
body.phantom-stag-playing .smoke-wisp {
  opacity: 0.4;
}

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;
  contain: layout style;
  overflow-x: clip;
  width: 100%;
}
.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;
  min-height: 1.9em;
}
.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: 0.75rem;
}
.hero-disambig {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  opacity: 0.85;
}
.hero-disambig a {
  color: inherit;
  border-bottom: 1px solid rgba(184, 149, 106, 0.35);
  padding-bottom: 1px;
}
.hero-disambig a:hover { color: var(--gold); }
.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;
}
.section:not(.hero):not(:first-of-type) {
  border-top: 1px solid var(--section-rule);
}
.section:nth-child(even of .section) {
  background-image: linear-gradient(180deg, var(--bg-wash) 0%, transparent 28%);
}
.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: 68px;
  height: 76px;
  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: 50% 85%;
  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,
.crack-dog.is-biting .wolf-maw { transform: translateY(2px) scaleY(1.1); }
.crack-dog.is-biting .crack-dog-teeth,
.crack-dog.is-biting .wolf-teeth { fill: #fff; filter: drop-shadow(0 0 4px rgba(255,255,255,0.4)); }
.crack-dog-snout,
.crack-dog-teeth,
.wolf-maw,
.wolf-jaw,
.wolf-teeth {
  transform-origin: center bottom;
  transition: transform 0.08s ease;
}
.wall-crack.is-active .wolf-head--snarl .wolf-jaw {
  animation: wolf-jaw-snarl 2.6s ease-in-out infinite;
}
.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: #d87858;
  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;
}

/* Collapsible section folds (music, media, press) */
.section-fold:not([open]) {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  contain-intrinsic-size: auto 140px;
}
.section-fold__summary {
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.section-fold__summary::-webkit-details-marker { display: none; }
.section-fold__summary::marker { content: ''; }
.section-fold__summary .container {
  position: relative;
  padding-right: 3.25rem;
}
.section-fold__summary:hover .section-title,
.section-fold__summary:focus-visible .section-title {
  color: var(--gold);
}
.section-fold:not([open]) .section-fold__lead,
.section-fold:not([open]) .section-lead {
  margin-bottom: 0;
}
.section-fold__chevron {
  position: absolute;
  right: 2rem;
  top: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 50%;
  transition: transform 0.35s ease, border-color 0.25s;
}
.section-fold__chevron::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translate(-1px, -1px);
  transition: transform 0.35s ease;
}
.section-fold[open] .section-fold__chevron::before {
  transform: rotate(45deg) translate(-1px, 1px);
}
.section-fold__summary:hover .section-fold__chevron,
.section-fold__summary:focus-visible .section-fold__chevron {
  border-color: rgba(216, 120, 88, 0.45);
}
.section-fold__body {
  padding-top: 0.5rem;
}
.section-fold.about .section-fold__body,
.section-fold.connect .section-fold__body {
  position: relative;
  overflow: visible;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
  will-change: auto;
}
#hero .reveal,
#hero .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

/* ── Grief Eater ── */
.grief-eater {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.ge-forest-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.grief-eater.is-forest-active .ge-forest-layer {
  opacity: 1;
}
.grief-eater.is-forest-poof .ge-forest-layer {
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ge-forest-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ge-leaf {
  position: absolute;
  width: 42px;
  height: 28px;
  border-radius: 0 80% 0 80%;
  background: linear-gradient(135deg, rgba(45, 58, 38, 0.55), rgba(28, 36, 24, 0.35));
  filter: blur(0.3px);
  opacity: 0;
  transform: scale(0.6) rotate(var(--rot, 0deg));
  transition: opacity 0.5s ease, transform 0.45s ease;
}
.grief-eater.is-forest-active .ge-leaf {
  opacity: 0.85;
  animation: ge-leaf-rustle 2.8s ease-in-out infinite;
}
.ge-leaf--1 { left: 8%; top: 22%; --rot: -18deg; animation-delay: 0s; }
.ge-leaf--2 { left: 18%; top: 68%; --rot: 12deg; animation-delay: 0.4s; width: 52px; }
.ge-leaf--3 { right: 12%; top: 30%; --rot: 25deg; animation-delay: 0.2s; }
.ge-leaf--4 { right: 22%; top: 72%; --rot: -8deg; animation-delay: 0.55s; }
.ge-leaf--5 { left: 42%; top: 12%; --rot: 6deg; animation-delay: 0.15s; width: 36px; }
.ge-leaf--6 { left: 55%; top: 82%; --rot: -22deg; animation-delay: 0.35s; }
@keyframes ge-leaf-rustle {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateX(0) scale(1); }
  35% { transform: rotate(calc(var(--rot, 0deg) + 6deg)) translateX(4px) scale(1.05); }
  70% { transform: rotate(calc(var(--rot, 0deg) - 5deg)) translateX(-3px) scale(0.98); }
}
.ge-forest-dogs {
  position: absolute;
  inset: 0;
}
.ge-ghost-dog {
  position: absolute;
  width: 64px;
  height: 72px;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(196, 92, 62, 0.3));
  transition: opacity 0.55s ease, transform 0.4s ease;
}
.wolf-head-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.wolf-maw,
.wolf-jaw,
.wolf-teeth,
.wolf-teeth-lower {
  transform-box: fill-box;
  transform-origin: center bottom;
}
.ge-ghost-dog svg { width: 100%; height: 100%; }
.grief-eater.is-forest-active .wolf-head--snarl {
  animation: wolf-snarl-idle 3.2s ease-in-out infinite;
}
.grief-eater.is-forest-active .ge-ghost-dog--1 .wolf-jaw { animation: wolf-jaw-snarl 2.4s ease-in-out infinite; }
.grief-eater.is-forest-active .ge-ghost-dog--2 .wolf-jaw { animation: wolf-jaw-snarl 2.8s ease-in-out 0.4s infinite; }
.grief-eater.is-forest-active .ge-ghost-dog--3 .wolf-jaw { animation: wolf-jaw-snarl 3s ease-in-out 0.8s infinite; }
@keyframes wolf-snarl-idle {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-3px); }
}
@keyframes wolf-jaw-snarl {
  0%, 100% { transform: scaleY(1); }
  40% { transform: scaleY(1.08) translateY(1px); }
  55% { transform: scaleY(0.96); }
}
.ge-ghost-dog--1 { left: 14%; bottom: 28%; transform: translateX(-20px); }
.ge-ghost-dog--2 { right: 18%; bottom: 34%; transform: translateX(20px) scaleX(-1); }
.ge-ghost-dog--3 { left: 48%; bottom: 18%; width: 52px; height: 58px; opacity: 0; }
.grief-eater.is-forest-active .ge-ghost-dog {
  opacity: 0.92;
  animation: ge-dog-peek 4.5s ease-in-out infinite;
}
.grief-eater.is-forest-active .ge-ghost-dog--1 { animation-delay: 0.1s; }
.grief-eater.is-forest-active .ge-ghost-dog--2 { animation-delay: 0.5s; }
.grief-eater.is-forest-active .ge-ghost-dog--3 { animation-delay: 0.9s; opacity: 0.65; }
.grief-eater.is-forest-poof .ge-ghost-dog {
  opacity: 0 !important;
  transform: scale(0.2) translateY(12px);
  filter: blur(6px);
  transition: opacity 0.28s ease, transform 0.35s ease, filter 0.35s ease;
}
@keyframes ge-dog-peek {
  0%, 100% { transform: translateX(var(--dx, 0)) translateY(8px) scale(0.92); }
  40% { transform: translateX(calc(var(--dx, 0) + 14px)) translateY(-6px) scale(1); }
  55% { transform: translateX(calc(var(--dx, 0) + 6px)) translateY(-2px) scale(0.96); }
}
.ge-ghost-dog--1 { --dx: 0; }
.ge-ghost-dog--2 { --dx: 0; }
.ge-forest-smoke {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.ge-smoke-trail {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(120, 115, 108, 0.45), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.ge-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 4rem; align-items: center;
  position: relative;
  z-index: 3;
}
/* Track rail sits under the art/copy grid at full container width */
.grief-eater .container {
  display: block;
}
.ge-visual {
  position: relative; aspect-ratio: 1 / 1;
  max-width: min(100%, 720px); 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-storm {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.ge-storm[hidden] { display: none !important; }
.ge-visual.is-storm-active .ge-storm {
  opacity: 1;
}
.ge-visual.is-storm-active .ge-art {
  filter: saturate(0.82) brightness(0.72) contrast(1.08);
  transition: filter 0.8s ease;
}
.ge-storm-fog {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(140, 150, 165, 0.55) 0%, transparent 68%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(120, 130, 145, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 45%, rgba(110, 120, 135, 0.3) 0%, transparent 72%);
  filter: blur(10px);
  animation: ge-storm-fog-drift 7s ease-in-out infinite;
}
.ge-storm-fog--2 {
  animation-duration: 11s;
  animation-delay: -3s;
  opacity: 0.75;
  mix-blend-mode: screen;
}
@keyframes ge-storm-fog-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(-3%, -2%) scale(1.06); opacity: 1; }
}
.ge-storm-rain {
  position: absolute;
  inset: -25% 0 0 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0px, transparent 2px,
    rgba(180, 200, 220, 0.07) 2px, rgba(180, 200, 220, 0.07) 3px
  );
  animation: ge-storm-rain-fall 0.42s linear infinite;
  opacity: 0.85;
}
@keyframes ge-storm-rain-fall {
  to { transform: translateY(22px); }
}
.ge-storm-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%,
    transparent 35%,
    rgba(4, 6, 10, 0.55) 100%);
}
.ge-storm-flash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at var(--bolt-x, 50%) 18%,
    rgba(235, 242, 255, 0) 0%,
    rgba(180, 200, 240, 0) 100%);
}
.ge-storm-flash.is-active {
  animation: ge-storm-flash-pulse 0.52s ease-out forwards;
}
@keyframes ge-storm-flash-pulse {
  0% { opacity: 0; background: radial-gradient(ellipse at var(--bolt-x, 50%) 15%, rgba(235, 242, 255, 0.7) 0%, rgba(160, 185, 230, 0.22) 42%, transparent 78%); }
  10% { opacity: 1; }
  22% { opacity: 0.12; }
  32% { opacity: 0.72; }
  100% { opacity: 0; }
}
.ge-storm-bolt {
  position: absolute;
  width: clamp(22px, 12%, 44px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(200, 220, 255, 0.95)) drop-shadow(0 0 22px rgba(140, 180, 255, 0.55));
}
.ge-storm-bolt.is-active {
  animation: ge-storm-bolt-strike 0.44s ease-out forwards;
}
@keyframes ge-storm-bolt-strike {
  0% { opacity: 0; transform: scale(0.5) translateY(-8px); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: scale(1) translateY(4px); }
}
.ge-visual.is-storm-active .smoke-wisp {
  opacity: 0.9;
  animation-duration: 5s;
}
.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-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ge-whisper {
  font-family: var(--font-display);
  font-style: italic; color: var(--text-muted);
  font-size: 1.1rem; margin-bottom: 0;
}
.ge-wild-dogs-whisper {
  flex-shrink: 0;
  width: clamp(52px, 9vw, 84px);
  opacity: 0.32;
  pointer-events: none;
  filter: grayscale(0.35) contrast(1.08);
  transition: opacity 0.55s var(--ease), filter 0.55s var(--ease);
}
.ge-wild-dogs-whisper picture,
.ge-wild-dogs-whisper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1168 / 784;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
.grief-eater.is-forest-active .ge-wild-dogs-whisper {
  opacity: 0.48;
  filter: grayscale(0.15) contrast(1.12);
}
@media (max-width: 520px) {
  .ge-wild-dogs-whisper { width: 48px; opacity: 0.26; }
}
.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 {
  display: inline-block;
  min-width: 8.5ch;
  background: #1a1816;
  color: #3a3834;
  padding: 0.12rem 0.55rem;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  border: 1px solid rgba(196, 92, 62, 0.35);
  border-radius: 2px;
  cursor: crosshair;
  transition: color 0.15s, box-shadow 0.2s, border-color 0.2s;
  user-select: none;
}
.ge-redacted:hover,
.ge-redacted.is-scrambling {
  color: #c45c3e;
  border-color: rgba(196, 92, 62, 0.65);
  box-shadow: 0 0 14px rgba(196, 92, 62, 0.25), inset 0 0 8px rgba(196, 92, 62, 0.12);
  animation: ge-redact-flicker 0.08s steps(2) infinite;
}
@keyframes ge-redact-flicker {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.15); }
}
.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; }

/* Grief Eater tracklist -- cover-card rail (matches demo-page "More Grief Eater demos") */
.ge-track-rail {
  width: 100%;
  max-width: 100%;
  margin: 2.75rem 0 0;
  padding: 0;
  position: relative;
  z-index: 3;
}
.ge-track-rail__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ge-track-rail__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}
.ge-track-rail__sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}
.ge-track-rail__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.ge-track-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s var(--ease),
    border-color 0.25s ease,
    box-shadow 0.28s ease;
  min-width: 0;
}
.ge-track-card--live:hover,
.ge-track-card--live:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.38),
    0 0 0 1px var(--accent-glow);
  outline: none;
}
.ge-track-card picture,
.ge-track-card > .ge-track-card__art {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.ge-track-card__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s var(--ease),
    filter 0.35s ease;
}
.ge-track-card--live:hover .ge-track-card__art,
.ge-track-card--live:focus-visible .ge-track-card__art {
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1.04);
}
/* Redacted / void card face -- dark forest slab, no image needed */
.ge-track-card__art--void {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(196, 92, 62, 0.12), transparent 70%),
    linear-gradient(165deg, #1a1614 0%, #0c0a08 48%, #141210 100%);
}
.ge-track-card__art--void::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 7px,
      rgba(184, 149, 106, 0.04) 7px,
      rgba(184, 149, 106, 0.04) 8px
    );
  opacity: 0.85;
  pointer-events: none;
}
.ge-track-card__art--void::after {
  content: "REDACTED";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(0.55rem, 1.4vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 149, 106, 0.22);
  pointer-events: none;
}
.ge-track-card--redacted {
  cursor: default;
  opacity: 0.88;
}
.ge-track-card--redacted:hover {
  border-color: rgba(184, 149, 106, 0.28);
}
.ge-track-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.75rem 0.75rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 8, 12, 0.55) 28%,
    rgba(6, 8, 12, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: none;
}
/* Allow redacted title scramble hover/focus */
.ge-track-card--redacted .ge-track-card__meta {
  pointer-events: auto;
}
.ge-track-card__num {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.ge-track-card__name {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #f6f1ea;
  min-width: 0;
}
.ge-track-title.ge-redacted.ge-track-card__name {
  display: block;
  width: fit-content;
  max-width: 100%;
  min-width: 5ch;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  font-size: clamp(0.62rem, 1.4vw, 0.74rem);
  padding: 0.08rem 0.35rem;
  cursor: crosshair;
  outline: none;
  line-height: 1.2;
  color: var(--text-muted);
  pointer-events: auto;
}
.ge-track-title.ge-redacted.ge-track-card__name:focus-visible {
  box-shadow: 0 0 0 2px rgba(196, 92, 62, 0.45);
}
.ge-track-card__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196, 92, 62, 0.45);
  border-radius: 999px;
  padding: 0.14rem 0.42rem;
  white-space: nowrap;
  line-height: 1.2;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 900px) {
  .ge-track-rail { margin-top: 2rem; }
  .ge-track-rail__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }
}
@media (max-width: 640px) {
  .ge-track-rail__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .ge-track-card__name { font-size: 0.78rem; }
}
@media (max-width: 420px) {
  .ge-track-rail__track { gap: 0.55rem; }
  .ge-track-card__meta { padding: 0.55rem 0.55rem 0.6rem; }
  .ge-track-card__badge {
    top: 0.4rem;
    right: 0.4rem;
    font-size: 0.48rem;
    padding: 0.1rem 0.34rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ge-track-card,
  .ge-track-card__art {
    transition: none !important;
  }
  .ge-track-card--live:hover,
  .ge-track-card--live:focus-visible {
    transform: none;
  }
  .ge-track-card--live:hover .ge-track-card__art,
  .ge-track-card--live:focus-visible .ge-track-card__art {
    transform: none;
  }
}
.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;
}
.notify-follow {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(20, 18, 16, 0.45);
}
.notify-follow-lead {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.notify-follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.notify-follow-links a {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.notify-follow-links a:hover { color: var(--accent); }

/* ── About ── */
.about { background: var(--bg-elevated); position: relative; overflow: visible; }

/* ── Fiery bird -- quiet margin easter egg (About) ── */
.fiery-bird-whisper {
  position: absolute;
  top: clamp(1.25rem, 4vw, 2.75rem);
  right: clamp(0.75rem, 3vw, 2.25rem);
  width: clamp(52px, 7vw, 84px);
  z-index: 5;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.32;
  transform: rotate(-6deg);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
  animation: fiery-bird-drift 9s ease-in-out infinite;
}
.fiery-bird-whisper:hover,
.fiery-bird-whisper:focus-visible,
.fiery-bird-whisper.is-void {
  opacity: 1;
  transform: rotate(-2deg) scale(1.04);
  animation-play-state: paused;
}
.fiery-bird-whisper-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition:
    filter 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s var(--ease);
  filter: saturate(1.08) drop-shadow(0 3px 10px rgba(196, 92, 62, 0.18));
}
.fiery-bird-whisper:hover .fiery-bird-whisper-img,
.fiery-bird-whisper:focus-visible .fiery-bird-whisper-img,
.fiery-bird-whisper.is-void .fiery-bird-whisper-img {
  filter: brightness(0) contrast(1.2) saturate(0);
  transform: scale(1.03);
}
.fiery-bird-whisper-aura {
  position: absolute;
  inset: -35%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle,
    rgba(255, 248, 235, 0) 0%,
    rgba(184, 149, 106, 0) 55%,
    transparent 72%);
  transition: opacity 1.1s var(--ease), transform 1.2s var(--ease);
  transform: scale(0.85);
}
.fiery-bird-whisper:hover .fiery-bird-whisper-aura,
.fiery-bird-whisper:focus-visible .fiery-bird-whisper-aura,
.fiery-bird-whisper.is-void .fiery-bird-whisper-aura {
  opacity: 1;
  transform: scale(1.15);
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(184, 149, 106, 0.28) 38%,
    rgba(196, 92, 62, 0.08) 58%,
    transparent 74%);
  animation: fiery-bird-void-pulse 2.4s ease-in-out infinite;
}
.fiery-bird-whisper-smoke {
  position: absolute;
  inset: -10% -20%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(ellipse 40% 30% at 30% 60%, rgba(200, 195, 185, 0.45), transparent 70%),
    radial-gradient(ellipse 35% 28% at 70% 45%, rgba(180, 175, 168, 0.35), transparent 68%);
  filter: blur(8px);
  transition: opacity 1s var(--ease);
}
.fiery-bird-whisper:hover .fiery-bird-whisper-smoke,
.fiery-bird-whisper:focus-visible .fiery-bird-whisper-smoke,
.fiery-bird-whisper.is-void .fiery-bird-whisper-smoke {
  opacity: 1;
  animation: fiery-bird-smoke-breathe 2.8s ease-in-out infinite;
}
.fiery-bird-whisper.is-smoking .fiery-bird-whisper-smoke {
  opacity: 1;
}
.fiery-bird-zap-puffs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.fiery-bird-zap-puff {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%,
    rgba(220, 215, 205, 0.9) 0%,
    rgba(180, 175, 168, 0.55) 42%,
    transparent 72%);
  filter: blur(3px);
  pointer-events: none;
}
.fiery-bird-whisper.is-zapped {
  animation: fiery-bird-zap-buzz 0.42s steps(8) 1;
}
.fiery-bird-whisper.is-zapped .fiery-bird-whisper-img {
  filter: brightness(0) contrast(1.35) saturate(0)
    drop-shadow(0 0 8px rgba(255, 220, 120, 0.85))
    drop-shadow(0 0 18px rgba(216, 120, 88, 0.55));
}
.fiery-bird-whisper.is-zapped .fiery-bird-whisper-aura {
  opacity: 1;
  background: radial-gradient(circle,
    rgba(255, 248, 180, 0.45) 0%,
    rgba(255, 200, 80, 0.28) 32%,
    rgba(216, 120, 88, 0.15) 55%,
    transparent 72%);
  animation: fiery-bird-zap-flash 0.42s ease-out 1;
}
.fiery-bird-whisper.is-zapped .fiery-bird-whisper-smoke {
  opacity: 1;
  animation: fiery-bird-zap-smoke-burst 0.65s ease-out 1;
}
@keyframes fiery-bird-zap-buzz {
  0%, 100% { transform: rotate(-2deg) scale(1.04) translate(0, 0); }
  12% { transform: rotate(1deg) scale(1.08) translate(-4px, 2px); }
  25% { transform: rotate(-4deg) scale(1.02) translate(3px, -3px); }
  37% { transform: rotate(2deg) scale(1.07) translate(-2px, 4px); }
  50% { transform: rotate(-3deg) scale(1.05) translate(4px, -1px); }
  62% { transform: rotate(1deg) scale(1.06) translate(-3px, -2px); }
  75% { transform: rotate(-2deg) scale(1.03) translate(2px, 3px); }
  87% { transform: rotate(3deg) scale(1.05) translate(-1px, -3px); }
}
@keyframes fiery-bird-zap-flash {
  0% { opacity: 0.2; transform: scale(0.7); }
  25% { opacity: 1; transform: scale(1.35); }
  100% { opacity: 0.85; transform: scale(1.12); }
}
@keyframes fiery-bird-zap-smoke-burst {
  0% { opacity: 0; transform: scale(0.6) translateY(6px); }
  30% { opacity: 1; transform: scale(1.25) translateY(-10px); }
  100% { opacity: 0.7; transform: scale(1.1) translateY(-4px); }
}
@keyframes fiery-bird-drift {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-4px); }
}
@keyframes fiery-bird-void-pulse {
  0%, 100% { opacity: 0.75; filter: blur(0); }
  50% { opacity: 1; filter: blur(1px); }
}
@keyframes fiery-bird-smoke-breathe {
  0%, 100% { transform: scale(1) translateY(0); opacity: 0.65; }
  50% { transform: scale(1.08) translateY(-6px); opacity: 1; }
}
body.has-spirit-cursor .fiery-bird-whisper { cursor: pointer; }
@media (prefers-reduced-motion: reduce) {
  .fiery-bird-whisper { animation: none; }
  .fiery-bird-whisper-img,
  .fiery-bird-whisper-aura,
  .fiery-bird-whisper-smoke { transition-duration: 0.2s; }
  .fiery-bird-whisper:hover .fiery-bird-whisper-aura,
  .fiery-bird-whisper.is-void .fiery-bird-whisper-aura { animation: none; }
  .fiery-bird-whisper.is-zapped { animation: none; }
  .ge-storm-rain, .ge-storm-fog { animation: none; }
  .ge-visual.is-storm-active .ge-art { filter: saturate(0.9) brightness(0.85); }
}
@media (max-width: 900px) {
  .fiery-bird-whisper {
    top: 0.75rem;
    right: 0.5rem;
    width: 48px;
    opacity: 0.26;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 2rem 3rem;
  align-items: center;
}
.about-image { position: relative; overflow: visible; }
.about-portrait-stage {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  overflow: visible;
}
.about-garden {
  position: absolute;
  inset: -34% -30%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.about-portrait-stage.is-blooming .about-garden {
  opacity: 1;
}
.about-garden-vines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}
.about-vine {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0.9;
  stroke: #2a3d2c;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.about-vine--2 { stroke: #324a38; }
.about-vine--3 { stroke: #1e3024; }
.about-vine--4 { stroke: #2a4030; }
.about-vine--5 { stroke: #3a5240; }
.about-portrait-stage.is-blooming .about-vine--1 { animation: vine-unfurl 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.05s forwards; }
.about-portrait-stage.is-blooming .about-vine--2 { animation: vine-unfurl 1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s forwards; }
.about-portrait-stage.is-blooming .about-vine--3 { animation: vine-unfurl 1.15s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s forwards; }
.about-portrait-stage.is-blooming .about-vine--4 { animation: vine-unfurl 1.05s cubic-bezier(0.34, 1.2, 0.64, 1) 0.2s forwards; }
.about-portrait-stage.is-blooming .about-vine--5 { animation: vine-unfurl 0.95s cubic-bezier(0.34, 1.2, 0.64, 1) 0s forwards; }
@keyframes vine-unfurl {
  to { stroke-dashoffset: 0; }
}
.about-garden-smoke {
  position: absolute;
  inset: 10%;
  overflow: visible;
  pointer-events: none;
}
.about-garden-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 195, 185, 0.42), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.about-portrait-stage.is-blooming .about-garden-smoke::before,
.about-portrait-stage.is-blooming .about-garden-smoke::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 175, 165, 0.35), transparent 68%);
  filter: blur(12px);
  animation: garden-smoke-drift 4s ease-in-out infinite;
}
.about-portrait-stage.is-blooming .about-garden-smoke::before {
  width: 80px; height: 56px;
  left: 15%; top: 20%;
}
.about-portrait-stage.is-blooming .about-garden-smoke::after {
  width: 64px; height: 48px;
  right: 12%; bottom: 18%;
  animation-delay: 1.8s;
}
@keyframes garden-smoke-drift {
  0%, 100% { opacity: 0.35; transform: translate(0, 0) scale(1); }
  50% { opacity: 0.65; transform: translate(8px, -12px) scale(1.15); }
}
.about-flower {
  position: absolute;
  width: var(--sz, 40px);
  height: var(--sz, 40px);
  opacity: 0;
  transform: scale(0) rotate(calc(var(--rot, 0deg) - 50deg));
  transform-origin: center bottom;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.about-flower svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: saturate(0.72) contrast(1.18) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.about-flower--1 { --sz: 58px; left: 4%; top: 6%; }
.about-flower--2 { --sz: 64px; left: 38%; top: -4%; animation-delay: 0.08s !important; }
.about-flower--3 { --sz: 50px; right: 6%; top: 8%; animation-delay: 0.14s !important; }
.about-flower--4 { --sz: 54px; right: -2%; top: 32%; animation-delay: 0.2s !important; }
.about-flower--5 { --sz: 56px; right: 4%; bottom: 28%; animation-delay: 0.26s !important; }
.about-flower--6 { --sz: 52px; right: 18%; bottom: 2%; animation-delay: 0.18s !important; }
.about-flower--7 { --sz: 60px; left: 32%; bottom: -2%; animation-delay: 0.12s !important; }
.about-flower--8 { --sz: 58px; left: 2%; bottom: 22%; animation-delay: 0.22s !important; }
.about-flower--9 { --sz: 44px; left: -2%; top: 38%; animation-delay: 0.16s !important; }
.about-flower--10 { --sz: 50px; left: 8%; top: 22%; animation-delay: 0.24s !important; }
.about-flower--11 { --sz: 40px; left: 22%; top: 2%; animation-delay: 0.1s !important; }
.about-flower--12 { --sz: 48px; right: 22%; top: 18%; animation-delay: 0.28s !important; }
@keyframes flower-sprout {
  0% { opacity: 0; transform: scale(0) rotate(calc(var(--rot, 0deg) - 55deg)) translateY(12px); }
  55% { opacity: 1; transform: scale(1.12) rotate(calc(var(--rot, 0deg) + 6deg)) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) rotate(var(--rot, 0deg)) translateY(0); }
}
.about-portrait-stage.is-blooming .about-flower {
  animation: flower-sprout 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}
.about-portrait-stage.is-blooming .about-flower svg {
  animation: flower-petal-sway 3.2s ease-in-out 0.85s infinite;
  transform-origin: center bottom;
  filter: saturate(0.78) contrast(1.14) drop-shadow(0 5px 14px rgba(0, 0, 0, 0.48));
}
@keyframes flower-petal-sway {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.04); }
}
.about-portrait-stage.is-blooming .about-image-wrap {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(184, 149, 106, 0.12),
    0 0 48px rgba(90, 140, 80, 0.18),
    0 0 80px rgba(196, 92, 62, 0.08);
}
.about-portrait-stage.is-blooming .about-image-glow {
  background: radial-gradient(ellipse at 50% 40%, rgba(120, 180, 90, 0.2), rgba(196, 92, 62, 0.08) 45%, transparent 70%);
}
.about-creep-leaves {
  position: absolute;
  inset: -14% -12%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.about-creep-leaf {
  position: absolute;
  width: var(--cw, 52px);
  height: auto;
  opacity: 0;
  transform: scale(0.25) rotate(var(--rot, 0deg));
  transform-origin: center center;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.55)) saturate(0.65) brightness(0.72);
}
.about-creep-leaf--1 { --cw: 58px; --rot: -38deg; left: 6%; top: 4%; }
.about-creep-leaf--2 { --cw: 52px; --rot: 12deg; left: 38%; top: -2%; }
.about-creep-leaf--3 { --cw: 54px; --rot: 28deg; right: 4%; top: 6%; }
.about-creep-leaf--4 { --cw: 48px; --rot: 72deg; right: -4%; top: 34%; }
.about-creep-leaf--5 { --cw: 56px; --rot: 118deg; right: 2%; bottom: 26%; }
.about-creep-leaf--6 { --cw: 50px; --rot: 152deg; right: 16%; bottom: 0%; }
.about-creep-leaf--7 { --cw: 54px; --rot: -168deg; left: 30%; bottom: -4%; }
.about-creep-leaf--8 { --cw: 52px; --rot: -122deg; left: 0%; bottom: 20%; }
.about-creep-leaf--9 { --cw: 44px; --rot: -82deg; left: -2%; top: 36%; }
.about-creep-leaf--10 { --cw: 46px; --rot: -18deg; left: 10%; top: 18%; }
.about-portrait-stage.is-creeping .about-creep-leaf {
  animation: creep-leaf-emerge var(--dur, 5s) cubic-bezier(0.22, 0.85, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}
.about-creep-leaf--1 { --dur: 4.8s; --delay: 0s; }
.about-creep-leaf--2 { --dur: 5.4s; --delay: 0.35s; }
.about-creep-leaf--3 { --dur: 5.1s; --delay: 0.2s; }
.about-creep-leaf--4 { --dur: 5.6s; --delay: 0.55s; }
.about-creep-leaf--5 { --dur: 4.6s; --delay: 0.15s; }
.about-creep-leaf--6 { --dur: 5.3s; --delay: 0.45s; }
.about-creep-leaf--7 { --dur: 5s; --delay: 0.3s; }
.about-creep-leaf--8 { --dur: 5.5s; --delay: 0.6s; }
.about-creep-leaf--9 { --dur: 4.9s; --delay: 0.1s; }
.about-creep-leaf--10 { --dur: 5.2s; --delay: 0.5s; }
@keyframes creep-leaf-emerge {
  0% { opacity: 0; transform: scale(0.2) rotate(calc(var(--rot, 0deg) - 20deg)) translate(0, 0); }
  12% { opacity: 0.55; }
  100% { opacity: 0.88; transform: scale(1.05) rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)); }
}
.about-creep-leaf--1 { --tx: -18px; --ty: -22px; }
.about-creep-leaf--2 { --tx: 0px; --ty: -28px; }
.about-creep-leaf--3 { --tx: 20px; --ty: -18px; }
.about-creep-leaf--4 { --tx: 32px; --ty: 4px; }
.about-creep-leaf--5 { --tx: 26px; --ty: 18px; }
.about-creep-leaf--6 { --tx: 10px; --ty: 24px; }
.about-creep-leaf--7 { --tx: -6px; --ty: 28px; }
.about-creep-leaf--8 { --tx: -24px; --ty: 14px; }
.about-creep-leaf--9 { --tx: -30px; --ty: -4px; }
.about-creep-leaf--10 { --tx: -14px; --ty: -12px; }
.about-portrait-stage.is-creeping .about-image-wrap {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(60, 90, 70, 0.18),
    0 0 40px rgba(30, 50, 35, 0.35),
    inset 0 0 60px rgba(8, 12, 8, 0.25);
}
.about-portrait-stage.is-creeping .about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(ellipse at 50% 50%, transparent 42%, rgba(6, 10, 6, 0.35) 100%);
  opacity: 0;
  animation: creep-vignette 2.5s ease forwards;
}
@keyframes creep-vignette {
  to { opacity: 1; }
}
.about-image-wrap {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(184, 149, 106, 0.12);
}
.about-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 3px;
  filter: grayscale(8%) contrast(1.06) saturate(1.02);
  transition: filter 0.45s ease;
}
.about-image-wrap:hover img {
  filter: grayscale(0%) contrast(1.08) saturate(1.08);
}
.about-image-glow {
  position: absolute;
  inset: 8% 5% 12% 5%;
  background: radial-gradient(ellipse at 50% 40%, rgba(196, 92, 62, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.about-image-wrap img { position: relative; z-index: 1; }
.about-image-frame {
  position: absolute; inset: -12px;
  border: 1px solid var(--gold-dim); pointer-events: none;
  z-index: 2;
  transition: inset 0.45s var(--ease), border-color 0.45s;
}
.about-image-wrap:hover .about-image-frame {
  inset: -16px;
  border-color: rgba(184, 149, 106, 0.45);
}
.about-image-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.about-image-wrap:hover .about-image-corner { opacity: 0.9; }
.about-image-corner--tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
.about-image-corner--tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
.about-image-corner--bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
.about-image-corner--br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }
.about-image-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 3px;
  background: radial-gradient(ellipse at 50% 35%, transparent 42%, rgba(10, 9, 8, 0.42) 100%);
  opacity: 0.75;
  transition: opacity 0.45s ease;
}
.about-image-wrap:hover .about-image-vignette { opacity: 0.45; }
.about-image-scan {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: 3px;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(184, 149, 106, 0.03) 3px, rgba(184, 149, 106, 0.03) 4px
  );
  opacity: 0;
  animation: about-scan-sweep 8s linear infinite;
}
.about-image-wrap:hover .about-image-scan { opacity: 1; }
@keyframes about-scan-sweep {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.about-image-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 5;
  font-family: var(--font-display);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.55;
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.about-image-wrap:hover .about-image-badge {
  border-color: rgba(196, 92, 62, 0.55);
  transform: translateY(-2px);
}
.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-tag {
  position: relative;
  overflow: hidden;
  padding: 0.45rem 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.35s, border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
  cursor: default;
}
.about-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.about-tag:hover::after { opacity: 1; }
.about-tag--folk:hover {
  color: #8fbc8f;
  border-color: rgba(143, 188, 143, 0.55);
  background: rgba(40, 58, 42, 0.55);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 8px 20px rgba(60, 90, 65, 0.25), 0 0 0 1px rgba(143, 188, 143, 0.2);
}
.about-tag--folk::after {
  background: radial-gradient(circle at 30% 50%, rgba(143, 188, 143, 0.25), transparent 55%);
  animation: tag-shimmer 1.2s ease infinite;
}
.about-tag--rock:hover {
  color: #e8a87c;
  border-color: rgba(232, 168, 124, 0.5);
  background: rgba(58, 38, 28, 0.5);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 22px rgba(196, 92, 62, 0.35), inset 0 0 16px rgba(196, 92, 62, 0.08);
}
.about-tag--rock::after {
  background: linear-gradient(105deg, transparent 40%, rgba(232, 168, 124, 0.2) 50%, transparent 60%);
  animation: tag-sweep 0.9s ease infinite;
}
.about-tag--songwriter:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(48, 40, 32, 0.6);
  transform: translateY(-3px) skewX(-2deg);
  letter-spacing: 0.14em;
  box-shadow: 0 0 20px rgba(184, 149, 106, 0.22);
}
.about-tag--songwriter::after {
  background: repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(184, 149, 106, 0.08) 4px, rgba(184, 149, 106, 0.08) 5px);
  animation: tag-shimmer 1.5s linear infinite;
}
.about-tag--guitar:hover {
  color: #c4b8a8;
  border-color: rgba(196, 184, 168, 0.45);
  background: linear-gradient(135deg, rgba(36, 32, 28, 0.7), rgba(28, 24, 20, 0.85));
  transform: translateY(-2px) translateX(3px);
  box-shadow: inset 0 0 12px rgba(184, 149, 106, 0.15), 0 6px 16px rgba(0, 0, 0, 0.3);
}
.about-tag--guitar::after {
  background: linear-gradient(180deg, transparent 60%, rgba(184, 149, 106, 0.15) 100%);
  animation: tag-vibrate 0.15s ease infinite alternate;
}
@keyframes tag-shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}
@keyframes tag-sweep {
  0% { transform: translateX(-100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes tag-vibrate {
  0% { transform: translateX(-1px); }
  100% { transform: translateX(1px); }
}
.disambig-box {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(196, 92, 62, 0.35);
  border-left: 3px solid var(--accent);
  background: rgba(196, 92, 62, 0.08);
  border-radius: 3px;
}
.disambig-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.disambig-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.disambig-body strong { color: var(--text); }

/* ── Music ── */
.music { background: var(--bg); }
.album-featured {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 1.25rem;
  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-featured-smoke {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.album-featured > :not(.album-featured-smoke) {
  position: relative;
  z-index: 1;
}
.album-header { max-width: 72ch; }
.album-body {
  position: relative;
}
.album-platform-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem 1.25rem;
  width: calc(100% + 5rem);
  margin: -2.5rem -2.5rem 0;
  padding: 0.42rem 1.15rem;
  border-bottom: 1px solid rgba(184, 149, 106, 0.14);
  background: rgba(6, 5, 4, 0.42);
  overflow: visible;
}
.album-platform-actions .album-buy,
.album-platform-actions .album-stream {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0;
  padding: 0.15rem 0.35rem;
  width: auto;
  background: transparent;
  border: none;
}
.album-platform-actions .album-player-label {
  margin-bottom: 0;
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.album-platform-actions .platform-logos {
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.28rem;
}
.album-platform-actions .platform-logo {
  gap: 0;
  position: relative;
}
.album-platform-actions .platform-logo-icon {
  width: 30px;
  height: 30px;
}
.album-platform-actions .platform-logo-icon svg {
  width: 14px;
  height: 14px;
}
.album-platform-actions .platform-logo-smoke {
  width: 34px;
  height: 28px;
}
.album-platform-actions .platform-logo-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 5px);
  transform: translateX(-50%) translateY(4px);
  font-size: 0.46rem;
  max-width: none;
  white-space: nowrap;
  opacity: 0;
  max-height: none;
  overflow: visible;
  pointer-events: none;
  padding: 0.15rem 0.35rem;
  border-radius: 2px;
  background: rgba(10, 9, 8, 0.92);
  border: 1px solid rgba(184, 149, 106, 0.2);
  z-index: 4;
}
.album-platform-actions .platform-logo:hover .platform-logo-label,
.album-platform-actions .platform-logo:focus-visible .platform-logo-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.album-split {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
}
.album-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.album-tracks-panel {
  min-width: 0;
  padding-top: 0;
}
.album-tabs-list {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  padding: 0.3rem;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 4px;
  background: rgba(6, 5, 4, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.album-tab {
  flex: 1;
  min-height: 42px;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.25s var(--ease);
}
.album-tab:hover {
  color: var(--text);
  background: rgba(184, 149, 106, 0.06);
}
.album-tab.is-active {
  color: var(--gold);
  background: rgba(184, 149, 106, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(184, 149, 106, 0.28),
    0 0 18px rgba(196, 92, 62, 0.08);
}
.album-tab:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.album-tab-panel {
  animation: album-tab-in 0.4s var(--ease);
}
.album-tab-panel[hidden] {
  display: none !important;
}
@keyframes album-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.album-listen-lead {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.album-cover {
  position: relative;
  transition: transform 0.5s var(--ease);
}
.album-cover--full { overflow: visible; }
.album-cover-frame {
  position: relative;
  padding: 0.75rem;
  background: linear-gradient(145deg, rgba(30, 26, 22, 0.9), rgba(12, 10, 8, 0.95));
  border: 1px solid rgba(184, 149, 106, 0.28);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 16px 40px rgba(0, 0, 0, 0.45);
}
.album-featured:hover .album-cover--full { transform: translateY(-4px); }
.vinyl-wrap {
  perspective: 800px;
}
.vinyl-disc {
  position: absolute;
  top: 10%; right: -6%;
  width: 82%; 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;
  display: block;
  width: 100%; height: auto; aspect-ratio: 1; object-fit: contain;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  border-radius: 2px;
  transition: transform 0.6s var(--ease);
}
.vinyl-wrap:hover .vinyl-disc {
  opacity: 1;
  transform: translateX(18%) rotate(180deg);
  animation: vinyl-spin 4s linear infinite;
}
.vinyl-wrap:hover .vinyl-sleeve {
  transform: translateX(-4%) rotateY(-6deg);
}
@keyframes vinyl-spin {
  to { transform: translateX(18%) rotate(540deg); }
}
.album-credits {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: rgba(10, 9, 8, 0.5);
  border-radius: 3px;
}
.album-credits-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.35rem 1rem;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  line-height: 1.5;
}
.album-credits-row + .album-credits-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.album-credits dt {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.album-credits dd {
  margin: 0;
  color: var(--text-muted);
}
.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: 0.75rem; }
.track-lyrics-zone { margin-bottom: 2rem; }
.tracklist { margin-bottom: 0.5rem; position: relative; list-style: none; padding: 0; }
.tracklist > li { margin: 0; padding: 0; }
.track-item {
  display: flex; align-items: center; gap: 0.75rem;
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.35rem; border-bottom: 1px solid var(--border);
  touch-action: manipulation;
  font-size: 0.9rem; color: var(--text-muted);
  font-family: inherit;
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
  cursor: pointer; position: relative;
  border-radius: 3px;
  user-select: none;
  border-left: none; border-right: none; border-top: none;
  background: transparent;
  text-align: left;
}
.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-fold {
  border-top: 1px solid rgba(184, 149, 106, 0.14);
  margin: 0;
  transition: background 0.35s;
}
.album-fold + .album-fold { border-top: none; }
.album-fold:last-of-type { border-bottom: 1px solid rgba(184, 149, 106, 0.14); }
.album-fold[open] {
  background: rgba(10, 9, 8, 0.28);
}
.album-fold-summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.15rem;
  cursor: pointer;
  list-style: none;
  min-height: 38px;
}
.album-fold-summary::-webkit-details-marker { display: none; }
.album-fold-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.album-fold-title em {
  color: var(--gold);
  font-style: normal;
}
.album-fold-meta {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.album-fold-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.album-fold-chevron::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-top: -0.15rem;
}
.album-fold[open] .album-fold-chevron {
  transform: rotate(90deg);
}
.album-fold-body {
  padding: 0.35rem 0 1.15rem;
}
.album-about-fold .album-deep-lead:first-child { margin-top: 0.15rem; }
.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: 0;
  padding-bottom: 0.35rem;
  border: 1px solid rgba(184, 149, 106, 0.14);
  background: rgba(8, 7, 6, 0.45);
}
.album-tab-panel#albumPanelListen .album-player-embed {
  min-height: 352px;
}
.album-player-embed iframe {
  display: block; width: 100%; border: 0;
}

.rn-player {
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: rgba(10, 9, 8, 0.45);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.rn-player-lead {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.rn-player-embed:not(.is-embed-loaded),
.shows-map-widget:not(.is-embed-loaded),
.collab-embed:not(.is-embed-loaded) {
  background: linear-gradient(180deg, rgba(26, 23, 20, 0.6), rgba(20, 18, 16, 0.85));
}
.rn-player-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.15);
  background: #0a0908;
}
.rn-player-embed iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 265px;
  border: 0;
}

.fishtank-promo {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}
.fishtank-promo--inline {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.fishtank-promo-link {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(26, 22, 18, 0.95), rgba(14, 12, 10, 0.98));
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 6px;
  box-shadow: var(--neu-shadow), 0 0 40px rgba(184, 149, 106, 0.06);
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
}
.fishtank-promo-link.fishtank-promo-link--compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem 0.85rem;
  text-align: center;
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-visual {
  width: 100%;
  padding: 0.45rem 0.65rem;
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-logo {
  max-width: 180px;
  margin: 0 auto;
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-text {
  align-items: center;
  gap: 0.2rem;
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-eyebrow {
  margin-top: 0.1rem;
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-title {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
}
.fishtank-promo-link.fishtank-promo-link--compact .fishtank-promo-sub {
  font-size: 0.72rem;
  line-height: 1.35;
}
.fishtank-promo-link:hover,
.fishtank-promo-link:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.55), 0 0 48px rgba(196, 92, 62, 0.12);
  outline: none;
}
.fishtank-promo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  overflow: hidden;
}
.fishtank-promo-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.fishtank-promo-link:hover .fishtank-promo-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 28px rgba(184, 149, 106, 0.25));
}
.fishtank-promo-shine {
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}
.fishtank-promo-link:hover .fishtank-promo-shine {
  transform: translateX(100%);
}
.fishtank-promo-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fishtank-promo-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.fishtank-promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gold);
  line-height: 1.2;
}
.fishtank-promo-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.subsection-title {
  font-family: var(--font-display);
  font-size: 1.35rem; margin: 3rem 0 1.5rem;
  color: var(--gold);
}

.collab-fold {
  margin: 3rem 0 2rem;
  border-top: 1px solid rgba(184, 149, 106, 0.14);
  border-bottom: 1px solid rgba(184, 149, 106, 0.14);
  transition: background 0.35s;
}
.collab-fold[open] {
  background: rgba(10, 9, 8, 0.22);
}
.collab-fold-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.15rem;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.collab-fold-summary::-webkit-details-marker { display: none; }
.collab-fold-summary::marker { content: ''; }
.collab-fold-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--gold);
  transition: color 0.25s;
}
.collab-fold-summary:hover .collab-fold-title,
.collab-fold-summary:focus-visible .collab-fold-title {
  color: var(--accent);
}
.collab-fold[open] .collab-fold-title { color: var(--accent); }
.collab-fold-meta {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.collab-fold-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s ease;
}
.collab-fold-chevron::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg) translate(-1px, -1px);
}
.collab-fold[open] .collab-fold-chevron {
  transform: rotate(90deg);
}
.collab-fold-body {
  padding: 0.25rem 0 1.25rem;
}
.collab-fold-body .collab-carousel {
  margin-bottom: 1.75rem;
}

/* ── Collaborations carousel ── */
.collab-carousel {
  position: relative;
  margin-bottom: 2.5rem;
}
.collab-carousel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.collab-carousel-hint-nudge {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.collab-carousel.is-end .collab-carousel-hint-nudge {
  opacity: 0;
  transform: translateX(6px);
}
.collab-carousel.is-end .collab-carousel-hint-text {
  color: var(--text-muted);
}
.collab-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: height 0.5s var(--ease);
  touch-action: pan-y;
}
.collab-carousel-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.collab-carousel-track.is-dragging {
  transition: none;
}
.collab-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neu-shadow), 0 0 24px rgba(0, 0, 0, 0.35);
  transition: color 0.3s, border-color 0.3s, transform 0.35s var(--ease), opacity 0.35s, box-shadow 0.35s;
}
.collab-carousel-arrow--prev { left: 0.85rem; }
.collab-carousel-arrow--next { right: 0.85rem; }
.collab-carousel-arrow:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: var(--neu-shadow), 0 0 32px rgba(184, 149, 106, 0.25);
}
.collab-carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.collab-carousel:not(.is-end) .collab-carousel-arrow--next {
  animation: collab-arrow-pulse 2.4s ease-in-out infinite;
}
@keyframes collab-arrow-pulse {
  0%, 100% { box-shadow: var(--neu-shadow), 0 0 16px rgba(184, 149, 106, 0.12); }
  50% { box-shadow: var(--neu-shadow), 0 0 28px rgba(184, 149, 106, 0.35); }
}
.collab-carousel-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.collab-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.collab-carousel-dot {
  min-width: 10px;
  height: 10px;
  padding: 0 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  background: rgba(20, 18, 16, 0.65);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}
.collab-carousel-dot:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.collab-carousel-dot.is-active {
  width: 2.4rem;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-color: transparent;
}
.collab-carousel-dot .sr-only { position: absolute; }
.collab-carousel-status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.collab-carousel-counter {
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}
.collab-carousel-label {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 0.92rem;
}
.collab-card {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 1.25rem;
  flex: 0 0 100%;
  min-width: 100%;
  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, box-shadow 0.35s;
}
.collab-carousel-track .collab-card:hover {
  transform: none;
}
.collab-embed--bandcamp iframe {
  display: block;
  width: 100%;
  height: 120px;
  border: 0;
  border-radius: 4px;
}
.album-credits--compact {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0.9rem;
}
.album-credits--compact .album-credits-row {
  grid-template-columns: 6.5rem 1fr;
  font-size: 0.78rem;
}
.former-projects {
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  text-align: center;
  border: 1px dashed rgba(184, 149, 106, 0.28);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.35);
}
.former-projects-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.former-projects-list {
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.collab-embed {
  margin-top: 1rem;
  width: 100%;
  max-width: 520px;
}
.embed-16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.embed-16x9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-16x9 .video-poster {
  border-radius: 4px;
}
.media-album-credits {
  max-width: 62ch;
  margin: -0.5rem 0 2rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.media-album-credits em {
  color: var(--gold);
  font-style: normal;
}
.collab-carousel-viewport:focus-within .collab-card,
.collab-card:hover {
  border-color: var(--gold);
  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); }

.album-deep-lead {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.15rem;
  max-width: 68ch;
  font-size: 0.92rem;
}
.track-notes { display: grid; gap: 1rem; }
.track-note {
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--gold-dim);
  background: rgba(10, 9, 8, 0.45);
}
.track-note dt {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.track-note dd {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-aeo-summary {
  max-width: 68ch;
  margin: -1.5rem 0 2rem;
  padding: 1.15rem 1.35rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  border: 1px solid rgba(184, 149, 106, 0.28);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(26, 23, 20, 0.65), rgba(14, 12, 10, 0.85));
}
.faq-aeo-summary strong { color: var(--text); font-weight: 500; }
.faq-aeo-summary a { color: var(--gold); border-bottom: 1px solid rgba(184, 149, 106, 0.25); }
.faq-aeo-summary a:hover { color: var(--accent); }
.faq-list { display: grid; gap: 0.75rem; max-width: 760px; }
.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 3px;
  padding: 0.25rem 1.1rem;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.faq-item[open] {
  border-color: rgba(184, 149, 106, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 1rem;
  margin: 0;
}
.faq-item a { color: var(--gold); }

/* ── Merch ── */
.merch {
  background:
    radial-gradient(ellipse at 12% 18%, var(--merch-glow-a) 0%, transparent 42%),
    radial-gradient(ellipse at 88% 72%, var(--merch-glow-b) 0%, transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 48%, var(--bg) 100%);
  position: relative;
}
.merch-inner { max-width: 1240px; }
.merch::before,
.merch::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.merch::before {
  background:
    radial-gradient(ellipse 42% 55% at 92% 38%, var(--merch-glow-c) 0%, transparent 68%),
    radial-gradient(ellipse 28% 40% at 8% 82%, var(--merch-glow-d) 0%, transparent 70%);
  opacity: 0.85;
}
.merch::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='%233d6b4f' fill-opacity='0.35'%3E%3Cpath d='M30 180c18-42 52-68 88-72-28 14-48 38-58 72z'/%3E%3Cpath d='M170 40c-22 36-24 78-8 118 8-34 6-72-8-118z'/%3E%3Cpath d='M120 200c14-28 36-44 62-48-18 10-32 26-40 48z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 280px 280px;
  background-position: 100% 20%;
  background-repeat: no-repeat;
  opacity: 0.07;
}
html.is-merch-route #merch.section-fold:not([open]) .section-fold__summary {
  scroll-margin-top: 5rem;
}
.merch-full {
  padding: 0.25rem 0 0.5rem;
}
.merch-soon {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.merch-soon-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.merch-soon-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 1rem;
}
.merch-soon-lead {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.merch-soon-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.merch-soon-note a { color: var(--gold); }
.merch-soon-note a:hover { color: var(--accent); }
.merch-wear-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.85rem;
  line-height: 1.1;
}
.merch-intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}
.merch-intro .merch-lead { margin-bottom: 0; }
.merch-lead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}
.merch-store-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  margin-bottom: 2rem;
}

.merch-store-banner-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.merch-store-banner-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.merch-store-cta { flex-shrink: 0; }
.merch-filters-wrap { margin-bottom: 1.75rem; }
.merch-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}
.merch-filter {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.35);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.merch-filter:hover,
.merch-filter:focus-visible {
  color: var(--text);
  border-color: rgba(184, 149, 106, 0.45);
  outline: none;
}
.merch-filter.is-active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.1);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}
.merch-grid[data-empty="true"] { grid-template-columns: 1fr; }
.merch-compact { max-width: 56rem; margin: 0 auto; }
.merch-teaser {
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto 1.25rem;
  max-width: 36rem;
}
.merch-grid--featured {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}
.merch-card--compact .merch-card-visual { aspect-ratio: 1; }
.merch-card--compact .merch-card-body { padding: 0.75rem 0.8rem 0.85rem; }
.merch-card--compact .merch-card-title {
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.merch-card--compact .merch-card-type {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.merch-card--compact .merch-card-footer { margin-top: 0; }
.merch-card--compact .merch-card-price { font-size: 0.78rem; }
.merch-card--compact .merch-card-cta { font-size: 0.6rem; }
.merch-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.merch-more-link {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.merch-more-link:hover { color: var(--accent); }
.merch-foot-cta {
  text-align: center;
  margin-bottom: 0.85rem;
}
.merch-foot-cta .btn {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.25rem;
}
@media (max-width: 1100px) {
  .merch-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .merch-grid { grid-template-columns: 1fr; }
  .merch-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }
  .merch-store-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .merch-store-cta { width: 100%; justify-content: center; }
}
.merch-loading,
.merch-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 2rem 0;
}
.merch-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.merch-card:hover {
  border-color: rgba(184, 149, 106, 0.35);
  transform: translateY(-3px);
  box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.4);
}
.merch-card-hit {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.merch-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
}
.merch-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.merch-card:hover .merch-card-visual img { transform: scale(1.04); }
.merch-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10, 9, 8, 0.75);
  border: 1px solid rgba(184, 149, 106, 0.3);
  padding: 0.3rem 0.55rem;
  border-radius: 2px;
}
.merch-card-body { padding: 1.15rem 1.2rem 1.25rem; }
.merch-card-collection {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.merch-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.merch-card-type {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.merch-card-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.merch-card-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.merch-card-cta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.merch-artist-note {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(20, 18, 16, 0.45);
  margin-bottom: 1.5rem;
}
.merch-artist-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.merch-artist-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}
.merch-artist-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.merch-artist-body a { color: var(--gold); }
.merch-artist-body a:hover { color: var(--accent); }
.merch-legal {
  margin-top: 0.65rem;
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}
.merch-legal a { color: var(--gold); }
body.merch-modal-open { overflow: hidden; }
.merch-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.merch-modal[hidden] { display: none !important; }
.merch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 4, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.merch-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}
.merch-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.6);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.merch-modal-close:hover,
.merch-modal-close:focus-visible {
  color: var(--text);
  border-color: var(--gold);
  outline: none;
}
.merch-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.merch-modal-visual {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
  aspect-ratio: 1;
}
.merch-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-modal-collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.merch-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.merch-modal-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.merch-modal-price {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.merch-modal-story {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.merch-modal-meta {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.merch-modal-meta li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.35rem;
}
.merch-modal-meta li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.merch-modal-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.merch-modal-shop.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}
.merch-studio { margin-bottom: 0.75rem; }
.merch-studio-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(184, 149, 106, 0.14);
  border-radius: 10px;
  background: rgba(10, 9, 8, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.merch-studio-preview {
  position: relative;
  min-width: 0;
}
.merch-studio-panel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.merch-product-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}
.merch-product-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  cursor: pointer;
  transition: color 0.3s;
}
.merch-product-tab:hover,
.merch-product-tab:focus-visible {
  color: var(--text);
  outline: none;
}
.merch-product-tab--pill {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.45);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.merch-product-tab--pill.is-active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.1);
}
.merch-product-tab--pill .merch-product-tab-icon {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.85;
}
.merch-panel-head {
  padding-bottom: 0.15rem;
}
.merch-design-head {
  padding: 0.55rem 0 0.15rem;
  border-top: 1px solid rgba(184, 149, 106, 0.1);
}
.merch-design-head .merch-design-name {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}
.merch-design-head .merch-design-story {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-studio-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  padding-top: 0.15rem;
}
.merch-studio-options .merch-studio-group {
  margin-bottom: 0;
}
.merch-product-tab-icon {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.9;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.merch-product-tab-icon--hoodie {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 8l3-4h6l3 4v2l-2 1v9H8V11L6 10V8zm2 3v8h8v-8l-1-.5-3 2-3-2-1 .5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 8l3-4h6l3 4v2l-2 1v9H8V11L6 10V8zm2 3v8h8v-8l-1-.5-3 2-3-2-1 .5z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--tee {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 4l-2 3-4 1 1 3 3 1v10h10V12l3-1 1-3-4-1-2-3H8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 4l-2 3-4 1 1 3 3 1v10h10V12l3-1 1-3-4-1-2-3H8z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--hat {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 14c0-4 4-6 8-6s8 2 8 6v1H4v-1zm2 2h12v2H6v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 14c0-4 4-6 8-6s8 2 8 6v1H4v-1zm2 2h12v2H6v-2z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--mug {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M5 6h10v12H5V6zm10 3h2a3 3 0 010 6h-2v-6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M5 6h10v12H5V6zm10 3h2a3 3 0 010 6h-2v-6z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--flag {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 3v18M6 4h12l-2 3 2 3H6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 3v18M6 4h12l-2 3 2 3H6'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--blanket {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 8h16v10H4V8zm0-2h16v2H4V6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 8h16v10H4V8zm0-2h16v2H4V6z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--swim {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 4h8l2 6v10H6V10l2-6zm2 8h4v2h-4v-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 4h8l2 6v10H6V10l2-6zm2 8h4v2h-4v-2z'/%3E%3C/svg%3E");
}
.merch-product-tab-icon--tote {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 8V6a5 5 0 0110 0v2h3v12H4V8h3zm2 0h6V6a3 3 0 00-6 0v2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 8V6a5 5 0 0110 0v2h3v12H4V8h3zm2 0h6V6a3 3 0 00-6 0v2z'/%3E%3C/svg%3E");
}
.merch-mockup-stage {
  position: relative;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  padding: 0.75rem 0.5rem 1rem;
  background:
    radial-gradient(ellipse 72% 58% at 50% 42%, rgba(201, 168, 108, 0.08), transparent 72%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.32), transparent 65%);
  border: 1px solid rgba(184, 149, 106, 0.08);
  border-radius: 8px;
  perspective: 1800px;
  perspective-origin: 50% 42%;
}
.merch-drag-badge {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  z-index: 5;
  padding: 0.28rem 0.55rem;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(184, 149, 106, 0.18);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.68);
  pointer-events: none;
}
.merch-drag-badge[hidden] { display: none !important; }

/* ---- 3D drag-to-rotate merch viewer ---- */
.merch-viewer-3d {
  width: min(100%, 38rem);
  margin: 0 auto;
}
.merch-viewer-3d__stage {
  position: relative;
  width: 100%;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
  outline: none;
  background: transparent;
}
.merch-viewer-3d__stage.is-dragging { cursor: grabbing; }
.merch-viewer-3d__stage:focus-visible {
  box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.45);
  border-radius: 8px;
}
.merch-viewer-3d__pivot {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.merch-3d-object {
  position: relative;
  transform-style: preserve-3d;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.62));
}
.merch-viewer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 28rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.merch-viewer-loading__spin {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(201, 168, 108, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: merch-spin 0.8s linear infinite;
}
@keyframes merch-spin { to { transform: rotate(360deg); } }
.merch-3d-face {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.merch-3d-face-shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 42%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  z-index: 0;
}
.merch-3d-design {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.35));
}
.merch-3d-placement {
  position: absolute;
  z-index: 2;
  opacity: 1;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}
.merch-3d-qr {
  position: absolute;
  z-index: 2;
  opacity: 0;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.merch-3d-qr.is-visible { opacity: 1; }
.merch-3d-backprint,
.merch-mockup-backprint {
  position: absolute;
  z-index: 2;
  opacity: 1;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.merch-mockup-backprint { opacity: 0; transition: opacity 0.35s ease; }
.merch-mockup-backprint.is-visible { opacity: 1; }

/* Box garments -- front/back/side faces */
.merch-3d-object--box {
  margin: 0 auto;
}
.merch-3d-face--front {
  border-radius: 4px;
}
.merch-3d-face--back {
  border-radius: 4px;
}
.merch-3d-face--side {
  filter: brightness(0.88);
}

/* Hoodie */
.merch-3d-object--hoodie .merch-3d-face--front {
  clip-path: polygon(10% 0%, 90% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
  border-radius: 6px 6px 2px 2px;
}
.merch-3d-object--hoodie .merch-3d-face--back {
  clip-path: polygon(10% 0%, 90% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
  border-radius: 6px 6px 2px 2px;
}
.merch-3d-hood {
  position: absolute;
  top: -18%;
  left: 22%;
  width: 56%;
  height: 28%;
  border-radius: 50% 50% 0 0;
  transform: translateZ(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.merch-3d-pocket {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: 38%;
  height: 14%;
  transform: translateX(-50%) translateZ(2px);
  border-radius: 2px 2px 4px 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  opacity: 0.95;
}

/* Tee */
.merch-3d-object--tee .merch-3d-face--front,
.merch-3d-object--tee .merch-3d-face--back {
  clip-path: polygon(8% 10%, 0% 18%, 0% 100%, 100% 100%, 100% 18%, 92% 10%, 76% 0%, 24% 0%);
}

/* Swim */
.merch-3d-object--swim .merch-3d-face--front,
.merch-3d-object--swim .merch-3d-face--back {
  clip-path: polygon(18% 0%, 82% 0%, 100% 26%, 92% 100%, 8% 100%, 0% 26%);
}

/* Blanket */
.merch-3d-object--blanket .merch-3d-face--front,
.merch-3d-object--blanket .merch-3d-face--back {
  border-radius: 4px;
}
.merch-3d-object--blanket .merch-3d-face--front::after,
.merch-3d-object--blanket .merch-3d-face--back::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px dashed rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  pointer-events: none;
}

/* Tote */
.merch-3d-object--tote .merch-3d-face--front {
  border-radius: 2px 2px 6px 6px;
}
.merch-3d-tote-handle {
  position: absolute;
  top: -16%;
  left: 22%;
  width: 56%;
  height: 18%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-bottom: none;
  border-radius: 40% 40% 0 0;
  transform: translateZ(20px);
  pointer-events: none;
}

/* Flag */
.merch-3d-object--flag .merch-3d-face--front {
  border-radius: 2px;
}
.merch-3d-flag-pole {
  position: absolute;
  left: -14%;
  top: -4%;
  width: 6px;
  height: 108%;
  background: linear-gradient(90deg, #4a4640, #6a6560, #4a4640);
  border-radius: 3px;
  transform: translateZ(-8px);
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.35);
}

/* Cap */
.merch-3d-object--cap {
  width: 220px;
  height: 150px;
}
.merch-3d-face--cap-crown {
  width: 220px !important;
  height: 110px !important;
  border-radius: 50% 50% 12px 12px;
  box-shadow: inset 0 -12px 24px rgba(0, 0, 0, 0.12);
}
.merch-3d-face--cap-back {
  width: 220px !important;
  height: 96px !important;
  border-radius: 8px 8px 20px 20px;
  filter: brightness(0.86);
}
.merch-3d-face--cap-bill {
  filter: brightness(0.94);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.merch-3d-cap-button {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%) translateZ(32px);
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

/* Mug cylinder */
.merch-3d-object--cylinder {
  margin: 0 auto;
}
.merch-3d-face--curve {
  transform-origin: center center;
}
.merch-3d-face--bottom {
  border-radius: 50%;
}
.merch-3d-mug-handle {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 22px;
  height: 72px;
  border: 9px solid currentColor;
  border-left: none;
  border-radius: 0 50% 50% 0;
  background: transparent;
  color: inherit;
  pointer-events: none;
  filter: brightness(0.92);
}

.merch-viewer-3d__hint {
  margin: 0.75rem 0 0;
  padding: 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
}

/* ---- Three.js mesh preview ---- */
.merch-preview-three {
  width: min(100%, 100%);
  margin: 0 auto;
}
.merch-preview-three__canvas {
  position: relative;
  width: 100%;
  height: 20rem;
  cursor: grab;
  touch-action: none;
  user-select: none;
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(201, 168, 108, 0.08), transparent 70%);
}
.merch-preview-three__canvas.is-dragging { cursor: grabbing; }
.merch-preview-three__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  outline: none;
}
.merch-preview-three__canvas:focus-visible {
  box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.45);
}

/* ---- Fourthwall photoreal mockups ---- */
.merch-preview-photo {
  width: min(100%, 38rem);
  margin: 0 auto;
  position: relative;
}
.merch-preview-photo__stage {
  width: 100%;
  height: 32rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.merch-preview-photo__stage.is-dragging { cursor: grabbing; }
.merch-preview-photo__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  transition: opacity 0.2s ease;
}
.merch-preview-photo__hint {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}
.merch-preview-photo__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  margin: 0;
  padding: 0.25rem 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold, #b8956a);
  border: 1px solid rgba(201, 168, 108, 0.35);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.65);
}
.merch-mockup {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 4 / 5;
  transition: transform 0.4s var(--ease);
}
.merch-mockup--photo {
  width: min(100%, 36rem);
  aspect-ratio: auto;
  min-height: 28rem;
}
.merch-mockup-photo-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.merch-mockup-photo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}
.merch-mockup-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.merch-mockup-photo-wrap .merch-mockup-design,
.merch-mockup-photo-wrap .merch-mockup-qr {
  position: absolute;
}
.merch-mockup--photo .merch-mockup-design {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}
.merch-mockup--qr-view { transform: perspective(800px) rotateX(8deg) scale(0.98); }
.merch-mockup-shape {
  position: absolute;
  inset: 8% 12% 10%;
  background: var(--mockup-bg, #2a2826);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 32px rgba(0, 0, 0, 0.45);
}
.merch-mockup--hoodie .merch-mockup-shape {
  border-radius: 8px 8px 4px 4px;
  clip-path: polygon(18% 0%, 82% 0%, 100% 18%, 100% 100%, 0% 100%, 0% 18%);
}
.merch-mockup--hoodie .merch-mockup-shape::before {
  content: '';
  position: absolute;
  top: -6%;
  left: 28%;
  width: 44%;
  height: 22%;
  background: inherit;
  border-radius: 50% 50% 0 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.merch-mockup--tee .merch-mockup-shape {
  clip-path: polygon(8% 12%, 0% 22%, 0% 100%, 100% 100%, 100% 22%, 92% 12%, 78% 0%, 22% 0%);
}
.merch-mockup--hat .merch-mockup-shape {
  inset: 28% 8% 18%;
  border-radius: 50% 50% 8px 8px;
}
.merch-mockup--hat .merch-mockup-shape::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: -8%;
  width: 116%;
  height: 22%;
  background: inherit;
  filter: brightness(0.92);
  border-radius: 40% 40% 4px 4px;
}
.merch-mockup--mug .merch-mockup-shape {
  inset: 18% 22% 12%;
  border-radius: 4px 12px 12px 4px;
}
.merch-mockup--mug .merch-mockup-shape::after {
  content: '';
  position: absolute;
  right: -18%;
  top: 22%;
  width: 22%;
  height: 42%;
  border: 6px solid var(--mockup-bg);
  border-left: none;
  border-radius: 0 50% 50% 0;
  filter: brightness(0.95);
}
.merch-mockup--flag .merch-mockup-shape {
  inset: 10% 18% 8% 28%;
  border-radius: 2px;
}
.merch-mockup--flag .merch-mockup-shape::before {
  content: '';
  position: absolute;
  left: -18%;
  top: -2%;
  width: 4px;
  height: 104%;
  background: #5a5650;
  border-radius: 2px;
}
.merch-mockup--blanket .merch-mockup-shape {
  inset: 14% 8%;
  border-radius: 4px;
}
.merch-mockup--blanket .merch-mockup-shape::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px dashed rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}
.merch-mockup--swim .merch-mockup-shape {
  inset: 12% 20% 8%;
  clip-path: polygon(20% 0%, 80% 0%, 100% 28%, 92% 100%, 8% 100%, 0% 28%);
}
.merch-mockup--tote .merch-mockup-shape {
  inset: 22% 14% 10%;
  border-radius: 2px 2px 6px 6px;
}
.merch-mockup--tote .merch-mockup-shape::before {
  content: '';
  position: absolute;
  top: -14%;
  left: 22%;
  width: 56%;
  height: 18%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  border-radius: 40% 40% 0 0;
}
.merch-mockup-design {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: opacity 0.35s, filter 0.35s;
}
.merch-mockup-qr {
  position: absolute;
  z-index: 3;
  opacity: 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.merch-mockup-qr.is-visible,
.merch-mockup--qr-view .merch-mockup-qr { opacity: 1; }
.merch-preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.4rem;
  padding: 0;
}
.merch-preview-toolbar[hidden] { display: none !important; }
.merch-preview-hint {
  flex: 1 1 8rem;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-align: right;
}
.merch-view-flip,
.merch-view-reset { flex-shrink: 0; }
.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}
.merch-qr-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.55rem 0 0;
  padding: 0 0.5rem;
  line-height: 1.55;
  max-width: 38rem;
}
.merch-studio-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
}
.merch-studio-price-row .merch-studio-price {
  margin-bottom: 0;
}
.merch-selection-pill {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(184, 149, 106, 0.28);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.45);
}
.merch-selection-pill[hidden] { display: none !important; }
.merch-studio-eyebrow {
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.merch-studio-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}
.merch-studio-price {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text);
}
.merch-studio-story {
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0.35rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merch-studio-group { margin-bottom: 0.55rem; }
.merch-studio-group--birds {
  margin-bottom: 0.35rem;
}
.merch-studio-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.merch-design-index {
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.merch-design-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.merch-design-carousel {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  padding: 0.25rem 0;
  -webkit-overflow-scrolling: touch;
}
.merch-design-carousel::-webkit-scrollbar { display: none; }
.merch-design-thumb {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 4.5rem;
  padding: 0.3rem;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.5);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.merch-design-thumb:hover,
.merch-design-thumb:focus-visible {
  border-color: rgba(184, 149, 106, 0.45);
  outline: none;
}
.merch-design-thumb.is-active {
  border-color: var(--gold);
  transform: scale(1.04);
}
.merch-design-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.merch-design-thumb-name {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.merch-carousel-btn {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.6);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.merch-carousel-btn:hover,
.merch-carousel-btn:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  outline: none;
}
.merch-design-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.merch-design-story {
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.merch-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.merch-swatch {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--swatch);
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.merch-swatch:hover,
.merch-swatch:focus-visible {
  transform: scale(1.08);
  outline: none;
}
.merch-swatch.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.35);
}
.merch-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.merch-size {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 3px;
  background: rgba(10, 9, 8, 0.35);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.merch-size:hover,
.merch-size:focus-visible {
  color: var(--text);
  border-color: rgba(184, 149, 106, 0.45);
  outline: none;
}
.merch-size.is-active {
  color: var(--gold);
  border-color: var(--gold);
}
.merch-studio-note {
  font-size: 0.76rem;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-top: 0.25rem;
}
.merch-studio-shop {
  width: 100%;
  justify-content: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
  padding: 0.75rem 1rem;
  margin-top: 0.15rem;
  background: linear-gradient(180deg, #dcc9a0 0%, #b8956a 52%, #a68458 100%);
  color: #1a1510;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.merch-studio-shop:hover,
.merch-studio-shop:focus-visible {
  color: #0f0d0b;
}
.merch-studio-shop.is-live {
  box-shadow: 0 0 0 1px rgba(201, 168, 108, 0.35), 0 6px 18px rgba(0, 0, 0, 0.3);
}
@media (max-width: 960px) {
  .merch-studio-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.85rem 0.9rem 1rem;
  }
  .merch-mockup-stage { min-height: 18rem; }
  .merch-viewer-3d__stage,
  .merch-preview-three__canvas,
  .merch-preview-photo__stage { height: 18rem; }
  .merch-studio-options { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .merch-product-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }
  .merch-product-rail::-webkit-scrollbar { display: none; }
  .merch-product-tab--pill { flex-shrink: 0; }
  .merch-mockup-stage { min-height: 16rem; }
  .merch-viewer-3d__stage,
  .merch-preview-three__canvas,
  .merch-preview-photo__stage { height: 16rem; }
  .merch-viewer-3d__hint { font-size: 0.65rem; }
}

/* ── 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-buy,
.album-stream {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(196, 92, 62, 0.06);
  border: 1px solid rgba(196, 92, 62, 0.22);
  border-radius: 4px;
}
.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: flex-start;
}
.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  color: var(--text-muted);
  background: transparent;
  text-decoration: none;
  transition: transform 0.35s var(--ease);
}
.platform-logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: inherit;
  background: rgba(10, 9, 8, 0.55);
  overflow: visible;
  transition: color 0.3s, border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
}
.platform-logo-smoke {
  position: absolute;
  left: 50%;
  top: 0;
  width: 52px;
  height: 44px;
  transform: translate(-50%, -70%);
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}
.platform-logo-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(210, 200, 185, 0.55), rgba(160, 150, 140, 0.2) 45%, transparent 72%);
  filter: blur(5px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.platform-logo-label {
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  max-width: 4.75rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-3px);
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
}
.platform-logo:hover,
.platform-logo:focus-visible {
  transform: translateY(-2px);
}
.platform-logo:hover .platform-logo-icon,
.platform-logo:focus-visible .platform-logo-icon {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(20, 18, 16, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(184, 149, 106, 0.16);
}
.platform-logo:hover .platform-logo-label,
.platform-logo:focus-visible .platform-logo-label {
  opacity: 1;
  max-height: 2.5rem;
  transform: translateY(0);
  color: var(--gold);
}
.platform-logo--spotify:hover .platform-logo-icon,
.platform-logo--spotify:focus-visible .platform-logo-icon {
  color: #1ed760;
  border-color: rgba(30, 215, 96, 0.45);
  box-shadow: 0 8px 22px rgba(30, 215, 96, 0.12);
}
.platform-logo--spotify:hover .platform-logo-label,
.platform-logo--spotify:focus-visible .platform-logo-label {
  color: #1ed760;
}
.platform-logo svg {
  display: block;
  flex-shrink: 0;
}

.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;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: transform 0.4s var(--ease);
}
.music-card-icon-svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
  flex-shrink: 0;
}
.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;
}
/* ── Photo carousel (reuses collab-carousel shell) ── */
.photo-carousel {
  position: relative;
  max-width: 560px;
  margin: 1.25rem auto 1rem;
}
.photo-carousel--archive {
  margin-top: 0.5rem;
}
.photo-carousel .collab-carousel-viewport {
  border: 1px solid rgba(184, 149, 106, 0.2);
  background: rgba(8, 7, 6, 0.45);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.25);
  max-height: 240px;
}
.photo-carousel-smoke,
.media-smoke-layer,
.footer-smoke-layer {
  pointer-events: none;
}
.photo-carousel-smoke {
  position: absolute;
  inset: 2.5rem 0 4.5rem;
  z-index: 1;
  overflow: visible;
}
.media-smoke-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.footer-smoke-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.65;
}
.media { position: relative; overflow: hidden; }
.media > .container { position: relative; z-index: 1; }
.footer { position: relative; overflow: hidden; }
.ambient-smoke-layer {
  pointer-events: none;
}
.ambient-smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(210, 205, 195, 0.38), transparent 72%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.photo-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  max-height: 240px;
  overflow: hidden;
  border: none;
  border-radius: 0;
  cursor: zoom-in;
  position: relative;
}
.photo-carousel .photo-slide {
  box-shadow: none;
}
.photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(22%) brightness(0.88);
  transition: transform 0.65s var(--ease), filter 0.65s;
}
.photo-slide:hover img,
.photo-slide:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
.photo-slide::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(6, 5, 4, 0.55), transparent);
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.photo-slide:hover::after { opacity: 0.95; }
.collab-carousel-footer--compact {
  margin-top: 0.85rem;
}
.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);
}
.rn-photos-expand {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.45);
}
.rn-photos-expand-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  cursor: pointer;
  list-style: none;
  padding: 0.25rem 0;
}
.rn-photos-expand-summary::-webkit-details-marker { display: none; }
.rn-photos-expand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
}
.rn-photos-expand-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.rn-photos-expand[open] .rn-photos-expand-title { color: var(--accent); }
.rn-photos-expand-lead {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.rn-photos-expand-lead a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 149, 106, 0.35);
}
.rn-photos-expand-lead a:hover { color: var(--accent); }
.gallery--rn { margin-top: 0.25rem; }

.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;
}

/* ── Shows map ── */
.shows {
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.shows::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 149, 106, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(196, 92, 62, 0.05), transparent 55%);
  pointer-events: none;
}
.shows .container { position: relative; z-index: 1; }
.shows-map-frame {
  position: relative;
  margin-top: 0.5rem;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(160deg, rgba(22, 19, 16, 0.95), rgba(10, 9, 8, 0.98));
  border: 1px solid rgba(184, 149, 106, 0.32);
  border-radius: 4px;
  box-shadow:
    var(--neu-shadow),
    inset 0 0 60px rgba(0, 0, 0, 0.35);
}
.shows-map-corners { pointer-events: none; }
.shows-map-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
}
.shows-map-corner--tl { top: 0.65rem; left: 0.65rem; border-width: 2px 0 0 2px; }
.shows-map-corner--tr { top: 0.65rem; right: 0.65rem; border-width: 2px 2px 0 0; }
.shows-map-corner--bl { bottom: 0.65rem; left: 0.65rem; border-width: 0 0 2px 2px; }
.shows-map-corner--br { bottom: 0.65rem; right: 0.65rem; border-width: 0 2px 2px 0; }
.shows-map-hint {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: italic;
}
.shows-map-compass {
  color: var(--accent);
  margin-right: 0.35rem;
}
.shows-map-widget {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.2);
  background: #0a0908;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}
.shows-map-widget::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(10, 9, 8, 0.65);
  border-radius: 3px;
}
.shows-map-iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 420px;
  border: 0;
}
.shows-map-credit {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.shows-map-credit a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 149, 106, 0.3);
}
.shows-map-credit a:hover { color: var(--accent); }

/* ── Connect ── */
.connect {
  background: var(--bg);
  text-align: center;
}
.connect-inner { max-width: 600px; }
.contact-block {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: left;
}
.contact-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.contact-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-form input,
.contact-form textarea {
  min-height: 44px;
  width: 100%;
  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;
  resize: vertical;
}
.contact-form textarea { min-height: 120px; line-height: 1.6; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--neu-inset), 0 0 0 3px rgba(196, 92, 62, 0.12);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form .btn { align-self: center; margin-top: 0.25rem; }
.contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-msg {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.contact-direct {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-direct-label { margin-right: 0.35rem; }
.contact-direct a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 160, 90, 0.35);
  transition: color 0.3s, border-color 0.3s;
}
.contact-direct a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Share & promotion ── */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.share-row--hero { margin-top: 1.75rem; }
.share-row--connect { margin: 2rem 0 1.5rem; }
.share-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  background: rgba(184, 149, 106, 0.12);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.share-btn:hover,
.share-btn:focus-visible {
  background: var(--gold);
  color: var(--bg);
  outline: none;
}
.share-btn--ghost {
  border-color: var(--glass-border);
  background: transparent;
  color: var(--text-muted);
}
.share-btn--ghost:hover,
.share-btn--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 149, 106, 0.08);
}
.share-btn--ok {
  border-color: #6a9a5a;
  color: #9ed45a;
}

/* ── Press kit block ── */
.press-kit-block {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--glass);
  backdrop-filter: blur(var(--glass-blur));
  text-align: center;
}
.press-kit-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.press-kit-lead {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  line-height: 1.55;
}
.press-kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.press-kit-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.press-kit-note a { color: var(--gold); }

/* ── Sticky Grief Eater CTA ── */
.grief-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  padding: 0.75rem max(3.25rem, calc(2.75rem + env(safe-area-inset-right, 0px))) 0.75rem max(1rem, env(safe-area-inset-left, 0px));
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 9, 8, 0.94);
  border-top: 1px solid rgba(196, 92, 62, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.grief-cta-bar[hidden] {
  display: none !important;
}
.grief-cta-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.grief-cta-text strong { color: var(--text); }
.grief-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  background: #7a3520;
  color: #fff;
  white-space: nowrap;
  touch-action: manipulation;
}
.grief-cta-btn:hover { filter: brightness(1.08); }
.grief-cta-dismiss {
  position: absolute;
  right: max(0.35rem, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grief-cta-dismiss:hover { color: var(--text); }

.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-recommendations {
  grid-column: 1 / -1;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184, 149, 106, 0.12);
}
.footer-recommendations-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  margin-bottom: 0.85rem;
}
.footer-recommendations-summary::-webkit-details-marker { display: none; }
.footer-recommendations-summary::marker { content: ''; }
.footer-recommendations-summary:hover .footer-recommendations-label,
.footer-recommendations-summary:focus-visible .footer-recommendations-label {
  color: var(--gold);
}
.footer-recommendations-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  transition: color 0.25s;
}
.footer-recommendations-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(184, 149, 106, 0.22);
  border-radius: 50%;
  transition: border-color 0.25s, transform 0.35s ease;
}
.footer-recommendations-chevron::before {
  content: '';
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translate(-1px, -1px);
  transition: transform 0.35s ease;
}
.footer-recommendations[open] .footer-recommendations-chevron::before {
  transform: rotate(45deg) translate(-1px, 1px);
}
.footer-recommendations-summary:hover .footer-recommendations-chevron,
.footer-recommendations-summary:focus-visible .footer-recommendations-chevron {
  border-color: rgba(184, 149, 106, 0.42);
}
.footer-recommendations-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  padding: 0.15rem 0 0.35rem;
}
.footer-recommendations[open] .footer-recommendations-icons {
  display: none;
}
.footer-recommendations:not([open]) .footer-recommendations-cards {
  display: none;
}
.footer-recommendations-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.15rem;
}
.recommendation-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 4.5rem;
  text-decoration: none;
  color: inherit;
  outline: none;
}
.recommendation-icon-visual {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.24);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.recommendation-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.recommendation-icon-img--photo {
  object-position: center 18%;
}
.recommendation-icon-img--contain {
  object-fit: contain;
  padding: 0.28rem;
  background: rgba(0, 0, 0, 0.2);
}
.recommendation-icon-label {
  font-size: 0.58rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--gold);
  max-width: 4.5rem;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease), color 0.25s;
  pointer-events: none;
}
.recommendation-icon:hover .recommendation-icon-visual,
.recommendation-icon:focus-visible .recommendation-icon-visual {
  border-color: rgba(184, 149, 106, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}
.recommendation-icon:hover .recommendation-icon-img,
.recommendation-icon:focus-visible .recommendation-icon-img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}
.recommendation-icon:hover .recommendation-icon-label,
.recommendation-icon:focus-visible .recommendation-icon-label {
  opacity: 1;
  transform: translateY(0);
}
.recommendation-card {
  display: flex;
  align-items: center;
  gap: 1.15rem 1.35rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(184, 149, 106, 0.18);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(18, 16, 14, 0.92), rgba(12, 10, 8, 0.96));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.recommendation-card:hover,
.recommendation-card:focus-within,
.recommendation-card:focus-visible {
  border-color: rgba(184, 149, 106, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}
.recommendation-card--actions {
  padding: 0.75rem 0.9rem 0.75rem 1.15rem;
  gap: 0.85rem;
}
.recommendation-card-main {
  display: flex;
  align-items: center;
  gap: 1.15rem 1.35rem;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.recommendation-card-main:focus-visible {
  outline: 2px solid rgba(184, 149, 106, 0.55);
  outline-offset: 3px;
  border-radius: 2px;
}
.recommendation-action-btn {
  flex-shrink: 0;
  align-self: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(184, 149, 106, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.recommendation-action-btn:hover,
.recommendation-action-btn:focus-visible {
  border-color: rgba(184, 149, 106, 0.5);
  background: rgba(184, 149, 106, 0.12);
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}
.recommendation-action-btn--youtube {
  border-color: rgba(255, 0, 0, 0.28);
  color: #f3b4b4;
}
.recommendation-action-btn--youtube:hover,
.recommendation-action-btn--youtube:focus-visible {
  border-color: rgba(255, 0, 0, 0.45);
  background: rgba(255, 0, 0, 0.1);
  color: #ffd4d4;
}
.recommendation-visual {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 106, 0.22);
  background: rgba(0, 0, 0, 0.35);
}
.recommendation-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.recommendation-photo {
  object-position: center 18%;
}
.recommendation-logo--contain {
  object-fit: contain;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.2);
}
.recommendation-card:hover .recommendation-logo {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.08);
}
.recommendation-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.recommendation-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.recommendation-name {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.recommendation-role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.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 calc(3rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem 2rem;
}
.footer-brand { grid-column: 1; }
.footer-nav {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: flex-end;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.1em;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); grid-column: 1; }
.footer-credit {
  grid-column: 1;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  text-align: left;
}
.footer-privacy {
  grid-column: 1;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
  text-align: left;
}
.footer-privacy a {
  color: inherit;
  transition: color 0.3s;
}
.footer-privacy a:hover { color: var(--gold); }
.footer-github {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem 0.8rem 0.95rem;
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 4px;
  background:
    radial-gradient(ellipse 120% 80% at 0% 50%, rgba(216, 120, 88, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(18, 16, 14, 0.94), rgba(10, 9, 8, 0.98));
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.footer-github::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(184, 149, 106, 0.07) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}
.footer-github:hover::before,
.footer-github:focus-visible::before {
  transform: translateX(120%);
}
.footer-github:hover,
.footer-github:focus-visible {
  border-color: rgba(216, 120, 88, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38), 0 0 24px rgba(216, 120, 88, 0.08);
  outline: none;
}
.footer-github-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 106, 0.28);
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.footer-github:hover .footer-github-icon,
.footer-github:focus-visible .footer-github-icon {
  color: #f0d8b8;
  border-color: rgba(216, 120, 88, 0.5);
  box-shadow: 0 0 18px rgba(216, 120, 88, 0.22);
}
.footer-github-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  flex: 1;
}
.footer-github-handle {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1.2;
}
.footer-github-tag {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  line-height: 1.35;
}
.footer-github:hover .footer-github-tag,
.footer-github:focus-visible .footer-github-tag {
  color: var(--text);
}
.footer-github-ember {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(216, 120, 88, 0.65);
  opacity: 0.55;
  animation: footer-github-ember 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes footer-github-ember {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  45% { opacity: 0.9; transform: scale(1.15); }
  70% { opacity: 0.5; transform: scale(0.95); }
}
.footer-github-arrow {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.35s var(--ease);
}
.footer-github:hover .footer-github-arrow,
.footer-github:focus-visible .footer-github-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}
.footer-tease { grid-column: 1 / -1; position: relative; z-index: 2; }
.footer-tease a { color: inherit; }
.footer-tease a:hover { color: var(--accent); }
.footer-tease {
  font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--text-muted);
}
.footer-pulse-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s var(--ease), transform 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.footer-pulse-btn:hover,
.footer-pulse-btn:focus-visible {
  color: inherit;
}
.footer-pulse {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(184, 149, 106, 0.35);
  animation: pulse-dot 2s ease infinite;
  pointer-events: none;
}
body.sound-on .footer-pulse-btn,
body.vault-veil-ready .footer-pulse-btn {
  opacity: 1;
  cursor: pointer;
}
.footer-pulse-btn:hover,
.footer-pulse-btn:focus-visible,
body.sound-on .footer-pulse-btn:hover,
body.sound-on .footer-pulse-btn:focus-visible,
body.vault-veil-ready .footer-pulse-btn:hover,
body.vault-veil-ready .footer-pulse-btn:focus-visible {
  transform: scale(1.15);
}
body.sound-on .footer-pulse-btn::after,
body.vault-veil-ready .footer-pulse-btn::after,
.footer-pulse-btn::after {
  content: '';
  position: absolute;
  inset: 0.15rem;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  pointer-events: none;
}
.footer-pulse-btn:hover::after,
.footer-pulse-btn:focus-visible::after,
body.sound-on .footer-pulse-btn:hover::after,
body.sound-on .footer-pulse-btn:focus-visible::after,
body.vault-veil-ready .footer-pulse-btn:hover::after,
body.vault-veil-ready .footer-pulse-btn:focus-visible::after {
  border-color: rgba(184, 149, 106, 0.35);
  box-shadow: 0 0 18px rgba(184, 149, 106, 0.2);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── Vault whisper puzzle ── */
.vault-whisper {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding:
    max(1.25rem, env(safe-area-inset-top, 0px))
    max(1.25rem, env(safe-area-inset-right, 0px))
    max(1.25rem, env(safe-area-inset-bottom, 0px))
    max(1.25rem, env(safe-area-inset-left, 0px));
}
.vault-whisper[hidden] { display: none !important; }
.vault-whisper-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 2, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.vault-whisper.is-open .vault-whisper-backdrop { opacity: 1; }
.vault-whisper-panel {
  position: relative;
  width: min(26rem, 100%);
  max-height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 2.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(165deg, rgba(22, 19, 16, 0.98), rgba(10, 9, 8, 0.98));
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(184, 149, 106, 0.08);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.vault-whisper.is-open .vault-whisper-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.vault-whisper-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.25s;
}
.vault-whisper-close:hover { color: var(--text); }
.vault-whisper-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.vault-whisper-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.vault-whisper-riddle {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.vault-whisper-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.vault-whisper-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: rgba(8, 7, 6, 0.65);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.vault-whisper-form input::placeholder { color: rgba(138, 130, 120, 0.55); }
.vault-whisper-form input:focus {
  outline: none;
  border-color: rgba(184, 149, 106, 0.45);
  box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.12);
}
.vault-whisper-form.is-wrong input {
  border-color: rgba(196, 92, 62, 0.55);
  animation: vault-whisper-shake 0.45s var(--ease);
}
.vault-whisper-submit {
  align-self: flex-start;
  min-width: 6.5rem;
}
.vault-whisper-msg {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
body.vault-whisper-passing::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10060;
  background: radial-gradient(circle at 50% 50%, rgba(184, 149, 106, 0.22), rgba(4, 3, 2, 0.94) 68%);
  pointer-events: none;
  animation: vault-whisper-pass 1.1s var(--ease) forwards;
}
@keyframes vault-whisper-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
@keyframes vault-whisper-pass {
  0% { opacity: 0; }
  18% { opacity: 1; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .vault-whisper-panel,
  .vault-whisper-backdrop { transition: none; }
  .vault-whisper-form.is-wrong input { animation: none; }
  body.vault-whisper-passing::before { animation: none; opacity: 1; }
}

/* ── Performance -- defer off-screen paint ── */
.section.music,
.section.about,
.section.media,
.section.press,
.section.shows,
.section.faq,
.section.connect,
#grief-eater,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ge-grid, .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { max-width: 100%; }
  .about-image-corner--tl,
  .about-image-corner--tr,
  .about-image-corner--bl,
  .about-image-corner--br { left: 0; right: 0; }
  .about-image-corner--tl { left: 0; right: auto; }
  .about-image-corner--tr { right: 0; left: auto; }
  .about-image-corner--bl { left: 0; right: auto; }
  .about-image-corner--br { right: 0; left: auto; }
  .ge-visual { max-width: min(100%, 480px); }
  .album-split { grid-template-columns: 1fr; }
  .album-cover--full { max-width: 340px; margin: 0 auto; width: 100%; }
  .album-platform-actions {
    width: calc(100% + 2.3rem);
    margin: -1.5rem -1.15rem 0;
    padding: 0.55rem 0.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }
  .album-platform-actions .album-buy,
  .album-platform-actions .album-stream {
    justify-content: space-between;
    width: 100%;
    padding: 0.15rem 0.2rem;
  }
  .album-platform-actions .album-player-label {
    font-size: 0.52rem;
    text-align: left;
  }
  .album-platform-actions .platform-logos {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
  }
  .album-platform-actions .platform-logo-icon {
    width: 44px;
    height: 44px;
  }
  .album-platform-actions .platform-logo-icon svg {
    width: 18px;
    height: 18px;
  }
  .album-tracks-panel { padding-top: 0; }
  .fishtank-promo-link { grid-template-columns: 1fr; text-align: center; }
  .fishtank-promo-text { align-items: center; }
  .album-credits-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .music-cards, .press-grid { grid-template-columns: 1fr; }
  .collab-card { grid-template-columns: 1fr; }
  .collab-carousel-arrow {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  .collab-carousel-arrow--prev { left: 0.5rem; }
  .collab-carousel-arrow--next { right: 0.5rem; }
  .collab-body { padding: 1.25rem; }
  .collab-image { min-height: 200px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .photo-carousel .collab-carousel-viewport { min-height: 240px; }
  .hero-cta .btn { min-width: min(100%, 280px); }
}
.grief-cta-bar:not([hidden]) + .back-top {
  bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

/* ── 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-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}
.lightbox-img-wrap 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,
  .about-garden,
  .about-creep-leaves,
  .ambient-smoke-layer,
  .media-smoke-layer,
  .footer-smoke-layer,
  .photo-carousel-smoke,
  .album-featured-smoke,
  .sound-spark-burst,
  .sound-wire-flash { display: none; }
  .sound-hint-label,
  .sound-hint-label::before,
  .sound-hint-label::after,
  .collab-carousel-arrow--next { animation: none !important; }
  .sound-hint.is-dormant .sound-hint-twig-line,
  .sound-hint.is-visible .sound-hint-twig-line {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .sound-hint-line--forest,
  .sound-hint-line--noises { animation: none !important; }
  .footer-github-ember { animation: none !important; opacity: 0.55; }
  body:not(.sound-on) .sound-hint.is-dormant,
  body:not(.sound-on) .sound-hint.is-visible { opacity: calc(0.24 + var(--hint-charge) * 0.76) !important; visibility: visible !important; }
  .collab-carousel-track { transition: none; }
  .collab-carousel-viewport { transition: none; }
  .about-portrait-stage.is-blooming .about-image-wrap img {
    filter: grayscale(0%) contrast(1.08) saturate(1.08);
  }
  body.has-spirit-cursor,
  body.has-spirit-cursor a,
  body.has-spirit-cursor button { cursor: auto; }

  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav {
    grid-column: 1;
    grid-row: auto;
    justify-content: center;
  }
  .jump-strip { gap: 0.4rem; }
  .jump-strip a { font-size: 0.62rem; padding: 0.38rem 0.6rem; }
}

/* Phones + tablets (iPad mini/portrait): hamburger nav -- full link row overflows ~768--900px */
@media (max-width: 1024px) {
  .nav {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .nav-toggle { display: flex; }
  .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);
    max-height: calc(100vh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav-links.open { transform: translateY(0); }
}

@media (max-width: 640px) {
  html { -webkit-text-size-adjust: 100%; }
  .section { padding: 4.5rem 0; }
  .section-lead {
    font-size: clamp(0.9rem, 4.2vw, 1.02rem);
    line-height: 1.65;
  }
  .container { padding: 0 1.15rem; }
  .section-title { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .embed-16x9,
  .collab-embed,
  .shows-map-widget,
  .shows-map-iframe { max-width: 100%; }
  iframe { max-width: 100%; }
  .platform-logos { gap: 0.45rem 0.55rem; }
  .platform-logo-icon { width: 44px; height: 44px; }
  .platform-logo-label { font-size: 0.52rem; }
  .notify-form { flex-direction: column; }
  .notify-form input,
  .notify-form .btn { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .ge-visual { max-width: 100%; }
  .ge-ghost-dog {
    width: 48px;
    height: 54px;
    opacity: 0.75 !important;
  }
  .ge-ghost-dog--3 { width: 40px; height: 46px; }
  .ge-leaf { opacity: 0.55 !important; width: 32px; height: 22px; }
  .about-portrait-stage,
  .about-image-wrap { max-width: min(72%, 260px); }
  .about-garden { inset: -36% -32%; }
  .about-flower { --sz: 40px; }
  .album-featured { padding: 1.5rem 1.15rem; }
  .contact-form .btn { width: 100%; }
  .recommendation-card { flex-direction: column; text-align: center; }
  .recommendation-card--actions { padding: 0.9rem 1rem; }
  .recommendation-card-main { flex-direction: column; text-align: center; }
  .recommendation-text { align-items: center; }
  .recommendation-action-btn { align-self: center; }
  .wall-crack { display: none; }
  .hero-content { text-align: center; padding: 1.75rem 1.25rem; margin-left: 0; }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta .btn {
    width: min(100%, 300px);
    justify-content: center;
  }
  .hero-scroll { margin-bottom: 0.5rem; }
  .album-tabs-list { flex-wrap: wrap; gap: 0.3rem; }
  .album-tab {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
    min-height: 44px;
    letter-spacing: 0.1em;
    font-size: 0.58rem;
    padding: 0.55rem 0.45rem;
  }
  .media-album-credits {
    font-size: 0.82rem;
    line-height: 1.6;
  }
  .photo-carousel {
    margin-top: 1rem;
    max-width: 100%;
  }
  .photo-slide { max-height: 200px; }
  .photo-carousel .collab-carousel-viewport {
    min-height: min(48vw, 200px);
  }
  .photo-carousel .collab-carousel-arrow {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  .photo-carousel .collab-carousel-arrow--prev { left: 0.35rem; }
  .photo-carousel .collab-carousel-arrow--next { right: 0.35rem; }
  .collab-carousel-hint {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    padding: 0 0.25rem;
    text-align: center;
  }
  .collab-carousel-footer { gap: 0.55rem; }
  .collab-carousel-dot {
    min-width: 12px;
    min-height: 12px;
  }
  .rn-photos-expand {
    padding: 1rem;
    margin-top: 1.75rem;
  }
  .rn-photos-expand-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .rn-photos-expand-title { font-size: 1rem; }
  .lightbox {
    padding: max(1rem, env(safe-area-inset-top)) 0.85rem 1rem;
  }
  .lightbox-close {
    top: max(0.85rem, env(safe-area-inset-top));
    right: max(0.85rem, env(safe-area-inset-right));
  }
  .lightbox-img-wrap img {
    max-width: 96vw;
    max-height: 78vh;
  }
  .jump-strip {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.35rem;
    margin: 0 -0.15rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .jump-strip::-webkit-scrollbar { display: none; }
  .jump-strip a { flex-shrink: 0; }
  .footer-recommendations { padding-top: 1rem; }
  .footer-recommendations-icons { gap: 0.55rem 0.85rem; }
  .recommendation-icon { width: 4rem; }
  .recommendation-icon-label { max-width: 4rem; font-size: 0.54rem; }
  .sound-toggle {
    margin-right: 0.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .sound-hint-label { font-size: 0.5rem; letter-spacing: 0.1em; }
  .sound-hint-line--forest { letter-spacing: 0.16em; font-size: 0.95em; }
  .sound-hint-line--noises { letter-spacing: 0.2em; font-size: 0.88em; }
  .sound-hint-twig-wrap { width: 40px; height: 96px; }
  .sound-hint-twig { width: 10px; height: 96px; }
  .shows-map-widget,
  .shows-map-iframe { height: 320px; }

  .faq-aeo-summary { font-size: 0.92rem; padding: 1rem; }
  .grief-cta-bar {
    padding-right: max(3.5rem, calc(2.75rem + env(safe-area-inset-right, 0px)));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
  }
  .vault-whisper-panel { padding: 1.5rem 1.25rem 1.25rem; }
  .vault-whisper-submit { width: 100%; align-self: stretch; }
  .vault-whisper-form input {
    font-size: 16px;
    min-height: 44px;
  }
  .press-kit-actions .btn { width: 100%; }
  .share-row--connect .share-btn { flex: 1 1 auto; min-width: 8rem; }

  .back-top {
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.25rem + env(safe-area-inset-right, 0px));
  }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-github { text-align: left; }
  .footer-github-ember { right: 2.1rem; }
  .qr-card { flex-direction: column; text-align: center; }
  .qr-hint { max-width: none; }
}

/* ------ i18n: language switcher + RTL ------ */
.lang-switcher {
  position: relative;
  z-index: 12;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.35rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(20, 18, 16, 0.45);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}
.lang-switcher-btn:hover,
.lang-switcher-btn:focus-visible {
  color: var(--text);
  border-color: var(--gold);
  outline: none;
}
.lang-switcher-globe { flex-shrink: 0; opacity: 0.85; }
.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: rgba(10, 9, 8, 0.97);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  scrollbar-width: thin;
}
.lang-switcher-option {
  display: block;
  width: 100%;
  padding: 0.55rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-align: left;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
}
.lang-switcher-option:hover,
.lang-switcher-option:focus-visible {
  color: var(--text);
  background: rgba(184, 149, 106, 0.08);
  outline: none;
}
.lang-switcher-option.is-active {
  color: var(--gold);
}
[dir="rtl"] .lang-switcher-menu {
  right: auto;
  left: 0;
}
[dir="rtl"] .lang-switcher-option {
  text-align: right;
}
[dir="rtl"] .hero-content {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .nav-end {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .ge-grid,
[dir="rtl"] .about-grid,
[dir="rtl"] .album-split {
  direction: rtl;
}
[dir="rtl"] .album-credits dt,
[dir="rtl"] .track-note dt {
  text-align: right;
}
[dir="rtl"] .collab-carousel-arrow--prev svg,
[dir="rtl"] .collab-carousel-arrow--next svg {
  transform: scaleX(-1);
}
.ge-art {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.jp-hero img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
@media (max-width: 640px) {
  .lang-switcher-label { max-width: 5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ========== Demo Wall landing (2026-07-17) ========== */
.hero--demo-wall .hero-bg--mosaic {
  overflow: hidden;
}
.hero-mosaic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  opacity: 0.52;
  filter: saturate(1.06) brightness(0.72);
  /* no base scale -- scale was causing mosaic cell CLS; parallax adds scale only on desktop pointer */
}
.hero-mosaic__cell {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: #0a0e12;
  min-height: 0;
  min-width: 0;
  contain: strict;
}
.hero-mosaic__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s var(--ease), filter 0.5s ease;
}
.hero-mosaic__cell:hover img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.08);
}
.hero-mosaic__cell--a { grid-column: 1 / 3; grid-row: 1 / 3; }
.hero-mosaic__cell--b { grid-column: 3 / 5; grid-row: 1 / 2; }
.hero-mosaic__cell--c { grid-column: 5 / 7; grid-row: 1 / 3; }
.hero-mosaic__cell--d { grid-column: 3 / 5; grid-row: 2 / 4; }
.hero-mosaic__cell--e { grid-column: 1 / 3; grid-row: 3 / 5; }
.hero-mosaic__cell--f { grid-column: 3 / 5; grid-row: 4 / 5; }
.hero-mosaic__cell--g { grid-column: 5 / 7; grid-row: 3 / 5; }
.hero-mosaic__cell--featured {
  box-shadow: 0 0 0 1px rgba(196, 92, 62, 0.28), 0 0 36px rgba(196, 92, 62, 0.12);
}
.hero-overlay--mosaic {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, transparent 0%, rgba(10, 9, 8, 0.38) 55%, rgba(10, 9, 8, 0.92) 100%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.48) 0%, transparent 28%, transparent 52%, var(--bg) 100%);
}
.hero-lead {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 0 0.85rem auto;
  font-weight: 300;
  line-height: 1.5;
}
.hero-lead strong {
  color: var(--text);
  font-weight: 500;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  justify-content: flex-end;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}
.hero-meta i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  margin-right: 0.35rem;
  vertical-align: middle;
}
.hero--demo-wall .hero-content {
  text-align: right;
}
.hero--demo-wall .hero-cta {
  justify-content: flex-end;
}
/* iPad / tablet portrait & landscape */
@media (max-width: 1100px) and (min-width: 641px) {
  .hero-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    opacity: 0.48;
    gap: 0.35rem;
    padding: 0.35rem;
  }
  .hero-mosaic__cell--a { grid-column: 1 / 3; grid-row: 1 / 3; }
  .hero-mosaic__cell--b { grid-column: 3 / 5; grid-row: 1 / 2; }
  .hero-mosaic__cell--c { grid-column: 3 / 5; grid-row: 2 / 3; }
  .hero-mosaic__cell--d { grid-column: 1 / 2; grid-row: 3 / 4; }
  .hero-mosaic__cell--e { grid-column: 2 / 3; grid-row: 3 / 4; }
  .hero-mosaic__cell--f { grid-column: 3 / 4; grid-row: 3 / 4; }
  .hero-mosaic__cell--g { grid-column: 4 / 5; grid-row: 3 / 4; }
  .hero--demo-wall .hero-content {
    text-align: center;
    margin-inline: auto;
    max-width: 36rem;
  }
  .hero--demo-wall .hero-cta,
  .hero-meta { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .hero--demo-wall .hero-content { text-align: center; }
  .hero--demo-wall .hero-cta { justify-content: center; }
  .hero-mosaic {
    opacity: 0.4;
    filter: saturate(1.02) brightness(0.68);
  }
  .hero-meta { justify-content: center; }
  .hero-lead, .hero-meta {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-content: center;
  }
  .hero-mosaic { opacity: 0.38; gap: 0.28rem; padding: 0.28rem; }
  .hero-mosaic__cell--b,
  .hero-mosaic__cell--f { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mosaic,
  .hero-mosaic__cell img { transition: none !important; }
}

/* Featured demo (Crash into Nowhere) */
.ge-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin: 2.5rem 0 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 70% at 85% 30%, rgba(126, 184, 201, 0.07), transparent 55%),
    rgba(20, 18, 16, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 3;
}
.ge-featured__art {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(184, 149, 106, 0.2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 50px rgba(126, 184, 201, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.ge-featured__art:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(126, 184, 201, 0.12);
}
.ge-featured__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ge-featured__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.78);
  border: 1px solid rgba(196, 92, 62, 0.45);
  color: var(--accent);
  backdrop-filter: blur(8px);
}
.ge-featured__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}
.ge-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.ge-featured__lead {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 32rem;
}
.ge-featured__lead em {
  color: rgba(232, 228, 223, 0.88);
  font-style: italic;
}
.ge-featured__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}
.ge-featured__chips span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.ge-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.ge-track-card--new {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(196, 92, 62, 0.35);
}
.ge-track-card--new .ge-track-card__badge {
  background: rgba(196, 92, 62, 0.22);
  border-color: rgba(196, 92, 62, 0.55);
  color: #f0c8b8;
}
@media (max-width: 860px) {
  .ge-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ge-featured__lead,
  .ge-featured__actions,
  .ge-featured__chips {
    margin-inline: auto;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ge-featured__art { transition: none; }
  .ge-featured__art:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   Design system v2026.07 -- theme toggle + light surfaces
   ═══════════════════════════════════════════════════════════ */

.grain { opacity: var(--grain-opacity, 0.04); }

.theme-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.18s var(--ease);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}
.theme-toggle:hover {
  color: var(--gold);
  border-color: var(--glass-border);
}
.theme-toggle:active { transform: scale(0.96); }
.theme-toggle .theme-icon { display: none; }
html[data-theme="dark"] .theme-toggle .theme-icon--sun { display: block; }
html[data-theme="light"] .theme-toggle .theme-icon--moon { display: block; }

/* Hero mosaic uses tokens for both themes */
.hero-mosaic {
  opacity: var(--mosaic-opacity, 0.48);
  filter: saturate(1.06) brightness(var(--mosaic-brightness, 0.72));
}
.hero-overlay--mosaic {
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, transparent 0%, var(--hero-overlay-mid) 55%, var(--hero-overlay-edge) 100%),
    linear-gradient(180deg, var(--hero-overlay-edge) 0%, transparent 30%, transparent 50%, var(--bg) 100%) !important;
}

/* Quieter hero -- single job */
.hero--demo-wall .hero-content {
  max-width: 34rem;
}
.hero-lead {
  font-size: clamp(0.95rem, 2.1vw, 1.12rem);
  line-height: 1.55;
  max-width: 26rem;
  color: var(--text-muted);
  font-weight: 300;
}
.hero-lead em {
  color: var(--text);
  font-style: normal;
  font-weight: 400;
}
.hero-cta {
  gap: 0.85rem;
}
.hero-cta .btn-primary {
  min-width: 10.5rem;
}
.hero--calm .hero-meta,
.hero--calm .jump-strip,
.hero--calm .share-row--hero {
  display: none !important;
}

/* Light theme surface refinements -- clean cream, no dark bands */
html[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}
html[data-theme="light"] .nav.scrolled,
html[data-theme="light"] .nav-links {
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: var(--border);
}
html[data-theme="light"] .preloader {
  background: var(--bg);
}
html[data-theme="light"] .btn-primary {
  background: var(--accent-hover);
  color: #fffdf8;
}
html[data-theme="light"] .btn-primary:hover {
  background: var(--accent);
}
html[data-theme="light"] .btn-ghost {
  background: rgba(255, 253, 248, 0.7);
  color: var(--text);
  border-color: var(--border);
}
html[data-theme="light"] .hero-title-accent {
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
}

/* Collapsed folds: no black rules / dark underlays */
html[data-theme="light"] .section-fold,
html[data-theme="light"] .section-fold__summary,
html[data-theme="light"] .section-fold__body {
  background: transparent;
  box-shadow: none;
}
html[data-theme="light"] .section-fold:not([open]) {
  background: transparent;
}
html[data-theme="light"] .section-fold__chevron {
  border-color: rgba(138, 107, 61, 0.28);
  background: rgba(255, 253, 248, 0.65);
}
html[data-theme="light"] .section-fold__summary:hover .section-fold__chevron,
html[data-theme="light"] .section-fold__summary:focus-visible .section-fold__chevron {
  border-color: rgba(168, 72, 48, 0.4);
  background: var(--bg-elevated);
}
html[data-theme="light"] .section:not(.hero):not(:first-of-type) {
  border-top-color: var(--section-rule);
}
html[data-theme="light"] .section:nth-child(even of .section) {
  background-image: linear-gradient(180deg, var(--bg-wash) 0%, transparent 32%);
}

/* Merch “Wear the Story” -- soft sage wash, no charcoal band */
html[data-theme="light"] #merch.merch,
html[data-theme="light"] .merch {
  background:
    radial-gradient(ellipse at 12% 18%, var(--merch-glow-a) 0%, transparent 46%),
    radial-gradient(ellipse at 88% 72%, var(--merch-glow-b) 0%, transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%);
  border-top-color: var(--section-rule);
  border-bottom-color: transparent;
}
html[data-theme="light"] .merch::before {
  opacity: 0.55;
}
html[data-theme="light"] .merch::after {
  opacity: 0.045;
  filter: saturate(0.85);
}
html[data-theme="light"] .merch-store-banner {
  background: var(--bg-elevated);
  border-color: var(--border);
  box-shadow: var(--neu-shadow);
}
html[data-theme="light"] .merch-card,
html[data-theme="light"] .merch-card--compact,
html[data-theme="light"] .ge-track-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--neu-shadow);
}
html[data-theme="light"] .merch-filter {
  background: rgba(255, 253, 248, 0.8);
  border-color: var(--border);
  color: var(--text-muted);
}
html[data-theme="light"] .merch-filter.is-active {
  background: var(--accent);
  color: #fffdf8;
  border-color: var(--accent);
}

/* Other section panels that hard-coded dark surfaces */
html[data-theme="light"] .about {
  background: var(--bg-elevated);
}
html[data-theme="light"] .grief-eater {
  background: var(--bg);
  border-color: var(--border);
}
html[data-theme="light"] .faq-item,
html[data-theme="light"] .faq-aeo-summary,
html[data-theme="light"] .album-fold,
html[data-theme="light"] .collab-section,
html[data-theme="light"] .press-quote,
html[data-theme="light"] .contact-form input,
html[data-theme="light"] .contact-form textarea,
html[data-theme="light"] .notify-form input {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="light"] .contact-form input::placeholder,
html[data-theme="light"] .contact-form textarea::placeholder,
html[data-theme="light"] .notify-form input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}
html[data-theme="light"] .ge-forest-layer,
html[data-theme="light"] .storm-layer,
html[data-theme="light"] .wall-crack {
  opacity: 0.28;
}
html[data-theme="light"] .wall-crack-face {
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 55%, var(--bg-deep) 100%);
  border-color: var(--border);
}
html[data-theme="light"] .grain {
  opacity: 0.02;
  mix-blend-mode: multiply;
}
html[data-theme="light"] .footer {
  border-top-color: var(--border);
  background: var(--bg-elevated);
}
html[data-theme="light"] .scroll-progress {
  background: rgba(138, 107, 61, 0.1);
}
html[data-theme="light"] .grief-cta-bar {
  background: rgba(255, 253, 248, 0.94);
  border-color: var(--border);
  color: var(--text);
  box-shadow: 0 -4px 24px rgba(80, 60, 40, 0.08);
}
html[data-theme="light"] .back-top {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="light"] .share-btn {
  background: rgba(255, 253, 248, 0.75);
  border-color: var(--border);
  color: var(--gold);
}
html[data-theme="light"] .social-icon {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text-muted);
}
html[data-theme="light"] .social-icon:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}
/* Details markers / accidental UA chrome */
html[data-theme="light"] details.section-fold > summary {
  background: transparent;
  list-style: none;
}
html[data-theme="light"] #jb-projects-root.is-music-quiet .jb-p-toggle {
  background: rgba(255, 253, 248, 0.88);
  border-color: var(--border);
  color: var(--text-muted);
}

/* Side projects: discreet, not primary nav */
.footer-other-work {
  margin-top: 1.25rem;
  max-width: 28rem;
}
.footer-other-work summary {
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  list-style: none;
}
.footer-other-work summary::-webkit-details-marker { display: none; }
.footer-other-work-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: 0.75rem;
}
.footer-other-work-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-other-work-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-dim);
}

/* Merch as exhibition */
.merch-teaser {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 36rem;
  color: var(--text-muted);
  font-weight: 300;
}
.merch-grid--featured {
  gap: 1.5rem;
}
.merch-card--compact {
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.merch-card--compact:hover {
  transform: translateY(-3px);
}

/* Projects panel -- quieter on music site */
#jb-projects-tab,
.jb-projects-tab,
[data-jb-projects] {
  opacity: 0.55;
  transform: scale(0.92);
  transform-origin: bottom right;
}
#jb-projects-tab:hover,
#jb-projects-tab:focus-visible,
.jb-projects-tab:hover {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  .merch-card--compact {
    transition: none;
  }
  .hero-mosaic {
    filter: brightness(var(--mosaic-brightness, 0.72));
  }
}

@media (max-width: 640px) {
  .theme-toggle {
    width: 44px;
    height: 44px;
  }
  .hero--calm .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero--calm .hero-cta .btn {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
}

/* === Elevation 2026-07-23: letter, shows empty, nav secondary === */
.about-letter {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(184, 149, 106, 0.28);
  background: rgba(20, 18, 16, 0.55);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}
.about-letter__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b8956a);
}
.about-letter p {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}
.about-letter p:last-child { margin-bottom: 0; }
.about-letter__sign {
  color: var(--text) !important;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.04em;
  font-style: italic;
}
html[data-theme="light"] .about-letter {
  background: rgba(255, 253, 248, 0.85);
  border-color: rgba(138, 107, 61, 0.3);
}

.shows-empty {
  margin: 0 0 1.75rem;
  padding: 1.5rem 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated, rgba(20, 18, 16, 0.6));
  text-align: center;
}
.shows-empty__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.shows-empty__lead {
  margin: 0 auto 1.15rem;
  max-width: 34rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}
.shows-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

/* Desktop: keep primary nav lean; secondary items only in mobile drawer */
@media (min-width: 901px) {
  .nav-links .nav-more { display: none; }
}
.nav-links .nav-more a {
  opacity: 0.72;
}
.nav-links .nav-more a:hover { opacity: 1; }

/* Press kit prominence */
.press-kit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0.5rem 0 1.25rem;
}
.press-kit-row .btn { min-height: 44px; }

/* Notify success warmth */
.notify-msg {
  letter-spacing: 0.02em;
}