@font-face {
  font-family: "EDO";
  src:
    url("./assets/fonts/edo.ttf") format("truetype"),
    local("EDO SZ"),
    local("EDO");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --xj-black: #211915;
  --xj-black-pure: #000000;
  --xj-white: #ffffff;
  --xj-paper: #ffffff;
  --xj-orange: #cb6120;
  --xj-orange-deep: #a84a17;
  --xj-blue: #2883b0;
  --xj-yellow: #e6c721;
  --xj-green: #24d366;
  --xj-brown: #211915;
  --nav-edge: clamp(18px, 3vw, 38px);
  --menu-link-size: clamp(36px, min(7vw, 6.5vh), 68px);
  --menu-panel-gap: clamp(18px, 3vh, 32px);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--xj-paper);
  color: var(--xj-white);
  font-family: "Montserrat", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--xj-yellow);
  color: var(--xj-black);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  min-width: 320px;
  overflow: hidden;
  color: var(--xj-white);
  pointer-events: auto;
  visibility: visible;
}

.loading-screen__panel {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: var(--xj-black);
  transition: transform 980ms var(--ease-out);
  will-change: transform;
}

.loading-screen__panel--top {
  top: 0;
}

.loading-screen__panel--bottom {
  bottom: 0;
}

.loading-screen__center-line {
  width: 100vw;
  height: 4px;
  background: var(--xj-white);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loading-line-draw 640ms var(--ease-out) 240ms forwards;
  transition: opacity 220ms var(--ease-out);
}

.loading-screen__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: clamp(20px, 3.5vh, 34px);
  width: 100vw;
  text-align: center;
  transform: translate(-50%, -50%);
  transition:
    opacity 240ms var(--ease-out),
    transform 240ms var(--ease-out);
  will-change: opacity, transform;
}

.loading-screen__logo {
  display: block;
  width: clamp(220px, 36vw, 460px);
  max-width: calc(100vw - 48px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
  transform: translateY(12px) scale(0.96);
  animation: loading-logo-in 760ms var(--ease-out) 520ms forwards;
  will-change: opacity, transform;
}

body.loading-opening .loading-screen__panel--top {
  transform: translateY(-101%);
}

body.loading-opening .loading-screen__panel--bottom {
  transform: translateY(101%);
}

body.loading-opening .loading-screen__center-line,
body.loading-opening .loading-screen__brand {
  opacity: 0;
}

body.loading-opening .loading-screen__brand {
  transform: translate(-50%, calc(-50% - 12px));
}

body.loading-complete .loading-screen {
  visibility: hidden;
  pointer-events: none;
}

body.is-loading {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  pointer-events: none;
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto minmax(168px, 1fr);
  align-items: start;
  width: 100%;
  min-height: 96px;
  padding: 19px var(--nav-edge) 0;
  pointer-events: none;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: grid;
  justify-items: center;
  width: clamp(152px, 18vw, 224px);
  margin-top: -10px;
  pointer-events: auto;
}

.brand__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(33, 25, 21, 0.25));
}

.theme-dark .brand__logo--light,
.theme-light .brand__logo--dark {
  display: none;
}

.navbar__actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  pointer-events: auto;
}

.nav-button,
.nav-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.nav-button:hover,
.nav-button:focus-visible,
.nav-icon-button:hover,
.nav-icon-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.nav-button--menu {
  grid-column: 1;
  justify-self: start;
  min-width: 97px;
  padding: 0 22px;
  background: var(--xj-orange);
  color: var(--xj-white);
  pointer-events: auto;
}

.nav-button--menu:hover,
.nav-button--menu:focus-visible,
.nav-button--cta:hover,
.nav-button--cta:focus-visible {
  background: var(--xj-orange-deep);
  box-shadow: 0 10px 24px rgba(203, 97, 32, 0.26);
}

.nav-button--cta {
  min-width: 116px;
  padding: 0 22px;
  background: var(--xj-orange);
  color: var(--xj-white);
}

.nav-icon-button {
  width: 52px;
  min-width: 52px;
  background: var(--xj-black-pure);
  color: var(--xj-orange);
}

.nav-icon-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms var(--ease-out),
    visibility 220ms var(--ease-out);
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 102;
  display: grid;
  place-items: center;
  padding: 18px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
  transition:
    opacity 220ms var(--ease-out),
    visibility 220ms var(--ease-out);
}

.whatsapp-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 12%, rgba(230, 199, 33, 0.24), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(40, 131, 176, 0.32), transparent 30%),
    linear-gradient(145deg, var(--xj-black), var(--xj-black-pure));
  color: var(--xj-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(14px) scale(0.98);
  transition: transform 240ms var(--ease-out);
}

.whatsapp-modal.is-open .whatsapp-modal__dialog {
  transform: translateY(0) scale(1);
}

.whatsapp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.whatsapp-modal__eyebrow,
.whatsapp-modal h2,
.whatsapp-modal p {
  margin: 0;
}

.whatsapp-modal__eyebrow {
  color: var(--xj-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-modal h2 {
  margin-top: 12px;
  padding-right: 48px;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(34px, 6.6vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.whatsapp-modal p {
  max-width: 420px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.whatsapp-modal__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.whatsapp-option {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  border-radius: 8px;
  color: var(--xj-white);
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease-out),
    filter 180ms var(--ease-out);
}

.whatsapp-option:hover,
.whatsapp-option:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.06);
  outline: none;
}

.whatsapp-option span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-option small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.whatsapp-option--canek {
  background: linear-gradient(135deg, var(--xj-blue), #1d5f82);
}

.whatsapp-option--plaza {
  background: linear-gradient(135deg, var(--xj-orange), var(--xj-orange-deep));
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: clamp(14px, 2.4vh, 18px) clamp(16px, 4vw, 42px) clamp(18px, 3vh, 28px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(rgba(33, 25, 21, 0.68), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 82% 12%, rgba(203, 97, 32, 0.26), transparent 24%),
    radial-gradient(circle at 20% 70%, rgba(40, 131, 176, 0.45), transparent 32%),
    var(--xj-black);
  transform: translateY(-16px);
  transition: transform 260ms var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}

.mobile-menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu__logo {
  width: min(240px, 62vw);
  height: auto;
  object-fit: contain;
}

.close-button {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--xj-white);
  cursor: pointer;
}

.close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.close-button span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-button span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close-button.whatsapp-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.mobile-menu__content {
  display: grid;
  align-content: start;
  gap: var(--menu-panel-gap);
  width: min(100%, 720px);
  padding: clamp(18px, 3vh, 28px) 0 0;
}

.mobile-menu__eyebrow {
  margin: 0;
  color: var(--xj-yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu__links {
  display: grid;
  gap: 2px;
}

.mobile-menu__links a {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--xj-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: var(--menu-link-size);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  transition:
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.mobile-menu__links a:hover,
.mobile-menu__links a:focus-visible {
  color: var(--xj-yellow);
  transform: translateX(8px);
  outline: none;
}

.mobile-menu__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-menu__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--xj-orange);
  color: var(--xj-white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out);
}

.mobile-menu__cta a:hover,
.mobile-menu__cta a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.page-stage {
  min-height: 100vh;
  padding: 0;
}

.hero-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 52px);
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
  background: var(--xj-black);
}

.hero-banner__video,
.hero-banner__overlay,
.hero-trail {
  position: absolute;
  inset: 0;
}

.hero-banner__video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner__overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 50% 54%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32) 58%);
}

.hero-trail {
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-trail__item {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(78px, 8vw, 128px);
  min-height: clamp(78px, 8vw, 128px);
  padding: 18px;
  border: 4px solid var(--xj-white);
  border-radius: 999px;
  color: var(--xj-white);
  font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(0.5);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  will-change: opacity, transform;
}

.hero-trail__item.is-active {
  animation: hero-trail-pop 920ms var(--ease-out) forwards;
}

.hero-trail__item--yellow {
  background: var(--xj-yellow);
  color: var(--xj-black);
}

.hero-trail__item--blue {
  background: var(--xj-blue);
}

.hero-trail__item--orange {
  background: var(--xj-orange);
}

.hero-trail__item--black {
  background: var(--xj-black);
}

.hero-trail__item--outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--xj-white);
  backdrop-filter: blur(8px);
}

.hero-trail__item--emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(38px, 4.4vw, 72px);
  text-transform: none;
}

.hero-banner__copy {
  position: relative;
  z-index: 4;
  width: min(900px, 90vw);
  text-align: center;
  pointer-events: none;
}

.hero-banner__copy p,
.hero-banner__copy h1 {
  margin: 0;
}

.hero-banner__copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-banner__locations {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 16px);
  overflow: hidden;
  white-space: nowrap;
}

.hero-banner__locations span,
.hero-banner__locations i {
  display: inline-block;
  opacity: 0;
  transform: translateY(130%) rotate(2deg);
  transition:
    opacity 520ms ease,
    transform 760ms var(--ease-out);
  will-change: opacity, transform;
}

.hero-banner__locations span {
  transition-delay: calc(80ms + var(--hero-location-delay, 0ms));
}

.hero-banner__locations i {
  color: var(--xj-yellow);
  font-style: normal;
  transform: translateY(130%) scaleY(0.6) rotate(10deg);
  transition-delay: 180ms;
}

body.loading-complete .hero-banner__locations span,
body.loading-complete .hero-banner__locations i,
body:not(.is-loading) .hero-banner__locations span,
body:not(.is-loading) .hero-banner__locations i {
  opacity: 1;
  transform: translateY(0) scaleY(1) rotate(0deg);
}

.hero-banner__copy h1 {
  display: grid;
  gap: 0;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(62px, min(14vw, 16vh), 170px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-banner__copy h1 span {
  display: block;
  opacity: 0;
  transform: translateY(64%) rotate(1deg);
  transition:
    opacity 640ms ease,
    transform 900ms var(--ease-out);
  transition-delay: calc(120ms + var(--hero-word-delay, 0ms));
  will-change: opacity, transform;
}

body.loading-complete .hero-banner__copy h1 span,
body:not(.is-loading) .hero-banner__copy h1 span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 820ms var(--ease-out);
  transition-delay: 360ms;
}

body.loading-complete .hero-banner__actions,
body:not(.is-loading) .hero-banner__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero-banner__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.58);
  color: var(--xj-white);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-banner__button--primary,
.hero-banner__button:hover,
.hero-banner__button:focus-visible {
  background: var(--xj-yellow);
  color: var(--xj-black);
  transform: translateY(-2px);
}

.hero-banner__button--primary:hover,
.hero-banner__button--primary:focus-visible {
  background: var(--xj-white);
}

.energy-section {
  position: relative;
  display: flex;
  min-height: 92svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(86px, 13vh, 150px) 5vw clamp(96px, 14vh, 160px);
  background:
    linear-gradient(90deg, rgba(230, 199, 33, 0.16) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(40, 131, 176, 0.12) 0 1px, transparent 1px 100%),
    #ffffff;
  background-size: 56px 56px;
  color: var(--xj-black);
}

.energy-section::before,
.energy-section::after {
  position: absolute;
  z-index: 0;
  width: clamp(140px, 16vw, 240px);
  height: clamp(16px, 1.8vw, 28px);
  content: "";
  background: var(--xj-orange);
  transform: rotate(-6deg);
}

.energy-section::before {
  top: 11%;
  right: -4vw;
}

.energy-section::after {
  bottom: 12%;
  left: -4vw;
  background: var(--xj-blue);
  transform: rotate(5deg);
}

.energy-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 90vw);
  min-height: clamp(530px, 68vh, 740px);
  place-items: center;
}

.energy-section__title,
.energy-section__note {
  margin: 0;
  text-transform: uppercase;
}

.energy-section__title {
  display: grid;
  gap: clamp(2px, 0.35vw, 7px);
  color: #2883b0;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(66px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.energy-section__note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(390px, 38vw);
  color: var(--xj-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(20px, 2.25vw, 34px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.energy-section__note strong {
  color: var(--xj-orange);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
}

.energy-section__note--left strong {
  font-family: "Montserrat", Arial, sans-serif;
  text-transform: none;
}

.energy-section__note--left {
  top: clamp(36px, 7vh, 78px);
  left: 0;
  text-align: left;
}

.energy-section__note--right {
  right: 0;
  bottom: clamp(30px, 7vh, 78px);
  text-align: right;
}

.energy-section__note--right strong {
  color: var(--xj-blue);
}

.line-mask {
  display: block;
  overflow: clip;
}

.energy-section__note .line-mask {
  padding-top: 0.16em;
  padding-bottom: 0.2em;
  margin-top: -0.16em;
  margin-bottom: -0.2em;
}

.line {
  display: block;
  transform: translateY(116%) rotate(1deg);
  transform-origin: 0% 100%;
  transition:
    transform 850ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  opacity: 0;
}

.is-visible .line {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.visit-plans {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(40, 131, 176, 0.22), transparent 36%),
    linear-gradient(225deg, rgba(203, 97, 32, 0.18), transparent 38%),
    var(--xj-black);
  color: var(--xj-white);
  perspective: 1400px;
}

.visit-plans__sticky {
  position: relative;
  padding: clamp(86px, 11vh, 132px) 5vw clamp(96px, 12vh, 148px);
  overflow: hidden;
}

.visit-plans::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 64px;
  pointer-events: none;
}

.visit-plans__marquee {
  position: absolute;
  top: clamp(18px, 3vh, 34px);
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--xj-yellow);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(30px, 5.4vw, 82px);
  line-height: 1;
  opacity: 0.92;
  transform: rotate(-1.4deg);
}

.visit-plans__marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(26px, 4vw, 60px);
  padding: 10px 0 12px;
  animation: visit-marquee 24s linear infinite;
  white-space: nowrap;
}

.visit-plans__marquee span:nth-child(even) {
  color: var(--xj-orange);
}

.visit-plans__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.visit-plans__header {
  display: grid;
  max-width: 780px;
  margin: clamp(62px, 9vw, 112px) auto clamp(34px, 5vw, 62px);
  text-align: center;
  opacity: var(--visit-header-opacity, 1);
  transform: translateY(var(--visit-header-y, 0px));
  will-change: opacity, transform;
}

.visit-plans__eyebrow,
.visit-plans__header h2,
.visit-plans__intro,
.visit-card h3,
.visit-card p {
  margin: 0;
}

.visit-plans__eyebrow {
  justify-self: center;
  color: var(--xj-yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
}

.visit-plans__header h2 {
  display: grid;
  margin-top: 12px;
  color: var(--xj-white);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(72px, 11vw, 164px);
  line-height: 0.86;
  text-transform: uppercase;
}

.visit-plans__intro {
  max-width: 650px;
  justify-self: center;
  margin-top: clamp(20px, 2.8vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

.visit-plans__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.visit-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 30px);
  padding-top: clamp(72px, 6vw, 96px);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--xj-white);
  opacity: var(--visit-card-opacity, 0);
  transform:
    translate3d(var(--visit-card-x, 0px), calc(var(--visit-card-y, 72px) + var(--visit-card-hover-y, 0px)), 0)
    rotate(calc(var(--visit-card-rotate, 0deg) + var(--visit-card-hover-rotate, 0deg)))
    scale(var(--visit-card-scale, 0.96));
  transition:
    box-shadow 220ms ease;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.visit-card:hover,
.visit-card:focus-within {
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.24);
  --visit-card-hover-y: -8px;
  --visit-card-hover-rotate: -0.6deg;
}

.visit-card::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 96px;
  height: 16px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(-8deg);
}

.visit-card--orange {
  background: linear-gradient(160deg, #dc6a22, var(--xj-orange-deep));
}

.visit-card--blue {
  background: linear-gradient(160deg, #2f95c4, var(--xj-blue));
}

.visit-card--yellow {
  background: linear-gradient(160deg, #f1d33a, var(--xj-yellow));
  color: var(--xj-black);
}

.visit-card__emoji {
  position: absolute;
  top: clamp(58px, 5vw, 82px);
  right: clamp(20px, 2vw, 28px);
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: clamp(58px, 6vw, 94px);
  line-height: 1;
  transform: rotate(8deg);
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.visit-card:hover .visit-card__emoji,
.visit-card:focus-within .visit-card__emoji {
  transform: translateY(-10px) rotate(14deg) scale(1.08);
}

.visit-card h3 {
  position: relative;
  z-index: 1;
  max-width: min(100%, 310px);
  overflow-wrap: normal;
  word-break: normal;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(44px, 4.4vw, 68px);
  line-height: 0.92;
  text-transform: uppercase;
}

.visit-card p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.42;
}

.visit-card__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.visit-card__action:hover,
.visit-card__action:focus-visible {
  background: var(--xj-white);
  color: var(--xj-black);
  transform: translateY(-2px);
}

.visit-card--yellow .visit-card__action:hover,
.visit-card--yellow .visit-card__action:focus-visible {
  background: var(--xj-black);
  color: var(--xj-yellow);
}

@keyframes visit-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes visit-emoji-bounce {
  0% {
    opacity: 0;
    transform: translateY(28px) rotate(-14deg) scale(0.72);
  }

  62% {
    opacity: 1;
    transform: translateY(-8px) rotate(12deg) scale(1.08);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(8deg) scale(1);
  }
}

.locations-scroll {
  position: relative;
  height: 320vh;
  overflow: clip;
  background: var(--xj-yellow);
}

.locations-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--xj-yellow), #f0d632 45%, var(--xj-orange) 160%);
  color: var(--xj-black);
  perspective: 1200px;
}

.locations-scroll__sticky::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%);
  background-size: 58px 58px;
  opacity: 0.75;
  pointer-events: none;
}

.locations-scroll__bg-title {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  color: rgba(33, 25, 21, 0.13);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(92px, 16vw, 250px);
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(var(--locations-bg-y, 0px)) rotate(-2deg);
  transition: transform 120ms linear;
  user-select: none;
}

.locations-scroll__bg-title span {
  display: block;
}

.locations-scroll__headline {
  position: absolute;
  top: clamp(116px, 16vh, 168px);
  left: 50%;
  z-index: 2;
  width: min(780px, 90vw);
  text-align: center;
  opacity: var(--locations-title-opacity, 0);
  transform: translate(-50%, var(--locations-title-y, 48px));
  will-change: opacity, transform;
}

.locations-scroll__headline p,
.locations-scroll__headline h2 {
  margin: 0;
}

.locations-scroll__headline p {
  color: var(--xj-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
}

.locations-scroll__headline h2 {
  display: grid;
  margin-top: 10px;
  color: var(--xj-black);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(70px, 10vw, 150px);
  line-height: 0.86;
  text-transform: uppercase;
}

.locations-map {
  position: absolute;
  top: 52%;
  left: 50%;
  z-index: 1;
  width: min(640px, 72vw);
  aspect-ratio: 1.42;
  border: 3px solid rgba(33, 25, 21, 0.75);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(33, 25, 21, 0.1) 0 1px, transparent 1px 100%),
    rgba(255, 255, 255, 0.55);
  background-size: 42px 42px;
  box-shadow: 12px 14px 0 rgba(33, 25, 21, 0.9);
  opacity: var(--locations-map-opacity, 0);
  transform: translate(-50%, var(--locations-map-y, 50px)) rotate(var(--locations-map-rotate, -3deg)) scale(var(--locations-map-scale, 0.88));
  transform-origin: center;
  will-change: opacity, transform;
}

.locations-map__label {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--xj-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
}

.locations-map__road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: var(--xj-blue);
  opacity: 0.9;
}

.locations-map__road--one {
  top: 48%;
  left: 8%;
  width: 84%;
  height: 10px;
  transform: rotate(-9deg);
}

.locations-map__road--two {
  top: 24%;
  left: 46%;
  width: 12px;
  height: 62%;
  background: var(--xj-orange);
  transform: rotate(16deg);
}

.locations-map__pin {
  position: absolute;
  display: grid;
  gap: 7px;
  justify-items: center;
  color: var(--xj-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.locations-map__pin span {
  width: 26px;
  height: 26px;
  border: 5px solid var(--xj-white);
  border-radius: 50% 50% 50% 0;
  background: var(--xj-orange);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transform: rotate(-45deg);
}

.locations-map__pin--canek {
  top: 58%;
  left: 22%;
}

.locations-map__pin--gran {
  top: 28%;
  right: 18%;
}

.locations-map__pin--gran span {
  background: var(--xj-blue);
}

.location-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-style: preserve-3d;
  pointer-events: none;
}

.location-card {
  position: absolute;
  top: 57%;
  left: 50%;
  width: min(390px, 28vw);
  height: min(500px, 36vw);
  min-height: 420px;
  opacity: var(--location-card-opacity, 0);
  pointer-events: auto;
  transform:
    translate(-50%, -50%)
    translate3d(var(--location-card-x, 0px), var(--location-card-y, 62vh), 0)
    rotate(var(--location-card-rotate, 0deg))
    scale(var(--location-card-scale, 0.9));
  transform-style: preserve-3d;
  transition: box-shadow 180ms ease;
  will-change: opacity, transform;
}

.location-card:hover {
  --location-card-hover: -10px;
}

.location-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(var(--location-card-hover, 0px)) rotateY(var(--location-card-flip, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.location-card.is-flipped .location-card__inner {
  transform: translateY(var(--location-card-hover, 0px)) rotateY(0deg);
}

.location-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(22px, 2vw, 30px);
  border: 3px solid var(--xj-black);
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 14px 14px 0 rgba(33, 25, 21, 0.96);
  pointer-events: none;
  transform: translateZ(1px);
  transition: opacity 160ms ease;
}

.location-card__face::before {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 130px;
  height: 20px;
  content: "";
  background: rgba(255, 255, 255, 0.74);
  transform: rotate(-8deg);
}

.location-card__face--front {
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%),
    var(--xj-orange);
  background-size: 34px 34px;
  color: var(--xj-white);
}

.location-card--gran .location-card__face--front {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 100%),
    var(--xj-blue);
}

.location-card__face--back {
  justify-content: center;
  background: var(--xj-black);
  color: var(--xj-white);
  opacity: 0;
  transform: translateZ(2px);
}

.location-card.is-flipped .location-card__face--front {
  opacity: 0;
}

.location-card.is-flipped .location-card__face--back {
  opacity: 1;
}

.location-card--gran .location-card__face--back {
  background: #ffffff;
  color: var(--xj-black);
}

.location-card__number,
.location-card__zone {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card__number {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
}

.location-card__zone {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 8px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.location-card h3,
.location-card h4,
.location-card p,
.location-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
}

.location-card h3 {
  max-width: 320px;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(58px, 5.2vw, 88px);
  line-height: 0.88;
  text-transform: uppercase;
}

.location-card h4 {
  max-width: 260px;
  color: var(--xj-yellow);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(44px, 4vw, 66px);
  line-height: 0.92;
  text-transform: uppercase;
}

.location-card--gran h4 {
  color: var(--xj-blue);
}

.location-card p {
  margin-top: 18px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.35;
}

.location-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.location-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--xj-yellow);
  content: "";
}

.location-card--gran li::before {
  background: var(--xj-orange);
}

.location-card__pin {
  position: absolute;
  top: 26%;
  right: 18%;
  width: clamp(58px, 7vw, 96px);
  height: clamp(58px, 7vw, 96px);
  border: 8px solid var(--xj-white);
  border-radius: 50% 50% 50% 0;
  background: var(--xj-yellow);
  transform: rotate(-45deg);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.location-card__pin::after {
  position: absolute;
  inset: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--xj-black);
  content: "";
  transform: translate(-50%, -50%);
}

.location-card__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  pointer-events: auto;
}

.location-card__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
  transform 180ms ease;
}

.location-card__actions .location-card__button {
  margin-top: 0;
}

.location-card__button--primary {
  background: var(--xj-white);
  color: var(--xj-black);
}

.location-card--gran .location-card__button--primary {
  background: var(--xj-black);
  color: var(--xj-white);
}

.location-card__button:hover,
.location-card__button:focus-visible {
  background: var(--xj-white);
  color: var(--xj-black);
  transform: translateY(-2px);
}

.location-card--gran .location-card__button:hover,
.location-card--gran .location-card__button:focus-visible {
  background: var(--xj-black);
  color: var(--xj-white);
}

.price-routes {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 110px;
  padding: clamp(110px, 13vw, 180px) 5vw clamp(120px, 14vw, 190px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    var(--xj-black);
  background-size: 64px 64px;
  color: var(--xj-white);
}

.price-routes::before {
  position: absolute;
  inset: auto -10vw -28vw auto;
  width: 42vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 38px solid rgba(230, 199, 33, 0.2);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}

.price-routes__bg {
  position: absolute;
  top: clamp(34px, 5vw, 72px);
  left: 50%;
  width: 100%;
  color: rgba(255, 255, 255, 0.055);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(88px, 16vw, 240px);
  line-height: 0.78;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-2deg);
  user-select: none;
  pointer-events: none;
}

.price-routes__bg span {
  display: block;
}

.price-routes__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.price-routes__header {
  display: grid;
  max-width: 820px;
  margin: 0 auto clamp(42px, 7vw, 82px);
  justify-items: center;
  text-align: center;
  opacity: var(--price-header-opacity, 0);
  transform: translateY(var(--price-header-y, 42px));
  will-change: opacity, transform;
}

.price-routes__eyebrow,
.price-routes__header h2,
.price-routes__header p,
.price-route-card h3,
.price-route-card p,
.price-route-card ul {
  margin: 0;
}

.price-routes__eyebrow {
  color: var(--xj-yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-routes__header h2 {
  display: grid;
  margin-top: 12px;
  color: var(--xj-white);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(70px, 10vw, 142px);
  line-height: 0.86;
  text-transform: uppercase;
}

.energy-section__title .line-mask,
.visit-plans__header h2 .line-mask,
.price-routes__header h2 .line-mask,
.venue-section__heading h2 .line-mask {
  padding: 0.12em 0.06em 0.16em;
  margin: -0.12em -0.06em -0.16em;
}

.price-routes__header p:not(.price-routes__eyebrow) {
  max-width: 710px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.45;
}

.price-routes__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  perspective: 1200px;
}

.price-routes__simulator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  margin-top: clamp(28px, 4vw, 56px);
  padding: clamp(20px, 2.6vw, 32px) clamp(22px, 3vw, 40px);
  border: 2px dashed rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.price-routes__simulator-copy {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  line-height: 1.4;
}

.price-route-card {
  position: relative;
  display: flex;
  min-height: clamp(440px, 44vw, 560px);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.45);
  color: var(--xj-white);
  opacity: var(--price-card-opacity, 0);
  transform:
    translate3d(var(--price-card-x, 0px), var(--price-card-y, 90px), 0)
    rotate(var(--price-card-rotate, 0deg))
    scale(var(--price-card-scale, 0.94));
  transform-style: preserve-3d;
  transition:
    box-shadow 180ms ease,
    transform 120ms linear;
  will-change: opacity, transform;
}

.price-route-card:hover,
.price-route-card:focus-visible {
  box-shadow: 20px 22px 0 rgba(0, 0, 0, 0.5);
}

.price-route-card::before {
  position: absolute;
  top: 26px;
  right: -22px;
  width: 150px;
  height: 22px;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(-8deg);
}

.price-route-card::after {
  position: absolute;
  top: 18%;
  right: clamp(22px, 4vw, 56px);
  z-index: 0;
  font-size: clamp(58px, 7vw, 112px);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
  transform: rotate(8deg);
}

.price-route-card--canek {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 100%),
    linear-gradient(150deg, var(--xj-orange), #e57a29);
  background-size: 36px 36px, 36px 36px, auto;
}

.price-route-card--canek::after {
  content: "🦘";
}

.price-route-card--gran {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 100%),
    linear-gradient(150deg, var(--xj-blue), #34a4cf);
  background-size: 36px 36px, 36px 36px, auto;
}

.price-route-card--gran::after {
  content: "⚡";
}

.price-route-card__tag,
.price-route-card__cta {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.price-route-card__tag {
  position: absolute;
  top: clamp(26px, 3vw, 38px);
  left: clamp(26px, 3vw, 42px);
  padding: 8px 13px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.price-route-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-top: clamp(42px, 4vw, 58px);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.price-route-card--canek h3 {
  max-width: min(100%, 460px);
  font-size: clamp(52px, 4.9vw, 72px);
}

.price-route-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(16px, 1.55vw, 21px);
  font-weight: 900;
  line-height: 1.32;
}

.price-route-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.price-route-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 900;
  text-transform: uppercase;
}

.price-route-card li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--xj-yellow);
  content: "";
}

.price-route-card__cta {
  min-height: 48px;
  margin-top: 28px;
  padding: 16px 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.96);
  color: var(--xj-white);
  font-size: 12px;
  line-height: 1;
}

.anchor-sentinel {
  position: absolute;
  top: -110px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 10vw, 160px) 5vw clamp(110px, 11vw, 170px);
  background:
    linear-gradient(90deg, rgba(230, 199, 33, 0.16) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(40, 131, 176, 0.1) 0 1px, transparent 1px 100%),
    var(--xj-white);
  background-size: 64px 64px;
  color: var(--xj-black);
  scroll-margin-top: 110px;
}

.faq-section__curve {
  position: absolute;
  z-index: 0;
  width: clamp(120px, 12vw, 190px);
  height: clamp(560px, 76vw, 960px);
  border: clamp(18px, 2.6vw, 38px) solid transparent;
  border-radius: 50%;
  pointer-events: none;
}

.faq-section__curve--orange {
  top: -28%;
  left: -8%;
  border-right-color: rgba(203, 97, 32, 0.9);
  transform: rotate(12deg);
}

.faq-section__curve--blue {
  right: -7%;
  bottom: -34%;
  border-left-color: rgba(40, 131, 176, 0.86);
  transform: rotate(-14deg);
}

.faq-section__spark {
  position: absolute;
  top: clamp(38px, 6vw, 86px);
  right: clamp(24px, 8vw, 120px);
  z-index: 0;
  color: var(--xj-orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 900;
  line-height: 1;
  transform: rotate(14deg);
  user-select: none;
}

.faq-section__heading {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 840px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 640ms ease,
    transform 900ms var(--ease-out);
}

.faq-section.is-visible .faq-section__heading {
  opacity: 1;
  transform: translateY(0);
}

.faq-section__eyebrow,
.faq-section__heading h2,
.faq-section__heading p,
.faq-item h3,
.faq-item p {
  margin: 0;
}

.faq-section__eyebrow {
  color: var(--xj-blue);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-section__heading h2 {
  margin-top: 10px;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(86px, 14vw, 210px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.faq-section__heading p {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.45;
}

.faq-list {
  position: relative;
  z-index: 1;
  width: min(980px, 90vw);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 24px) clamp(20px, 4vw, 70px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-item {
  border-bottom: 2px solid rgba(33, 25, 21, 0.32);
  opacity: 0;
  transform: translateY(34px);
  transition:
    border-color 220ms ease,
    opacity 640ms ease,
    transform 820ms var(--ease-out);
  transition-delay: calc(var(--faq-index, 0) * 70ms);
}

.faq-section.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open {
  border-color: rgba(203, 97, 32, 0.72);
}

.faq-item__trigger {
  display: grid;
  width: 100%;
  min-height: clamp(72px, 7vw, 98px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
}

.faq-item__trigger:hover,
.faq-item__trigger:focus-visible {
  color: var(--xj-orange);
  outline: none;
}

.faq-item__icon {
  position: relative;
  display: inline-flex;
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--xj-orange);
  transform: rotate(0deg);
  transition:
    background-color 220ms ease,
    transform 320ms var(--ease-out);
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: var(--xj-white);
  content: "";
}

.faq-item__icon::after {
  transform: rotate(90deg);
  transition: transform 260ms var(--ease-out);
}

.faq-item.is-open .faq-item__icon {
  background: var(--xj-blue);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: rotate(0deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease-out);
}

.faq-item__panel p {
  max-width: 760px;
  padding: 0 76px 26px 0;
  color: rgba(33, 25, 21, 0.82);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.5;
}

.faq-section__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 5vw, 64px);
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 820ms var(--ease-out);
  transition-delay: 320ms;
}

.faq-section.is-visible .faq-section__cta {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 104px;
  padding: clamp(64px, 6.4vw, 96px) 5vw clamp(30px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%),
    var(--xj-black-pure);
  background-size: 64px 64px;
  color: var(--xj-white);
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.site-footer::before {
  top: 9%;
  right: 6%;
  width: clamp(62px, 7vw, 112px);
  aspect-ratio: 1;
  clip-path: polygon(38% 0, 51% 34%, 87% 12%, 67% 48%, 100% 62%, 61% 65%, 70% 100%, 43% 72%, 13% 94%, 28% 58%, 0 39%, 36% 37%);
  border: 3px solid var(--xj-white);
  opacity: 0.9;
}

.site-footer::after {
  right: -4vw;
  bottom: 19%;
  width: clamp(160px, 22vw, 340px);
  height: 22px;
  background: var(--xj-yellow);
  transform: rotate(-8deg);
}

.scroll-top-button {
  position: fixed;
  bottom: 24px;
  left: 18px;
  z-index: 85;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--xj-black);
  border-radius: 50%;
  background: var(--xj-orange);
  color: var(--xj-black);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-out),
    background-color 180ms ease;
}

.site-footer.is-visible .scroll-top-button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: var(--xj-yellow);
  outline: none;
  transform: translateY(-4px) scale(1.04);
}

.scroll-top-button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.05fr)
    minmax(112px, 0.44fr)
    minmax(160px, 0.54fr)
    minmax(270px, 0.8fr);
  gap: clamp(30px, 4.8vw, 92px);
  align-items: start;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 900ms var(--ease-out);
}

.site-footer.is-visible .site-footer__grid {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__brand {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.site-footer__brand > img {
  width: min(260px, 70vw);
  height: auto;
}

.site-footer__brand p,
.site-footer__bottom p {
  margin: 0;
}

.site-footer__brand p {
  max-width: 410px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.5;
}

.site-footer__cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--xj-white);
  border-radius: 999px;
  background: var(--xj-yellow);
  color: var(--xj-black);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  background: var(--xj-white);
  outline: none;
  transform: translateY(-2px);
}

.site-footer__socials {
  display: grid;
  gap: 12px;
  width: 100%;
}

.site-footer__social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.site-footer__social-label {
  min-width: 90px;
  color: var(--xj-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__social-icons {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.site-footer__social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.site-footer__social-link img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  border-color: var(--xj-yellow);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

.site-footer__column {
  display: grid;
  gap: 10px;
}

.site-footer__column h3 {
  margin: 0 0 8px;
  color: var(--xj-yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: break-word;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--xj-orange);
  outline: none;
  transform: translateX(3px);
}

.site-footer__title-wrap {
  display: flex;
  justify-content: center;
  margin: clamp(28px, 3.4vw, 56px) 0 clamp(12px, 1.6vw, 26px);
  padding-left: 0;
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.site-footer__title {
  display: flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--xj-orange);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(82px, 10vw, 132px);
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
}

.site-footer__letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(64%) rotate(5deg);
  transition:
    color 180ms ease,
    opacity 620ms ease,
    transform 900ms var(--ease-out);
  transition-delay: calc(var(--footer-letter-index, 0) * 62ms);
  user-select: none;
}

.site-footer__letter--space {
  width: 0.26em;
}

.site-footer.is-visible .site-footer__letter {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.site-footer__letter:not(.site-footer__letter--space)::before,
.site-footer__letter:not(.site-footer__letter--space)::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: attr(data-letter);
  opacity: 0;
  pointer-events: none;
}

.site-footer__letter::before {
  color: var(--xj-yellow);
}

.site-footer__letter::after {
  color: var(--xj-blue);
}

.site-footer__letter:hover::before,
.site-footer__letter:focus-visible::before {
  animation: footer-letter-burst 520ms var(--ease-out) forwards;
}

.site-footer__letter:hover::after,
.site-footer__letter:focus-visible::after {
  animation: footer-letter-burst-alt 560ms var(--ease-out) forwards;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 820ms var(--ease-out);
  transition-delay: 320ms;
}

.site-footer.is-visible .site-footer__bottom {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------------
   Desktop ≥1100px: separar el bloque "descripción + socials + WhatsApp" en su
   propia fila a todo el ancho, debajo del logo y los links.
   Logra el layout sin tocar HTML usando `display: contents` en .site-footer__brand
   para que sus hijos se conviertan en grid items y los podamos colocar a mano.
   --------------------------------------------------------------------------- */
@media (min-width: 1100px) {
  .site-footer__grid {
    grid-template-columns:
      minmax(220px, 1.05fr)
      minmax(120px, 0.5fr)
      minmax(150px, 0.55fr)
      minmax(220px, 0.8fr);
    grid-template-rows: auto auto;
    column-gap: clamp(30px, 4.8vw, 92px);
    row-gap: clamp(34px, 4vw, 56px);
    align-items: start;
  }

  .site-footer__brand {
    display: contents;
  }

  .site-footer__brand > img {
    grid-column: 1;
    grid-row: 1;
    width: min(260px, 70vw);
    height: auto;
    align-self: start;
    justify-self: start;
  }

  .site-footer__brand > p {
    grid-column: 1;
    grid-row: 2;
    display: block;
    padding-top: 0;
    align-self: center;
    max-width: none;
  }

  .site-footer__brand > .site-footer__socials {
    grid-column: 2 / span 2;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(20px, 2.6vw, 40px);
    width: auto;
    padding-top: 0;
  }

  .site-footer__brand > .site-footer__cta {
    grid-column: 4;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }

  /* Las 3 columnas de links se autoplacean en (col2,row1), (col3,row1), (col4,row1)
     porque la única celda libre de row 1 son esas tras el logo. */
}

.venue-page {
  background: var(--xj-black);
  color: var(--xj-white);
}

.venue-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px var(--nav-edge);
  pointer-events: none;
}

.venue-nav__brand,
.venue-nav__actions {
  pointer-events: auto;
}

.venue-nav__brand {
  grid-column: 1;
  width: clamp(140px, 14vw, 218px);
}

.venue-nav__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.venue-nav__actions {
  grid-column: 3;
  display: flex;
  justify-self: end;
  gap: 10px;
}

.venue-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.72);
  color: var(--xj-white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.venue-button:hover,
.venue-button:focus-visible {
  background: var(--xj-yellow);
  color: var(--xj-black);
  transform: translateY(-2px);
}

.venue-action-button {
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.9);
  background: var(--xj-yellow);
  color: var(--xj-black);
  box-shadow:
    0 8px 0 rgba(0, 0, 0, 0.28),
    0 20px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
}

.venue-action-button::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: var(--xj-black);
  color: var(--xj-yellow);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.venue-action-button--event::before {
  content: "✦";
}

.venue-action-button--map::before {
  content: "⌖";
}

.venue-action-button--down::before {
  content: "↓";
}

.venue-action-button--link::before {
  content: "↗";
}

.venue-action-button:hover,
.venue-action-button:focus-visible {
  background: var(--xj-orange);
  color: var(--xj-white);
  box-shadow:
    0 11px 0 rgba(0, 0, 0, 0.32),
    0 24px 32px rgba(0, 0, 0, 0.28);
}

.venue-action-button:hover::before,
.venue-action-button:focus-visible::before {
  background: var(--xj-white);
  color: var(--xj-black);
}

.venue-action-button.venue-action-button--pdf::before,
.venue-action-button.venue-action-button--whatsapp::before {
  content: "";
  background-color: var(--xj-black);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

.venue-action-button.venue-action-button--pdf::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6c721' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M10 13h5'/%3E%3Cpath d='M10 17h4'/%3E%3C/svg%3E");
}

.venue-action-button.venue-action-button--whatsapp::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e6c721'%3E%3Cpath d='M7.2 3.8c.6-.5 1.5-.5 2 .1l1.7 1.8c.5.5.6 1.3.2 1.9l-.8 1.2c.7 1.6 1.9 2.8 3.5 3.5l1.2-.8c.6-.4 1.4-.3 1.9.2l1.8 1.7c.6.6.6 1.5.1 2l-1.2 1.4c-.9 1-2.4 1.3-3.8.8-3.8-1.3-6.8-4.3-8.1-8.1-.5-1.4-.2-2.9.8-3.8l.7-1.9Z'/%3E%3C/svg%3E");
}

.venue-action-button.venue-action-button--pdf:hover::before,
.venue-action-button.venue-action-button--pdf:focus-visible::before {
  background-color: var(--xj-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23211915' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v5h5'/%3E%3Cpath d='M10 13h5'/%3E%3Cpath d='M10 17h4'/%3E%3C/svg%3E");
}

.venue-action-button.venue-action-button--whatsapp:hover::before,
.venue-action-button.venue-action-button--whatsapp:focus-visible::before {
  background-color: var(--xj-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23211915'%3E%3Cpath d='M7.2 3.8c.6-.5 1.5-.5 2 .1l1.7 1.8c.5.5.6 1.3.2 1.9l-.8 1.2c.7 1.6 1.9 2.8 3.5 3.5l1.2-.8c.6-.4 1.4-.3 1.9.2l1.8 1.7c.6.6.6 1.5.1 2l-1.2 1.4c-.9 1-2.4 1.3-3.8.8-3.8-1.3-6.8-4.3-8.1-8.1-.5-1.4-.2-2.9.8-3.8l.7-1.9Z'/%3E%3C/svg%3E");
}

.venue-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(150px, 18vh, 220px) 5vw clamp(68px, 9vw, 118px);
  isolation: isolate;
}

.venue-hero__video,
.venue-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(33, 25, 21, 0.62), rgba(33, 25, 21, 0.18) 42%, rgba(33, 25, 21, 0.94)),
    radial-gradient(circle at 78% 22%, rgba(230, 199, 33, 0.26), transparent 28%);
}

.venue-hero__content {
  display: grid;
  width: min(1180px, 90vw);
  margin: 0 auto;
  gap: 26px;
}

.venue-kicker {
  margin: 0;
  color: var(--xj-yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(13px, 1.3vw, 18px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-section--light .venue-kicker {
  color: var(--xj-blue);
}

.venue-location-card .venue-kicker {
  color: var(--xj-yellow);
}

.venue-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(78px, 14vw, 190px);
  line-height: 0.84;
  text-transform: uppercase;
}

.venue-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(70%) rotate(1deg);
  transition:
    opacity 620ms ease,
    transform 900ms var(--ease-out);
  transition-delay: var(--venue-title-delay, 80ms);
  will-change: opacity, transform;
}

.venue-hero h1 span:nth-child(2) {
  --venue-title-delay: 220ms;
}

body.loading-complete .venue-hero h1 span,
body:not(.is-loading) .venue-hero h1 span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.venue-hero__copy {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.28;
}

.venue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.venue-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-hero__meta li {
  padding: 11px 15px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.58);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-section {
  position: relative;
  scroll-margin-top: 96px;
  padding: clamp(86px, 10vw, 150px) 5vw;
}

.venue-section--light {
  background: var(--xj-yellow);
  color: var(--xj-black);
}

.venue-section--dark {
  background: var(--xj-black);
  color: var(--xj-white);
}

.venue-section__inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.venue-section__heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.venue-section__heading h2,
.venue-section__heading p {
  margin: 0;
}

.venue-section__heading h2 {
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(64px, 9vw, 142px);
  line-height: 0.88;
  text-transform: uppercase;
}

.venue-section__heading p {
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 900;
  line-height: 1.4;
}

.venue-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.venue-feature-grid,
.venue-location-card {
  border: 3px solid currentColor;
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(33, 25, 21, 0.28);
}

.venue-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: currentColor;
}

.venue-feature {
  display: grid;
  min-height: 180px;
  align-content: end;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--xj-white);
  color: var(--xj-black);
}

.venue-feature span {
  font-size: 44px;
  line-height: 1;
}

.venue-feature h3,
.venue-feature p,
.venue-location-card h3,
.venue-location-card p {
  margin: 0;
}

.venue-feature h3,
.venue-location-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
}

.venue-feature p,
.venue-location-card p {
  font-weight: 800;
  line-height: 1.42;
}

.venue-location-card {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  min-height: 100%;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(16px, 2vw, 24px);
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    var(--xj-blue);
  background-size: 38px 38px;
  color: var(--xj-white);
}

.venue-location-card__media {
  position: relative;
  min-height: clamp(220px, 28vw, 360px);
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(33, 25, 21, 0.16);
  box-shadow: 8px 8px 0 rgba(33, 25, 21, 0.18);
}

.venue-location-card__media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-location-card__content {
  display: grid;
  align-content: end;
  gap: 8px;
}

.venue-location-card .venue-button {
  align-self: flex-start;
  margin-top: 12px;
  background: var(--xj-white);
  color: var(--xj-black);
}

.venue-prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.venue-price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 390px), 1fr));
  gap: 16px;
}

.venue-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: end;
  gap: clamp(22px, 3vw, 44px);
  padding: 22px clamp(34px, 4vw, 56px) 22px clamp(28px, 3vw, 42px);
  border: 3px solid currentColor;
  border-radius: 8px;
  background: var(--xj-white);
  color: var(--xj-black);
  box-shadow: 9px 9px 0 rgba(33, 25, 21, 0.28);
}

.venue-price-card h3,
.venue-price-card p,
.venue-price-card strong {
  margin: 0;
}

.venue-price-card h3 {
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
}

.venue-price-card p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.venue-price-card strong {
  justify-self: end;
  color: var(--xj-orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.venue-prices-actions {
  display: flex;
  justify-content: center;
}

.venue-events {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    var(--xj-black);
  background-size: 56px 56px;
}

.venue-events::before {
  position: absolute;
  top: 8%;
  right: -7vw;
  width: clamp(150px, 18vw, 260px);
  height: clamp(18px, 2vw, 30px);
  content: "";
  background: var(--xj-yellow);
  transform: rotate(-8deg);
}

.event-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  perspective: 1200px;
}

.event-package {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 2.8vw, 36px);
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(150deg, #d56b24, var(--xj-orange-deep));
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--xj-white);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.35);
  transform: rotate(-1.8deg);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.event-package:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(150deg, #349ac5, var(--xj-blue));
  background-size: 34px 34px, 34px 34px, auto;
  transform: translateY(18px) rotate(1.3deg);
}

.event-package--featured {
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(150deg, #f4d928, var(--xj-yellow));
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--xj-black);
  transform: rotate(2deg);
}

.event-package:hover,
.event-package:focus-within {
  box-shadow: 18px 22px 0 rgba(0, 0, 0, 0.42);
  transform: translateY(-8px) rotate(0deg);
}

.event-package::before {
  position: absolute;
  top: 26px;
  right: -24px;
  width: 132px;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(-8deg);
}

.event-package h3,
.event-package p,
.event-package__prices {
  position: relative;
  z-index: 1;
  margin: 0;
}

.event-package__tag {
  position: relative;
  z-index: 1;
  justify-self: start;
  padding: 8px 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-package h3 {
  margin-top: clamp(42px, 5vw, 72px);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
}

.event-package p {
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 900;
  line-height: 1.38;
}

.event-package__rate-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: start;
  margin: 0 0 4px;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.event-package--featured .event-package__rate-note {
  background: rgba(33, 25, 21, 0.12);
}

.event-package__rate-note span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-package__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}

.event-package__prices div {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 2px solid currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.event-package--featured .event-package__prices div {
  background: rgba(33, 25, 21, 0.08);
}

.event-package__prices strong,
.event-package__prices span {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 900;
  line-height: 1.18;
}

.event-package__prices strong {
  color: var(--xj-yellow);
  text-transform: uppercase;
}

.event-package--featured .event-package__prices strong {
  color: var(--xj-blue);
}

.event-package__prices--stack {
  grid-template-columns: 1fr;
}

.event-package__button {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.92);
  background: var(--xj-white);
  color: var(--xj-black);
  box-shadow:
    0 7px 0 rgba(0, 0, 0, 0.24),
    0 16px 22px rgba(0, 0, 0, 0.2);
  font-size: 11px;
}

.event-package--featured .event-package__button {
  border-color: var(--xj-black);
  background: var(--xj-black);
  color: var(--xj-white);
}

.event-package__button:hover,
.event-package__button:focus-visible,
.event-package--featured .event-package__button:hover,
.event-package--featured .event-package__button:focus-visible {
  background: var(--xj-white);
  color: var(--xj-black);
}

.event-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin-top: clamp(28px, 4vw, 46px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.event-extras span {
  padding: 10px 13px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.venue-events__actions {
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.venue-events__actions .venue-action-button:first-child,
.venue-cta > .venue-cta__actions .venue-action-button:nth-child(2) {
  background: var(--xj-white);
  color: var(--xj-black);
}

.venue-events__actions .venue-action-button:first-child:hover,
.venue-events__actions .venue-action-button:first-child:focus-visible,
.venue-cta > .venue-cta__actions .venue-action-button:nth-child(2):hover,
.venue-cta > .venue-cta__actions .venue-action-button:nth-child(2):focus-visible {
  background: var(--xj-blue);
  color: var(--xj-white);
}

.venue-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: clamp(16px, 2.6vw, 30px);
}

.venue-gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: var(--xj-black);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.36);
}

.venue-gallery figure:nth-child(2) {
  min-height: 280px;
  transform: rotate(2deg);
}

.venue-gallery figure:nth-child(3) {
  min-height: 280px;
  transform: rotate(-1.4deg);
}

.venue-gallery figure:nth-child(4) {
  min-height: 280px;
  transform: rotate(1deg);
}

.venue-gallery figure:nth-child(5) {
  min-height: 280px;
  transform: rotate(-2deg);
}

.venue-gallery img,
.venue-gallery video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-gallery figure:first-child {
  grid-row: span 2;
}

.venue-cta {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.venue-cta h2,
.venue-cta p {
  margin: 0;
}

.venue-cta h2 {
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(66px, 10vw, 150px);
  line-height: 0.86;
  text-transform: uppercase;
}

.venue-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.38;
}

.venue-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.events-page {
  background: var(--xj-black);
  color: var(--xj-white);
}

.events-main {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    var(--xj-black);
  background-size: 64px 64px;
}

.events-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(142px, 16vh, 212px) 5vw clamp(72px, 8vw, 118px);
  isolation: isolate;
}

.events-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(33, 25, 21, 0.76), rgba(33, 25, 21, 0.34) 44%, rgba(33, 25, 21, 0.96)),
    radial-gradient(circle at 78% 24%, rgba(230, 199, 33, 0.24), transparent 28%);
}

.events-hero__inner {
  display: grid;
  width: min(1180px, 90vw);
  margin: 0 auto;
  gap: 22px;
}

.events-hero h1,
.events-hero p {
  margin: 0;
}

.events-hero h1 {
  max-width: 980px;
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(78px, 14vw, 190px);
  line-height: 0.84;
  text-transform: uppercase;
}

.events-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(70%) rotate(1deg);
  transition:
    opacity 620ms ease,
    transform 900ms var(--ease-out);
  transition-delay: var(--events-title-delay, 80ms);
  will-change: opacity, transform;
}

.events-hero h1 span:nth-child(2) {
  --events-title-delay: 220ms;
  color: var(--xj-yellow);
}

body.loading-complete .events-hero h1 span,
body:not(.is-loading) .events-hero h1 span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.events-hero__inner > p:not(.venue-kicker) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.3;
}

.venue-action-button--calculator::before {
  content: "$";
}

.events-section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 5vw;
  scroll-margin-top: 96px;
}

.events-section--light {
  background: var(--xj-yellow);
  color: var(--xj-black);
}

.events-section--dark {
  background: var(--xj-black);
  color: var(--xj-white);
}

.events-section--simulator {
  background:
    linear-gradient(90deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(33, 25, 21, 0.08) 0 1px, transparent 1px 100%),
    var(--xj-blue);
  background-size: 48px 48px;
  color: var(--xj-white);
}

.events-section__inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.event-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.event-venue-card {
  display: grid;
  grid-template-rows: minmax(280px, 0.9fr) auto;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 8px;
  background: var(--xj-white);
  color: var(--xj-black);
  box-shadow: 14px 14px 0 rgba(33, 25, 21, 0.28);
  transform: rotate(var(--event-card-tilt, -1deg));
}

.event-venue-card--plaza {
  --event-card-tilt: 1.2deg;
}

.event-venue-card__media {
  position: relative;
  min-height: clamp(260px, 27vw, 380px);
  margin: 0;
  overflow: hidden;
  background: var(--xj-black);
}

.event-venue-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-venue-card__content {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
}

.event-venue-card__tag,
.event-venue-card h3,
.event-venue-card p,
.event-venue-card ul {
  margin: 0;
}

.event-venue-card__tag {
  color: var(--xj-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-venue-card h3 {
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.84;
  text-transform: uppercase;
}

.event-venue-card p,
.event-venue-card li {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.36;
}

.event-venue-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.event-venue-card li::marker {
  color: var(--xj-orange);
}

.event-venue-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.event-salon-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(38px, 6vw, 76px);
}

.event-salon-gallery figure {
  position: relative;
  min-height: clamp(240px, 26vw, 360px);
  margin: 0;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 8px;
  background: var(--xj-black);
  box-shadow: 10px 10px 0 rgba(33, 25, 21, 0.26);
}

.event-salon-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-salon-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.74);
  color: var(--xj-white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.event-package-block {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.event-package-block + .event-package-block {
  margin-top: clamp(70px, 9vw, 120px);
}

.event-package-block__heading {
  display: grid;
  max-width: 760px;
  gap: 12px;
}

.event-package-block__heading h3,
.event-package-block__heading p {
  margin: 0;
}

.event-package-block__heading h3 {
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.88;
  text-transform: uppercase;
}

.event-package-block__heading > p:not(.venue-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 900;
  line-height: 1.38;
}

.event-simulator-shell .venue-section__heading {
  color: var(--xj-white);
}

.event-simulator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}

.event-simulator__form,
.event-simulator__result {
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 14px 14px 0 rgba(33, 25, 21, 0.28);
}

.event-simulator__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--xj-white);
  color: var(--xj-black);
}

.event-simulator__form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.event-simulator__form label span,
.event-simulator__extras legend {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-simulator__form select,
.event-simulator__form input[type="number"] {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 2px solid var(--xj-black);
  border-radius: 8px;
  background: var(--xj-white);
  color: var(--xj-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.event-simulator__extras {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 4px 0 0;
  padding: 18px;
  border: 2px solid var(--xj-black);
  border-radius: 8px;
}

.event-simulator__extras legend {
  padding: 0 8px;
}

.event-simulator__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid rgba(33, 25, 21, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.event-simulator__extra:has([data-event-extra-qty]:not([value="0"])) {
  border-color: var(--xj-orange);
  background: rgba(255, 122, 31, 0.12);
}

.event-simulator__extra[hidden] {
  display: none;
}

.event-simulator__extra-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.event-simulator__extra-label {
  color: var(--xj-black);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.event-simulator__extra-meta {
  color: rgba(33, 25, 21, 0.62);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.event-simulator__stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(33, 25, 21, 0.08);
  flex-shrink: 0;
}

.event-simulator__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--xj-white);
  color: var(--xj-black);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(33, 25, 21, 0.18);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.event-simulator__step:hover,
.event-simulator__step:focus-visible {
  background: var(--xj-orange);
  color: var(--xj-white);
  outline: none;
  transform: translateY(-1px);
}

.event-simulator__step:active {
  transform: translateY(0);
}

.event-simulator__qty {
  width: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--xj-black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  -moz-appearance: textfield;
}

.event-simulator__qty::-webkit-outer-spin-button,
.event-simulator__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.event-simulator__qty:focus-visible {
  outline: 2px solid var(--xj-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.event-simulator__includes {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.event-simulator__includes-label {
  color: var(--xj-yellow);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-simulator__includes ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-simulator__includes li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.event-simulator__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--xj-orange);
  font-weight: 900;
}

.event-simulator__result {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    var(--xj-black);
  background-size: 34px 34px;
  color: var(--xj-white);
}

.event-simulator__eyebrow,
.event-simulator__result strong,
.event-simulator__result p,
.event-simulator__result dl {
  margin: 0;
}

.event-simulator__eyebrow {
  color: var(--xj-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-simulator__result strong {
  color: var(--xj-yellow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
}

.event-simulator__result p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 900;
  line-height: 1.38;
}

.event-simulator__result dl {
  display: grid;
  gap: 8px;
}

.event-simulator__result dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.event-simulator__result dt,
.event-simulator__result dd {
  margin: 0;
}

.event-simulator__result dd {
  color: var(--xj-yellow);
  text-align: right;
}

.event-simulator__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.event-final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.event-final-cta h2,
.event-final-cta p {
  margin: 0;
}

.event-final-cta h2 {
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(72px, 11vw, 170px);
  line-height: 0.86;
  text-transform: uppercase;
}

.event-final-cta > p:not(.venue-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 900;
  line-height: 1.38;
}

.contact-page {
  background: var(--xj-black);
  color: var(--xj-white);
}

.contact-main {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    var(--xj-black);
  background-size: 64px 64px;
}

.contact-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(132px, 13vw, 184px) 5vw clamp(72px, 8vw, 118px);
}

.contact-hero::before,
.contact-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.contact-hero::before {
  top: 18%;
  right: -7vw;
  width: clamp(180px, 26vw, 420px);
  height: clamp(18px, 2.6vw, 36px);
  background: var(--xj-yellow);
  transform: rotate(-8deg);
}

.contact-hero::after {
  left: -5vw;
  bottom: 12%;
  width: clamp(170px, 18vw, 280px);
  height: clamp(170px, 18vw, 280px);
  border: clamp(18px, 2vw, 30px) solid var(--xj-blue);
  border-radius: 50%;
  opacity: 0.72;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 90vw);
  margin: 0 auto;
  gap: clamp(34px, 5vw, 76px);
}

.contact-hero__intro {
  display: grid;
  max-width: 940px;
  gap: 18px;
}

.contact-hero__intro h1,
.contact-hero__intro p {
  margin: 0;
}

.contact-hero__intro h1 {
  color: var(--xj-white);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(82px, 12vw, 178px);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-hero__intro h1 span {
  display: block;
  opacity: 0;
  transform: translateY(32%) rotate(2deg);
  transition:
    opacity 680ms ease,
    transform 900ms var(--ease-out);
}

.contact-hero__intro h1 span:nth-child(2) {
  color: var(--xj-yellow);
  transition-delay: 140ms;
}

body.loading-complete .contact-hero__intro h1 span,
body:not(.is-loading) .contact-hero__intro h1 span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.contact-hero__intro > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.38;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    var(--contact-card-color);
  background-size: 44px 44px;
  box-shadow: 14px 18px 0 rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(60px) rotate(var(--contact-card-tilt));
  transition:
    opacity 680ms ease,
    transform 900ms var(--ease-out);
}

.contact-hero.is-visible .contact-card {
  opacity: 1;
  transform: translateY(0) rotate(var(--contact-card-tilt));
}

.contact-hero.is-visible .contact-card:nth-child(2) {
  transition-delay: 140ms;
}

.contact-card::before {
  position: absolute;
  top: 28px;
  right: 32px;
  width: clamp(100px, 12vw, 180px);
  height: 18px;
  background: rgba(255, 255, 255, 0.86);
  content: "";
  transform: rotate(-7deg);
}

.contact-card--canek {
  --contact-card-color: var(--xj-blue);
  --contact-card-tilt: -1.2deg;
}

.contact-card--plaza {
  --contact-card-color: var(--xj-orange);
  --contact-card-tilt: 1.2deg;
}

.contact-card__tag,
.contact-card h2,
.contact-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.contact-card__tag {
  color: var(--xj-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  max-width: 720px;
  color: var(--xj-white);
  font-family: "EDO", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(66px, 7vw, 118px);
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-card p:not(.contact-card__tag) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1.35;
}

.contact-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-card__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--xj-white);
  border-radius: 999px;
  background: var(--xj-yellow);
  color: var(--xj-black);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-card__button:hover,
.contact-card__button:focus-visible {
  background: var(--xj-white);
  outline: none;
  transform: translateY(-2px);
}

.contact-card__socials {
  display: inline-flex;
  gap: 10px;
}

.contact-card__social-link {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-card__social-link img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.contact-card__social-link:hover,
.contact-card__social-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}

.contact-email {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 34px 5vw 42px;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.contact-email p {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-email a {
  color: var(--xj-yellow);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-email a:hover,
.contact-email a:focus-visible {
  color: var(--xj-white);
  outline: none;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) and (min-width: 761px) {
  .energy-section__inner {
    min-height: 760px;
  }

  .energy-section__note {
    width: min(360px, 48vw);
  }

  .energy-section__title {
    font-size: clamp(78px, 13vw, 128px);
  }

  .price-route-card__tag {
    top: 24px;
    left: 24px;
    font-size: 11px;
  }

  .price-route-card h3 {
    margin-top: 62px;
    font-size: clamp(48px, 5.1vw, 72px);
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .site-footer__column:last-child {
    grid-column: 2 / span 2;
  }

  .site-footer__title-wrap {
    justify-content: center;
    margin: 40px 0 28px;
    padding-left: 0;
  }

  .site-footer__title {
    font-size: clamp(82px, 13vw, 126px);
  }
}

@media (max-width: 980px) {
  .event-venue-grid,
  .event-simulator {
    grid-template-columns: 1fr;
  }

  .event-salon-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-simulator__result {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-edge: 16px;
    --menu-link-size: clamp(34px, min(11vw, 6.4vh), 52px);
    --menu-panel-gap: clamp(16px, 2.6vh, 24px);
  }

  .navbar {
    grid-template-columns: minmax(86px, 1fr) auto minmax(94px, 1fr);
    min-height: 86px;
    padding-top: 18px;
  }

  .brand {
    width: clamp(132px, 36vw, 170px);
    margin-top: -4px;
  }

  .navbar__actions {
    gap: 8px;
  }

  .nav-button {
    height: 49px;
    font-size: 12px;
  }

  .nav-button--menu {
    min-width: 86px;
    padding: 0 16px;
  }

  .nav-button--cta {
    min-width: 94px;
    padding: 0 14px;
  }

  .nav-icon-button {
    display: none;
  }

  .page-stage {
    padding: 0;
  }

  .hero-banner {
    min-height: 100vh;
    border-radius: 0;
  }

  .hero-banner__copy h1 {
    font-size: clamp(58px, min(17vw, 13vh), 110px);
  }

  .hero-banner__actions {
    gap: 9px;
  }

  .hero-banner__button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 11px;
  }

  .energy-section {
    min-height: auto;
    padding: 92px 6vw 104px;
    background-size: 42px 42px;
  }

  .energy-section::before,
  .energy-section::after {
    width: 150px;
    height: 16px;
  }

  .energy-section::before {
    top: 22%;
    right: -20vw;
  }

  .energy-section::after {
    bottom: 10%;
    left: -22vw;
  }

  .energy-section__inner {
    width: 100%;
    min-height: auto;
    align-content: center;
    align-items: stretch;
    gap: 28px;
  }

  .energy-section__title {
    align-self: center;
    font-size: clamp(58px, 17vw, 92px);
    line-height: 0.92;
  }

  .energy-section__note {
    position: relative;
    width: min(330px, 86vw);
    font-size: clamp(21px, 6vw, 34px);
  }

  .energy-section__note--left {
    top: auto;
    left: auto;
  }

  .energy-section__note--right {
    right: auto;
    bottom: auto;
    justify-self: end;
  }

  .visit-plans {
    overflow: hidden;
  }

  .visit-plans__sticky {
    padding: 82px 6vw 96px;
  }

  .visit-plans__marquee {
    top: 16px;
    font-size: clamp(32px, 12vw, 56px);
  }

  .visit-plans__header {
    margin: 90px auto 34px;
    text-align: left;
  }

  .visit-plans__eyebrow {
    justify-self: start;
  }

  .visit-plans__header h2 {
    font-size: clamp(70px, 20vw, 112px);
  }

  .visit-plans__intro {
    justify-self: start;
    font-size: 16px;
  }

  .visit-plans__cards {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 330px;
    padding-top: 94px;
  }

  .visit-card h3 {
    max-width: 100%;
    font-size: clamp(44px, 14vw, 62px);
  }

  .visit-card--blue h3 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .locations-scroll {
    height: 330vh;
  }

  .locations-scroll__sticky {
    min-height: 100svh;
  }

  .locations-scroll__sticky::before {
    background-size: 42px 42px;
  }

  .locations-scroll__bg-title {
    font-size: clamp(80px, 28vw, 132px);
    line-height: 0.82;
  }

  .locations-scroll__headline {
    top: 104px;
    width: min(340px, 88vw);
    text-align: left;
  }

  .locations-scroll__headline h2 {
    font-size: clamp(66px, 20vw, 102px);
  }

  .locations-map {
    top: 52%;
    width: 84vw;
    box-shadow: 8px 10px 0 rgba(33, 25, 21, 0.9);
  }

  .locations-map__label {
    top: 14px;
    left: 14px;
    font-size: 12px;
  }

  .locations-map__pin {
    font-size: 10px;
  }

  .locations-map__pin span {
    width: 22px;
    height: 22px;
  }

  .location-card {
    top: 58%;
    width: min(258px, 66vw);
    height: min(334px, 39vh);
    min-height: 312px;
  }

  .location-card__face {
    padding: 18px;
    box-shadow: 9px 10px 0 rgba(33, 25, 21, 0.96);
  }

  .location-card__face--back {
    justify-content: flex-start;
    padding-top: 38px;
  }

  .location-card__zone {
    padding: 7px 10px;
    font-size: 11px;
  }

  .location-card h3 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .location-card h4 {
    max-width: 190px;
    font-size: clamp(28px, 8.4vw, 38px);
    margin-top: 18px;
  }

  .location-card p {
    margin-top: 12px;
    font-size: 11.5px;
  }

  .location-card li {
    font-size: 10.5px;
  }

  .location-card__pin {
    top: 24%;
    right: 12%;
  }

  .location-card ul {
    gap: 6px;
    margin-top: 12px;
  }

  .location-card__actions {
    gap: 8px;
    margin-top: 10px;
  }

  .location-card__button {
    min-height: 40px;
    margin-top: 10px;
    padding: 0 14px;
    font-size: 10px;
  }

  .location-card__actions .location-card__button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 9.5px;
  }

  .price-routes {
    padding: 92px 6vw 112px;
    background-size: 42px 42px;
  }

  .price-routes::before {
    right: -58vw;
    bottom: -52vw;
    min-width: 340px;
    border-width: 28px;
  }

  .price-routes__bg {
    top: 42px;
    font-size: clamp(74px, 24vw, 118px);
    text-align: left;
    transform: translateX(-50%) rotate(-2deg);
  }

  .price-routes__header {
    justify-items: start;
    margin-bottom: 34px;
    text-align: left;
  }

  .price-routes__header h2 {
    font-size: clamp(64px, 19vw, 104px);
  }

  .price-routes__header p:not(.price-routes__eyebrow) {
    font-size: 16px;
  }

  .price-routes__cards {
    grid-template-columns: 1fr;
  }

  .price-route-card {
    min-height: 500px;
    padding: 92px 24px 24px;
  }

  .price-route-card::after {
    top: 18%;
    right: 24px;
    font-size: 70px;
  }

  .price-route-card h3 {
    max-width: 100%;
    font-size: clamp(42px, 11.5vw, 56px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .price-route-card p {
    font-size: 15.5px;
  }

  .price-route-card__cta {
    min-height: 44px;
    padding: 14px 18px;
    font-size: 11px;
  }

  .faq-section {
    padding: 86px 6vw 96px;
    background-size: 42px 42px;
  }

  .faq-section__curve {
    width: 96px;
    height: 520px;
    border-width: 18px;
  }

  .faq-section__curve--orange {
    left: -78px;
  }

  .faq-section__curve--blue {
    right: -76px;
  }

  .faq-section__spark {
    top: 26px;
    right: 18px;
    font-size: 56px;
  }

  .faq-section__heading {
    justify-items: start;
    margin-bottom: 30px;
    text-align: left;
  }

  .faq-section__heading h2 {
    font-size: clamp(76px, 23vw, 122px);
  }

  .faq-section__heading p {
    font-size: 15.5px;
  }

  .faq-list {
    width: 100%;
    padding: 0;
    background: transparent;
  }

  .faq-item__trigger {
    min-height: 74px;
    gap: 14px;
    padding: 17px 0;
    font-size: 17px;
  }

  .faq-item__icon {
    width: 40px;
    height: 40px;
  }

  .faq-item__panel p {
    padding: 0 0 22px;
    font-size: 14.5px;
  }

  .site-footer {
    padding: 72px 6vw 34px;
    background-size: 42px 42px;
  }

  .site-footer::before {
    top: 36px;
    right: 22px;
    width: 58px;
  }

  .site-footer::after {
    display: none;
  }

  .scroll-top-button {
    bottom: 16px;
    right: 14px;
    left: auto;
    width: 48px;
    height: 48px;
  }

  .site-footer__inner {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 18px;
    row-gap: 30px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__brand > img {
    width: min(230px, 72vw);
  }

  .site-footer__column {
    min-width: 0;
  }

  .site-footer__column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__title-wrap {
    justify-content: center;
    width: 100%;
    margin: 40px 0 24px;
    padding-left: 0;
  }

  .site-footer__title {
    width: 100%;
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.9;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
  }

  .venue-nav {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 14px var(--nav-edge);
  }

  .venue-nav__brand {
    width: 128px;
  }

  .venue-nav__actions {
    grid-column: 2;
    gap: 8px;
  }

  .venue-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 10px;
  }

  .venue-action-button {
    min-height: 48px;
    padding: 0 14px;
    gap: 8px;
    box-shadow:
      0 7px 0 rgba(0, 0, 0, 0.26),
      0 16px 22px rgba(0, 0, 0, 0.22);
  }

  .venue-action-button::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .venue-hero {
    min-height: 100svh;
    padding: 126px 6vw 58px;
  }

  .venue-hero h1 {
    font-size: clamp(70px, 21vw, 112px);
  }

  .venue-hero__copy {
    font-size: 17px;
  }

  .venue-hero__actions .venue-action-button {
    flex: 1 1 156px;
  }

  .venue-hero__meta li {
    font-size: 11px;
  }

  .venue-section {
    scroll-margin-top: 118px;
    padding: 76px 6vw;
  }

  .venue-section__inner {
    width: 100%;
  }

  .venue-section__heading h2 {
    font-size: clamp(58px, 17vw, 96px);
  }

  .events-main {
    background-size: 42px 42px;
  }

  .events-hero {
    min-height: 100svh;
    padding: 126px 6vw 58px;
  }

  .events-hero__inner {
    width: 100%;
  }

  .events-hero h1 {
    font-size: clamp(62px, 18vw, 102px);
  }

  .events-hero__inner > p:not(.venue-kicker) {
    font-size: 16.5px;
  }

  .events-hero .venue-action-button {
    flex: 1 1 156px;
  }

  .events-section {
    scroll-margin-top: 118px;
    padding: 76px 6vw;
  }

  .events-section__inner {
    width: 100%;
  }

  .event-venue-card,
  .event-venue-card--plaza {
    transform: none;
  }

  .event-venue-card {
    grid-template-rows: auto auto;
    box-shadow: 8px 10px 0 rgba(33, 25, 21, 0.28);
  }

  .event-venue-card__media {
    min-height: 240px;
  }

  .event-venue-card__content {
    padding: 24px 20px;
  }

  .event-venue-card h3 {
    font-size: clamp(58px, 17vw, 86px);
  }

  .event-venue-card p,
  .event-venue-card li {
    font-size: 14.5px;
  }

  .event-venue-card__actions .venue-action-button {
    width: 100%;
  }

  .event-salon-gallery {
    grid-template-columns: 1fr;
  }

  .event-salon-gallery figure {
    min-height: 260px;
  }

  .event-package-block__heading h3 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .event-simulator__form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .event-simulator__extras {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .event-simulator__result {
    padding: 22px;
  }

  .event-simulator__result strong {
    font-size: clamp(38px, 12vw, 54px);
  }

  .event-simulator__actions .venue-action-button {
    width: 100%;
  }

  .event-final-cta h2 {
    font-size: clamp(58px, 18vw, 104px);
  }

  .contact-main {
    background-size: 42px 42px;
  }

  .contact-hero {
    min-height: auto;
    padding: 126px 6vw 54px;
  }

  .contact-hero::before {
    top: 112px;
    right: -56px;
    width: 180px;
    height: 18px;
  }

  .contact-hero::after {
    display: none;
  }

  .contact-hero__inner {
    width: 100%;
    gap: 30px;
  }

  .contact-hero__intro {
    gap: 14px;
  }

  .contact-hero__intro h1 {
    max-width: 100%;
    font-size: clamp(50px, 14vw, 68px);
  }

  .contact-hero__intro > p {
    font-size: 16px;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-card {
    width: calc(100% - 10px);
    min-height: 0;
    justify-self: start;
    padding: 26px 22px 24px;
    box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.34);
    transform: translateY(44px) rotate(0deg);
  }

  .contact-hero.is-visible .contact-card {
    transform: translateY(0) rotate(0deg);
  }

  .contact-card::before {
    top: 20px;
    right: 22px;
    width: 96px;
    height: 14px;
  }

  .contact-card h2 {
    font-size: clamp(58px, 17vw, 86px);
  }

  .contact-card p:not(.contact-card__tag) {
    font-size: 15.5px;
  }

  .contact-card__actions {
    align-items: stretch;
  }

  .contact-card__button {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .contact-card__socials {
    width: 100%;
  }

  .contact-card__social-link {
    width: 48px;
    height: 48px;
  }

  .contact-email {
    padding: 28px 6vw 36px;
  }

  .venue-overview,
  .venue-prices-grid,
  .event-package-grid,
  .venue-gallery {
    grid-template-columns: 1fr;
  }

  .venue-feature-grid {
    grid-template-columns: 1fr;
  }

  .venue-feature {
    min-height: 156px;
  }

  .venue-location-card {
    grid-template-rows: auto auto;
    padding: 14px;
  }

  .venue-location-card__media {
    min-height: 230px;
  }

  .venue-price-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .venue-price-card strong {
    justify-self: start;
  }

  .venue-prices-actions .venue-action-button {
    width: 100%;
    max-width: 360px;
  }

  .event-package,
  .event-package:nth-child(2),
  .event-package--featured {
    min-height: auto;
    transform: none;
  }

  .event-package h3 {
    margin-top: 38px;
    font-size: clamp(46px, 14vw, 68px);
  }

  .event-package__prices,
  .event-package__prices--stack {
    grid-template-columns: 1fr;
  }

  .venue-events__actions {
    justify-content: center;
  }

  .venue-events__actions .venue-button {
    width: 100%;
    max-width: 360px;
  }

  .venue-gallery figure,
  .venue-gallery figure:nth-child(2),
  .venue-gallery figure:nth-child(3),
  .venue-gallery figure:nth-child(4),
  .venue-gallery figure:nth-child(5) {
    min-height: 280px;
    transform: none;
  }

  .venue-gallery figure:first-child {
    grid-row: auto;
  }

  .venue-cta h2 {
    font-size: clamp(58px, 18vw, 104px);
  }
}

@media (max-width: 420px) {
  :root {
    --nav-edge: 12px;
    --menu-link-size: clamp(30px, min(9.8vw, 6.1vh), 44px);
    --menu-panel-gap: clamp(14px, 2.4vh, 22px);
  }

  .navbar {
    grid-template-columns: 76px auto 84px;
    min-height: 78px;
    padding-top: 14px;
  }

  .brand {
    width: 130px;
  }

  .nav-button {
    height: 46px;
    font-size: 10.5px;
  }

  .nav-button--menu,
  .nav-button--cta {
    min-width: 0;
    padding: 0 10px;
  }

  .mobile-menu__cta {
    display: grid;
  }

  .whatsapp-modal__options {
    grid-template-columns: 1fr;
  }

  .loading-screen__logo {
    width: min(270px, 78vw);
  }

  .location-card {
    width: min(276px, 72vw);
    height: min(372px, 50vh);
    min-height: 348px;
  }

  .location-card h4 {
    font-size: clamp(26px, 7.6vw, 34px);
  }

  .location-card p {
    font-size: 11px;
  }

  .location-card li {
    font-size: 10px;
  }

  .venue-nav__brand {
    width: 118px;
  }

  .venue-button {
    padding: 0 10px;
    font-size: 9.5px;
  }
}

@media (max-height: 720px) {
  :root {
    --menu-link-size: clamp(30px, 5.8vh, 46px);
    --menu-panel-gap: clamp(12px, 2vh, 18px);
  }

  .mobile-menu__logo {
    width: min(210px, 56vw);
  }

  .mobile-menu__content {
    padding-top: 12px;
  }

  .mobile-menu__eyebrow {
    font-size: 12px;
  }

  .mobile-menu__cta {
    gap: 10px;
  }

  .mobile-menu__cta a {
    min-height: 46px;
    font-size: 12px;
  }
}

@media (max-height: 620px) {
  :root {
    --menu-link-size: clamp(27px, 5.5vh, 38px);
    --menu-panel-gap: 10px;
  }

  .mobile-menu__logo {
    width: min(180px, 52vw);
  }

  .close-button {
    width: 46px;
    height: 46px;
  }

  .mobile-menu__cta a {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@keyframes footer-letter-burst {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.8);
  }

  28% {
    opacity: 0.95;
    transform: translate(-0.16em, -0.08em) rotate(-7deg) scale(1.12);
  }

  100% {
    opacity: 0;
    transform: translate(-0.32em, -0.16em) rotate(-10deg) scale(0.92);
  }
}

@keyframes footer-letter-burst-alt {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.8);
  }

  30% {
    opacity: 0.9;
    transform: translate(0.18em, 0.08em) rotate(8deg) scale(1.08);
  }

  100% {
    opacity: 0;
    transform: translate(0.34em, 0.18em) rotate(12deg) scale(0.9);
  }
}

@keyframes loading-line-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes loading-logo-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-trail-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(0.45);
  }

  14% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(1);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(0.78);
  }
}

/* ===========================================================================
   Páginas legales (reglamento.html, politica-de-privacidad.html)
   =========================================================================== */

.legal-page {
  background: linear-gradient(180deg, #050b15 0%, #0b1730 100%);
  color: #f4f6fb;
  min-height: 100vh;
}

.legal-page.is-loading::before {
  content: none;
}

.legal-main {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 6rem);
}

.legal-article {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.legal-article__heading {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(244, 246, 251, 0.12);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.legal-article__heading h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: #ffffff;
}

.legal-article__meta {
  font-size: 0.95rem;
  color: rgba(244, 246, 251, 0.7);
  margin: 0;
}

.legal-toc {
  background: rgba(255, 122, 31, 0.08);
  border: 1px solid rgba(255, 122, 31, 0.25);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
}

.legal-toc p {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #ffd9b8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.35rem 1.25rem;
}

.legal-toc a {
  color: #f4f6fb;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 122, 31, 0.55);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #ff7a1f;
  border-bottom-color: #ff7a1f;
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-margin-top: 1.5rem;
}

.legal-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0;
  color: #ffffff;
}

.legal-section p,
.legal-section li {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(244, 246, 251, 0.88);
}

.legal-section ul {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-section a {
  color: #ffb072;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: #ff7a1f;
}

.legal-section strong {
  color: #ffffff;
}

.legal-footer {
  background: rgba(5, 11, 21, 0.85);
  border-top: 1px solid rgba(244, 246, 251, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 4vw, 3rem);
  color: rgba(244, 246, 251, 0.7);
  font-size: 0.9rem;
}

.legal-footer__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.legal-footer a {
  color: rgba(244, 246, 251, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: #ffffff;
  border-bottom-color: #ff7a1f;
}

.legal-footer a[aria-current="page"] {
  color: #ffffff;
  border-bottom-color: #ff7a1f;
}

/* ===========================================================================
   Refuerzos agent-ready / a11y globales (web.dev AI agent UX)
   - Asegura señales fuertes de actionable y áreas de toque ≥ 24x24
   =========================================================================== */

a,
button,
[role="button"],
[data-whatsapp-open],
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}

button:disabled,
a[aria-disabled="true"],
[role="button"][aria-disabled="true"] {
  cursor: not-allowed;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #ff7a1f;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
