/* ═══════════════════════════════════════════════════
   VELUNIA CLUB — NOCTURA 2030
   ═══════════════════════════════════════════════════ */
:root {
  --void: #030306;
  --surface: #0a0a10;
  --surface-2: #101018;
  --line: rgba(255,255,255,0.07);
  --text: #f8f6f2;
  --muted: rgba(248,246,242,0.42);
  --violet: #9d7bff;
  --ice: #5ecfff;
  --pink: #e879a8;
  --gold: #c9a962;
  --grad: linear-gradient(135deg, var(--ice), var(--violet), var(--pink));
  --grad-luxe: linear-gradient(120deg, #f5f0e8 0%, #c9a962 28%, #5ecfff 62%, #9d7bff 100%);
  --glass: rgba(10,10,16,0.72);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: min(1280px, 90vw);
  --dock-h: 64px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--dock-h) + var(--safe-top) + 0.75rem);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body.velunia-body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}
body.is-menu-open { overflow: hidden; }
body.is-loaded .js-hero,
body.is-loaded [data-animate] {
  /* Homepage scroll animations control visibility; subpage fallback below */
}
body.is-subpage.is-loaded [data-animate],
body.is-subpage.no-motion [data-animate] {
  opacity: 1;
  transform: none;
}
button { font: inherit; color: inherit; }
button:focus-visible,
a:focus-visible,
.dock__burger:focus-visible,
.hero__dot:focus-visible,
.hero__sound:focus-visible,
.bento__cell:focus-visible,
.rail__nav:focus-visible,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 20001;
  padding: 0.75rem 1.25rem;
  background: var(--ice);
  color: var(--void);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: calc(1rem + var(--safe-top));
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }

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

#main { position: relative; z-index: 2; }

/* Scroll-reactive glow layer */
.scroll-glow {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.scroll-glow__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.scroll-glow__orb--1 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  top: 10%; left: -10%;
  background: rgba(139,92,246,0.18);
}
.scroll-glow__orb--2 {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  top: 40%; right: -15%;
  background: rgba(56,189,248,0.14);
}
.scroll-glow__orb--3 {
  width: 35vw; height: 35vw; max-width: 450px; max-height: 450px;
  top: 70%; left: 30%;
  background: rgba(244,114,182,0.12);
}

/* Section scroll glow */
.block--scroll {
  --section-glow: 0;
  position: relative;
}
.block--scroll::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,calc(0.08 * var(--section-glow))), transparent 70%);
  pointer-events: none;
  opacity: 1;
}

/* ─── DOCK NAV ─── */
.dock {
  position: fixed;
  top: calc(1.25rem + var(--safe-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(960px, calc(94vw - var(--safe-left) - var(--safe-right)));
}
.dock__mobile-link,
.dock__mobile-langs { display: none; }
.dock__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: rgba(12,12,18,0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: padding 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}
.dock.is-scrolled .dock__inner {
  padding-block: 0.4rem;
  background: rgba(8,8,12,0.92);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.dock__logo img {
  display: block;
  border-radius: 8px;
  mix-blend-mode: screen;
}
.dock__links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.dock__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.dock__links a.is-active {
  color: var(--ice);
  background: rgba(56,189,248,0.1);
}
.dock__right { display: flex; align-items: center; gap: 0.5rem; }
.dock__langs { display: flex; gap: 2px; }
.dock__langs a {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  color: var(--muted);
  transition: color 0.2s;
}
.dock__langs a.is-on { color: var(--ice); }
.dock__cta {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  background: var(--text);
  color: var(--void);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.dock__cta:hover { transform: scale(1.04); box-shadow: 0 0 30px rgba(139,92,246,0.4); }
.dock__cta.is-active {
  background: var(--ice);
  color: var(--void);
  box-shadow: 0 0 24px rgba(56,189,248,0.35);
}
.dock__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem;
  margin: -0.25rem;
  z-index: 1001;
  position: relative;
}
.dock__burger.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.dock__burger.is-open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.dock__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--safe-top) + 2rem) 0 calc(5rem + var(--safe-bottom));
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

/* Full-bleed media slideshow */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 1.4s var(--ease);
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero__slide.is-exiting {
  opacity: 0;
  transform: scale(1.04);
  z-index: 2;
}
.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.12) 2px,
    rgba(0,0,0,0.12) 4px
  );
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.hero__glitch-flash {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, rgba(56,189,248,0.15), rgba(244,114,182,0.15));
  mix-blend-mode: screen;
}
.hero.is-glitching .hero__glitch-flash {
  animation: heroGlitchFlash 0.45s steps(4) forwards;
}
@keyframes heroGlitchFlash {
  0% { opacity: 0; transform: translateX(0); }
  15% { opacity: 0.7; transform: translateX(-8px) skewX(-2deg); }
  30% { opacity: 0.3; transform: translateX(6px); }
  50% { opacity: 0.6; transform: translateX(-4px) skewX(1deg); }
  100% { opacity: 0; transform: none; }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: calc(var(--hero-overlay, 0.6) + 0.3);
  background:
    linear-gradient(180deg, rgba(5,5,8,0.55) 0%, rgba(5,5,8,0.35) 40%, rgba(5,5,8,0.75) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 20%, rgba(5,5,8,0.6) 100%);
  pointer-events: none;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
}
.hero__beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__beams span {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.35), transparent);
  transform-origin: top center;
  filter: blur(1px);
  animation: beamSweep 8s ease-in-out infinite;
  opacity: 0;
}
.hero__beams span:nth-child(1) { left: 22%; transform: rotate(18deg); animation-delay: 0s; }
.hero__beams span:nth-child(2) { left: 50%; transform: rotate(-8deg); animation-delay: -2.5s; opacity: 0.7; }
.hero__beams span:nth-child(3) { left: 78%; transform: rotate(12deg); animation-delay: -5s; width: 1px; }
@keyframes beamSweep {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.5; }
}
.hero__watermark {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--ice);
}
.chip--ghost { background: transparent; border-color: var(--line); color: var(--muted); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.85;
  margin-bottom: 1.5rem;
}
.hero__word { display: block; }
.hero__word--1 {
  font-size: clamp(4rem, 14vw, 9rem);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__word--2 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  color: var(--text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 28px;
  height: 3px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 100px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, width 0.3s var(--ease);
  padding: 0;
  position: relative;
}
.hero__dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 3px;
  border-radius: 100px;
  background: rgba(255,255,255,0.25);
  transition: inherit;
}
.hero__dot.is-active::after {
  background: var(--ice);
  width: 40px;
  box-shadow: 0 0 12px rgba(56,189,248,0.5);
}
.hero__dot:hover::after { background: rgba(255,255,255,0.45); }
.hero__dot.is-active { width: auto; background: transparent; box-shadow: none; }

.hero__sound {
  position: absolute;
  right: max(5vw, calc((100vw - var(--container)) / 2 + 1rem));
  bottom: calc(4.25rem + var(--safe-bottom));
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12,12,18,0.75);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}
.hero__sound:hover { border-color: var(--ice); }
.hero__sound-icon--on { display: none; }
.hero__sound.is-on .hero__sound-icon--off { display: none; }
.hero__sound.is-on .hero__sound-icon--on { display: inline; }

.hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb--1 { width: 50vw; height: 50vw; max-width: 500px; max-height: 500px; background: var(--violet); top: -10%; left: -10%; opacity: 0.35; }
.orb--2 { width: 40vw; height: 40vw; max-width: 400px; max-height: 400px; background: var(--ice); bottom: -5%; right: -5%; opacity: 0.25; }
.orb--3 { width: 30vw; height: 30vw; max-width: 300px; max-height: 300px; background: var(--pink); top: 30%; right: 20%; opacity: 0.15; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 6;
}
.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar i {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--grad);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

body.is-app .dock__inner {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
body.is-app .dock.is-scrolled .dock__inner {
  background: rgba(8,8,14,0.88);
}
body.is-app .dock__cta {
  background: var(--grad-luxe);
  color: #0a0a10;
}
body.is-app .chip {
  border-color: rgba(201,169,98,0.25);
  background: rgba(201,169,98,0.08);
  color: var(--gold);
}

/* Buttons */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  transition: box-shadow 0.3s;
}
.btn-primary {
  background: var(--text);
  color: var(--void);
}
body.is-app .btn-primary {
  background: var(--grad-luxe);
  background-size: 200% auto;
  color: #0a0a10;
  font-weight: 700;
  border: none;
}
body.is-app .btn-primary:hover {
  box-shadow: 0 0 36px rgba(201,169,98,0.35);
  background-position: 100% center;
}
.btn-primary em { opacity: 0.55; font-weight: 400; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(56,189,248,0.35); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--muted);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

/* Ticker */
.ticker {
  border-block: 1px solid var(--line);
  padding: 0.85rem 0;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 0;
}

/* Blocks */
.block {
  padding: clamp(5rem, 12vh, 9rem) 0;
}
.block--dim { background: rgba(0,0,0,0.35); }
.block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.block__head--sm { margin-bottom: 2rem; }
.block__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.75rem;
}
.block__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  background-image: var(--grad);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block__title--sm {
  font-size: clamp(2rem, 4vw, 3rem);
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
}
.block__count {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
}
.block__empty { color: var(--muted); font-size: 1.1rem; }

/* Events rail */
.rail-wrap {
  position: relative;
  padding-inline: 2.75rem;
}
.rail {
  overflow: hidden;
}
.rail__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12,12,18,0.9);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s;
}
.rail__nav:hover { border-color: var(--ice); background: rgba(56,189,248,0.15); }
.rail__nav--prev { left: 0; }
.rail__nav--next { right: 0; }
.rail__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__card {
  flex: 0 0 min(380px, 85vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.rail__card-link { display: block; }
.rail__card-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rail__card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.rail__card-video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.rail__card-fallback {
  width: 100%; height: 100%;
  position: relative;
}
.rail__card-fallback::after {
  content: 'V';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  opacity: 0.2;
  color: var(--text);
}
.rail__card-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(139,92,246,0.25), transparent 55%);
}
.rail__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,8,0.9) 100%);
}
.tag {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.tag--hot { color: var(--pink); border: 1px solid rgba(244,114,182,0.4); }
.rail__card-body { padding: 1.5rem; }
.rail__card-body time {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rail__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.4rem 0 0.5rem;
}
.rail__card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.rail__card-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ice);
}
.rail__ticket {
  display: block;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  color: var(--violet);
  transition: background 0.2s;
}
.rail__ticket:hover { background: rgba(139,92,246,0.1); }

/* Archive */
.archive { list-style: none; border-top: 1px solid var(--line); }
.archive__row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.archive__row time { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }
.archive__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.archive__link { font-size: 1.25rem; color: var(--muted); transition: color 0.2s; }

/* Story filmstrip */
.film {
  position: relative;
  overflow: hidden;
  padding-inline: max(5vw, calc((100vw - var(--container)) / 2));
}
.film__line {
  position: absolute;
  top: 50%;
  left: max(5vw, calc((100vw - var(--container)) / 2));
  right: max(5vw, calc((100vw - var(--container)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet), var(--ice), var(--pink), transparent);
  opacity: 0.35;
  z-index: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}
.film__track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--violet) transparent;
}
.film__frame {
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: start;
  padding: 2rem;
  background: rgba(12,12,18,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.film__year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.film__frame h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.film__frame p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* Bento gallery */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
.bento__cell {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 0;
}
button.bento__cell {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: 0;
  cursor: pointer;
  text-align: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.bento__cell img, .bento__cell video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.bento__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,8,0.75) 100%);
  opacity: 0.6;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento__cell--1 { grid-column: span 2; grid-row: span 2; }
.bento__cell--2 { grid-column: span 2; }
.bento__cell--3 { grid-column: span 1; }
.bento__cell--4 { grid-column: span 1; grid-row: span 2; }
.bento__cell--5 { grid-column: span 2; }
.bento__arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.bento__cell--ig, .bento__cell--text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1030, #0c1829);
}
.bento__cell--ph {
  background: linear-gradient(145deg, rgba(139,92,246,0.12), rgba(56,189,248,0.06));
  position: relative;
  overflow: hidden;
}
.bento__cell--ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(244,114,182,0.15), transparent 50%);
}
.bento__cell--ph:nth-child(3) { background: linear-gradient(145deg, rgba(56,189,248,0.1), rgba(139,92,246,0.08)); }
.bento__cell--ph:nth-child(4) { background: linear-gradient(145deg, rgba(244,114,182,0.1), rgba(56,189,248,0.06)); }
.bento__cell--text { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--muted); }

/* Footer */
.foot {
  padding: 4rem 0 calc(2rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.5);
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.foot__brand { display: flex; gap: 1.25rem; align-items: center; }
.foot__brand img { mix-blend-mode: screen; border-radius: 12px; }
.foot__brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.foot__brand span { font-size: 0.85rem; color: var(--muted); }
.foot__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.foot__link { font-size: 0.9rem; transition: color 0.2s; }
.foot__link:hover { color: var(--pink); }
.foot__text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.foot__copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }
.foot__phone { display: block; margin-bottom: 0.35rem; font-size: 1.1rem; font-weight: 600; color: var(--text); }

/* IG strip */
.ig-strip {
  overflow: hidden;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.ig-strip__track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  animation: igStripMove 40s linear infinite;
}
.ig-strip__item {
  position: relative;
  flex: 0 0 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: 0.85;
}
.ig-strip__item img { width: 100%; height: 100%; object-fit: cover; }
.ig-strip__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  background: rgba(0,0,0,0.35);
  color: var(--text);
}
@keyframes igStripMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Countdown */
.countdown {
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(139,92,246,0.3);
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(56,189,248,0.05));
  backdrop-filter: blur(8px);
}
.countdown__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.countdown__label strong { color: var(--ice); font-weight: 600; text-transform: none; letter-spacing: 0; }
.countdown__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.countdown__unit {
  text-align: center;
  min-width: 64px;
}
.countdown__unit em {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.countdown__unit span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  display: block;
}
.countdown__sep {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--violet);
  opacity: 0.5;
  margin-bottom: 1rem;
}

/* Film hint */
.film__hint {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  opacity: 0.7;
  text-align: right;
  padding-right: max(5vw, calc((100vw - var(--container)) / 2));
}

/* Bento button cells — merged above */
.bento__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  color: var(--text);
  pointer-events: none;
  z-index: 2;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
  overflow: hidden;
  text-align: center;
}
.contact-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,92,246,0.15), transparent 70%);
  pointer-events: none;
}
.contact-cta__inner { position: relative; z-index: 1; }
.contact-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0.75rem 0 1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-cta__text {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.contact-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-cta__phone em {
  font-style: normal;
  opacity: 0.7;
  margin-left: 0.25rem;
}
.btn-whatsapp {
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px);
}
.lightbox__stage {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 92vw);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: calc(var(--radius) - 4px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(12,12,18,0.8);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(12,12,18,0.8);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__bar {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  background: rgba(12,12,18,0.85);
  border: 1px solid var(--line);
  font-size: 0.8rem;
}
.lightbox__counter { color: var(--muted); }
.lightbox__ig { color: var(--ice); font-weight: 600; }
.lightbox__ig:hover { color: var(--pink); }

/* Hide swipe hint on desktop; show on mobile */
.lightbox__swipe-hint { display: none; }

/* Event detail */
.page-event .back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}
.page-event .back:hover { color: var(--ice); }
.page-event__hero {
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1a0a2e, #0c1829);
}
.page-event__hero img { width: 100%; height: 100%; object-fit: cover; }
.page-event__hero-fallback {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1030 0%, #2d1b69 40%, #0c1829 100%);
}
.page-event__hero-fallback span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 800;
  opacity: 0.15;
  color: var(--text);
}
.page-event__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.page-event time { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ice); }
.page-event h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}
.page-event__loc { color: var(--muted); margin-bottom: 2rem; }
.page-event__body { font-size: 1.05rem; color: var(--muted); line-height: 1.85; max-width: 680px; margin-bottom: 2rem; }
.page-event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: calc(5rem + var(--safe-bottom));
}
.page-event { padding: calc(var(--dock-h) + 4rem + var(--safe-top)) 0 2rem; }

/* Sticky event CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 0 calc(0.75rem + var(--safe-bottom));
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.sticky-cta__info strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__info span { font-size: 0.7rem; color: var(--muted); }
.sticky-cta__buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.sticky-cta__buttons .btn-primary,
.sticky-cta__buttons .btn-ghost {
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: calc(1.25rem + var(--safe-right));
  bottom: calc(1.25rem + var(--safe-bottom));
  z-index: 850;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(12,12,18,0.9);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease), visibility 0.3s, border-color 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { border-color: var(--ice); }
body.has-sticky-cta .back-to-top { bottom: calc(5.5rem + var(--safe-bottom)); }

/* 404 */
.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0;
}
.page-404__text {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Hero JS animation initial state */
.js-hero { opacity: 0; transform: translateY(28px); }

/* Animate — scroll sections only */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
}

/* CSS fallbacks that work without JS */
.ticker__track {
  animation: tickerMove 30s linear infinite;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; }
.preloader__logo {
  margin: 0 auto 1.5rem;
  mix-blend-mode: screen;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--line);
  margin: 0 auto 1rem;
  border-radius: 2px;
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad);
}
.preloader__text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Cursor + scroll progress */
.cursor-spot {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--grad);
  z-index: 10001;
  box-shadow: 0 0 12px rgba(139,92,246,0.6);
}

/* Venue */
.venue__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.venue__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.venue__map {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(135deg, #0c1220 0%, #12101c 50%, #0a1628 100%);
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.venue__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.venue__map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 55% 45%, rgba(139,92,246,0.2), transparent 55%);
}
.venue__map-pin {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(244,114,182,0.2), 0 0 24px rgba(244,114,182,0.5);
  animation: pinPulse 2.5s ease-in-out infinite;
  z-index: 2;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.venue__map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.6rem 0.9rem;
  border-radius: 100px;
  background: rgba(5,5,8,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  text-align: center;
}
.venue__text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}
.venue__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  display: block;
}

/* Hover only on pointer devices */
@media (hover: hover) and (pointer: fine) {
  .rail__card:hover { border-color: rgba(139,92,246,0.4); }
  .rail__card:hover .rail__card-visual img,
  .rail__card:hover .rail__card-video { transform: scale(1.06); }
  .bento__cell:hover .bento__overlay { opacity: 0.9; }
  .bento__cell:hover img, .bento__cell:hover video { transform: scale(1.08); }
  .bento__cell:hover .bento__arrow { opacity: 1; }
  .film__frame:hover {
    border-color: rgba(56,189,248,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.15);
  }
  .stat:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-4px); }
  .archive__row:hover { padding-left: 0.5rem; }
  .archive__row:hover .archive__link { color: var(--ice); }
  .venue__map:hover { border-color: rgba(139,92,246,0.4); transform: translateY(-4px); }
  .btn-whatsapp:hover {
    border-color: rgba(37,211,102,0.55);
    background: rgba(37,211,102,0.16);
  }
}
@media (hover: none) {
  .bento__arrow { opacity: 1; }
  .cursor-spot { display: none !important; }
}

/* Tablet */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .bento__cell--1 { grid-column: span 2; grid-row: span 2; }
  .bento__cell--4 { grid-row: span 1; }
}

/* Mobile */
@media (max-width: 900px) {
  :root { --container: min(1280px, 92vw); }
  .hero {
    padding-top: calc(6.5rem + var(--safe-top));
    padding-bottom: calc(7rem + var(--safe-bottom));
  }
  .hero__word--1 { font-size: clamp(2.75rem, 16vw, 4.5rem); }
  .hero__word--2 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    letter-spacing: 0.12em;
  }
  .hero__desc { margin-bottom: 1.75rem; padding-inline: 0.5rem; }
  .hero__cta-row { width: 100%; padding-inline: 0.25rem; }
  .hero__cta-row .btn-primary,
  .hero__cta-row .btn-ghost { flex: 1; justify-content: center; min-width: 140px; }
  .hero__dots { bottom: calc(4.25rem + var(--safe-bottom)); }
  .hero__sound { right: 1rem; bottom: calc(4.25rem + var(--safe-bottom)); }
  .hero__scroll { bottom: calc(1rem + var(--safe-bottom)); }

  .dock__links, .dock__right { display: none; }
  .dock__burger { display: flex; margin-left: auto; }
  .dock__links.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    inset: 0;
    padding: calc(5rem + var(--safe-top)) 2rem calc(2rem + var(--safe-bottom));
    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    z-index: 1000;
    overflow-y: auto;
  }
  .dock__links.is-open a {
    font-size: 1.35rem;
    padding: 0.85rem 1.5rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  .dock__mobile-link { display: list-item !important; }
  .dock__mobile-langs {
    display: flex !important;
    gap: 0.5rem;
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
  }
  .dock__mobile-langs a {
    font-size: 0.85rem !important;
    padding: 0.6rem 1rem !important;
    border: 1px solid var(--line);
    border-radius: 8px;
    width: auto !important;
  }

  .block__head { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .block__count { font-size: 1rem; }
  .countdown { padding: 1.25rem 1rem; }
  .countdown__label { font-size: 0.68rem; line-height: 1.5; }
  .countdown__sep { display: none; }
  .countdown__grid { gap: 0.5rem; }
  .countdown__unit { min-width: 52px; }

  .rail-wrap { padding-inline: 0; }
  .rail__card { flex: 0 0 min(300px, 88vw); }
  .rail__nav { display: none; }
  .rail__track { padding-inline: 0; scroll-padding-inline: 0; }

  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 0.5rem; }
  .bento__cell--1 { grid-column: span 2; grid-row: span 2; min-height: 200px; }
  .bento__cell--2, .bento__cell--4, .bento__cell--5 { grid-column: span 2; grid-row: span 1; }
  .bento__cell--3 { grid-column: span 1; }

  .foot__grid { grid-template-columns: 1fr; gap: 2rem; }
  .venue__grid { grid-template-columns: 1fr; gap: 2rem; }
  .venue__text { max-width: none; }
  .venue__stats { grid-template-columns: repeat(3, 1fr); gap: 0.65rem; }
  .stat { padding: 1rem 0.5rem; }
  .stat__num { font-size: 1.5rem; }

  .archive__row { grid-template-columns: 1fr auto; gap: 0.75rem; }
  .archive__row time { grid-column: 1 / -1; }
  .archive__name { font-size: 1.1rem; }

  .film__frame { flex: 0 0 min(300px, 86vw); padding: 1.5rem; }
  .film__hint { text-align: center; padding-right: 0; }

  .contact-cta__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin-inline: auto; }
  .contact-cta__actions .btn-primary,
  .contact-cta__actions .btn-ghost { justify-content: center; width: 100%; }

  .lightbox { padding: 1rem; padding-top: calc(1rem + var(--safe-top)); padding-bottom: calc(1rem + var(--safe-bottom)); }
  .lightbox__nav { display: none; }
  .lightbox__close { top: calc(0.75rem + var(--safe-top)); right: 0.75rem; width: 44px; height: 44px; }
  .lightbox__bar { flex-direction: column; gap: 0.5rem; bottom: calc(0.75rem + var(--safe-bottom)); width: calc(100% - 2rem); max-width: 320px; }
  .lightbox__stage { max-height: 70vh; touch-action: pan-y pinch-zoom; }
  .lightbox__swipe-hint {
    display: block;
    position: absolute;
    bottom: calc(4.5rem + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.6;
    pointer-events: none;
  }

  .page-event { padding-top: calc(var(--dock-h) + 3rem + var(--safe-top)); }
  .page-event__hero { aspect-ratio: 16/10; }
  .page-event__actions { flex-direction: column; align-items: stretch; }
  .page-event__actions .btn-primary,
  .page-event__actions .btn-ghost { justify-content: center; width: 100%; }
  .sticky-cta__inner { flex-direction: column; align-items: stretch; }
  .sticky-cta__info { text-align: center; }
  .sticky-cta__buttons { width: 100%; }
  .sticky-cta__buttons .btn-primary,
  .sticky-cta__buttons .btn-ghost { flex: 1; justify-content: center; }
}

@media (max-width: 600px) {
  .venue__stats { grid-template-columns: 1fr; }
  .hero__scroll span { display: none; }
  .hero__scroll-bar { height: 56px; }
  .ig-strip__item { flex: 0 0 72px; height: 72px; }
  .block { padding: clamp(3.5rem, 10vh, 6rem) 0; }
  .dock { width: calc(100vw - 1.5rem - var(--safe-left) - var(--safe-right)); }
  .dock__inner { padding-inline: 0.75rem; }
}

@media (max-width: 380px) {
  .hero__word--2 { letter-spacing: 0.06em; }
  .countdown__unit em { font-size: 1.75rem; }
  .chip { font-size: 0.62rem; padding: 0.4rem 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate], .js-hero,
  .venue__map, .stat, .countdown, .contact-cta__inner,
  .bento__cell, .rail__card, .film__frame, .archive__row, .block__title {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .aurora { display: none; }
  .cursor-spot { display: none; }
  .preloader { display: none; }
  .hero__beams { display: none; }
  .hero__slide { transition: none; }
  .ticker__track { animation: none !important; }
}
