:root {
  --bg: #0a0a0c;
  --fg: rgba(252, 252, 251, 0.98);
  --fg-muted: rgba(252, 252, 251, 0.74);
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --accent: #c9ff4a;
  --accent-2: #ff2b2b;
  --accent-3: #ffffff;
  --max: 72rem;
  --scroll-p: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  min-height: 100svh;
  overflow-x: hidden;
}

/* Background video layer (behind all content) */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.video-bg__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-width: 177.78vh;
  min-width: 177.78dvh;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 12, 0.62) 0%, rgba(10, 10, 12, 0.84) 52%, rgba(10, 10, 12, 0.93) 100%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201, 255, 74, 0.18), transparent 62%),
    radial-gradient(ellipse 60% 40% at 88% 18%, rgba(255, 43, 43, 0.16), transparent 58%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: #ffffff;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  z-index: 9999;
}

.skip:focus {
  left: 0.75rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 12, 0.25);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.is-scrolled {
  background: rgba(10, 10, 12, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav a {
  padding: 0.55rem 0.6rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(252, 252, 251, 0.86);
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav a.is-active {
  color: #0a0a0c;
  background: var(--accent);
  border-color: rgba(201, 255, 74, 0.55);
}

.nav a.is-active:hover,
.nav a.is-active:focus-visible {
  color: #0a0a0c;
  background: var(--accent);
  border-color: rgba(201, 255, 74, 0.75);
}

.nav__cta {
  border-color: rgba(201, 255, 74, 0.26) !important;
  background: rgba(201, 255, 74, 0.12);
  color: rgba(252, 252, 251, 0.95) !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.progress {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transform-origin: left center;
  transform: scaleX(var(--scroll-p));
  opacity: 0.85;
}

.hero {
  position: relative;
  padding: clamp(3.25rem, 6vw, 5rem) 0 2rem;
  overflow: hidden;
}

.coming-soon-ribbon {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.coming-soon-ribbon__band {
  position: absolute;
  top: 3.25rem;
  left: 50%;
  width: 140%;
  transform: translateX(-50%) rotate(-4deg);
  background: linear-gradient(
    105deg,
    rgba(255, 43, 43, 0.95) 0%,
    rgba(255, 107, 53, 0.95) 28%,
    rgba(201, 255, 74, 0.92) 55%,
    rgba(255, 43, 43, 0.95) 100%
  );
  background-size: 220% 100%;
  animation: ribbon-shimmer 5s ease-in-out infinite;
  box-shadow:
    0 10px 36px rgba(255, 43, 43, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255, 255, 255, 0.28);
  border-bottom: 2px solid rgba(0, 0, 0, 0.22);
}

.coming-soon-ribbon__track {
  display: flex;
  width: max-content;
  animation: ribbon-marquee 18s linear infinite;
}

.coming-soon-ribbon__text {
  flex: 0 0 auto;
  padding: 0.85rem 2.5rem;
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0c;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.coming-soon-ribbon__text::before {
  content: "★ ";
  color: rgba(10, 10, 12, 0.65);
}

.coming-soon-ribbon__text::after {
  content: " ★";
  color: rgba(10, 10, 12, 0.65);
}

@keyframes ribbon-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes ribbon-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(252, 252, 251, 0.86);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.35rem, 1.45rem + 3.2vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.lead {
  margin: 1rem 0 1.25rem;
  color: var(--fg-muted);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.6;
  max-width: 60ch;
}

.hero__badges {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.badge {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge__top {
  margin: 0;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.badge__bottom {
  margin: 0.25rem 0 0;
  color: rgba(252, 252, 251, 0.7);
  font-size: 0.92rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--fg);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.btn--solid {
  background: linear-gradient(90deg, rgba(201, 255, 74, 0.98), rgba(255, 43, 43, 0.9));
  color: #0b0b0d;
  border-color: transparent;
  font-weight: 700;
}

.btn--solid:hover {
  background: linear-gradient(90deg, rgba(201, 255, 74, 1), rgba(255, 43, 43, 1));
}

.section {
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.section__title {
  margin: 0;
  font-size: clamp(1.65rem, 1.35rem + 1.4vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section__sub {
  margin: 0;
  color: var(--fg-muted);
  max-width: 72ch;
  line-height: 1.6;
}

.home-intro {
  max-width: 68ch;
}

.section__foot {
  margin: 1.25rem 0 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
}

.feature__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature__copy {
  margin: 0.55rem 0 0;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.home-tile {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.home-tile__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.home-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-tile__body {
  padding: 1rem 1rem 1.05rem;
}

.home-tile__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.home-tile__copy {
  margin: 0.55rem 0 0.85rem;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.package {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package__media,
.package__featured-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.package__media img,
.package__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.package__body,
.package__featured-copy {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package__audience {
  margin: 0 0 0.45rem;
  color: rgba(201, 255, 74, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
}

.package__title {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.package__price {
  margin: 0.65rem 0 0.85rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.package__price--large {
  margin-bottom: 0.75rem;
}

.package__amount {
  font-size: clamp(1.75rem, 1.35rem + 1.2vw, 2.35rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(90deg, rgba(201, 255, 74, 0.98), rgba(255, 255, 255, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package__unit {
  color: rgba(252, 252, 251, 0.72);
  font-size: 0.98rem;
}

.package__lead {
  margin: 0 0 1rem;
  color: rgba(252, 252, 251, 0.78);
  line-height: 1.6;
  max-width: 58ch;
}

.package__list {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  color: rgba(252, 252, 251, 0.78);
  line-height: 1.55;
  flex: 1;
}

.package__list li + li {
  margin-top: 0.35rem;
}

.package__list--cols {
  columns: 2;
  column-gap: 1.25rem;
}

.package__value {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 255, 74, 0.22);
  background: linear-gradient(90deg, rgba(201, 255, 74, 0.12), rgba(255, 43, 43, 0.1));
}

.package__value-title {
  margin: 0 0 0.35rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.package__value-copy {
  margin: 0;
  color: rgba(252, 252, 251, 0.82);
  line-height: 1.55;
}

.package--featured {
  margin-top: 1rem;
  border-color: rgba(201, 255, 74, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
}

.package__featured-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.package__featured-copy .btn {
  align-self: flex-start;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card2,
.game,
.event,
.offer,
.cert,
.quotes,
.contact,
.map,
.media-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35);
}

.card2 {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.card2--full {
  margin-top: 1rem;
}

.card2__body,
.game__body,
.event__body,
.offer__body {
  padding: 1rem 1rem 0.95rem;
}

.cert__body {
  padding: 1.25rem;
}

.card-media,
.game__media,
.event__media,
.offer__media,
.cert__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.card-media--hero {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.card-media img,
.game__media img,
.event__media img,
.offer__media img,
.cert__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card2::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: radial-gradient(60% 60% at 20% 0%, rgba(201, 255, 74, 0.16), transparent 62%),
    radial-gradient(55% 55% at 100% 20%, rgba(255, 43, 43, 0.12), transparent 60%);
  opacity: 0.9;
}

.card2__title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.card2__copy {
  margin: 0.55rem 0 0.9rem;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.card2__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 255, 74, 0.18);
  background: rgba(201, 255, 74, 0.1);
  font-size: 0.85rem;
  color: rgba(252, 252, 251, 0.92);
}

.pill--soft {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(252, 252, 251, 0.82);
}

.card2__link {
  color: rgba(252, 252, 251, 0.92);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.card2__link:hover {
  color: #fff;
}

.game,
.event,
.offer {
  padding: 0;
  overflow: hidden;
}

.cert {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.game__top,
.offer__value {
  margin: 0 0 0.45rem;
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(252, 252, 251, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game__title,
.event__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.game__copy,
.event__copy,
.offer__copy {
  margin: 0.55rem 0 0;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.offer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  text-decoration: none;
  color: rgba(201, 255, 74, 0.92);
  font-weight: 650;
}

.offer__link::after {
  content: "→";
}

.offer__link:hover {
  color: #fff;
}

.offer--interactive {
  position: relative;
  overflow: hidden;
}

.offer__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.offer__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.offer--interactive:hover,
.offer--interactive:focus-within,
.offer--interactive.is-open {
  border-color: rgba(201, 255, 74, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.offer__hover,
.offer__detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border-radius: inherit;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.offer__hover {
  text-align: center;
  pointer-events: none;
}

.offer__hover-title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

.offer__hover-copy {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(252, 252, 251, 0.78);
}

.offer__hover-hint {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.offer__detail {
  overflow-y: auto;
  justify-content: flex-start;
  padding: 1.1rem 1rem 1rem;
}

.offer__detail-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(252, 252, 251, 0.9);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.offer__detail-tag {
  margin: 0 0 0.4rem;
  display: inline-flex;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer__detail-title {
  margin: 0 0 0.55rem;
  padding-right: 1.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.offer__detail-lead {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: rgba(252, 252, 251, 0.78);
  line-height: 1.45;
}

.offer__detail-list {
  margin: 0 0 0.65rem;
  padding-left: 1rem;
  font-size: 0.84rem;
  color: rgba(252, 252, 251, 0.82);
  line-height: 1.45;
}

.offer__detail-list li + li {
  margin-top: 0.3rem;
}

.offer__detail-note {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: rgba(252, 252, 251, 0.58);
  line-height: 1.4;
}

.offer__detail-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
}

@media (hover: hover) and (pointer: fine) {
  .offer--interactive:hover:not(.is-open) .offer__hover,
  .offer--interactive:focus-within:not(.is-open) .offer__hover {
    opacity: 1;
    visibility: visible;
  }
}

.offer--interactive.is-open .offer__detail {
  opacity: 1;
  visibility: visible;
}

.offer--interactive.is-open .offer__hover {
  opacity: 0;
  visibility: hidden;
}

.note {
  margin: 1.25rem 0 0;
  color: rgba(252, 252, 251, 0.65);
}

.cert__title {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.cert__copy {
  margin: 0.65rem 0 1rem;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.cta {
  margin-top: 1.35rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(201, 255, 74, 0.12), rgba(255, 43, 43, 0.12));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta__title {
  margin: 0;
  font-size: 1.15rem;
}

.cta__copy {
  margin: 0.35rem 0 0;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.55;
}

.media-card {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
}

.media-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.media-card__title {
  margin: 0;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.media-card__sub {
  margin: 0;
  color: rgba(252, 252, 251, 0.62);
  font-size: 0.95rem;
}

.media-card__bottom {
  margin-top: 0.85rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.link {
  text-decoration: none;
  color: rgba(252, 252, 251, 0.9);
  font-weight: 650;
}

.link:hover {
  color: #fff;
}

.video {
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.ph__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 20%, rgba(201, 255, 74, 0.75), rgba(255, 43, 43, 0.35));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}

.ph__icon::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 0;
  height: 0;
  border-left: 14px solid rgba(10, 10, 12, 0.88);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.ph__text {
  margin: 0.85rem 0 0;
  color: rgba(252, 252, 251, 0.72);
  text-align: center;
  line-height: 1.45;
}

.quotes {
  padding: 1.1rem;
  display: grid;
  gap: 0.9rem;
}

.quote {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.quote blockquote {
  margin: 0;
  color: rgba(252, 252, 251, 0.9);
  line-height: 1.55;
}

.quote figcaption {
  margin-top: 0.6rem;
  color: rgba(252, 252, 251, 0.6);
  font-size: 0.95rem;
}

.contact,
.map {
  padding: 1.1rem;
  border-radius: var(--radius-lg);
}

.contact__list {
  margin: 0 0 1.1rem;
}

.contact__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.6rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__row:last-child {
  border-bottom: 0;
}

.contact dt {
  color: rgba(252, 252, 251, 0.7);
  font-weight: 650;
}

.contact dd {
  margin: 0;
  display: grid;
  gap: 0.25rem;
  color: rgba(252, 252, 251, 0.88);
}

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

.gallery {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

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

.map__inner {
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.map__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.88));
  color: rgba(252, 252, 251, 0.88);
  font-size: 0.92rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq__item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.2rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.faq__item summary::after {
  content: "+";
  float: right;
  color: rgba(252, 252, 251, 0.7);
}

.faq__item[open] summary::after {
  content: "—";
}

.faq__body {
  padding: 0 1rem 1rem;
  color: rgba(252, 252, 251, 0.72);
  line-height: 1.6;
}

.footer {
  padding: 2.25rem 0 3rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 2rem 1.5rem;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  opacity: 0.95;
}

.footer__copy {
  margin: 0.65rem 0 0;
  color: rgba(252, 252, 251, 0.58);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.footer__links a {
  text-decoration: none;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  color: rgba(252, 252, 251, 0.78);
  border: 1px solid transparent;
}

.footer__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.footer__meta {
  display: grid;
  gap: 1.25rem;
}

.footer__heading {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 252, 251, 0.55);
}

.footer__contact {
  display: grid;
  gap: 0.35rem;
}

.footer__contact a {
  color: rgba(252, 252, 251, 0.85);
  text-decoration: none;
}

.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: var(--accent);
}

.footer__contact span {
  color: rgba(252, 252, 251, 0.78);
  font-size: 0.92rem;
}

.contact__note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: rgba(252, 252, 251, 0.58);
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(252, 252, 251, 0.9);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social__link svg {
  width: 1.15rem;
  height: 1.15rem;
}

.social__link:hover,
.social__link:focus-visible {
  background: rgba(201, 255, 74, 0.12);
  border-color: rgba(201, 255, 74, 0.35);
  color: var(--accent);
  transform: translateY(-1px);
}

.float-widgets {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.booking-widget {
  position: relative;
}

.booking-widget__fab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem 0.65rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 255, 74, 0.4);
  background: linear-gradient(135deg, rgba(201, 255, 74, 0.22), rgba(10, 10, 12, 0.88));
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.booking-widget__fab:hover,
.booking-widget__fab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 255, 74, 0.65);
  background: linear-gradient(135deg, rgba(201, 255, 74, 0.32), rgba(10, 10, 12, 0.9));
}

.booking-widget__fab-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
}

.booking-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(18.5rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 12, 0.94);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}

.booking-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.booking-panel__title {
  margin: 0;
  font-size: 1.05rem;
}

.booking-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(252, 252, 251, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.booking-panel__sub {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(252, 252, 251, 0.68);
  line-height: 1.45;
}

.booking-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.booking-cal__month {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-cal__nav-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.booking-cal__weekdays,
.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.booking-cal__weekdays {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  color: rgba(252, 252, 251, 0.55);
  text-align: center;
}

.booking-cal__day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(252, 252, 251, 0.9);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.booking-cal__day:hover:not(.is-disabled):not(.booking-cal__day--empty) {
  border-color: rgba(201, 255, 74, 0.35);
  background: rgba(201, 255, 74, 0.1);
}

.booking-cal__day.is-selected {
  background: var(--accent);
  color: #0a0a0c;
  border-color: rgba(201, 255, 74, 0.75);
}

.booking-cal__day.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-cal__day--empty {
  background: transparent;
  pointer-events: none;
}

.booking-times {
  margin-top: 0.85rem;
}

.booking-times__label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 252, 251, 0.55);
}

.booking-times__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

.booking-times__slot {
  padding: 0.45rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(252, 252, 251, 0.88);
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.booking-times__slot.is-selected {
  background: rgba(201, 255, 74, 0.18);
  border-color: rgba(201, 255, 74, 0.45);
  color: #fff;
}

.booking-panel__cta {
  width: 100%;
  margin-top: 0.85rem;
  justify-content: center;
  text-align: center;
}

.back-to-top {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 255, 74, 0.35);
  background: rgba(10, 10, 12, 0.82);
  color: var(--accent);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(201, 255, 74, 0.14);
  color: #fff;
}

.back-to-top__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 60rem) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 42rem) {
  .wrap {
    width: min(100% - 1.6rem, var(--max));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    margin: 0.8rem auto 0;
    width: min(100% - 1.6rem, var(--max));
    padding: 0.9rem;
    background: rgba(10, 10, 12, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 0.95rem;
  }

  .hero__badges {
    grid-template-columns: 1fr;
  }

  .feature-list,
  .package-grid,
  .grid--3,
  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .float-widgets {
    right: 1rem;
    bottom: 1rem;
  }

  .booking-panel {
    width: min(17rem, calc(100vw - 2rem));
  }

  .contact__row {
    grid-template-columns: 1fr;
  }

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

  .package__featured-grid {
    grid-template-columns: 1fr;
  }

  .package__list--cols {
    columns: 1;
  }

  .video-bg {
    height: 100svh;
    height: 100dvh;
    min-height: -webkit-fill-available;
  }

  .video-bg__iframe {
    width: max(100vw, 177.78dvh);
    height: max(100dvh, 56.25vw);
    min-width: 0;
    min-height: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-bg {
    display: none;
  }

  .coming-soon-ribbon__band {
    animation: none;
  }

  .coming-soon-ribbon__track {
    animation: none;
  }
}
