/* ===========================================================
   PENUMBRA — Editorial Dark Warm
   Bodoni Moda (display) · Manrope (body) · Space Mono (mono/labels)
   =========================================================== */

:root {
  --bg: #0B0B14;
  --bg-soft: #131322;
  --bg-card: #16162A;
  --text: #F4EFE7;
  --muted: #9d97ab;
  --muted-dim: #6f6a80;
  --line: rgba(244, 239, 231, 0.12);
  --line-soft: rgba(244, 239, 231, 0.07);

  --pink: #FF3D8B;
  --cyan: #3DE2FF;
  --gold: #C9A35B;

  --font-display: 'Bodoni Moda', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --max: 1320px;
  --ease: cubic-bezier(.22, .8, .28, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; position: relative; }
.wrap--full { max-width: none; padding: 0; }

em { font-style: italic; color: var(--pink); font-family: var(--font-display); }

/* ---------- Defensive reveal: visible by default, JS animates FROM hidden ---------- */
.reveal[data-split] { opacity: 1; transform: none; }
.reveal { opacity: 1; transform: none; }

/* =====================================================
   SPLASH — double safety net (CSS 4.5s + JS hide)
   ===================================================== */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashOut 0.6s var(--ease) 4.5s forwards;
}
.splash.js-hide { animation: splashOut 0.6s var(--ease) forwards; }
@keyframes splashOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.splash-inner { text-align: center; }
.splash-word {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--text);
}
.splash-word .sl {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: splashLetter 0.7s var(--ease) forwards;
}
.splash-word .sl:nth-child(1) { animation-delay: 0.05s; }
.splash-word .sl:nth-child(2) { animation-delay: 0.11s; }
.splash-word .sl:nth-child(3) { animation-delay: 0.17s; }
.splash-word .sl:nth-child(4) { animation-delay: 0.23s; }
.splash-word .sl:nth-child(5) { animation-delay: 0.29s; }
.splash-word .sl:nth-child(6) { animation-delay: 0.35s; }
.splash-word .sl:nth-child(7) { animation-delay: 0.41s; }
.splash-word .sl:nth-child(8) { animation-delay: 0.47s; }
@keyframes splashLetter { to { opacity: 1; transform: translateY(0); } }
.splash-bar {
  margin: 28px auto 0; width: 180px; height: 1px;
  background: var(--line); position: relative; overflow: hidden;
}
.splash-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  animation: splashBar 1.8s var(--ease) 0.5s forwards;
}
@keyframes splashBar { to { width: 100%; } }

/* =====================================================
   TRANSVERSAL: aurora bg, grain, cursor, side mark
   ===================================================== */
.aurora-bg {
  position: fixed; inset: -10%; z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,61,139,0.16), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(61,226,255,0.11), transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(201,163,91,0.10), transparent 50%);
  animation: auroraShift 26s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-2%, 3%) scale(1.06); }
  100% { transform: translate(3%, -2%) scale(1.02); }
}
.grain-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9500;
  width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1px solid rgba(244,239,231,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-100px,-100px) scale(1);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.cursor-ring.is-active { border-color: var(--pink); background: rgba(255,61,139,0.08); }
.cursor-label {
  font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.05em; white-space: nowrap; color: var(--pink);
  transform: scale(0); transition: transform 0.2s ease;
}
.cursor-ring.is-active .cursor-label { transform: scale(1); }
@media (hover: none) { .cursor-ring { display: none !important; } }

.side-mark {
  position: fixed; right: 18px; top: 50%; z-index: 400;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--muted);
}
.side-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink);
  animation: pulseDot 2s ease-in-out infinite;
  flex: 0 0 auto;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (max-width: 700px) { .side-mark { display: none; } }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  background: rgba(11,11,20,0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(11,11,20,0.85); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-mark { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; }
.nav-mark-dot { color: var(--pink); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  display: inline-flex; align-items: baseline; gap: 6px; opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { opacity: 1; color: var(--pink); }
.nl-num { font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold); }
.nav-cta {
  border: 1px solid var(--pink); color: var(--pink);
  padding: 9px 20px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pink); color: #100910; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
}
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,20,0.55) 0%, rgba(11,11,20,0.35) 40%, rgba(11,11,20,0.92) 100%),
    linear-gradient(90deg, rgba(11,11,20,0.75), transparent 60%);
}
.hero-content { padding-bottom: 140px; padding-top: 180px; width: 100%; }
.hero-kicker {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 26px; line-height: 1.6;
}
.hero-title { font-family: var(--font-display); line-height: 0.92; }
.ht-line {
  display: block; font-size: clamp(3.4rem, 11vw, 8.5rem); font-weight: 500;
}
.ht-line--offset { margin-left: clamp(20px, 8vw, 130px); margin-top: -0.05em; }
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--text); opacity: 0.88;
  margin-top: 34px;
}
.hero-actions { margin-top: 46px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 46px; background: var(--line); overflow: hidden;
}
.hero-scroll-cue span {
  position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--pink); animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
}
.btn--primary { background: var(--pink); color: #170a12; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,61,139,0.35); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* =====================================================
   MARQUEE (generic)
   ===================================================== */
.marquee {
  overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex; gap: 20px; animation: mqScroll 34s linear infinite;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--muted);
}
.marquee-track--reverse { animation-direction: reverse; }
.mq-dot { color: var(--pink); }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =====================================================
   SECTION shared
   ===================================================== */
.section { position: relative; padding: 150px 0; border-top: 1px solid var(--line-soft); }
.section-num-wm {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: clamp(8rem, 22vw, 18rem);
  color: transparent; -webkit-text-stroke: 1px var(--line);
  line-height: 1; z-index: 0; pointer-events: none; user-select: none;
}
.section-num {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); flex: 0 0 auto;
}
.statement-label {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 22px; position: relative; z-index: 1;
}
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.08; position: relative; z-index: 1;
  max-width: 16ch;
}
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--text); opacity: 0.85; margin-top: 26px; max-width: 52ch; position: relative; z-index: 1; }
.body-text { color: var(--muted); margin-top: 20px; max-width: 52ch; position: relative; z-index: 1; }

/* =====================================================
   01 · EL LOCAL
   ===================================================== */
.section-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 0.7fr; gap: 60px; align-items: start;
  position: relative; z-index: 1;
}
.local-collage { position: relative; height: 480px; }
.lc { position: absolute; border-radius: 2px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); object-fit: cover; }
.lc--1 { width: 72%; height: 62%; top: 0; left: 0; transform: rotate(-4deg); z-index: 1; }
.lc--2 { width: 55%; height: 48%; bottom: 0; right: 0; transform: rotate(3deg); z-index: 2; border: 4px solid var(--bg); }
.lc--3 { width: 42%; height: 38%; bottom: 10%; left: 8%; transform: rotate(-2deg); z-index: 3; border: 4px solid var(--bg); }
.lc-tape {
  position: absolute; top: 8%; right: -6%; z-index: 4;
  background: var(--gold); color: #100910;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 6px 14px; transform: rotate(6deg);
}
.def-list { margin-top: 34px; border-top: 1px solid var(--line); }
.def-row {
  display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.def-row dt { color: var(--muted); }
.def-row dd { font-weight: 600; }
.local-aside {
  border-left: 1px solid var(--line); padding-left: 30px; position: relative; z-index: 1;
}
.aside-tag {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.06em;
}
.aside-quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem; margin-top: 20px; line-height: 1.35;
}
.aside-meta { margin-top: 26px; color: var(--muted); font-size: 0.88rem; }

/* =====================================================
   02 · COCTELES
   ===================================================== */
.section--cocktails { padding: 0; border-top: 1px solid var(--line-soft); }
.cocktails-pin { position: relative; padding: 110px 0 0; overflow: hidden; }
.cocktails-header {
  display: flex; align-items: baseline; gap: 24px; margin-bottom: 44px; flex-wrap: wrap;
}
.cocktails-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cocktails-progress {
  margin-left: auto; font-family: var(--font-mono); color: var(--muted); font-size: 0.85rem; letter-spacing: 0.05em;
}
.cocktails-progress span { color: var(--pink); font-weight: 700; }

.cocktails-track {
  display: flex; gap: 0;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}
.cocktails-track::-webkit-scrollbar { display: none; }
.cocktail-card {
  flex: 0 0 auto; width: 100vw; max-width: 920px;
  scroll-snap-align: start;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
  padding: 20px 40px;
}
.ck-glass-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 420px;
}
.ck-glass { width: 100%; height: 100%; color: var(--accent, var(--pink)); overflow: visible; }
.ck-glass .glass-outline {
  stroke: currentColor; stroke-width: 2.2; stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 1400; stroke-dashoffset: 0;
  filter: drop-shadow(0 0 18px currentColor);
}
.ck-glass .glass-liquid { opacity: 0.92; }
.ck-series {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 16px;
}
.ck-series--casa { color: var(--gold); border: 1px solid var(--gold); }
.ck-series--temporada { color: var(--cyan); border: 1px solid var(--cyan); }
.ck-name { font-family: var(--font-display); font-size: clamp(2.2rem, 3.6vw, 3.2rem); }
.ck-subtitle { color: var(--muted); font-style: italic; font-family: var(--font-display); font-size: 1.1rem; margin-top: 8px; }
.ck-ingredients {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.03em;
  margin-top: 22px; text-transform: uppercase;
}
.ck-desc { margin-top: 16px; color: var(--text); opacity: 0.82; max-width: 44ch; }

.marquee--ingredients { border-top: none; margin-top: 40px; }

/* =====================================================
   03 · MUSICA
   ===================================================== */
.sessions-list { margin-top: 50px; position: relative; z-index: 1; }
.session-row {
  display: grid; grid-template-columns: 56px 1fr 1.4fr 1.6fr; align-items: center; gap: 30px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.session-row:first-child { border-top: 1px solid var(--line); }
.session-icon { color: var(--accent, var(--gold)); width: 40px; height: 40px; }
.session-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 2; fill: none; stroke-linejoin: round; stroke-linecap: round; }
.session-day { font-family: var(--font-display); font-size: 1.5rem; }
.session-genre { font-weight: 700; color: var(--accent, var(--gold)); }
.session-note { color: var(--muted); font-size: 0.92rem; }

/* =====================================================
   04 · GALERIA
   ===================================================== */
.section--gallery { padding: 150px 0 130px; }
.section--gallery .wrap--full { margin-bottom: 50px; }
.gal-lane { overflow: hidden; margin-bottom: 14px; }
.gal-track { display: inline-flex; gap: 14px; }
.gal-track img { width: 300px; height: 220px; object-fit: cover; border-radius: 2px; flex: 0 0 auto; }
.gal-lane--fast .gal-track { animation: mqScroll 32s linear infinite; }
.gal-lane--slow .gal-track { animation: mqScroll 52s linear infinite; }
.gal-lane--reverse .gal-track { animation: mqScroll 40s linear infinite reverse; }

/* =====================================================
   05 · EVENTOS PRIVADOS
   ===================================================== */
.events-card {
  position: relative; border-radius: 4px; overflow: hidden; min-height: 520px;
  display: flex; align-items: flex-end;
  transition: transform 0.4s var(--ease);
  z-index: 1;
}
.events-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.events-card:hover .events-img { transform: scale(1.04); }
.events-veil { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,20,0.94) 10%, rgba(11,11,20,0.5) 60%, rgba(11,11,20,0.35) 100%); }
.events-content { position: relative; padding: 60px; max-width: 620px; }
.events-content .section-title { max-width: 14ch; }
.events-content .lede { color: var(--text); }
.events-content .btn { margin-top: 34px; }

/* =====================================================
   06 · RESERVA
   ===================================================== */
.section-grid--reserva { grid-template-columns: 1.3fr 0.7fr; }
.reserva-form { margin-top: 40px; max-width: 520px; position: relative; z-index: 1; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rf-field { margin-bottom: 22px; }
.rf-field label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 10px;
}
.rf-num { font-family: var(--font-mono); color: var(--gold); font-size: 0.75rem; }
.rf-field input, .rf-field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 10px 2px; color: var(--text); font-size: 1rem; resize: vertical;
  transition: border-color 0.2s ease;
}
.rf-field input:focus, .rf-field textarea:focus { outline: none; border-color: var(--pink); }
.reserva-alt-link {
  display: inline-block; margin-top: 24px; font-size: 0.88rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.reserva-alt-link:hover { color: var(--pink); border-color: var(--pink); }
.reserva-info { border-left: 1px solid var(--line); padding-left: 30px; position: relative; z-index: 1; margin-top: 90px; }
.ri-row { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.ri-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.ri-row a:hover { color: var(--pink); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { padding-top: 100px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-display {
  overflow: hidden; white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(3.5rem, 11vw, 9rem);
  color: transparent; -webkit-text-stroke: 1px var(--line);
  display: flex; gap: 40px; padding: 0 20px 80px;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 60px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-col p { margin-bottom: 10px; color: var(--muted); }
.footer-col a:hover { color: var(--pink); }
.footer-metro { font-size: 0.85rem; }
.footer-map { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/10; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) contrast(0.85); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 26px 40px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--muted-dim);
}
.footer-bottom-links a:hover { color: var(--pink); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .section-grid { grid-template-columns: 1fr; }
  .local-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .local-collage { height: 380px; margin-bottom: 10px; }
  .section-grid--reserva { grid-template-columns: 1fr; }
  .reserva-info { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 30px; margin-top: 40px; }
  .cocktail-card { grid-template-columns: 1fr; text-align: center; padding: 10px 24px; }
  .ck-glass-wrap { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .wrap { padding: 0 22px; }
  .nav-inner { padding: 16px 22px; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 10px 22px 24px; border-bottom: 1px solid var(--line); gap: 0; max-height: calc(100vh - 60px); overflow-y: auto; }
  .nav.open .nav-links { display: flex; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-soft); opacity: 1; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .hero-content { padding-top: 130px; padding-bottom: 90px; }
  .session-row { grid-template-columns: 40px 1fr; row-gap: 6px; }
  .session-genre, .session-note { grid-column: 2 / 3; }
  .events-content { padding: 34px; }
  .gal-track img { width: 200px; height: 150px; }
}
