/* ═══════════════════════════════════════════════════
   Velunia Club — homepage experience styles
   ═══════════════════════════════════════════════════ */

:root {
  --void: #000000;
  --surface: #080808;
  --line: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --font-display: 'Space Grotesk', 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(1440px, 92vw);
  --header-h: 72px;
  --dock-h: 72px;
}

body.velunia-body {
  background: var(--void);
  font-family: var(--font-body);
  --radius: 0;
}
body.velunia-body *,
body.velunia-body *::before,
body.velunia-body *::after {
  border-radius: 0 !important;
}
.aurora, .noise { display: none !important; }
.preloader__logo {
  width: min(220px, 72vw);
  height: auto;
  mix-blend-mode: normal;
}

/* ─── Header ─── */
.dock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 1000;
  padding-top: var(--safe-top);
}
.dock__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.1rem clamp(1rem, 3vw, 0);
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.dock.is-scrolled .dock__inner {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  padding-block: 1.1rem;
}
.dock__logo {
  flex-shrink: 0;
}
.dock__logo img {
  display: block;
  width: clamp(40px, 6vw, 52px);
  height: auto;
  mix-blend-mode: normal;
}
.dock__shade {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.dock__shade.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.dock__burger {
  position: relative;
  z-index: 1002;
}
.dock__links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
}
/* inline nav hidden — slide menu used on all breakpoints */
body.velunia-body .dock__links a.is-active { color: var(--text); background: none; }
.dock__cta {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.65rem;
}
.dock__cta:hover { opacity: 0.7; transform: none; box-shadow: none; }
.dock__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.dock__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  color: var(--text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.dock__icon-btn::before {
  content: '';
  width: 0.95rem;
  height: 0.95rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.dock__icon-btn:hover {
  background: var(--text);
  color: var(--void);
  border-color: var(--text);
}
.dock__icon-btn--instagram::before {
  mask-image: url('../images/icons/instagram.svg');
  -webkit-mask-image: url('../images/icons/instagram.svg');
}
.dock__icon-btn--facebook::before {
  mask-image: url('../images/icons/facebook.svg');
  -webkit-mask-image: url('../images/icons/facebook.svg');
}
.dock__icon-btn--tiktok::before {
  mask-image: url('../images/icons/tiktok.svg');
  -webkit-mask-image: url('../images/icons/tiktok.svg');
}
.dock__icon-btn--phone::before {
  mask-image: url('../images/icons/phone.svg');
  -webkit-mask-image: url('../images/icons/phone.svg');
}
.dock__icon-btn--whatsapp::before {
  mask-image: url('../images/icons/whatsapp.svg');
  -webkit-mask-image: url('../images/icons/whatsapp.svg');
}
.dock__icon-btn--map::before {
  mask-image: url('../images/icons/map.svg');
  -webkit-mask-image: url('../images/icons/map.svg');
}
.dock__mobile-link,
.dock__mobile-langs,
.dock__mobile-actions { display: none; }

/* Slide menu — all breakpoints */
body.velunia-body .dock__links {
  display: none;
}
body.velunia-body .dock__right {
  display: none;
}
body.velunia-body .dock__burger {
  display: flex;
  margin-left: auto;
}
body.velunia-body .dock__links.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(320px, 88vw);
  height: 100dvh;
  margin: 0;
  padding: calc(var(--header-h) + 1.75rem + var(--safe-top)) 0 0;
  padding-inline: 0;
  background: #000;
  border-left: 1px solid var(--line);
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  z-index: 1001;
  overflow-y: auto;
  list-style: none;
  box-sizing: border-box;
}
body.velunia-body .dock__links.is-open .dock__mobile-actions {
  margin-top: auto;
}
body.velunia-body .dock__links.is-open li {
  width: 100%;
  border-bottom: none;
}
body.velunia-body .dock__links.is-open > li:not(.dock__mobile-langs):not(.dock__mobile-actions) {
  margin-inline: 0;
  width: 100%;
}
body.velunia-body .dock__links.is-open > li:not(.dock__mobile-langs):not(.dock__mobile-actions) a {
  display: block;
  width: 100%;
  max-width: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  text-align: left;
  color: var(--muted);
  border-radius: 0;
  background: transparent;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
}
body.velunia-body .dock__links.is-open > li:not(.dock__mobile-langs):not(.dock__mobile-actions) a:hover,
body.velunia-body .dock__links.is-open > li:not(.dock__mobile-langs):not(.dock__mobile-actions) a.is-active {
  color: var(--void);
  background: var(--text);
}
body.velunia-body .dock__menu-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.72rem 0;
  border: none;
  border-right: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  text-align: center;
  max-width: none !important;
  width: auto;
  transition: background 0.2s ease, color 0.2s ease;
}
body.velunia-body .dock__menu-tab:last-child {
  border-right: none;
}
body.velunia-body .dock__menu-tab:hover {
  color: var(--void);
  background: var(--text);
}
body.velunia-body .dock__menu-tab--icon {
  padding: 0.9rem 0;
  min-height: 3.25rem;
  color: var(--muted);
}
body.velunia-body .dock__menu-tab--icon::before {
  content: '';
  width: 1.15rem;
  height: 1.15rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
body.velunia-body .dock__menu-tab--instagram::before {
  mask-image: url('../images/icons/instagram.svg');
  -webkit-mask-image: url('../images/icons/instagram.svg');
}
body.velunia-body .dock__menu-tab--facebook::before {
  mask-image: url('../images/icons/facebook.svg');
  -webkit-mask-image: url('../images/icons/facebook.svg');
}
body.velunia-body .dock__menu-tab--tiktok::before {
  mask-image: url('../images/icons/tiktok.svg');
  -webkit-mask-image: url('../images/icons/tiktok.svg');
}
body.velunia-body .dock__menu-tab--phone::before {
  mask-image: url('../images/icons/phone.svg');
  -webkit-mask-image: url('../images/icons/phone.svg');
}
body.velunia-body .dock__menu-tab--whatsapp::before {
  mask-image: url('../images/icons/whatsapp.svg');
  -webkit-mask-image: url('../images/icons/whatsapp.svg');
}
body.velunia-body .dock__menu-tab--map::before {
  mask-image: url('../images/icons/map.svg');
  -webkit-mask-image: url('../images/icons/map.svg');
}
body.velunia-body .dock__mobile-actions {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  width: 100%;
  padding: 0;
  border: none;
  border-top: 1px solid var(--line);
  list-style: none;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
}
body.velunia-body .dock__mobile-langs {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  width: 100%;
  padding: 0;
  padding-bottom: var(--safe-bottom);
  border: none;
  border-top: 1px solid var(--line);
  list-style: none;
  overflow: hidden;
  flex-shrink: 0;
  align-self: stretch;
}
body.velunia-body .dock__mobile-langs .dock__menu-tab {
  padding: 1.2rem 0;
  min-height: 3.75rem;
  font-size: 0.72rem;
}
body.velunia-body .dock__mobile-langs .dock__menu-tab.is-on {
  color: var(--void);
  background: var(--text);
}
body.velunia-body .dock__mobile-link {
  display: list-item !important;
}

@media (max-width: 900px) {
  body.velunia-body .dock__links.is-open .dock__menu-tab {
    max-width: none !important;
    width: 100%;
    border-radius: 0 !important;
  }
}

@media (min-width: 901px) {
  body.velunia-body .dock__links.is-open {
    width: min(380px, 32vw);
  }
  body.velunia-body .dock__links.is-open > li:not(.dock__mobile-langs):not(.dock__mobile-actions) a {
    padding-inline: 2.25rem;
    font-size: 0.82rem;
  }
}

/* ─── Hero (scroll-driven homepage) ─── */
.hero.hero--main {
  position: relative;
  min-height: 100svh;
  padding: 0;
  margin: 0;
  text-align: center;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--void);
  overflow: hidden;
  isolation: isolate;
}
.hero--main .hero__media,
.hero--main .hero__veil,
.hero--main .hero__content,
.hero--main .hero__dots,
.hero--main .hero__sound,
.hero--main .hero__floats { display: none !important; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--void);
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: var(--hero-bg-opacity, 0.38);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.hero__bg-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  background: transparent;
  overflow: hidden;
}

.hero__eyebrow,
.hero__next-event,
.hero__type,
.hero__cards-viewport {
  position: absolute;
}

.hero__eyebrow {
  position: absolute;
  left: 50%;
  top: calc(var(--header-h) + 0.65rem);
  z-index: 7;
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(0.52rem, 1vw, 0.62rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  will-change: opacity, letter-spacing;
  opacity: 0;
  pointer-events: none;
}

.hero__next-event {
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 40vw, 300px);
  min-height: 2.75rem;
  padding: 0.42rem 1.65rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  pointer-events: none;
  will-change: filter, opacity, transform;
  isolation: isolate;
}
.hero__next-event__mesh {
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.02) 25%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.02) 75%,
    rgba(255, 255, 255, 0.18)
  );
  filter: blur(20px);
  animation: hero-glass-spin 14s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes hero-glass-spin {
  to { transform: rotate(360deg); }
}
.hero--main.is-past .hero__next-event,
.hero--main .hero__next-event.is-done {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  filter: none !important;
}
.hero__next-event__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero__next-event__orbs i {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(28px);
  animation: hero-orb-drift 9s ease-in-out infinite;
}
.hero__next-event__orbs i:nth-child(1) { width: 42%; height: 42%; left: -8%; top: 10%; animation-duration: 8s; }
.hero__next-event__orbs i:nth-child(2) { width: 36%; height: 36%; right: -6%; top: 18%; animation-delay: -2s; animation-duration: 10s; }
.hero__next-event__orbs i:nth-child(3) { width: 28%; height: 28%; left: 28%; bottom: -12%; animation-delay: -4s; animation-duration: 11s; }
.hero__next-event__orbs i:nth-child(4) { width: 22%; height: 22%; right: 22%; bottom: 8%; animation-delay: -1s; animation-duration: 7.5s; }
.hero__next-event__orbs i:nth-child(5) { width: 18%; height: 18%; left: 44%; top: -10%; animation-delay: -3s; animation-duration: 9.5s; }
@keyframes hero-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  33% { transform: translate(12px, -8px) scale(1.08); opacity: 0.75; }
  66% { transform: translate(-10px, 10px) scale(0.94); opacity: 0.5; }
}
.hero__next-event__text {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.8vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.hero__type {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  padding: calc(var(--header-h) + 3.25rem) 2vw 48vh;
}

.hero__mega {
  margin: 0;
  width: 100%;
  text-align: center;
}
.hero__mega-mobile {
  display: none;
}
.hero__mega-desktop {
  display: block;
}

.hero__mega-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--text);
  white-space: nowrap;
}

.hero__clarify-line {
  display: inline-block;
}

.hero__letter {
  display: inline-block;
  will-change: opacity, filter, transform;
}

/* Hero copy hidden until scroll reveal (GSAP controls animation; no !important override) */
.hero--main:not(.is-hero-ready) .hero__letter {
  opacity: 0;
}
.hero--main:not(.is-hero-ready) .hero__eyebrow {
  opacity: 0;
}
.no-motion .hero--main .hero__letter,
.no-motion .hero--main .hero__eyebrow {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}
.no-motion .hero--main .hero__eyebrow {
  letter-spacing: 0.28em;
}
.hero--main.is-hero-ready .hero__eyebrow {
  letter-spacing: 0.28em;
}

/* Mobile scroll scenes — CSS sticky (no GSAP pin; reliable on iOS) */
html.is-mobile-scroll .hero.hero--main {
  min-height: auto;
  height: auto;
  overflow: visible;
  isolation: auto;
}
html.is-mobile-scroll .hero__stage {
  position: sticky;
  top: 0;
  z-index: 2;
}
html.is-mobile-scroll .vx-section:has(> .vx-pin) {
  overflow: visible;
  padding-bottom: 0;
}
html.is-mobile-scroll [data-vx-pin] {
  height: auto;
  overflow: visible;
}
html.is-mobile-scroll [data-vx-pin] .vx-pin__stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  height: 100svh;
  max-height: 100svh;
  overflow: hidden;
  z-index: 1;
}
html.is-mobile-scroll [data-vx-pin] .vx-pin__track,
html.is-mobile-scroll .hero__cards-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

/* Touch / iOS — GPU hints for desktop ScrollTrigger pin */
html.is-touch .pin-spacer {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
html.is-touch [data-vx-pin] .vx-pin__track,
html.is-touch .hero__cards-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
html.is-touch .hero--main.is-hero-ready .hero__letter,
html.is-touch .hero--main.is-hero-ready .hero__eyebrow {
  letter-spacing: inherit;
}

.hero__space {
  display: inline-block;
  width: 0.28em;
}

.hero__mega-line--1 {
  font-size: clamp(3rem, 12.5vw, 10.5rem);
}

.hero__mega-line--2 {
  font-size: clamp(3.35rem, 14vw, 12rem);
  margin-top: -0.02em;
}

.hero__cards-viewport {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.25rem, 3.5vh, 2.5rem);
  z-index: 3;
  height: clamp(338px, 57vh, 520px);
  padding-top: clamp(3.25rem, 9vh, 5.85rem);
  overflow: visible;
  pointer-events: none;
}
.hero__cards-track {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.35rem, 0.8vw, 0.65rem);
  width: max-content;
  min-height: 100%;
  padding: 0 max(4vw, calc((100vw - var(--container)) / 2));
  padding-right: max(8vw, calc((100vw - var(--container)) / 2 + 4rem));
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.hero__card {
  position: relative;
  left: auto;
  top: auto;
  flex: 0 0 clamp(125px, 17vw, 260px);
  width: clamp(125px, 17vw, 260px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #050505;
  will-change: transform;
  transform-origin: center bottom;
  backface-visibility: hidden;
  transform: translateZ(0);
  box-shadow: none;
}

.hero__card img,
.hero__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__card--view-all {
  border: none;
  display: flex;
}
.hero__card--desktop-only { display: flex; }

/* Legacy hero (event pages etc.) */
.hero:not(.hero--main) {
  min-height: 100svh;
  padding: calc(var(--header-h) + 2rem + var(--safe-top)) 0 calc(4rem + var(--safe-bottom));
  text-align: left;
  align-items: flex-end;
}
.hero:not(.hero--main) .hero__content {
  align-items: flex-start;
  width: var(--container);
  margin-inline: auto;
  padding-inline: 0;
  position: relative;
  z-index: 3;
}
.hero:not(.hero--main) .hero__meta { margin-bottom: 1.5rem; }
.hero:not(.hero--main) .hero__title {
  line-height: 0.9;
  margin-bottom: 1.5rem;
  max-width: 14ch;
  overflow: hidden;
}
.hero:not(.hero--main) .hero__word--1,
.hero:not(.hero--main) .hero__word--2 {
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 8.5rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  display: block;
}
.hero:not(.hero--main) .hero__word--1 {
  font-weight: 700;
  background: none;
  -webkit-text-fill-color: var(--text);
  color: var(--text);
}
.hero:not(.hero--main) .hero__word--2 {
  font-weight: 300;
  color: var(--muted);
  margin-top: 0;
}
.hero:not(.hero--main) .hero__desc {
  font-size: 0.95rem;
  max-width: 36ch;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero:not(.hero--main) .hero__cta-row .btn-primary {
  background: var(--text);
  color: var(--void);
  border-radius: 0;
  padding: 1rem 1.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero:not(.hero--main) .hero__cta-row .btn-ghost {
  border-radius: 0;
  border-color: var(--line);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero:not(.hero--main) .hero__veil {
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
  opacity: 1;
}
.hero:not(.hero--main) .hero__dots { left: max(4vw, calc((100vw - var(--container)) / 2)); transform: none; bottom: 2.5rem; }
.hero:not(.hero--main) .hero__sound {
  right: max(4vw, calc((100vw - var(--container)) / 2));
  border-radius: 0;
  bottom: 2.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: auto;
  padding: 0 1rem;
}
.hero:not(.hero--main) .hero__sound-icon--off::before { content: 'Sound'; }
.hero:not(.hero--main) .hero__sound-icon--on::before { content: 'Mute'; }
.hero:not(.hero--main) .hero__sound-icon { font-size: inherit; }

.ticker { display: none; }
.chip {
  display: inline-block;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 0 0.55rem;
  margin: 0 0 0.25rem;
}

/* ─── Giant type (scroll-through) ─── */
.vx-type {
  position: relative;
  min-height: 100svh;
  border-top: 1px solid var(--line);
  background: var(--void);
  overflow: hidden;
}
.vx-type__stage {
  display: flex;
  align-items: center;
  min-height: 100svh;
  width: 100%;
}
.vx-type__mega {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  margin: 0;
  padding-left: max(4vw, calc((100vw - var(--container)) / 2));
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 16vw, 12rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.vx-type__mega .is-dim {
  color: var(--muted);
  font-weight: 300;
}

/* ─── Split banner (Elevate-style) ─── */
.vx-banner {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.vx-banner__media {
  position: absolute;
  inset: 0;
}
.vx-banner__media img,
.vx-banner__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.vx-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}
.vx-banner__copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1rem;
  width: var(--container);
  margin-inline: auto;
  padding-block: 8vh;
}
.vx-banner__left,
.vx-banner__right {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
  will-change: transform, opacity;
}
.vx-banner__left { text-align: left; }
.vx-banner__right {
  text-align: right;
  align-self: end;
  margin-top: clamp(3rem, 12vh, 8rem);
  color: var(--muted);
  font-weight: 300;
}
.vx-banner__tag {
  grid-column: 1 / -1;
  max-width: 36ch;
  margin: 2rem 0 0 auto;
  text-align: right;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Pinned horizontal scroll ─── */
.vx-pin__stage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: clamp(2rem, 6vh, 4rem);
  position: relative;
}
.story__brand {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 1.5rem);
  pointer-events: none;
  width: min(92vw, 720px);
  opacity: 0;
  filter: blur(24px);
  will-change: filter, opacity, transform;
}
.story__brand-wla {
  width: clamp(72px, 14vw, 120px);
  height: auto;
  flex-shrink: 0;
}
.story__brand-x {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}
.story__brand-velunia {
  width: clamp(160px, 34vw, 300px);
  height: auto;
  flex-shrink: 1;
}
[data-vx-pin] .film__track {
  position: relative;
  z-index: 1;
}
.vx-pin__viewport {
  overflow: hidden;
  width: 100%;
}
.vx-pin__track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  will-change: transform;
  --vx-pin-track-end: max(2rem, calc((100vw - var(--container)) / 2 + 2.5rem));
  padding-right: var(--vx-pin-track-end);
}
[data-vx-pin] .rail__track,
[data-vx-pin] .film__track,
[data-vx-pin] .vx-gallery {
  overflow: hidden !important;
  overflow-x: hidden !important;
  scroll-snap-type: none !important;
  -webkit-overflow-scrolling: auto;
  gap: 0.5rem;
}
.vx-pin__ui {
  grid-area: pinui;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  min-width: 140px;
  align-self: end;
}
.vx-pin__line {
  width: 120px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.vx-pin__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left center;
}
.vx-pin__arrows {
  display: flex;
  gap: 0.5rem;
}
.vx-pin__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.25s, color 0.25s;
}
.vx-pin__arrow:hover {
  background: var(--text);
  color: var(--void);
}

/* ─── Homepage sections ─── */
.vx-section {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.vx-section > .vx-pin { margin: 0; }
.vx-section:has(> .vx-pin) { padding-top: 0; }
.vx-section--pin { padding: 0; }
.vx-section--bleed .vx-pin__viewport {
  padding-inline: max(4vw, calc((100vw - var(--container)) / 2));
}
.vx-section__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "title progress";
  align-items: end;
  gap: 1rem 2rem;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.vx-section__bar:has(.vx-pin__ui) {
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas: "title progress pinui";
}
.vx-section__bar--plain {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "title";
}
.vx-section--contact {
  overflow: visible;
  padding-bottom: 0;
}
.vx-section--contact .vx-section__title {
  margin-bottom: 0;
}
.vx-section__progress {
  grid-area: progress;
  justify-self: end;
  align-self: end;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--muted);
  line-height: 1;
  min-width: auto;
}
.vx-section__progress em {
  font-style: normal;
  color: var(--text);
}
.vx-section__title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: left;
  max-width: 100%;
  text-wrap: balance;
}
.vx-section__count {
  font-style: normal;
  font-weight: 300;
  color: var(--muted);
  margin-left: 0.35em;
}
.vx-section__link {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.25s;
}
.vx-section__link:hover { color: var(--text); }

.vx-reveal {
  display: inline-block;
  overflow: hidden;
}
.vx-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
}

/* Event cards — horizontal rail */
.rail-wrap { padding-inline: max(4vw, calc((100vw - var(--container)) / 2)); }
[data-vx-pin] .rail-wrap { padding-inline: 0; }
.rail__track { gap: 0.5rem; padding-bottom: 0.5rem; }
.rail__card-visual,
.rail__card-fallback,
.rail__card-overlay { border: none; }
.rail__card {
  flex: 0 0 min(320px, 78vw);
  border-radius: 0;
  border: none;
  background: var(--surface);
}
.rail__card-visual { aspect-ratio: 3/4; }
.rail__card-body {
  padding: 1rem 1rem 1.15rem;
  border-top: none;
}
.rail__card-body time {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.rail__card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.rail__card-body p { display: none; }
.rail__card-more {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.75rem;
}
.rail__ticket {
  border-top: 1px solid var(--line);
  color: var(--text);
  letter-spacing: 0.16em;
  font-size: 0.62rem;
}
.rail__nav {
  border-radius: 0;
  background: var(--void);
  border-color: var(--line);
}
.tag { border-radius: 0; font-size: 0.58rem; }

/* Gallery horizontal rail */
.vx-gallery {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
[data-vx-pin] .vx-gallery {
  --vx-pin-track-end: max(8vw, calc((100vw - var(--container)) / 2 + 4rem));
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}
[data-vx-pin] .vx-gallery.vx-pin__track {
  padding-right: 0;
}
[data-vx-pin] .vx-gallery::after {
  content: '';
  display: block;
  flex: 0 0 var(--vx-pin-track-end, max(2rem, calc((100vw - var(--container)) / 2 + 2.5rem)));
  width: var(--vx-pin-track-end, max(2rem, calc((100vw - var(--container)) / 2 + 2.5rem)));
  align-self: stretch;
  pointer-events: none;
}
.vx-gallery:not([data-vx-track]) {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: max(4vw, calc((100vw - var(--container)) / 2));
}
.vx-gallery::-webkit-scrollbar { display: none; }
.vx-gallery__item {
  flex: 0 0 min(260px, 62vw);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3/4;
  border: none;
  overflow: hidden;
  background: #050505;
  padding: 0;
  cursor: pointer;
}
.vx-gallery__item img,
.vx-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-gallery__item--video {
  display: block;
  padding: 0;
}
.vx-gallery__item--video .vx-gallery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #050505;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.vx-gallery__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.vx-gallery__play span {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.72rem solid #fff;
}
.vx-gallery__item--video.is-playing .vx-gallery__play {
  opacity: 1;
  pointer-events: auto;
}
.vx-gallery__item--video.is-playing .vx-gallery__play span {
  left: 50%;
  width: 0.55rem;
  height: 0.82rem;
  border: none;
  background: transparent;
  box-shadow: -0.34rem 0 0 #fff, 0.34rem 0 0 #fff;
  transform: translate(-50%, -50%);
}
.vx-gallery__item--video.is-playing:hover .vx-gallery__play,
.vx-gallery__item--video.is-playing:focus-within .vx-gallery__play {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.72);
}
.vx-gallery__open {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  pointer-events: none;
}
.vx-gallery__open .vx-gallery__label,
.vx-gallery__open .vx-card-arrow {
  pointer-events: auto;
}
.vx-card-arrow {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.vx-card-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  mask-image: url('../images/icons/arrow-up-right.svg');
  -webkit-mask-image: url('../images/icons/arrow-up-right.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.vx-gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--text);
}
/* View all cards — shared across hero, events, gallery */
.vx-view-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(160deg, #101010 0%, #050505 100%);
  border: none;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.vx-view-all-card__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}
.vx-view-all-card__arrow {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.7;
}

.vx-gallery__item--view-all,
.rail__card--view-all {
  padding: 0;
}
.rail__card--view-all .rail__card-more {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Gallery page */
.vx-page {
  padding: calc(var(--header-h) + 2.5rem + var(--safe-top)) 0 clamp(4rem, 10vh, 6rem);
}
.vx-page__back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-page__back:hover { color: var(--text); }
.vx-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0.75rem 0 2.5rem;
}
.vx-gallery-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 0.5rem;
  padding-bottom: 2rem;
}
.vx-gallery-page .vx-gallery__item,
.vx-gallery-page .vx-gallery__item--video {
  flex: none;
  width: 100%;
  border: none;
}

/* Events listing pages */
.vx-events-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
  gap: 0.65rem;
  padding-bottom: 2rem;
}
.vx-events-page__grid .vx-events-preview,
.vx-events-page__grid .vx-events-past__card {
  flex: none;
  width: 100%;
  scroll-snap-align: unset;
}
.vx-events-page__card {
  overflow: hidden;
  border: none;
  background: transparent;
}
.vx-events-preview--view-all,
.vx-events-past__card--view-all {
  display: flex;
  flex-direction: column;
  grid-template-columns: unset;
  grid-template-rows: unset;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(160deg, #101010 0%, #050505 100%);
  pointer-events: auto;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: hidden;
}
.vx-events-rail--teasers .vx-events-preview--view-all {
  flex: 0 0 var(--vx-event-card-w);
  width: var(--vx-event-card-w);
  min-width: var(--vx-event-card-w);
  max-width: var(--vx-event-card-w);
  min-height: calc(var(--vx-event-card-w) * 5 / 4 + 3.25rem);
}
.vx-events-past__card--view-all {
  flex: 0 0 var(--vx-event-card-w);
  width: var(--vx-event-card-w);
  min-width: var(--vx-event-card-w);
  max-width: var(--vx-event-card-w);
  min-height: calc(var(--vx-event-card-w) * 5 / 4 + 3.25rem);
}

/* Static pages */
.vx-page--static .vx-page__title {
  margin-bottom: 1.25rem;
}
.vx-page__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}
.vx-prose {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}
.vx-prose__lead {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--text);
  line-height: 1.75;
  margin: 0 0 2.5rem;
  max-width: 56ch;
}
.vx-prose__section + .vx-prose__section {
  margin-top: 0.5rem;
}
.vx-prose h2 {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2.75rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.vx-prose p {
  margin: 0 0 1.15rem;
}
.vx-prose ul {
  margin: 0 0 1.25rem 1.1rem;
  padding: 0;
}
.vx-prose li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}
.vx-page__cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.vx-page__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.vx-page__cta-btn:hover {
  background: transparent;
  color: var(--void);
  border-color: var(--text);
}

/* Wipe-fill buttons */
.vx-btn-wipe {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.32s ease, border-color 0.32s ease;
}
.vx-btn-wipe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.vx-btn-wipe:hover::before,
.vx-btn-wipe:focus-visible::before,
.vx-btn-wipe.is-active::before {
  transform: scaleX(1);
}
.vx-btn-wipe:hover,
.vx-btn-wipe:focus-visible,
.vx-btn-wipe.is-active {
  color: var(--void);
  border-color: var(--text);
}
.vx-btn-wipe:disabled {
  opacity: 0.55;
  cursor: wait;
}

.vx-form__status,
.foot__newsletter-status {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin: 0;
}
.vx-form__status.is-success,
.foot__newsletter-status.is-success { color: #8fd4a0; }
.vx-form__status.is-error,
.foot__newsletter-status.is-error { color: #e88a8a; }

.vx-prose--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  max-width: none;
}
.vx-page__form {
  margin-top: clamp(2.5rem, 6vh, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 42rem;
}
.vx-page__form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Event detail page */
.vx-page--event .vx-event__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 1.5rem;
  max-height: min(52vh, 28rem);
}
.vx-page--event .vx-event__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-page--event .vx-event__hero {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
  margin-bottom: 1.5rem;
}
.vx-page--event .vx-event__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-page--event .vx-event__hero-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #141414 0%, #050505 100%);
}
.vx-page--event .vx-event__hero-fallback span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 700;
  opacity: 0.2;
}
.vx-page--event .vx-event__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.vx-page--event .vx-event__meta time {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-page--event .vx-event__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0 0 0.65rem;
}
.vx-page--event .vx-event__loc {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}
.vx-page--event .vx-event__body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 2rem;
}
.vx-page--event .vx-event__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.vx-page--event .vx-event__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--void);
  background: var(--text);
  border: 1px solid var(--text);
}
.vx-page--event .vx-event__link {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
}
.vx-page--event .vx-event__link:hover { color: var(--text); }

.vx-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-bottom: var(--safe-bottom);
}
.vx-sticky-cta.is-visible { transform: translateY(0); }
.vx-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.vx-sticky-cta__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.vx-sticky-cta__info strong {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-sticky-cta__info span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-sticky-cta__buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.vx-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--void);
  background: var(--text);
  border: 1px solid var(--text);
}
.vx-sticky-cta__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
}
body.has-sticky-cta .back-to-top { bottom: calc(5.5rem + var(--safe-bottom)); }

.vx-page--404__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.08);
}
.vx-page--404__text {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 2rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .vx-page--event .vx-event__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vx-page--event .vx-event__btn {
    width: 100%;
    justify-content: center;
  }
  .vx-sticky-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .vx-sticky-cta__info { text-align: center; }
  .vx-sticky-cta__buttons { width: 100%; }
  .vx-sticky-cta__btn,
  .vx-sticky-cta__ghost { flex: 1; justify-content: center; }
}

.vx-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .vx-prose--columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Story timeline */
.film {
  padding-inline: max(4vw, calc((100vw - var(--container)) / 2));
}
[data-vx-pin] .film {
  padding-inline: max(4vw, calc((100vw - var(--container)) / 2));
}
.film__frame {
  border-radius: 0;
  border: none;
  background: var(--surface);
  flex: 0 0 clamp(280px, 40vw, 400px);
  padding: 1.5rem;
}
[data-vx-pin] .film__track {
  gap: 0.5rem;
  padding-bottom: 0;
  overflow: hidden !important;
  overflow-x: hidden !important;
}
.film__year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  background: none;
  -webkit-text-fill-color: var(--text);
}
.film__hint {
  position: relative;
  z-index: 4;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-inline: max(4vw, calc((100vw - var(--container)) / 2));
}

/* Venue + contact */
.vx-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  column-gap: clamp(2rem, 4vw, 3.5rem);
  row-gap: 1rem;
  align-items: stretch;
}
.vx-contact__head {
  grid-column: 1 / -1;
  grid-row: 1;
}
.vx-contact__form {
  display: contents;
}
.vx-form__body {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  min-height: 0;
}
.vx-contact__map-frame {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  min-height: clamp(248px, 30vw, 320px);
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line);
}
.vx-contact__route {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  box-sizing: border-box;
}
.vx-contact__address {
  grid-column: 2;
  grid-row: 4;
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-contact__lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0.75rem 0 0;
  max-width: 52ch;
}
.vx-form {
  /* marker class for form fields */
}
.vx-form__field {
  display: grid;
  gap: 0.5rem;
}
.vx-form__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-form__field input,
.vx-form__field textarea {
  width: 100%;
  padding: 0.55rem 0 0.75rem;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.vx-form__field input:focus,
.vx-form__field textarea:focus {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}
.vx-form__field textarea {
  resize: none;
  min-height: 4.25rem;
}
.vx-form__field--grow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.vx-form__field--grow textarea {
  flex: 1 1 auto;
  min-height: 4.25rem;
  height: auto;
}
.vx-form__submit {
  grid-column: 1;
  grid-row: 3;
  margin-top: 0;
  padding: 0.85rem 1.25rem;
  width: 100%;
  min-height: 2.75rem;
  box-sizing: border-box;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: stretch;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.vx-form__submit:hover {
  background: transparent;
  color: var(--void);
  border-color: var(--text);
}
.vx-contact__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(0.92) contrast(1.05);
  pointer-events: none;
}
.vx-contact__map-frame.is-map-active iframe {
  pointer-events: auto;
}
.vx-contact__map-frame.is-map-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.vx-contact__tagline {
  margin: 0 auto;
  padding: 0;
  border: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 28px rgba(255, 255, 255, 0.28),
    0 0 56px rgba(255, 255, 255, 0.14);
  animation: vx-tagline-glow 4s ease-in-out infinite alternate;
}
@keyframes vx-tagline-glow {
  from {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.38),
      0 0 24px rgba(255, 255, 255, 0.22),
      0 0 48px rgba(255, 255, 255, 0.1);
    opacity: 0.88;
  }
  to {
    text-shadow:
      0 0 16px rgba(255, 255, 255, 0.62),
      0 0 36px rgba(255, 255, 255, 0.38),
      0 0 72px rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
}
.vx-night-starts {
  margin-top: clamp(2rem, 5vh, 3rem);
  margin-bottom: 0;
  padding-bottom: 0;
}
.vx-night-starts .vx-contact__tagline {
  margin-bottom: 0;
}
.vx-night-starts .vx-dual-video {
  border-top: none;
  margin-top: clamp(0.75rem, 2vh, 1.1rem);
}
@media (max-width: 900px) {
  .vx-contact {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1.5rem;
  }
  .vx-contact__head,
  .vx-contact__form,
  .vx-contact__map-frame,
  .vx-contact__route,
  .vx-contact__address {
    grid-column: auto;
    grid-row: auto;
  }
  .vx-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .vx-form__body,
  .vx-form__submit,
  .vx-contact__map-frame,
  .vx-contact__route,
  .vx-contact__address {
    grid-column: auto;
    grid-row: auto;
  }
  .vx-form__body {
    display: grid;
    gap: 1.25rem;
  }
  .vx-form__field--grow {
    display: grid;
    flex: none;
  }
  .vx-form__field--grow textarea {
    flex: none;
    min-height: 8rem;
    height: auto;
  }
  .vx-contact__map-frame {
    min-height: 260px;
    height: auto;
  }
}
.venue__grid { gap: 2rem; align-items: start; }
.venue__text { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.venue__map {
  border-radius: 0;
  border: none;
  background: linear-gradient(160deg, #101010 0%, #050505 100%);
  min-height: 220px;
}
.venue__map::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 1;
}
.venue__map::after {
  background: radial-gradient(circle at 55% 45%, rgba(255,255,255,0.06), transparent 58%);
}
.venue__map-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255,255,255,0.9);
  mask-image: url('../images/icons/map.svg');
  -webkit-mask-image: url('../images/icons/map.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.venue__map-pin {
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.12), 0 0 24px rgba(255,255,255,0.25);
}
.venue__map-label {
  border: none;
  background: rgba(0,0,0,0.72);
  color: var(--text);
}
.vx-venue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.vx-venue-btn__icon {
  width: 1rem;
  height: 1rem;
  background: currentColor;
  mask-image: url('../images/icons/map.svg');
  -webkit-mask-image: url('../images/icons/map.svg');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.vx-venue-btn:hover {
  background: transparent;
  color: var(--void);
  border-color: var(--text);
}
.stat {
  border-radius: 0;
  border: none;
  background: var(--surface);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  background: none;
  -webkit-text-fill-color: var(--text);
}

/* Hover — subtle glow only, no movement/scale */
@media (hover: hover) {
  body.velunia-body .rail__card,
  body.velunia-body .stat,
  body.velunia-body .venue__map,
  body.velunia-body .vx-gallery__item,
  body.velunia-body .film__frame,
  body.velunia-body .bento__cell,
  body.velunia-body .archive__row,
  body.velunia-body .hero__card,
  body.velunia-body .rail__card-visual img,
  body.velunia-body .rail__card-video,
  body.velunia-body .bento__cell img,
  body.velunia-body .bento__cell video,
  body.velunia-body .vx-gallery__item img,
  body.velunia-body .vx-gallery__item video {
    transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease, opacity 0.35s ease;
  }

  body.velunia-body .rail__card:hover,
  body.velunia-body .stat:hover,
  body.velunia-body .venue__map:hover,
  body.velunia-body .vx-gallery__item:hover,
  body.velunia-body .film__frame:hover,
  body.velunia-body .bento__cell:hover {
    transform: none !important;
    box-shadow: 0 10px 36px rgba(255, 255, 255, 0.07);
  }

  body.velunia-body .stat:hover {
    background: #0e0e0e;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.06);
  }

  body.velunia-body .venue__map:hover {
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
  }

  body.velunia-body .rail__card:hover .rail__card-visual img,
  body.velunia-body .rail__card:hover .rail__card-video,
  body.velunia-body .bento__cell:hover img,
  body.velunia-body .bento__cell:hover video,
  body.velunia-body .vx-gallery__item:hover img,
  body.velunia-body .vx-gallery__item:hover video {
    transform: none !important;
  }

  body.velunia-body .archive__row:hover {
    padding-left: 0;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  }

  body.velunia-body .vx-connect__btn:hover,
  body.velunia-body .dock__icon-btn:hover,
  body.velunia-body .vx-venue-btn:hover {
    transform: none !important;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.08);
  }
}

/* Connect (no reservation UI) */
.vx-connect {
  padding: clamp(6rem, 14vh, 10rem) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.vx-connect__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 1rem 0 2rem;
}
.vx-connect__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 52rem;
  margin-inline: auto;
}
.vx-connect__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 5.5rem;
  padding: 1.1rem 0.85rem;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.vx-connect__btn:hover {
  background: var(--text);
  color: var(--void);
  border-color: var(--text);
}
.vx-connect__icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.vx-connect__btn--instagram .vx-connect__icon {
  mask-image: url('../images/icons/instagram.svg');
  -webkit-mask-image: url('../images/icons/instagram.svg');
}
.vx-connect__btn--phone .vx-connect__icon {
  mask-image: url('../images/icons/phone.svg');
  -webkit-mask-image: url('../images/icons/phone.svg');
}
.vx-connect__btn--whatsapp .vx-connect__icon {
  mask-image: url('../images/icons/whatsapp.svg');
  -webkit-mask-image: url('../images/icons/whatsapp.svg');
}
.vx-connect__btn--map .vx-connect__icon {
  mask-image: url('../images/icons/map.svg');
  -webkit-mask-image: url('../images/icons/map.svg');
}
.vx-connect__label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
}
.block__empty {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 2rem 0;
}
.bento { display: none; }
.contact-cta, .countdown { display: none; }

/* Archive */
.archive { margin-top: 2rem; border-top: 1px solid var(--line); }
.archive__row { border-color: var(--line); }
.archive__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Events spotlight */
.vx-events-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.vx-events-spotlight__visual {
  display: block;
  aspect-ratio: 16 / 10;
  max-height: min(42vh, 22rem);
  overflow: hidden;
  background: #08080c;
  text-decoration: none;
}
.vx-events-spotlight__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-events-spotlight__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-events-spotlight__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.02;
}
.vx-events-spotlight__title a {
  color: inherit;
  text-decoration: none;
}
.vx-events-spotlight__title a:hover { opacity: 0.88; }
.vx-events-spotlight__desc {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 36rem;
}
.vx-events-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
}
@media (min-width: 768px) {
  .vx-events-spotlight {
    grid-template-columns: minmax(14rem, 0.44fr) minmax(0, 1fr);
    align-items: center;
  }
  .vx-events-spotlight__visual {
    aspect-ratio: 4 / 5;
    max-height: min(52vh, 26rem);
  }
}
.vx-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}
.vx-event-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.vx-event-action img,
.vx-event-action__svg {
  flex-shrink: 0;
  opacity: 0.85;
  display: block;
}
.vx-event-action:hover .vx-event-action__svg { opacity: 1; }
.vx-event-action:hover { color: var(--text); }
.vx-page--event-teaser .vx-event-teaser__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #08080c;
  margin-bottom: 1.5rem;
  max-height: min(52vh, 28rem);
}
.vx-page--event-teaser .vx-event-teaser__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.vx-event-teaser__copy {
  margin-bottom: 1.5rem;
}
.vx-event-teaser__title {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.02;
}
.vx-event-teaser__lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 36rem;
}
.vx-event-teaser__loc {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.vx-events-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: none;
  background: transparent;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  overflow: visible;
}
.vx-wipe-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}
.vx-wipe-fill img,
.vx-wipe-fill video,
.vx-wipe-fill .vx-events-visual-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-events-upcoming {
  margin-bottom: clamp(2rem, 5vh, 3rem);
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
}
.vx-events-upcoming__head,
.vx-events-past__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.vx-events-head__copy {
  min-width: 0;
}
.vx-events-upcoming__title,
.vx-events-past__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.vx-rail-navs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.vx-events-rail-shell {
  position: relative;
}
.vx-rail-nav {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.vx-rail-nav:not(:disabled):active {
  transform: scale(0.94);
}
.vx-rail-nav:disabled {
  opacity: 0.2;
  cursor: default;
}
[data-vx-rail-wrap]:not(.is-scrollable) .vx-rail-navs {
  opacity: 0.35;
  pointer-events: none;
}
[data-vx-rail-wrap].is-single .vx-rail-navs {
  opacity: 0.35;
  pointer-events: none;
}
[data-vx-rail-wrap].is-single .vx-events-preview {
  flex: 1 1 100%;
  max-width: 100%;
}
.vx-events-rail {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  padding-right: max(1rem, calc((100vw - var(--container)) / 2));
  scroll-padding-inline-end: max(1rem, calc((100vw - var(--container)) / 2));
}
.vx-events-rail::-webkit-scrollbar {
  display: none;
}
.vx-events-preview {
  flex: 0 0 min(440px, 92vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: none;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.vx-events-preview__visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}
.vx-events-preview__visual img,
.vx-events-preview__visual video,
.vx-events-featured__visual img,
.vx-events-featured__visual video,
.vx-events-past__visual img,
.vx-events-past__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-events-visual-fallback {
  width: 100%;
  height: 100%;
}
.vx-events-preview__visual .tag,
.vx-events-featured__visual .tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
}
.vx-events-preview__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  min-width: 0;
}
.vx-events-preview__body time {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  color: var(--muted);
  text-transform: uppercase;
}
.vx-events-preview__title {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 2.2vw, 0.95rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.25;
}

/* View-all in rails — must beat .vx-events-preview grid layout (defined above) */
.vx-events-rail--teasers > .vx-events-preview.vx-events-preview--view-all,
.vx-events-past__track > .vx-events-past__card.vx-events-past__card--view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  grid-template-rows: none;
  flex: 0 0 var(--vx-event-card-w);
  width: var(--vx-event-card-w);
  min-width: var(--vx-event-card-w);
  max-width: var(--vx-event-card-w);
  min-height: calc(var(--vx-event-card-w) * 5 / 4 + 3.25rem);
  background: linear-gradient(160deg, #101010 0%, #050505 100%);
}

.vx-events-preview__cta {
  margin-top: 0.15rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-events-featured__visual {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  max-height: clamp(220px, 30vw, 340px);
  height: auto;
  overflow: hidden;
  text-decoration: none;
}
.vx-events-featured__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.vx-events-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.vx-events-featured__body > * {
  opacity: 0;
  transform: translateY(18px);
}
.vx-events-featured__body time {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.vx-events-featured__body h3 {
  margin: 0.45rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
}
.vx-events-featured__body h3 a {
  color: inherit;
  text-decoration: none;
}
.vx-events-featured__body p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 42ch;
}
.vx-events-featured__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.vx-events-featured__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--void);
  background: var(--text);
  border: 1px solid var(--text);
}
.vx-events-featured__details {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.vx-events-teaser__visual {
  background: #08080c;
  overflow: hidden;
}
.vx-events-teaser__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-events-teaser__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.vx-events-preview--teaser {
  display: flex;
  flex-direction: column;
  pointer-events: none;
  cursor: default;
  flex: 0 0 var(--vx-event-card-w);
  width: var(--vx-event-card-w);
  background: transparent;
  overflow: hidden;
}
.vx-events-preview--teaser.vx-events-preview--link {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.vx-events-preview--teaser .vx-events-preview__visual {
  flex: none;
  width: 100%;
  aspect-ratio: var(--vx-event-card-ratio);
  min-height: 0;
}
.vx-events-preview--teaser .vx-events-preview__body {
  flex: none;
  width: 100%;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem 0.85rem;
  justify-content: flex-start;
  text-align: center;
}
.vx-events-teaser__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
}
.vx-events-rail--teasers .vx-events-preview {
  flex: 0 0 var(--vx-event-card-w);
}
.vx-events-rail--teasers > .vx-events-preview--view-all {
  flex: 0 0 var(--vx-event-card-w);
  width: var(--vx-event-card-w);
  min-width: var(--vx-event-card-w);
  max-width: var(--vx-event-card-w);
}
.vx-events-upcoming,
.vx-events-past {
  --vx-event-card-w: clamp(13.5rem, 38vw, 18rem);
  --vx-event-card-ratio: 4 / 5;
}
.vx-events-past {
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
}
.vx-events-past__title {
  margin: 0;
}
.vx-events-past__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
  padding-right: max(1rem, calc((100vw - var(--container)) / 2));
  scroll-padding-inline-end: max(1rem, calc((100vw - var(--container)) / 2));
}
.vx-events-past__track::-webkit-scrollbar {
  display: none;
}
.vx-events-past__card {
  flex: 0 0 var(--vx-event-card-w);
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  border: none;
  background: transparent;
  overflow: hidden;
}
.vx-events-past__track > .vx-events-past__card--view-all {
  background: linear-gradient(160deg, #101010 0%, #050505 100%);
}
.vx-events-past__visual {
  aspect-ratio: var(--vx-event-card-ratio);
  overflow: hidden;
  background: #0a0a0a;
}
.vx-events-past__visual img,
.vx-events-past__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vx-events-past__meta {
  padding: 0.65rem 0.75rem 0.8rem;
}
.vx-events-past__meta time {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.vx-events-past__meta span,
.vx-events-past__caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 900px) {
  .vx-events-featured {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0.75rem;
  }
  .vx-events-featured__visual {
    aspect-ratio: 4 / 5;
    max-height: clamp(180px, 36vw, 260px);
  }
  .vx-events-preview:not(.vx-events-preview--teaser) {
    flex: 0 0 min(360px, 92vw);
  }
  .vx-events-upcoming,
  .vx-events-past {
    --vx-event-card-w: clamp(12.5rem, 56vw, 17.5rem);
  }
  .vx-events-featured__body h3 {
    font-size: clamp(0.95rem, 3.5vw, 1.35rem);
    margin: 0.3rem 0 0.45rem;
  }
  .vx-events-featured__body p {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .vx-events-featured__reserve {
    min-height: 2.2rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.6rem;
  }
}
@media (max-width: 520px) {
  .vx-events-featured {
    grid-template-columns: 1fr;
  }
  .vx-events-featured__visual {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .vx-events-preview:not(.vx-events-preview--teaser) {
    flex: 0 0 100%;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
  }
  .vx-events-upcoming,
  .vx-events-past {
    --vx-event-card-w: min(72vw, 14.5rem);
  }
  .vx-events-upcoming__head,
  .vx-events-past__head {
    align-items: flex-start;
  }
  .vx-rail-navs {
    margin-top: 0.1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__next-event__orbs i,
  .hero__next-event__mesh {
    animation: none;
  }
  .hero__next-event__orbs i {
    opacity: 0.45;
  }
  .vx-wipe-fill {
    clip-path: inset(0);
  }
  .vx-events-featured__body > * {
    opacity: 1;
    transform: none;
  }
}
@media (hover: hover) {
  .vx-events-preview:hover {
    background: rgba(255, 255, 255, 0.04);
  }
  .vx-events-preview:hover .vx-events-preview__cta { color: var(--text); }
  .vx-events-past__card:hover { opacity: 0.88; }
  .vx-events-featured__details:hover { color: var(--text); }
  .hero__next-event:hover {
    background: rgba(255, 255, 255, 0.07);
  }
  .vx-rail-nav:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
  }
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: clamp(1.25rem, 3vh, 2rem) 0 0;
}
.foot__newsletter {
  margin-bottom: clamp(2rem, 5vh, 3rem);
  padding-bottom: clamp(2rem, 5vh, 3rem);
  border-bottom: 1px solid var(--line);
}
.foot__newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.foot__newsletter-copy .foot__label {
  margin-bottom: 0;
}
.foot__newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}
.foot__newsletter-field input {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
}
.foot__newsletter-field input:focus {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}
.foot__newsletter-btn {
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.foot__newsletter-status {
  grid-column: 1 / -1;
}
.foot__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vh, 2.5rem);
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.foot__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
}
.foot__link {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.foot__link:hover { color: var(--text); }
.foot__legal {
  text-align: center;
  padding: 0 0 clamp(2rem, 5vh, 3rem);
  border-bottom: 1px solid var(--line);
}
.foot__copy {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}
.foot__credits {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.foot__credits-line {
  display: block;
}
.foot__credits a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.foot__credits a:hover { color: var(--text); }
.foot__logo {
  width: 100%;
  padding: clamp(2rem, 6vh, 3.5rem) max(4vw, calc((100vw - var(--container)) / 2)) calc(2.5rem + var(--safe-bottom));
  box-sizing: border-box;
}
.foot__logo-img {
  display: block;
  width: 100%;
  max-width: var(--container);
  height: auto;
  margin: 0 auto;
  opacity: 1;
  filter: none;
}
.foot__phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Dual video strip (pre-footer) */
.vx-dual-video {
  background: var(--void);
  width: 100%;
  padding: 0;
}
.vx-dual-video__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
.vx-dual-video__cell {
  position: relative;
  display: block;
  min-width: 0;
  background: #000;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  max-height: min(46vh, 380px);
}
.vx-dual-video__cell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
  background: #000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (min-width: 901px) {
  .vx-dual-video {
    padding-inline: clamp(1rem, 4vw, 2.5rem);
  }
  .vx-dual-video__grid {
    max-width: min(1040px, 94vw);
    height: clamp(280px, 38vh, 480px);
    max-height: none;
  }
  .vx-dual-video__cell {
    aspect-ratio: unset;
    height: 100%;
    max-height: none;
  }
}

/* Scroll progress */
#scroll-progress {
  height: 2px;
  background: var(--text);
  transform-origin: left;
}

/* Hide old blocks */
.block { padding: 0; border: none; }
.block--dim { background: transparent; }

  @media (max-width: 900px) {
  .hero__eyebrow {
    top: calc(var(--header-h) + 0.5rem);
    letter-spacing: 0.2em;
    font-size: clamp(0.48rem, 2.8vw, 0.58rem);
    z-index: 5;
  }
  .hero__type {
    justify-content: flex-start;
    align-items: flex-start;
    padding: calc(var(--header-h) + 3.25rem) max(4vw, 1.25rem) 38vh;
    z-index: 4;
  }
  .hero__mega {
    text-align: left;
  }
  .hero__mega-desktop {
    display: none;
  }
  .hero__mega-mobile {
    display: block;
  }
  .hero__mega-mobile .hero__mega-line {
    font-size: clamp(3.15rem, 15.5vw, 5.35rem);
    line-height: 0.86;
    letter-spacing: -0.04em;
    text-align: left;
  }
  .hero__mega-mobile .hero__mega-line--m2,
  .hero__mega-mobile .hero__mega-line--m4 {
    margin-top: -0.04em;
  }
  .hero__cards-viewport {
    height: clamp(380px, 52vh, 480px);
    padding-top: clamp(1rem, 3vh, 2rem);
    bottom: clamp(0.5rem, 1.5vh, 1rem);
    z-index: 3;
  }
  .hero__card {
    flex: 0 0 clamp(140px, 42vw, 240px);
    width: clamp(140px, 42vw, 240px);
  }
  .hero__bg-video {
    opacity: min(calc(var(--hero-bg-opacity, 0.38) + 0.12), 0.55);
  }
  .hero__card--desktop-only { display: none !important; }
  .rail__card--desktop-only { display: none !important; }
  .vx-gallery__item--desktop-only { display: none !important; }
  .vx-section__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "title progress";
    align-items: center;
    gap: 0.35rem 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 0.15rem;
  }
  .vx-section__bar:has(.vx-pin__ui) {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title progress"
      "title pinui";
    align-items: center;
  }
  .vx-section__progress {
    justify-self: end;
    align-self: center;
    font-size: clamp(1rem, 4.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    min-width: auto;
    padding-top: 0;
    opacity: 1;
  }
  .vx-section__progress em {
    font-size: 1em;
    font-weight: 500;
  }
  .vx-section__title {
    text-align: left;
    font-size: clamp(1.55rem, 7.8vw, 2.15rem);
    line-height: 1.08;
    width: 100%;
    word-break: break-word;
    text-wrap: balance;
  }
  .vx-pin__ui {
    justify-self: end;
    align-self: end;
    min-width: 0;
  }
  .vx-section__count {
    display: inline;
    margin-left: 0.25em;
    font-size: 0.72em;
  }
  .vx-section__link {
    display: none;
  }
  .vx-pin__ui {
    display: none;
    grid-column: 1 / -1;
  }
  .vx-banner__copy { grid-template-columns: 1fr; }
  .vx-banner__right { text-align: left; margin-top: 0.5rem; }
  .vx-banner__tag { text-align: left; margin-left: 0; }
  .hero__float { width: clamp(72px, 22vw, 120px); }
  .foot__newsletter-inner,
  .foot__grid {
    grid-template-columns: 1fr;
  }
  .foot__newsletter-form {
    grid-template-columns: 1fr;
  }
  .story__brand {
    top: 72%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  .story__brand-wla {
    width: clamp(56px, 18vw, 88px);
  }
  .story__brand-velunia {
    width: clamp(120px, 38vw, 200px);
  }
  .vx-gallery-page { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  body.velunia-body .dock {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .vx-connect__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 22rem;
  }
  .vx-connect__btn {
    min-height: 7.25rem;
    padding: 1.35rem 0.75rem;
    gap: 0.85rem;
  }
  .vx-connect__icon {
    width: 2rem;
    height: 2rem;
  }
  .vx-connect__label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
}

/* Dynamic social links (footer + connect) */
.vx-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.foot__col .vx-social-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.foot__col .vx-social-links__item:hover {
  color: var(--text);
}
.vx-social-links__icon {
  display: none;
}
