:root {
  --vx-ink: #171711;
  --vx-paper: #f7f4ec;
  --vx-orange: #ff6b00;
  --vx-orange-dark: #d95700;
  --vx-yellow: #ffc928;
  --vx-sand: #ffd36a;
  --vx-line: rgba(23, 23, 17, 0.13);
  --vx-radius: 28px;
  --vx-shadow: 0 22px 70px rgba(21, 18, 12, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

html.vx-menu-open {
  overflow: hidden;
}

html.vx-gsap-scroll {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
  background: var(--vx-paper);
}

.vx-site,
.vx-site * {
  box-sizing: border-box;
}

.vx-site {
  padding-top: 0;
  overflow: clip;
  background: var(--vx-paper);
  color: var(--vx-ink);
  font-family: "Poppins", sans-serif;
}

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

.vx-site img {
  display: block;
  max-width: 100%;
}

html:not(.vx-aos-ready) .vx-site [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.vx-shell {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.vx-section {
  padding: 110px 0;
}

.vx-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #65645d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vx-kicker > span {
  width: 28px;
  height: 2px;
  background: var(--vx-orange);
}

.vx-kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

.vx-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.vx-heading h2,
.vx-story h2,
.vx-reviews h2,
.vx-visit h2,
.vx-faq h2 {
  margin: 0;
  color: var(--vx-ink);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.vx-heading h2 em {
  color: var(--vx-orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.vx-heading > p {
  max-width: 420px;
  margin: 0;
  color: #68675f;
  font-size: 16px;
  line-height: 1.75;
}

.vx-heading--light h2,
.vx-heading--light > p {
  color: #fff;
}

.vx-heading--light > p {
  color: rgba(255, 255, 255, 0.66);
}

.vx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--vx-orange);
  border-radius: 999px;
  background: var(--vx-orange);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.vx-button:hover,
.vx-button:focus-visible {
  border-color: var(--vx-orange-dark);
  background: var(--vx-orange-dark);
  transform: translateY(-2px);
}

.vx-button--small {
  min-height: 42px;
  padding-inline: 19px;
  font-size: 12px;
}

.vx-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--vx-ink) !important;
}

.vx-button--light:hover,
.vx-button--light:focus-visible {
  border-color: var(--vx-yellow);
  background: var(--vx-yellow);
}

.vx-button--dark {
  border-color: var(--vx-ink);
  background: var(--vx-ink);
}

/* Header */
.vx-header {
  position: fixed;
  z-index: 1020;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vx-header.is-scrolled,
.vx-header.is-open {
  border-color: var(--vx-line);
  background: rgba(247, 244, 236, 0.94);
  color: var(--vx-ink);
  box-shadow: 0 8px 30px rgba(18, 18, 12, 0.08);
  backdrop-filter: blur(18px);
}

.vx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.vx-scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vx-orange), var(--vx-yellow));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.vx-header__brand {
  position: relative;
  z-index: 2;
  width: 190px;
}

.vx-header__brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.vx-header.is-scrolled .vx-header__brand img,
.vx-header.is-open .vx-header__brand img {
  filter: none;
}

.vx-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vx-header__nav a {
  position: relative;
  color: currentColor !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--vx-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.vx-header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vx-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vx-header__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: currentColor !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

.vx-menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.vx-header.is-open .vx-menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.vx-header.is-open .vx-menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.vx-mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100svh - 66px);
  overflow-y: auto;
  padding: 20px 24px 30px;
  border-top: 1px solid var(--vx-line);
  background: var(--vx-paper);
  color: var(--vx-ink);
  box-shadow: 0 25px 45px rgba(18, 18, 12, 0.12);
}

.vx-mobile-menu nav {
  display: grid;
}

.vx-mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--vx-line);
  color: var(--vx-ink) !important;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-mobile-menu__call {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--vx-orange) !important;
  font-weight: 600;
  text-decoration: none !important;
}

/* Hero */
.vx-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  background: #171711;
  color: #fff;
}

.vx-hero__image,
.vx-hero__video,
.vx-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vx-hero__image,
.vx-hero__video {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
}

.vx-hero__image {
  opacity: 1;
  transition: opacity 0.9s ease;
}

.vx-hero__video {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.vx-hero__image.is-video-playing {
  opacity: 0;
}

.vx-hero__video.is-playing {
  opacity: 1;
}

.vx-hero__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 10, 7, 0.88) 0%, rgba(10, 10, 7, 0.58) 46%, rgba(10, 10, 7, 0.11) 76%), linear-gradient(0deg, rgba(10, 10, 7, 0.66) 0%, transparent 45%);
}

.vx-hero__orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: var(--vx-orange);
  mix-blend-mode: screen;
  opacity: 0.7;
  filter: blur(1px);
}

.vx-hero__orb--one {
  top: 19%;
  right: 6%;
  width: 18px;
  height: 18px;
}

.vx-hero__orb--two {
  right: 32%;
  bottom: 20%;
  width: 8px;
  height: 8px;
}

.vx-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-top: 130px;
  padding-bottom: 86px;
}

.vx-hero__content {
  max-width: 760px;
}

.vx-hero__kicker {
  color: rgba(255, 255, 255, 0.75);
}

.vx-hero__title {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(50px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.vx-hero__line {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
  padding-bottom: 0.08em;
}

.vx-hero__line > span {
  display: block;
}

.vx-hero__line--accent {
  color: var(--vx-yellow);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.vx-hero__copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.vx-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vx-text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--vx-ink) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-text-link--light {
  color: #fff !important;
}

.vx-hero__facts {
  display: grid;
  flex: 0 0 190px;
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(10, 10, 7, 0.32);
  backdrop-filter: blur(10px);
}

.vx-hero__facts div {
  display: grid;
  gap: 2px;
}

.vx-hero__facts strong {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
}

.vx-hero__facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vx-hero__scroll {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-decoration: none !important;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: bottom right;
}

.vx-ticker {
  overflow: hidden;
  padding: 17px 0;
  background: var(--vx-yellow);
}

.vx-ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  will-change: transform;
}

.vx-ticker span {
  color: var(--vx-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vx-ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vx-orange);
}

/* Activities carousel */
.vx-activities {
  overflow: hidden;
  background: #fff;
}

.vx-activities__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.vx-activities__heading h2 {
  margin: 0;
  color: var(--vx-ink);
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.vx-activities__heading a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vx-ink) !important;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
}

.vx-activities__heading a i {
  transition: transform 0.25s ease;
}

.vx-activities__heading a:hover {
  color: var(--vx-orange) !important;
}

.vx-activities__heading a:hover i {
  transform: translateX(4px);
}

.vx-activity-track {
  display: grid;
  grid-auto-columns: calc((100% - 252px) / 8);
  grid-auto-flow: column;
  gap: 36px;
  overflow-x: auto;
  padding: 2px 1px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vx-activity-track::-webkit-scrollbar {
  display: none;
}

.vx-activity-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 18px;
  color: var(--vx-ink) !important;
  text-align: center;
  text-decoration: none !important;
  scroll-snap-align: start;
}

.vx-activity-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}

.vx-activity-card span {
  display: block;
  min-height: 2.8em;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.vx-activity-card:hover img {
  box-shadow: 0 14px 30px rgba(21, 20, 16, 0.14);
  transform: scale(1.045);
}

.vx-activity-card:hover span {
  color: var(--vx-orange);
}

.vx-activity-pagination {
  display: flex;
  min-height: 12px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 48px;
}

.vx-activity-pagination button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c8c8c8;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.vx-activity-pagination button.is-active {
  width: 24px;
  background: var(--vx-ink);
}

.vx-activity-pagination button:focus-visible {
  outline: 2px solid var(--vx-orange);
  outline-offset: 3px;
}

/* Pricing */
.vx-passes {
  position: relative;
  background: var(--vx-ink);
}

.vx-passes::before {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.vx-price-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vx-price-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--vx-radius);
  color: var(--vx-ink);
}

.vx-price-card--lime {
  background: var(--vx-yellow);
}

.vx-price-card--orange {
  background: var(--vx-orange);
  color: #fff;
}

.vx-price-card--dark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #282821;
  color: #fff;
}

.vx-price-card--sky {
  background: var(--vx-sand);
}

.vx-price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.vx-price-card__top span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vx-price-card__top i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.vx-price-card h3 {
  margin: 0 0 10px;
  color: inherit;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.vx-price-card > p,
.vx-price-card__wide-layout p {
  margin: 0;
  color: currentColor;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
}

.vx-price-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 28px 0 20px;
}

.vx-price-card__price s {
  opacity: 0.52;
  font-size: 15px;
}

.vx-price-card__price strong {
  color: inherit;
  font-size: 40px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.vx-price-card__price span,
.vx-price-card__price b {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
}

.vx-price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.vx-price-card li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
}

.vx-price-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.vx-price-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vx-price-card button:hover,
.vx-price-card button:focus-visible {
  background: var(--vx-ink);
  color: #fff;
}

.vx-price-card--dark button:hover,
.vx-price-card--orange button:hover {
  background: #fff;
  color: var(--vx-ink);
}

.vx-school-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--vx-radius);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.vx-school-strip span {
  color: var(--vx-yellow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vx-school-strip h3 {
  margin: 7px 0 6px;
  color: #fff;
  font-size: clamp(21px, 2.7vw, 32px);
  letter-spacing: -0.04em;
}

.vx-school-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.vx-school-strip a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--vx-ink) !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-price-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.vx-price-card--wide .vx-price-card__top {
  margin-bottom: 20px;
}

.vx-price-card__wide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 50px;
  align-items: center;
}

.vx-price-card__wide-layout .vx-price-card__price {
  max-width: 220px;
  margin: 0;
}

.vx-price-card__wide-layout button {
  width: 210px;
  margin: 0;
}

/* Story */
.vx-story {
  background: #fff;
}

.vx-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.vx-story__visual {
  position: relative;
}

.vx-story__visual > img {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 46% 46% 28px 28px;
  object-fit: cover;
}

.vx-story__stamp {
  position: absolute;
  right: -24px;
  bottom: 30px;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border-radius: 50%;
  background: var(--vx-orange);
  color: #fff;
  text-align: center;
  transform: rotate(-8deg);
}

.vx-story__stamp span {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vx-story__stamp strong {
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.vx-story__content > p:not(.vx-kicker) {
  margin: 28px 0;
  color: #66645d;
  font-size: 16px;
  line-height: 1.8;
}

.vx-story__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.vx-story__metrics div {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--vx-line);
}

.vx-story__metrics strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.vx-story__metrics span {
  color: #77756e;
  font-size: 10px;
  text-transform: uppercase;
}

/* Groups */
.vx-groups {
  background: var(--vx-paper);
}

.vx-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vx-group-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--vx-radius);
  color: #fff !important;
  text-decoration: none !important;
}

.vx-group-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.vx-group-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 13, 9, 0.85), transparent 60%);
}

.vx-group-card > span {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 26px;
  left: 25px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}

.vx-group-card small {
  grid-column: 1 / -1;
  color: var(--vx-yellow);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vx-group-card strong {
  margin-top: 5px;
  font-size: clamp(23px, 2.4vw, 34px);
  letter-spacing: -0.045em;
}

.vx-group-card i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.vx-group-card:hover img {
  transform: scale(1.06);
}

/* Reviews */
.vx-reviews {
  background: var(--vx-orange);
  color: #fff;
}

.vx-reviews__intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 45px;
}

.vx-reviews__intro .vx-kicker {
  grid-column: 1 / -1;
}

.vx-reviews h2 {
  color: #fff;
}

.vx-reviews__rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
  align-items: center;
}

.vx-reviews__rating span {
  grid-column: 1 / -1;
  color: var(--vx-yellow);
  letter-spacing: 0.12em;
}

.vx-reviews__rating strong {
  font-size: 27px;
}

.vx-reviews__rating small {
  opacity: 0.72;
}

.vx-review-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vx-review-rail blockquote {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--vx-radius);
  background: rgba(255, 255, 255, 0.08);
}

.vx-review-rail blockquote > span {
  color: var(--vx-yellow);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.65;
}

.vx-review-rail blockquote p {
  margin: 32px 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
}

.vx-review-rail footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.vx-review-rail footer strong {
  color: #fff;
  font-size: 13px;
}

.vx-review-rail footer small {
  color: rgba(255, 255, 255, 0.62);
}

/* Visit */
.vx-visit {
  background: var(--vx-paper);
}

.vx-visit__card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 87% 15%, rgba(255, 107, 0, 0.22), transparent 28%),
    linear-gradient(135deg, #12120e 0%, #1b1b13 100%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(21, 18, 12, 0.14);
}

.vx-visit__card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 31%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
  transform: rotate(12deg);
}

.vx-visit__word {
  position: absolute;
  z-index: -1;
  bottom: -0.18em;
  left: 34px;
  color: transparent;
  font-size: clamp(95px, 13vw, 185px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
  opacity: 0.08;
  -webkit-text-stroke: 1px #fff;
  user-select: none;
}

.vx-visit__content {
  position: relative;
  z-index: 3;
  max-width: 660px;
}

.vx-visit h2 {
  color: #fff;
}

.vx-visit h2 em {
  color: var(--vx-yellow);
  font-family: Georgia, serif;
  font-weight: 400;
}

.vx-visit__content > p:not(.vx-kicker) {
  max-width: 570px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.vx-visit__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vx-visit__actions .vx-button {
  gap: 18px;
  padding-right: 10px;
}

.vx-visit__actions .vx-button i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--vx-orange);
  color: #fff;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.vx-visit__actions .vx-button:hover i {
  transform: translateX(3px) rotate(-8deg);
}

.vx-visit__actions > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-visit__actions > a:hover {
  border-color: var(--vx-yellow);
  color: var(--vx-yellow) !important;
}

.vx-visit__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-visit__proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.vx-visit__proof i {
  color: var(--vx-yellow);
}

.vx-visit__ticket {
  --vx-ticket-lift: 0px;
  --vx-ticket-tilt: 0deg;
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(40px, 6vw, 82px);
  width: min(31%, 370px);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 17, 0.18);
  border-radius: 28px;
  background: var(--vx-yellow);
  color: var(--vx-ink);
  box-shadow: 22px 30px 0 rgba(255, 107, 0, 0.16), 0 32px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(calc(-50% + var(--vx-ticket-lift))) rotate(calc(2.5deg + var(--vx-ticket-tilt)));
  transform-origin: center;
}

.vx-visit__ticket::before,
.vx-visit__ticket::after {
  position: absolute;
  z-index: 2;
  top: 71%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a1a13;
  content: "";
  transform: translateY(-50%);
}

.vx-visit__ticket::before {
  left: -14px;
}

.vx-visit__ticket::after {
  right: -14px;
}

.vx-visit__ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: var(--vx-orange);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vx-visit__ticket-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vx-visit__ticket-top strong {
  font-weight: 600;
}

.vx-visit__ticket-main {
  padding: 28px 26px 24px;
}

.vx-visit__ticket-main > small {
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vx-visit__ticket-count {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin: 12px 0 26px;
}

.vx-visit__ticket-count strong {
  font-size: clamp(62px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.vx-visit__ticket-count span {
  font-size: 13px;
  line-height: 1.2;
}

.vx-visit__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vx-visit__route > i {
  position: relative;
  display: block;
  height: 1px;
  border-top: 1px dashed rgba(23, 23, 17, 0.48);
}

.vx-visit__route b {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--vx-yellow);
  border-radius: 50%;
  background: var(--vx-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.2);
  transform: translate(-50%, -50%);
}

.vx-visit__ticket-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 64px;
  gap: 16px;
  align-items: end;
  padding: 24px 26px 26px;
  border-top: 1px dashed rgba(23, 23, 17, 0.38);
}

.vx-visit__ticket-bottom div {
  display: grid;
  gap: 4px;
}

.vx-visit__ticket-bottom small {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vx-visit__ticket-bottom strong {
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.vx-visit__barcode {
  width: 64px;
  height: 34px;
  background: repeating-linear-gradient(90deg, var(--vx-ink) 0 2px, transparent 2px 4px, var(--vx-ink) 4px 5px, transparent 5px 8px);
}

.vx-visit__orbit {
  --vx-orbit-rotation: 0deg;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 8%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateY(-50%) rotate(var(--vx-orbit-rotation));
}

.vx-visit__orbit > i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.vx-visit__orbit > i:first-child {
  inset: 56px;
}

.vx-visit__orbit > i:nth-child(2) {
  inset: 118px;
}

.vx-visit__orbit > span {
  position: absolute;
  top: 11%;
  left: 23%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vx-orange);
  box-shadow: 0 0 0 7px rgba(255, 107, 0, 0.14);
}

/* FAQ */
.vx-faq {
  padding-top: 30px;
  background: var(--vx-paper);
}

.vx-faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.vx-faq h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.vx-faq__grid > div:first-child > p:not(.vx-kicker) {
  max-width: 330px;
  margin: 25px 0 12px;
  color: #68675f;
  line-height: 1.7;
}

.vx-faq__grid > div:first-child > a {
  color: var(--vx-orange) !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
}

.vx-accordion details {
  border-bottom: 1px solid var(--vx-line);
}

.vx-accordion summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--vx-ink);
  font-size: 17px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.vx-accordion summary::-webkit-details-marker {
  display: none;
}

.vx-accordion summary i,
.vx-accordion summary i::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 16px;
  height: 2px;
  background: var(--vx-orange);
  content: "";
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.vx-accordion summary i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.vx-accordion details[open] summary i::after {
  transform: rotate(0);
}

.vx-accordion details p {
  max-width: 700px;
  margin: -6px 0 24px;
  color: #6b6962;
  font-size: 14px;
  line-height: 1.75;
}

.vx-mobile-dock {
  display: none;
}

/* Tablet */
@media (max-width: 1023px) {
  .vx-shell {
    width: min(100% - 36px, 900px);
  }

  .vx-header__nav,
  .vx-header__call,
  .vx-header__actions > .vx-button {
    display: none;
  }

  .vx-menu-button {
    display: block;
  }

  .vx-hero__facts {
    display: none;
  }

  .vx-activity-track {
    grid-auto-columns: calc((100% - 96px) / 5);
    gap: 24px;
  }

  .vx-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vx-price-card--dark {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .vx-story__grid {
    gap: 55px;
  }

  .vx-group-card {
    min-height: 410px;
  }

  .vx-visit__card {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 35px;
    padding: 50px 42px;
  }

  .vx-visit__content {
    max-width: 540px;
  }

  .vx-visit__ticket {
    right: 38px;
    width: 320px;
  }

  .vx-visit__orbit {
    right: -3%;
    opacity: 0.72;
  }

}

/* Mobile-first experience */
@media (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: 82px;
  }

  .vx-shell {
    width: calc(100% - 32px);
  }

  .vx-section {
    padding: 76px 0;
  }

  .vx-header__inner {
    min-height: 66px;
  }

  .vx-header__brand {
    width: 155px;
  }

  .vx-menu-button {
    width: 40px;
    height: 40px;
  }

  .vx-heading {
    display: block;
    margin-bottom: 30px;
  }

  .vx-heading h2,
  .vx-story h2,
  .vx-reviews h2,
  .vx-visit h2,
  .vx-faq h2 {
    font-size: 36px;
    line-height: 0.98;
  }

  .vx-heading > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .vx-kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .vx-hero {
    min-height: 92svh;
  }

  .vx-hero__image,
  .vx-hero__video {
    object-position: 62% center;
  }

  .vx-hero__veil {
    background: linear-gradient(0deg, rgba(10, 10, 7, 0.92) 0%, rgba(10, 10, 7, 0.7) 50%, rgba(10, 10, 7, 0.22) 100%);
  }

  .vx-hero__inner {
    padding-top: 100px;
    padding-bottom: 52px;
  }

  .vx-hero__content {
    max-width: 100%;
  }

  .vx-hero__title {
    margin-bottom: 20px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.94;
  }

  .vx-hero__copy {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.62;
  }

  .vx-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .vx-hero__actions .vx-button {
    width: 100%;
  }

  .vx-hero__scroll {
    display: none;
  }

  .vx-ticker {
    padding: 13px 0;
  }

  .vx-ticker span {
    font-size: 10px;
  }

  .vx-review-rail {
    display: flex;
    width: calc(100vw - 16px);
    gap: 12px;
    overflow-x: auto;
    padding-right: 16px;
    padding-bottom: 10px;
    scroll-padding-left: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .vx-review-rail::-webkit-scrollbar {
    display: none;
  }

  .vx-activities__heading {
    margin-bottom: 30px;
  }

  .vx-activities__heading h2 {
    font-size: 25px;
  }

  .vx-activities__heading a {
    gap: 8px;
    font-size: 14px;
  }

  .vx-activity-track {
    width: calc(100vw - 16px);
    grid-auto-columns: calc((100vw - 68px) / 2);
    gap: 18px;
    padding-right: 16px;
  }

  .vx-activity-card {
    gap: 14px;
  }

  .vx-activity-card span {
    min-height: 2.8em;
    font-size: 14px;
  }

  .vx-activity-pagination {
    max-width: 100%;
    gap: 7px;
    margin-top: 28px;
    overflow: hidden;
  }

  .vx-activity-pagination button {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
  }

  .vx-activity-pagination button.is-active {
    width: 18px;
  }

  .vx-price-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vx-price-card,
  .vx-price-card--dark,
  .vx-price-card--wide {
    grid-column: auto;
    min-height: 430px;
    padding: 25px;
    border-radius: 22px;
  }

  .vx-price-card__top {
    margin-bottom: 36px;
  }

  .vx-price-card__price strong {
    font-size: 38px;
  }

  .vx-school-strip {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .vx-school-strip h3 {
    font-size: 24px;
  }

  .vx-school-strip a {
    width: 100%;
    justify-content: space-between;
  }

  .vx-price-card--wide {
    min-height: 440px;
  }

  .vx-price-card__wide-layout {
    display: flex;
    flex: 1;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .vx-price-card__wide-layout .vx-price-card__price {
    margin-top: 15px;
  }

  .vx-price-card__wide-layout button {
    width: 100%;
    margin-top: auto;
  }

  .vx-story__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .vx-story__visual {
    width: calc(100% - 22px);
  }

  .vx-story__visual > img {
    aspect-ratio: 0.86;
    border-radius: 44% 44% 22px 22px;
  }

  .vx-story__stamp {
    right: -22px;
    width: 120px;
    height: 120px;
  }

  .vx-story__content > p:not(.vx-kicker) {
    margin: 22px 0;
    font-size: 14px;
  }

  .vx-story__metrics strong {
    font-size: 20px;
  }

  .vx-story__metrics span {
    font-size: 8px;
  }

  .vx-story__content .vx-button {
    width: 100%;
  }

  .vx-group-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vx-group-card {
    min-height: 380px;
    border-radius: 22px;
  }

  .vx-reviews__intro {
    display: block;
  }

  .vx-reviews__rating {
    width: fit-content;
    margin-top: 22px;
  }

  .vx-review-rail {
    margin-top: 30px;
  }

  .vx-review-rail blockquote {
    flex: 0 0 82vw;
    min-height: 320px;
    scroll-snap-align: start;
  }

  .vx-visit__card {
    display: block;
    min-height: 0;
    padding: 38px 22px 46px;
    border-radius: 25px;
  }

  .vx-visit__content {
    position: relative;
    z-index: 3;
  }

  .vx-visit__content > p:not(.vx-kicker) {
    margin: 20px 0 26px;
    font-size: 14px;
    line-height: 1.65;
  }

  .vx-visit__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .vx-visit__actions .vx-button {
    width: 100%;
  }

  .vx-visit__actions > a {
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }

  .vx-visit__proof {
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .vx-visit__ticket {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 42px;
    border-radius: 22px;
    box-shadow: 10px 14px 0 rgba(255, 107, 0, 0.16), 0 24px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(var(--vx-ticket-lift)) rotate(calc(1.5deg + var(--vx-ticket-tilt)));
  }

  .vx-visit__ticket-top {
    padding: 18px 20px;
  }

  .vx-visit__ticket-main {
    padding: 24px 22px 22px;
  }

  .vx-visit__ticket-count strong {
    font-size: 66px;
  }

  .vx-visit__ticket-bottom {
    grid-template-columns: 1fr 1fr 58px;
    gap: 11px;
    padding: 22px;
  }

  .vx-visit__barcode {
    width: 58px;
  }

  .vx-visit__orbit {
    top: auto;
    right: -135px;
    bottom: -100px;
    width: 360px;
    height: 360px;
    transform: rotate(var(--vx-orbit-rotation));
  }

  .vx-visit__word {
    bottom: -0.05em;
    left: 10px;
    font-size: 92px;
  }

  .vx-faq {
    padding-top: 8px;
  }

  .vx-faq__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .vx-accordion summary {
    font-size: 15px;
    line-height: 1.4;
  }

  .vx-mobile-dock {
    position: fixed;
    z-index: 1010;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px 12px 10px 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 15, 0.96);
    box-shadow: 0 -12px 34px rgba(18, 18, 12, 0.2);
    backdrop-filter: blur(18px);
  }

  .vx-mobile-dock::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vx-orange), var(--vx-yellow));
    content: "";
  }

  .vx-mobile-dock__copy {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .vx-mobile-dock__copy strong {
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vx-mobile-dock__copy span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vx-mobile-dock button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 10px 0 18px;
    border: 0;
    border-radius: 18px;
    background: var(--vx-orange);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }

  .vx-mobile-dock button i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--vx-yellow);
    color: var(--vx-ink);
    font-size: 11px;
    transition: transform 0.2s ease;
  }

  .vx-mobile-dock button:active i {
    transform: translateX(3px);
  }
}

@media (max-width: 380px) {
  .vx-mobile-dock {
    gap: 9px;
    padding-left: 13px;
  }

  .vx-mobile-dock__copy strong {
    font-size: 12px;
  }

  .vx-mobile-dock__copy span {
    font-size: 8px;
  }

  .vx-mobile-dock button {
    padding-left: 14px;
  }

  .vx-hero__title {
    font-size: 40px;
  }

  .vx-heading h2,
  .vx-story h2,
  .vx-reviews h2,
  .vx-visit h2,
  .vx-faq h2 {
    font-size: 34px;
  }
}

/* Keep the shared booking flows inside narrow mobile viewports. */
@media (max-width: 575px) {
  .pop-model .modal-dialog {
    width: calc(100% - 24px);
    max-width: none;
    margin: 12px auto;
  }

  .pop-model .modal-dialog .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: calc(100svh - 24px);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .pop-model .u-modal-pad {
    padding: 18px !important;
  }

  .pop-model .u-popup-close {
    top: -18px;
    right: -18px;
    width: 56px;
    height: 56px;
  }

  .pop-model .modal-body {
    width: 100%;
  }

  .pop-model .popup-test-wrap .step-block .form-group .form-control {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vx-site *,
  .vx-site *::before,
  .vx-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
