:root {
  --bg:        oklch(0.165 0.010 300);
  --bg-2:      oklch(0.205 0.012 300);
  --bg-3:      oklch(0.245 0.014 300);
  --fg:        oklch(0.945 0.006 300);
  --muted:     oklch(0.70 0.014 300);
  --faint:     oklch(0.55 0.016 300);
  --accent:    oklch(0.70 0.17 300);
  --accent-dim:oklch(0.70 0.17 300 / 0.14);
  --line:      oklch(1 0 0 / 0.09);
  --line-2:    oklch(1 0 0 / 0.14);

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-top: 18px;
}
h2.section-title em { font-style: italic; color: var(--accent); }

/* ---------- NAV ---------- */
header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Blur + tint live on a ::before layer, NOT the header itself. A backdrop-filter
   on the header would make it the containing block for the fixed mobile drawer
   (a descendant), collapsing the drawer to the header's height mid-animation.
   Keeping the filter on a pseudo-element sidesteps that trap entirely. */
header.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), -webkit-backdrop-filter 0.4s var(--ease);
}
header.nav.scrolled::before {
  background: oklch(0.165 0.010 300 / 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}
header.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
/* logo is white-on-black: screen blend drops the black box on the dark UI */
.brand-logo { height: 38px; width: auto; display: block; mix-blend-mode: screen; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--line-2);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg) !important;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--bg) !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 80px;
  padding-left: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-tag b { color: var(--accent); font-weight: 600; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 32px;
  max-width: 40ch;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}
.hero-actions { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px; font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); background: oklch(0.77 0.16 300); }
.btn-ghost { border-color: var(--line-2); color: var(--fg); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

.hero-right { position: relative; overflow: hidden; }
.about-grid .about-photo,
.music-feature .feature-art,
.release-grid .release-art,
.prog-card .prog-img { width: 100%; height: auto; }
.hero-right .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-fade {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, var(--bg) 0%, transparent 38%, transparent 100%);
}
.video-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scroll {
  position: absolute;
  bottom: 34px; left: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint);
}
.hero-scroll .line { width: 46px; height: 1px; background: var(--faint); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: scrollline 2.4s var(--ease) infinite;
}
@keyframes scrollline { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* image placeholder */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, oklch(1 0 0 / 0.022) 0 12px, transparent 12px 24px),
    var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--faint);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--sans);
}
.ph span {
  border: 1px dashed var(--line-2);
  padding: 7px 14px; border-radius: 100px;
  background: oklch(0.165 0.010 300 / 0.5);
}

/* ---------- SECTION SHELL ---------- */
section { position: relative; padding-block: clamp(80px, 12svh, 150px); }
.section-head { max-width: 720px; }
.section-head .lead {
  margin-top: 26px; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; max-width: 56ch;
}

/* ---------- ABOUT ---------- */
#about .about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-photo { aspect-ratio: 4 / 5; border-radius: 6px; overflow: hidden; }
.about-body p { color: var(--muted); margin-top: 22px; }
.about-body p:first-child { margin-top: 0; color: var(--fg); font-size: clamp(20px, 2.4vw, 27px); font-family: var(--serif); line-height: 1.35; }
.stats { display: flex; gap: clamp(28px, 5vw, 56px); margin-top: 44px; flex-wrap: wrap; }
.stat .n { font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); color: var(--accent); line-height: 1; }
.stat .l { font-size: 13px; color: var(--faint); letter-spacing: 0.06em; margin-top: 8px; }

/* ---------- VIDEOS ---------- */
.video-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.5vw, 32px);
}
.video-card { cursor: pointer; }
.video-thumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.video-card:hover .video-thumb { transform: translateY(-4px); border-color: var(--line-2); }
.video-thumb .play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  background: oklch(0.165 0.010 300 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.3);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.video-card:hover .play { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.video-thumb .play svg { width: 22px; height: 22px; margin-left: 3px; fill: var(--fg); transition: fill 0.3s var(--ease); }
.video-card:hover .play svg { fill: var(--bg); }
.video-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 18px; }
.video-title { font-size: 19px; font-weight: 500; }
.video-card:hover .video-title { color: var(--accent); }
.video-dur { font-size: 13px; color: var(--faint); white-space: nowrap; }
.video-desc { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- MUSIC ---------- */
.music-feature {
  margin-top: 60px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.feature-art { aspect-ratio: 1 / 1; align-self: stretch; }
.feature-body { padding: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) 0; }
.feature-title { font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); line-height: 1.04; margin-top: 14px; }
.feature-meta { color: var(--faint); font-size: 14px; letter-spacing: 0.04em; margin-top: 12px; }
.feature-desc { color: var(--muted); margin-top: 16px; max-width: 44ch; }
.stream-row { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.stream-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 100px; border: 1px solid var(--line-2);
  font-size: 14px; color: var(--fg);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.stream-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); transform: translateY(-2px); }
.stream-btn .d { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.stream-btn:hover .d { background: var(--bg); }
.release-grid { margin-top: clamp(22px, 2.5vw, 32px); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.release-card { cursor: pointer; }
.release-art { position: relative; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.release-card:hover .release-art { transform: translateY(-4px); border-color: var(--line-2); }
.release-art .play {
  position: absolute; inset: 0; margin: auto;
  width: 46px; height: 46px; border-radius: 50%;
  background: oklch(0.165 0.010 300 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.3);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.release-card:hover .release-art .play { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
.release-art .play svg { width: 16px; height: 16px; margin-left: 2px; fill: var(--fg); transition: fill 0.3s var(--ease); }
.release-card:hover .release-art .play svg { fill: var(--bg); }
.release-title { font-size: 15px; font-weight: 500; margin-top: 14px; }
.release-card:hover .release-title { color: var(--accent); }
.release-meta { font-size: 13px; color: var(--faint); margin-top: 4px; }

/* ---------- SESSIONS ---------- */
#sessions { background: var(--bg-2); }
.live-list { margin-top: 50px; border-top: 1px solid var(--line); }
.live-row {
  display: grid; grid-template-columns: 130px 1fr 1fr auto;
  gap: 24px; align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}
.live-row:hover { padding-left: 22px; background: oklch(1 0 0 / 0.018); }
.live-date { font-family: var(--serif); font-size: 21px; }
.live-date span { display: block; font-family: var(--sans); font-size: 12px; color: var(--faint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.live-name { font-size: 19px; font-weight: 500; }
.live-venue { color: var(--muted); font-size: 15px; }
.live-tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; border: 1px solid var(--line-2); color: var(--muted);
  white-space: nowrap;
}
.live-tag.soon { color: var(--accent); border-color: var(--accent-dim); background: var(--accent-dim); }

/* ---------- PROGRAMS ---------- */
.prog-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.prog-card {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.prog-img { aspect-ratio: 3 / 2; }
.prog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prog-kicker { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.prog-title { font-family: var(--serif); font-size: 26px; margin-top: 12px; line-height: 1.1; }
.prog-desc { color: var(--muted); font-size: 14px; margin-top: 12px; flex: 1; }
.prog-foot { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--faint); }
a.prog-foot { text-decoration: none; transition: color 0.3s var(--ease); }
a.prog-foot:hover { color: var(--accent); }

/* ---------- SOCIAL ---------- */
#social { text-align: center; }
#social .wrap { display: flex; flex-direction: column; align-items: center; }
.marquee { width: 100vw; overflow: hidden; margin-top: 56px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--serif); font-size: clamp(34px, 5vw, 62px); color: var(--faint); padding: 0 32px; display: flex; align-items: center; gap: 32px; transition: color 0.3s var(--ease); }
.marquee-item:hover { color: var(--accent); }
.marquee-item::after { content: "\2726"; font-size: 0.4em; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

.socials { margin-top: 64px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; width: 100%; max-width: 860px; }
.social-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 26px 22px; text-align: left;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.social-card:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--bg-2); }
.social-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-3); display: grid; place-items: center; color: var(--accent); }
.social-ic svg { width: 20px; height: 20px; }
.social-plat { font-weight: 600; font-size: 16px; }
.social-handle { color: var(--muted); font-size: 14px; }
.social-card .arr { margin-top: auto; font-size: 13px; color: var(--faint); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.social-card:hover .arr { gap: 12px; color: var(--accent); }

/* ---------- CONTACT ---------- */
#contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.contact-info h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 72px); line-height: 1.0; letter-spacing: -0.01em; }
.contact-info h2 em { font-style: italic; color: var(--accent); }
.contact-info .lead { color: var(--muted); margin-top: 26px; max-width: 42ch; }
.contact-direct { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.cd-item { display: flex; flex-direction: column; gap: 4px; }
.cd-item .k { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.cd-item .v { font-size: 19px; }
.cd-item a.v:hover { color: var(--accent); }

form .field { margin-bottom: 22px; }
form label { display: block; font-size: 13px; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 9px; }
form label .req { color: var(--accent); }
form input, form textarea {
  width: 100%; background: oklch(0.165 0.010 300 / 0.6); border: 1px solid var(--line);
  border-radius: 9px; padding: 14px 16px; color: var(--fg); font-family: var(--sans); font-size: 16px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
form input:focus, form textarea:focus { outline: none; border-color: var(--accent); background: oklch(0.165 0.010 300 / 0.9); }
form textarea { resize: vertical; min-height: 130px; }
form input.err, form textarea.err { border-color: oklch(0.65 0.18 25); }
.err-msg { color: oklch(0.72 0.16 25); font-size: 12.5px; margin-top: 7px; display: none; }
.err-msg.show { display: block; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-submit.loading { opacity: 0.7; pointer-events: none; cursor: not-allowed; animation: formPulse 1.1s ease-in-out infinite; }
@keyframes formPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.45; } }
.form-error { color: oklch(0.72 0.16 25); font-size: 13px; margin-top: 12px; text-align: center; }
.form-note { font-size: 13px; color: var(--faint); margin-top: 16px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; animation: fadeUp 0.6s var(--ease); }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ---------- FOOTER ---------- */
footer { padding: 56px var(--pad); border-top: 1px solid var(--line); }
.foot-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-brand { font-family: var(--serif); font-size: 24px; }
.foot-logo { height: 54px; width: auto; display: block; mix-blend-mode: screen; }
.foot-links { display: flex; gap: 24px; font-size: 14px; color: var(--muted); }
.foot-links a:hover { color: var(--accent); }
.foot-copy { font-size: 13px; color: var(--faint); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll .line::after, .marquee-track { animation: none; }
}

/* ---------- MODAL ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: oklch(0.1 0.008 300 / 0.86); backdrop-filter: blur(8px); animation: fadeIn 0.3s var(--ease); }
.modal-card { position: relative; width: min(960px, 100%); animation: fadeUp 0.45s var(--ease); }
.modal-video { aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-2); background: var(--bg-2); }
.modal-video iframe { width: 100%; height: 100%; border: 0; }
.modal-empty { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 30px; }
.modal-empty .play-lg { width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.modal-empty p { color: var(--muted); font-size: 15px; max-width: 38ch; }
.modal-empty .hint { font-size: 12.5px; color: var(--faint); font-family: var(--sans); }
.modal-cap { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.modal-cap h4 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.modal-close { position: absolute; top: -52px; right: 0; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: oklch(0.165 0.010 300 / 0.6); color: var(--fg); display: grid; place-items: center; cursor: pointer; transition: background 0.25s var(--ease), transform 0.25s var(--ease); }
.modal-close:hover { background: var(--accent); color: var(--bg); transform: rotate(90deg); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- GALLERY ---------- */
.gallery-grid { margin-top: clamp(28px, 3vw, 44px); columns: 3 280px; column-gap: clamp(12px, 1.5vw, 18px); }
.gallery-item {
  break-inside: avoid; margin: 0 0 clamp(12px, 1.5vw, 18px);
  border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  position: relative; cursor: pointer; display: block;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, oklch(0.1 0.008 300 / 0.34), transparent 55%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery-item:hover { border-color: var(--line-2); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 210; display: none; align-items: center; justify-content: center; padding: 32px; }
.lightbox.open { display: flex; }
.lightbox-bg { position: absolute; inset: 0; background: oklch(0.1 0.008 300 / 0.9); backdrop-filter: blur(8px); animation: fadeIn 0.3s var(--ease); }
.lightbox-img { position: relative; max-width: min(1100px, 100%); max-height: 86vh; border-radius: 12px; border: 1px solid var(--line-2); animation: fadeUp 0.45s var(--ease); }
.lightbox .modal-close { top: 24px; right: 24px; }

/* ---------- INVITE / MINISTRATION ---------- */
.invite { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.invite-body .lead { margin-bottom: 30px; }
.invite-art { display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 4 / 3.4; }
.invite-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); display: block; }
.invite-art img:first-child { grid-row: 1 / 3; }

/* ---------- MOBILE ---------- */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 42svh; order: -1; }
  .hero-fade { background: linear-gradient(0deg, var(--bg) 0%, transparent 60%); }
  .hero-left { padding-top: 90px; }
  #about .about-grid { grid-template-columns: 1fr; }
  .music-feature { grid-template-columns: 1fr; }
  .invite { grid-template-columns: 1fr; }
  .feature-art { aspect-ratio: 16 / 10; }
  .feature-body { padding: 0 clamp(24px, 5vw, 40px) clamp(28px, 5vw, 40px); }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo { max-width: 420px; }
  .video-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .live-row { grid-template-columns: 96px 1fr auto; }
  .live-venue { display: none; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: var(--bg-2); border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    padding: 0 40px; transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 20px; }
  .burger { display: flex; z-index: 110; }
  .live-row { grid-template-columns: 80px 1fr; gap: 14px; }
  .live-tag { display: none; }
}

/* ============================================================================
   NOW PLAYING — persistent mini player + feature play button
   ========================================================================== */

/* ---- Feature art play button (Music section) ---- */
.feature-art { position: relative; }
.feature-play {
  position: absolute; inset: 0; margin: auto;
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  color: var(--bg);
  background: var(--accent);
  border: 0;
  box-shadow: 0 14px 40px oklch(0.70 0.17 300 / 0.45);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 2;
}
.feature-play svg { width: 30px; height: 30px; margin-left: 4px; transition: opacity 0.25s var(--ease); }
.feature-play .pause-ic { display: none; position: absolute; }
.feature-play:hover { transform: scale(1.07); background: oklch(0.77 0.16 300); }
.feature-play::before,
.feature-play::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--accent);
  animation: npPulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
.feature-play::after { animation-delay: 1.3s; }
.feature-art.is-playing .feature-play .play-ic { display: none; }
.feature-art.is-playing .feature-play .pause-ic { display: block; }
.feature-art.is-playing .feature-play::before,
.feature-art.is-playing .feature-play::after { animation: none; opacity: 0; }
.feature-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 100px;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--fg);
  background: oklch(0.165 0.010 300 / 0.62); border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.feature-cap .eq-mini { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 13px; }
.feature-cap .eq-mini i { width: 2.5px; background: var(--accent); border-radius: 2px; height: 40%; }
.feature-art.is-playing .feature-cap .eq-mini i { animation: npBar 0.9s ease-in-out infinite; }
.feature-cap .eq-mini i:nth-child(2) { animation-delay: 0.25s; }
.feature-cap .eq-mini i:nth-child(3) { animation-delay: 0.5s; }
@keyframes npPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.65); opacity: 0; } }

/* ---- The dock ---- */
.np {
  position: fixed; left: 24px; bottom: 24px; z-index: 140;
  width: 380px; max-width: calc(100vw - 32px);
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: oklch(0.205 0.012 300 / 0.78);
  border: 1px solid var(--line-2);
  box-shadow: 0 18px 50px oklch(0.1 0.008 300 / 0.55);
  backdrop-filter: blur(20px) saturate(1.3);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease), width 0.45s var(--ease), padding 0.45s var(--ease);
}
.np.ready { transform: none; opacity: 1; }
.np[hidden] { display: none; }

/* spinning art doubles as play/pause */
.np-art {
  position: relative; flex: 0 0 auto;
  width: 54px; height: 54px; border-radius: 50%;
  overflow: hidden; cursor: pointer; padding: 0; border: 1px solid var(--line-2);
  background: var(--bg-3);
}
.np-art img { width: 100%; height: 100%; object-fit: cover; }
.np-art .np-art-fallback {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--bg);
  background: radial-gradient(120% 120% at 30% 20%, oklch(0.78 0.16 300), oklch(0.58 0.18 296));
}
.np-art::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg); border: 1px solid oklch(1 0 0 / 0.25);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.np[data-state="playing"] .np-art { animation: npSpin 9s linear infinite; }
.np[data-state="playing"] .np-art::after { opacity: 1; }
@keyframes npSpin { to { transform: rotate(360deg); } }

.np-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.np-top { display: flex; align-items: center; gap: 12px; }
.np-titles { flex: 1 1 auto; min-width: 0; }
.np-kicker {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: flex; align-items: center; gap: 7px;
}
.np-eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.np-eq i { width: 2.5px; background: var(--accent); border-radius: 2px; height: 30%; }
.np[data-state="playing"] .np-eq i { animation: npBar 0.9s ease-in-out infinite; }
.np-eq i:nth-child(2) { animation-delay: 0.2s; }
.np-eq i:nth-child(3) { animation-delay: 0.45s; }
.np-eq i:nth-child(4) { animation-delay: 0.65s; }
@keyframes npBar { 0%, 100% { height: 28%; } 50% { height: 100%; } }
.np-title {
  font-family: var(--serif); font-size: 18px; line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 3px;
}
.np-meta { font-size: 11.5px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.np-controls { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.np-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: 0; color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.np-btn:hover { color: var(--fg); background: oklch(1 0 0 / 0.06); }
.np-btn svg { width: 17px; height: 17px; fill: currentColor; }
.np-play {
  width: 40px; height: 40px; background: var(--accent); color: var(--bg);
}
.np-play svg { width: 19px; height: 19px; }
.np-play:hover { background: oklch(0.77 0.16 300); color: var(--bg); transform: scale(1.06); }
.np-play .pause-ic { display: none; }
.np[data-state="playing"] .np-play .play-ic { display: none; }
.np[data-state="playing"] .np-play .pause-ic { display: block; }

.np-bottom { display: flex; align-items: center; gap: 10px; }
.np-time { font-size: 10.5px; color: var(--faint); font-variant-numeric: tabular-nums; flex: 0 0 auto; width: 30px; }
.np-time:last-of-type { text-align: right; }
.np-bar {
  flex: 1 1 auto; height: 14px; display: flex; align-items: center; cursor: pointer;
  position: relative;
}
.np-bar-track { width: 100%; height: 3px; border-radius: 3px; background: oklch(1 0 0 / 0.12); overflow: hidden; }
.np-bar-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 3px; transition: width 0.15s linear; }
.np-bar-head {
  position: absolute; top: 50%; left: 0%; width: 10px; height: 10px; border-radius: 50%;
  background: var(--fg); transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s var(--ease); pointer-events: none;
}
.np-bar:hover .np-bar-head { transform: translate(-50%, -50%) scale(1); }
.np-mute { flex: 0 0 auto; }
.np-mute .muted-ic { display: none; }
.np.is-muted .np-mute .sound-ic { display: none; }
.np.is-muted .np-mute .muted-ic { display: block; color: var(--accent); }

.np-collapse {
  position: absolute; top: 8px; right: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: 0; color: var(--faint);
  transition: color 0.2s var(--ease), transform 0.3s var(--ease);
}
.np-collapse:hover { color: var(--fg); }
.np-collapse svg { width: 13px; height: 13px; }

/* invite-to-play hint shown before first play */
.np-hint {
  position: absolute; right: 14px; top: -13px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  padding: 4px 11px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 18px oklch(0.70 0.17 300 / 0.4);
  animation: npFloat 2.4s ease-in-out infinite;
}
.np[data-state="playing"] .np-hint,
.np[data-state="paused"] .np-hint { display: none; }
@keyframes npFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* idle pulse on the play button to invite the first click */
.np[data-state="idle"] .np-play { animation: npGlow 2.2s var(--ease) infinite; }
@keyframes npGlow { 0%, 100% { box-shadow: 0 0 0 0 oklch(0.70 0.17 300 / 0.5); } 50% { box-shadow: 0 0 0 9px oklch(0.70 0.17 300 / 0); } }

/* collapsed / mini state */
.np.collapsed { width: 78px; padding: 11px; gap: 0; }
.np.collapsed .np-main, .np.collapsed .np-hint { display: none; }
.np.collapsed .np-art { width: 54px; height: 54px; }
.np.collapsed .np-collapse { transform: rotate(180deg); top: 6px; right: 6px; background: oklch(0.165 0.010 300 / 0.7); }

/* ---- playlist / full-catalog panel ---- */
.np-queue-btn svg { width: 18px; height: 18px; }
.np.queue-open .np-queue-btn { color: var(--accent); }
.np-queue {
  position: absolute; left: 0; right: 0; bottom: calc(100% + 12px);
  display: flex; flex-direction: column;
  max-height: min(48vh, 460px);
  background: oklch(0.205 0.012 300 / 0.92);
  border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: 0 18px 50px oklch(0.1 0.008 300 / 0.55);
  backdrop-filter: blur(20px) saturate(1.3);
  overflow: hidden;
  opacity: 0; transform: translateY(12px) scale(0.98); transform-origin: bottom center;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.np.queue-open .np-queue { opacity: 1; transform: none; pointer-events: auto; }
.np.collapsed .np-queue { display: none; }
.np-queue-head {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 12px 11px 16px; border-bottom: 1px solid var(--line);
}
.np-queue-title { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.np-queue-title b { color: var(--accent); font-weight: 600; }
.np-queue-actions { display: flex; align-items: center; gap: 6px; }
.np-qbtn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 100px;
  background: transparent; border: 1px solid var(--line-2); color: var(--muted);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.np-qbtn svg { width: 13px; height: 13px; }
.np-qbtn:hover { color: var(--fg); border-color: var(--fg); }
.np-qbtn.on { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.np-q-close { padding: 6px; }
.np-q-close svg { width: 14px; height: 14px; }
.np-queue-list { overflow-y: auto; overflow-x: hidden; padding: 8px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.np-q-group { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); padding: 13px 10px 6px; }
.np-q-group:first-child { padding-top: 6px; }
.np-q-row {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 8px 10px; border-radius: 10px; border: 0; background: transparent; color: var(--fg);
  cursor: pointer; transition: background 0.2s var(--ease);
}
.np-q-row:hover { background: oklch(1 0 0 / 0.05); }
.np-q-row.playing { background: var(--accent-dim); }
.np-q-thumb { position: relative; flex: 0 0 auto; width: 42px; height: 42px; border-radius: 8px; overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); }
.np-q-thumb img { width: 100%; height: 100%; object-fit: cover; }
.np-q-eq { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; gap: 3px; background: oklch(0.1 0.008 300 / 0.5); }
.np-q-eq i { width: 3px; height: 30%; background: var(--accent); border-radius: 2px; }
.np-q-row.playing .np-q-eq { display: flex; }
.np[data-state="playing"] .np-q-row.playing .np-q-eq i { animation: npBar 0.9s ease-in-out infinite; }
.np-q-eq i:nth-child(2) { animation-delay: 0.25s; }
.np-q-eq i:nth-child(3) { animation-delay: 0.5s; }
.np-q-txt { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.np-q-title { font-size: 14px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-q-row.playing .np-q-title { color: var(--accent); }
.np-q-meta { font-size: 11px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* hidden audio engines — kept a real size off-screen (a 1px YouTube player
   won't reliably initialise/play), just parked out of view */
.np-engine { position: fixed; left: -9999px; top: -9999px; width: 320px; height: 180px; pointer-events: none; }

@media (max-width: 560px) {
  .np { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; }
  .np.collapsed { left: auto; right: 12px; width: 72px; }
  .np-title { font-size: 16px; }
  .np-queue { max-height: 56vh; }
  .feature-play { width: 72px; height: 72px; }
  .feature-play svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .np[data-state="playing"] .np-art,
  .np[data-state="playing"] .np-eq i,
  .np[data-state="playing"] .np-q-row.playing .np-q-eq i,
  .feature-art.is-playing .feature-cap .eq-mini i,
  .np-hint, .np[data-state="idle"] .np-play,
  .feature-play::before, .feature-play::after { animation: none !important; }
  .np { transition: opacity 0.3s var(--ease); transform: none; }
}
