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

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

.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);
  transition: width 0.08s linear;
}

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

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

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

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

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

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

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

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  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: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
  width: max-content;
  max-width: min(220px, calc(100vw - 24px));
}
body:not(.sound-on) .sound-hint.is-visible,
body.showing-sound-hint:not(.sound-on) .sound-hint {
  opacity: 1 !important;
  visibility: visible !important;
}
body.sound-on .sound-hint {
  opacity: 0 !important;
  visibility: hidden !important;
}
body.showing-sound-hint:not(.sound-on) .sound-toggle {
  animation: sound-toggle-beacon 1.6s ease-in-out infinite;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.18),
    0 0 36px rgba(255, 255, 255, 0.35),
    0 0 64px rgba(255, 255, 255, 0.12);
}
@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-reverse;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  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;
  animation:
    sound-hint-twig-draw 1.4s ease-out forwards,
    sound-hint-twig-pulse 2.4s ease-in-out 1.4s infinite;
}
.sound-hint-twig-wrap:hover .sound-hint-twig-line,
.sound-hint-twig-wrap.is-humming .sound-hint-twig-line {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95));
  animation:
    sound-hint-twig-draw 1.4s ease-out forwards,
    sound-hint-twig-pulse-intense 1.1s ease-in-out infinite;
}
@keyframes sound-hint-twig-draw {
  from { stroke-dashoffset: 130; opacity: 0.35; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes sound-hint-twig-pulse {
  0%, 100% { opacity: 0.72; stroke-width: 1.1; }
  50% { opacity: 1; stroke-width: 1.35; }
}
@keyframes sound-hint-twig-pulse-intense {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}
.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;
  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.45),
    0 0 68px rgba(255, 255, 255, 0.2),
    0 2px 6px rgba(0, 0, 0, 1);
  animation: sound-hint-flash 2s ease-in-out infinite;
  overflow: visible;
}
.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.05em;
  letter-spacing: 0.18em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 28px rgba(255, 255, 255, 0.9),
    0 0 52px rgba(255, 255, 255, 0.5),
    0 0 80px rgba(255, 255, 255, 0.22),
    0 2px 8px rgba(0, 0, 0, 1);
}
@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-smoking .sound-toggle {
  animation: sound-unmute-burst 0.65s ease-out;
}
@keyframes sound-unmute-burst {
  0% { transform: scale(1); }
  35% { transform: scale(1.12); box-shadow: 0 0 32px rgba(255, 255, 255, 0.45), 0 0 56px rgba(196, 92, 62, 0.25); }
  100% { transform: scale(1); }
}
.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: var(--accent); color: #fff;
}
.btn-primary:hover {
  background: #d46a4a;
  box-shadow: 0 0 30px var(--accent-glow), var(--neu-shadow);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: rgba(20, 18, 16, 0.4); color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn,
.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: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.85) saturate(1.05);
  transform: scale(1.05);
  animation: hero-zoom 20s ease infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
/* ── Billowing smoke ── */
.smoke-layer {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.smoke-layer--compact .smoke-wisp { filter: blur(14px); }
.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(200, 210, 220, 0.45) 0%,
    rgba(160, 175, 190, 0.2) 40%,
    transparent 70%);
  filter: blur(22px);
  opacity: 0;
  animation: smoke-billow ease-in-out infinite;
}
.smoke-wisp--1 { width: 180px; height: 120px; left: 18%; top: 8%; animation-duration: 9s; animation-delay: 0s; }
.smoke-wisp--2 { width: 220px; height: 140px; left: 28%; top: 5%; animation-duration: 11s; animation-delay: -2s; }
.smoke-wisp--3 { width: 160px; height: 100px; left: 12%; top: 14%; animation-duration: 8s; animation-delay: -4s; }
.smoke-wisp--4 { width: 200px; height: 130px; left: 35%; top: 10%; animation-duration: 12s; animation-delay: -1s; }
.smoke-wisp--5 { width: 140px; height: 90px; left: 22%; top: 18%; animation-duration: 10s; animation-delay: -6s; }
.smoke-wisp--6 { width: 190px; height: 110px; left: 8%; top: 12%; animation-duration: 13s; animation-delay: -3s; }

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

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

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

/* ── Sections ── */
.section {
  padding: 7rem 0;
  position: relative;
}
.section:not(.hero):not(:first-of-type) {
  border-top: 1px solid rgba(184, 149, 106, 0.06);
}
.section:nth-child(even of .section) {
  background-image: linear-gradient(180deg, rgba(20, 18, 16, 0.35) 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: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-lead {
  color: var(--text-muted); max-width: 560px;
  margin-bottom: 3rem; font-size: 1.05rem;
}

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

/* ── Grief Eater ── */
.grief-eater {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  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;
}
.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-art {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
  animation: ge-breathe 6s ease-in-out infinite;
}
@keyframes ge-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.ge-scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(196, 92, 62, 0.04) 3px, rgba(196, 92, 62, 0.04) 4px
  );
  animation: scan 6s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.ge-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; margin-bottom: 0.5rem;
}
.ge-glitch {
  position: relative; display: inline-block; color: var(--text);
}
.ge-glitch::before, .ge-glitch::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0;
  width: 100%; overflow: hidden;
}
.ge-glitch::before {
  color: var(--accent); z-index: -1;
  animation: glitch-1 4s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.ge-glitch::after {
  color: var(--gold); z-index: -2;
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
}
@keyframes glitch-2 {
  0%, 88%, 100% { transform: translate(0); }
  90% { transform: translate(2px, 2px); }
  93% { transform: translate(-2px, -1px); }
}
.ge-whisper {
  font-family: var(--font-display);
  font-style: italic; color: var(--text-muted);
  font-size: 1.1rem; margin-bottom: 2rem;
}
.ge-fragments { margin-bottom: 2rem; }
.ge-fragment {
  font-size: 0.9rem; color: var(--text-muted);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.ge-blur { filter: blur(3px); user-select: none; transition: filter 0.5s; }
.ge-blur:hover { filter: blur(1px); }
.ge-redacted {
  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; }
.notify-form {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.notify-form input {
  flex: 1; min-width: 200px;
  padding: 0.85rem 1.25rem;
  background: rgba(20, 18, 16, 0.65);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body);
  font-size: 0.9rem; outline: none;
  border-radius: 2px;
  box-shadow: var(--neu-inset);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.notify-form input:focus {
  border-color: var(--accent);
  box-shadow: var(--neu-inset), 0 0 0 3px rgba(196, 92, 62, 0.12);
}
.notify-form input::placeholder { color: var(--text-muted); }
.notify-msg {
  margin-top: 1rem; color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.05em;
}

/* ── About ── */
.about { background: var(--bg-elevated); }
.about-grid {
  display: grid;
  grid-template-columns: 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; }
.track-item {
  display: flex; align-items: center; gap: 0.75rem;
  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);
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
  cursor: pointer; position: relative;
  border-radius: 3px;
  user-select: none;
}
.track-item:hover {
  color: var(--text); padding-left: 0.5rem;
  background: rgba(184, 149, 106, 0.04);
}
.track-item.selected {
  color: var(--text); padding-left: 0.5rem;
  background: rgba(184, 149, 106, 0.08);
  border-bottom-color: rgba(184, 149, 106, 0.25);
}
.track-item.selected .track-title { color: var(--gold); }
.track-item:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}
.track-check {
  width: 1.1rem; height: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.track-check::after {
  content: '';
  width: 0.35rem; height: 0.6rem;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  margin-top: -2px;
  transition: transform 0.25s var(--ease);
}
.track-item.selected .track-check {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.track-item.selected .track-check::after {
  transform: rotate(45deg) scale(1);
}
.track-num { color: var(--accent); font-size: 0.75rem; min-width: 1.5rem; }
.track-title { flex: 1; }

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

.album-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 {
  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);
}

/* ── 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); }

/* ── 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;
  transition: transform 0.4s var(--ease);
}
.music-card:hover .music-card-icon { transform: scale(1.15) rotate(-4deg); }
.music-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; margin-bottom: 0.5rem;
}
.music-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Media ── */
.media { background: var(--bg-elevated); }
.video-wrap { margin-bottom: 3rem; }
.video-frame {
  position: relative; padding-bottom: 56.25%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--neu-shadow);
}
.video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.video-poster img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.video-poster:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.03);
}
.video-play-ring {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: var(--neu-shadow), 0 0 40px rgba(196, 92, 62, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.video-poster:hover .video-play-ring {
  transform: scale(1.1);
  box-shadow: var(--neu-shadow), 0 0 50px rgba(196, 92, 62, 0.45);
}
.video-caption {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text);
  padding: 0.5rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}
.video-source {
  text-align: center; margin-top: 1rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.video-source a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
  transition: color 0.3s, border-color 0.3s;
}
.video-source a:hover { color: var(--accent); border-color: var(--accent); }
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
/* ── 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;
}

/* ── 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-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: var(--accent);
  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-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  text-align: center;
}
.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-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-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-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-tease { grid-column: 1 / -1; }
.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;
  cursor: default;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease), transform 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.footer-pulse {
  color: var(--accent);
  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;
}
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,
body.vault-veil-ready .footer-pulse {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(184, 149, 106, 0.35);
}
body.sound-on .footer-pulse-btn::after,
body.vault-veil-ready .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;
}
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.press,
.section.shows,
.section.faq,
.section.connect,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

/* ── 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 { display: none; }
  .sound-hint-twig-line,
  .sound-hint-label,
  .sound-hint-label::before,
  .sound-hint-label::after,
  .collab-carousel-arrow--next { animation: none !important; }
  body:not(.sound-on) .sound-hint.is-visible { opacity: 1 !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; }
}

@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; }
  .nav {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .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-text { align-items: 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; }
  .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.11em; font-size: 1em; }
  .sound-hint-twig-wrap { width: 40px; height: 96px; }
  .sound-hint-twig { width: 10px; height: 96px; }
  .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));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .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));
  }
  .nav-links.open { transform: translateY(0); }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .qr-card { flex-direction: column; text-align: center; }
  .qr-hint { max-width: none; }
}