:root {
  --bg:        oklch(0.165 0.006 60);
  --bg-2:      oklch(0.205 0.008 62);
  --bg-3:      oklch(0.245 0.010 62);
  --fg:        oklch(0.945 0.006 75);
  --muted:     oklch(0.70 0.012 65);
  --faint:     oklch(0.55 0.012 65);
  --accent:    oklch(0.81 0.125 72);
  --accent-dim:oklch(0.81 0.125 72 / 0.14);
  --line:      oklch(1 0 0 / 0.09);
  --line-2:    oklch(1 0 0 / 0.14);

  --serif: "Instrument Serif", 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; }
@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: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: oklch(0.165 0.006 60 / 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  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); }
.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.86 0.125 78); }
.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.006 60 / 0.5);
}

/* ---------- SECTION SHELL ---------- */
section { position: relative; padding-block: clamp(80px, 12vh, 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.006 60 / 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-art { 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-title { font-size: 15px; font-weight: 500; margin-top: 14px; }
.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.006 60 / 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.006 60 / 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-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-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.004 60 / 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.006 60 / 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.004 60 / 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.004 60 / 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: 42vh; 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; }
}
