/* Dark / DIY / high-contrast. No rounded SaaS styling. */

/* Design tokens */
:root {
  --color-bg-primary:    #0a0a0a;
  --color-bg-secondary:  #141414;
  --color-text-primary:  #e8e6e3;
  --color-text-muted:    #8a8a8a;
  --color-accent:        #3b2f7d;
  --color-accent-hover:  #8b7be8;
  --color-border:        #2a2a2a;

  --font-display: "Cinzel Decorative", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max-w: 1280px;
  --gap: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 200ms var(--ease);
}

/* Reset / base */
*, *::before, *::after {
  box-sizing: border-box;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

::selection {
  background: var(--color-accent);
  color: var(--color-text-primary);
}

section { scroll-margin-top: 5.5rem; }

body {
  margin: 0;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* SVG noise overlay applied via ::before so it doesn't intercept clicks */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Starfield */
.stars-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  border-radius: 50%;
}
.stars-small  { width: 1px; height: 1px; opacity: 0.8; }
.stars-medium {
  width: 2px; height: 2px;
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite alternate;
}
.stars-large {
  width: 3px; height: 3px;
  opacity: 0.9;
  box-shadow: 0 0 4px var(--color-accent);
  animation: twinkle 6s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.3; }
  to   { opacity: 1; }
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-accent-hover); }

/* WCAG 2.4.1 — skip-to-content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent);
  color: var(--color-text-primary);
  padding: 0.75rem 1rem;
  z-index: 200;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.skip-link:focus { top: 0; }

/* WCAG 2.4.7 — visible focus state */
:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 2px;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-text-primary);
}

.section-title {
  position: relative;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.65rem;
  background: var(--color-accent);
  transform: rotate(45deg) translateY(-3px);
  vertical-align: middle;
  transition: transform var(--transition), background var(--transition);
}
.section-title:hover::before {
  transform: rotate(45deg) translateY(-3px) scale(1.3);
  background: var(--color-accent-hover);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--color-text-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  user-select: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-primary);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-text-primary);
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}
.btn-ghost:hover {
  background: var(--color-text-primary);
  color: var(--color-bg-primary);
}

/* Platform logo buttons — icon-only, brand-colored */
.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.platform-btn svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.platform-btn:hover {
  background: currentColor;
  border-color: currentColor;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}
.platform-btn:hover svg { fill: var(--color-bg-primary); }
.platform-bandcamp   { color: #1da0c3; }
.platform-spotify    { color: #1DB954; }
.platform-appleMusic { color: #fa243c; }
.platform-youtube    { color: #FF0000; }

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(6px);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: clip;
}
.wordmark:hover { color: var(--color-accent-hover); }

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-nav a {
  position: relative;
  color: var(--color-text-muted);
  padding-bottom: 4px;
  transition: color var(--transition);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--color-accent-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--color-accent-hover); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--color-text-primary); }
.site-nav a.is-active::after {
  transform: scaleX(1);
  background: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-text-primary);
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1px;
  background: var(--color-text-primary);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1.25rem;
}
/* No hero image yet — swap the gradient for url() when one exists. */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(139,123,232,0.16) 0%, rgba(10,10,10,0) 60%),
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%),
    var(--color-bg-secondary);
  z-index: 0;
}
/* Slow-drifting violet aurora behind the hero copy */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(38% 38% at 32% 42%, rgba(139,123,232,0.22) 0%, transparent 70%),
    radial-gradient(30% 30% at 68% 58%, rgba(139,123,232,0.14) 0%, transparent 70%);
  animation: hero-drift 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  animation: hero-in 0.9s var(--ease) both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: none;
}
.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  letter-spacing: 0.05em;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 1rem;
}

/* Manifesto */
.manifesto {
  padding: 5rem 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.manifesto-body {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-accent);
  color: var(--color-text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(59, 47, 125, 0.08);
}

/* Spotlight */
.spotlight { padding: 5rem 0; }
.spotlight-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  padding: 1rem;
  align-items: start;
}
.spotlight-card .cover {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
}
.spotlight-info h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.25rem;
}
.spotlight-info .artist { color: var(--color-text-primary); margin-bottom: 0.15rem; font-size: 0.9rem; }
.spotlight-info .alias-note { color: var(--color-text-muted); font-size: 0.8rem; }
.spotlight-info .genre { color: var(--color-accent-hover); margin-bottom: 0.75rem; font-size: 0.9rem; }
.spotlight-info .links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.spotlight-info .meta {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.5rem;
}
.embed-wrap { margin-top: 0.75rem; border: 1px solid var(--color-border); }
.embed-wrap iframe { width: 100%; border: 0; display: block; }
.audio-fallback { width: 100%; }

/* Coming soon */
.coming-soon {
  padding: 5rem 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.coming-soon-sub { color: var(--color-text-muted); margin-bottom: 2rem; }
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.coming-soon-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}
.coming-soon-empty { margin: 0; color: var(--color-text-primary); }

/* Roster */
.roster {
  padding: 5rem 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.roster-sub {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2rem;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.band-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--transition), transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.band-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(139, 123, 232, 0.25);
}
.band-card .logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-bg-secondary);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.band-card:hover .logo {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.band-card .logo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(139,123,232,0.12) 0%, transparent 70%),
    var(--color-bg-secondary);
}
.band-card-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.band-card-body h3 { font-size: 1.15rem; margin: 0; }
.band-card-body .genre {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.band-card-body .blurb { font-size: 0.9rem; color: var(--color-text-primary); }

/* More info */
.more-info { padding: 5rem 0; background: var(--color-bg-primary); }
.more-info-body {
  max-width: 760px;
  border-left: 2px solid var(--color-accent);
  padding-left: 1.25rem;
}
.more-info-body p {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.more-info-body strong { color: var(--color-text-primary); font-weight: 700; }
.more-info-body em { color: var(--color-text-primary); font-style: italic; }

/* Vault */
.vault { padding: 5rem 0; background: var(--color-bg-primary); }
.vault-sub { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.chip:hover { color: var(--color-text-primary); border-color: var(--color-text-primary); transform: translateY(-1px); }
.chip-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-primary);
}
.chip-active:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.card {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(139, 123, 232, 0.25);
}
.card-cover-link {
  display: block;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.cover-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  line-height: 0;
  text-align: left;
}
.cover-zoom:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 2px;
}
.card .cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-bg-primary);
  display: block;
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.cover-external {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition), color var(--transition);
}
.card:hover .cover,
.card:focus-within .cover {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.card:hover .cover-external,
.card:focus-within .cover-external {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}
.card-body { padding: 0.7rem 0 0; display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: #5eead4;
  transition: color var(--transition);
}
.card:hover .card-body h3 { color: #7ff3e0; }
.card-body .artist { color: var(--color-text-primary); font-size: 0.82rem; margin: 0; }
.card-body .alias-note { color: var(--color-text-muted); font-size: 0.78rem; font-style: italic; }

.card.is-hidden { display: none; }

/* Fade/slide-in on scroll — only hidden when JS is active (body.js). Without JS, content stays visible. */
body.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Links hub */
.links-hub {
  padding: 5rem 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.links-sub { color: var(--color-text-muted); margin-bottom: 2rem; }
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.icon-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.icon-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.icon-glyph {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-glyph svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.icon-bandcamp  { color: #1da0c3; }
.icon-spotify   { color: #1DB954; }
.icon-youtube   { color: #FF0000; }

/* Contact */
.contact {
  padding: 5rem 0;
  text-align: center;
}
.contact p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.mailto { margin-top: 0.5rem; }

/* Footer */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright { color: var(--color-text-muted); font-size: 0.85rem; margin: 0; }
.back-to-top {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.back-to-top:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
  transform: translateY(-2px);
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--color-bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border: 3px solid var(--color-bg-primary);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* Arrival flash */
.section-flash {
  animation: section-flash 0.9s var(--ease);
}
@keyframes section-flash {
  0% {
    box-shadow: inset 0 0 0 2px var(--color-accent-hover),
                inset 0 0 32px rgba(139, 123, 232, 0.18);
  }
  100% {
    box-shadow: inset 0 0 0 0 transparent,
                inset 0 0 0 0 transparent;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-figure {
  margin: 0;
  max-width: min(90vw, 900px);
  max-height: 90vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-border);
}
.lightbox-caption {
  text-align: center;
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--color-accent-hover);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}
body.no-scroll { overflow: hidden; }

/* Responsive */
@media (max-width: 768px) {
  .spotlight-card { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.98);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
  }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .manifesto, .spotlight, .coming-soon, .vault, .links-hub, .contact { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  .stars-medium, .stars-large,
  .hero-bg::before, .hero-content,
  .section-flash { animation: none; }
  body.js .reveal { transition: none; opacity: 1; transform: none; }
  .card .cover, .band-card .logo { transition: none; transform: none; filter: none; }
  * { transition-duration: 0.01ms !important; }
}