:root {
  --bg: #090909;
  --bg-deep: #030303;
  --panel: #101010;
  --panel-soft: #171717;
  --text: #ffffff;
  --muted: #c8c8c8;
  --gold: #c99a45;
  --gold-light: #f0c875;
  --electric-blue: #28b8ff;
  --blue-soft: rgba(40, 184, 255, 0.16);
  --green: #25d366;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Assistant", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible,
[tabindex]:focus-visible {
  outline: 4px solid #ffffff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(201, 154, 69, 0.72), 0 0 22px rgba(40, 184, 255, 0.32);
}

button,
a {
  min-width: 44px;
  min-height: 44px;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--gold);
  color: #101010;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

body.a11y-large-text {
  font-size: 22px;
}

body.a11y-readable-font {
  font-family: Arial, "Assistant", sans-serif;
  letter-spacing: 0;
  word-spacing: 0.08em;
}

body.a11y-underline-links a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.a11y-high-contrast {
  --bg: #000000;
  --bg-deep: #000000;
  --panel: #000000;
  --panel-soft: #000000;
  --text: #ffffff;
  --muted: #ffffff;
  --gold: #ffe066;
  --gold-light: #fff2a8;
  --line: rgba(255, 255, 255, 0.75);
}

body.a11y-high-contrast img,
body.a11y-high-contrast iframe {
  filter: contrast(1.12) brightness(1.02);
}

body.a11y-high-contrast .lightbox-frame img {
  filter: none !important;
}

body.a11y-high-contrast .hero-overlay,
body.a11y-high-contrast .attractions-bg,
body.a11y-high-contrast .attractions-bg::before,
body.a11y-high-contrast .attractions-bg::after {
  background: rgba(0, 0, 0, 0.88);
}

body.a11y-high-contrast .btn-gold,
body.a11y-high-contrast .recommend-name {
  color: #000000;
  background: #fff2a8;
}

body.a11y-reduced-motion *,
body.a11y-reduced-motion *::before,
body.a11y-reduced-motion *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block-start: 18px;
  transition: transform 280ms ease;
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 22px;
  background: rgba(5, 5, 5, 0.72);
  border-radius: var(--radius-lg);
  border-block-end: 1px solid rgba(201, 154, 69, 0.42);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 24px rgba(40, 184, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 117, 0.65);
  box-shadow: 0 0 22px rgba(201, 154, 69, 0.35), 0 0 18px rgba(40, 184, 255, 0.16);
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 800;
}

.site-menu a {
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #eeeeee;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, background 180ms ease;
}

.site-menu a:first-child {
  border-inline-start: 0;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--gold-light);
  background: rgba(201, 154, 69, 0.09);
  border-radius: var(--radius-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
}

.site-menu a:first-child {
  border-start-start-radius: var(--radius-lg);
  border-end-start-radius: var(--radius-lg);
}

.site-menu a:last-child {
  border-start-end-radius: var(--radius-lg);
  border-end-end-radius: var(--radius-lg);
}

.social-link,
.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--gold-light);
  border: 1px solid rgba(240, 200, 117, 0.42);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.phone-link {
  color: var(--gold-light);
  direction: ltr;
}

.instagram-link {
  width: 46px;
  padding: 0;
}

.instagram-link svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 8px rgba(214, 36, 159, 0.38));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 78px;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 32%, rgba(40, 184, 255, 0.16), transparent 26%),
    radial-gradient(circle at 24% 30%, rgba(201, 154, 69, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58) 47%, rgba(0, 0, 0, 0.78)),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0.06) 46%, rgba(0, 0, 0, 0.76) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 180px;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 18px;
  text-shadow: 0 0 16px rgba(40, 184, 255, 0.16);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.78), 0 0 22px rgba(40, 184, 255, 0.1);
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.03;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.hero-lead {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: #eeeeee;
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 600;
}

.hero-buttons,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(201, 154, 69, 0.22), 0 0 22px rgba(40, 184, 255, 0.1);
}

.btn-dark {
  color: #ffffff;
  border-color: rgba(40, 184, 255, 0.34);
  background: linear-gradient(180deg, rgba(40, 184, 255, 0.08), rgba(0, 0, 0, 0.38));
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(240, 200, 117, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.92), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 100% 12%, rgba(40, 184, 255, 0.14), transparent 34%),
    radial-gradient(circle at 50% 0, rgba(201, 154, 69, 0.2), transparent 36%);
  box-shadow: var(--shadow), 0 0 26px rgba(40, 184, 255, 0.1);
  text-align: center;
}

.hero-card img {
  width: 118px;
  height: 118px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240, 200, 117, 0.6);
}

.hero-card h2 {
  font-size: 30px;
}

.hero-card p {
  color: var(--muted);
}

.event-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 22px;
}

.event-pills span {
  padding: 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
}

.gold-strip {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  height: 69px;
  border-radius: var(--radius-lg);
  margin-inline: max(16px, calc((100vw - 1240px) / 2));
  border-block: 1px solid rgba(201, 154, 69, 0.34);
  background: #0d0d0d;
}

.strip-track {
  position: absolute;
  inset-block: 0;
  left: -44px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.strip-track span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(240, 200, 117, 0.32);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 900;
  background: rgba(201, 154, 69, 0.08);
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 44px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 154, 69, 0.16), transparent 32%),
    linear-gradient(180deg, #070707, #111111);
  border-block-end: 1px solid rgba(240, 200, 117, 0.18);
}

.featured-video-copy {
  max-width: 720px;
}

.featured-video-copy p:not(.kicker) {
  width: min(640px, 100%);
  color: var(--muted);
  font-size: clamp(20px, 2.6vw, 29px);
  font-weight: 700;
}

.featured-video-copy .btn {
  margin-block-start: 14px;
}

.youtube-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 117, 0.42);
  border-radius: var(--radius-lg);
  background: #000000;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.56),
    0 0 44px rgba(201, 154, 69, 0.12);
}

.youtube-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  z-index: 2;
}

.youtube-frame iframe {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  border: 0;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.reasons {
  background:
    radial-gradient(circle at 86% 18%, rgba(40, 184, 255, 0.1), transparent 28%),
    radial-gradient(circle at 15% 10%, rgba(201, 154, 69, 0.12), transparent 30%),
    var(--bg);
}

.reason-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.reason-column {
  display: grid;
  gap: 18px;
}

.reason-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 100% 0, rgba(40, 184, 255, 0.08), transparent 42%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 200, 117, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), 0 0 22px rgba(40, 184, 255, 0.1);
}

.reason-card p {
  margin-block-end: 0;
  color: var(--muted);
}

.reason-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-block-end: 16px;
  color: var(--gold-light);
  border: 1px solid rgba(240, 200, 117, 0.38);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(201, 154, 69, 0.1), rgba(40, 184, 255, 0.08));
  box-shadow: 0 0 18px rgba(40, 184, 255, 0.1);
  font-size: 24px;
}

.equalizer {
  grid-template-columns: repeat(3, 5px);
  gap: 4px;
}

.equalizer i {
  width: 5px;
  height: 24px;
  background: currentColor;
  animation: meter 900ms ease-in-out infinite;
}

.equalizer i:nth-child(2) {
  animation-delay: -150ms;
}

.equalizer i:nth-child(3) {
  animation-delay: -300ms;
}

.center-image {
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 117, 0.34);
  border-radius: var(--radius-xl);
  background: #050505;
  box-shadow: var(--shadow);
}

.center-image img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  transition: transform 600ms ease;
}

.center-image:hover img {
  transform: scale(1.04);
}

.attractions {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 76px;
  background: #050505;
}

.attractions-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 24%, rgba(225, 179, 84, 0.24), transparent 27%),
    radial-gradient(circle at 82% 18%, rgba(0, 160, 255, 0.18), transparent 29%),
    radial-gradient(circle at 50% 100%, rgba(225, 179, 84, 0.16), transparent 38%),
    linear-gradient(115deg, #020202 0%, #101010 48%, #050505 100%);
}

.attractions-bg::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(240, 200, 117, 0.45) 1px, transparent 2px),
    radial-gradient(circle, rgba(56, 184, 255, 0.28) 1px, transparent 3px);
  background-size: 34px 34px, 58px 58px;
  transform: perspective(600px) rotateX(58deg) translateY(70px);
  transform-origin: center;
  animation: lightField 18s linear infinite;
}

.attractions-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 28%, rgba(0, 0, 0, 0.54)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), transparent 36%, rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.7), transparent 36%);
}

.attractions-heading {
  width: min(920px, 100%);
  margin: 0 auto 50px;
  text-align: center;
}

.attractions-heading h2 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.46);
}

.attractions-heading p {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: var(--gold-light);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.attractions-heading p::first-line {
  color: #f6f6f6;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px 34px;
  align-items: start;
}

.attraction-item {
  text-align: center;
}

.attraction-item img {
  width: min(210px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(240, 200, 117, 0.48);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(225, 179, 84, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.attraction-item:hover img {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.52),
    0 0 0 2px rgba(240, 200, 117, 0.6),
    0 0 36px rgba(56, 184, 255, 0.2);
}

.attraction-item h3 {
  margin-block-start: 24px;
  color: #f8f4eb;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58), 0 0 18px rgba(225, 179, 84, 0.18);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background: #0f0f0f;
}

.about-image {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #050505;
}

.about-image img {
  border-radius: inherit;
  width: 100%;
  height: 460px;
  object-fit: contain;
}

.about-copy p {
  color: var(--muted);
}

.read-more {
  display: inline-flex;
  margin-block-start: 12px;
  color: var(--gold-light);
  font-weight: 900;
}

.read-more::after {
  content: " >";
  padding-inline-start: 5px;
}

.reviews {
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.9)),
    url("assets/category-party.webp") center / cover fixed;
}

.review-slider,
.gallery-carousel {
  position: relative;
  width: min(1120px, 100%);
  margin-inline: auto;
}

.slides {
  position: relative;
  min-height: 500px;
}

.review-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  padding: 42px 74px;
  text-align: center;
  border: 1px solid rgba(240, 200, 117, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(6, 6, 6, 0.84);
  box-shadow: var(--shadow);
  transform: translateX(-28px);
  transition: opacity 340ms ease, visibility 340ms ease, transform 340ms ease;
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.stars {
  color: var(--gold-light);
  font-size: 24px;
  letter-spacing: 2px;
}

.review-slide p {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.55;
}

.review-slide strong {
  color: var(--gold-light);
}

.slider-btn {
  position: absolute;
  inset-block-start: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 225, 154, 0.74);
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow:
    0 14px 34px rgba(201, 154, 69, 0.32),
    0 6px 18px rgba(0, 0, 0, 0.42);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  isolation: isolate;
}

.slider-btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background: #070707;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.slider-btn:hover {
  background: linear-gradient(180deg, #ffe09a, var(--gold));
}

.slider-btn.prev {
  inset-inline: auto;
  right: -20px;
}

.slider-btn.next {
  inset-inline: auto;
  left: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-block-start: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.slider-dots button.active {
  width: 30px;
  background: var(--gold-light);
}

.recommendation-wall {
  background:
    linear-gradient(180deg, #080808, #111111 48%, #080808),
    radial-gradient(circle at 50% 0, rgba(201, 154, 69, 0.13), transparent 34%);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.recommend-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 117, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(7, 7, 7, 0.98)),
    radial-gradient(circle at 50% 0, rgba(201, 154, 69, 0.16), transparent 38%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.recommend-card img {
  width: calc(100% - 28px);
  height: 210px;
  margin: 78px 14px 0;
  object-fit: cover;
  border: 1px solid rgba(240, 200, 117, 0.25);
  border-radius: var(--radius-md);
  filter: saturate(0.95) contrast(1.05);
}

.recommend-name {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 26px;
  font-weight: 900;
}

.recommend-name i {
  width: 38px;
  height: 38px;
  position: relative;
  display: inline-block;
  border: 3px solid rgba(17, 17, 17, 0.86);
  border-radius: 50%;
}

.recommend-name i::before,
.recommend-name i::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(17, 17, 17, 0.86);
}

.recommend-name i::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  inset-inline: 7px;
  inset-block-start: 5px;
}

.recommend-name i::after {
  width: 30px;
  height: 14px;
  border-top: 0;
  border-radius: 0 0 20px 20px;
  inset-inline: 1px;
  inset-block-end: -7px;
}

.recommend-card p {
  flex: 1;
  margin: 0;
  padding: 22px 20px 38px;
  color: #e9e2d6;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
}

.gallery {
  background: var(--bg);
}

.gallery-grid {
  width: min(1360px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  aspect-ratio: 1.35 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 117, 0.22);
  border-radius: 22px;
  background: #000000;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.gallery-grid figure:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.12);
}

.gallery-rows {
  display: grid;
  gap: 18px;
}

.gallery-row {
  position: relative;
}

.gallery-row-track,
.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.gallery-row-track::-webkit-scrollbar,
.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-row-track figure,
.gallery-track figure {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(240, 200, 117, 0.24);
  border-radius: var(--radius-lg);
  background: #000000;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  scroll-snap-align: start;
}

.gallery-row-track figure:focus-visible,
.gallery-track figure:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.gallery-row-track img,
.gallery-track img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-row-track figure:hover img,
.gallery-track figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 154, 69, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(18px);
  -webkit-tap-highlight-color: transparent;
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  position: relative;
  width: min(980px, 100%);
  max-height: min(84vh, 780px);
  margin: 0;
  display: grid;
  gap: 12px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(240, 200, 117, 0.24);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.94), rgba(3, 3, 3, 0.94)),
    radial-gradient(circle at 50% 0, rgba(240, 200, 117, 0.12), transparent 42%);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.74),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lightbox-frame img {
  max-width: 100%;
  max-height: 76vh;
  border: 1px solid rgba(240, 200, 117, 0.34);
  border-radius: 26px;
  object-fit: contain;
  background: #000000;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.58);
  filter: none !important;
  mix-blend-mode: normal;
  opacity: 1;
  user-select: none;
}

.lightbox-frame figcaption {
  position: absolute;
  inset-block-end: 24px;
  inset-inline: auto;
  min-width: 72px;
  padding: 8px 16px;
  border: 1px solid rgba(240, 200, 117, 0.3);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 225, 154, 0.74);
  border-radius: 50%;
  color: var(--gold-light);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow:
    0 18px 42px rgba(201, 154, 69, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
  isolation: isolate;
}

.lightbox-close::before,
.lightbox-arrow::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: inherit;
  background: #070707;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  transform: scale(1.06);
  background: rgba(201, 154, 69, 0.2);
}

.lightbox-close {
  inset-block-start: 24px;
  inset-inline-end: 24px;
  width: 50px;
  height: 50px;
  font-size: 36px;
  line-height: 1;
}

.lightbox-arrow {
  inset-block-start: 50%;
  width: 60px;
  height: 60px;
  font-size: 44px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  inset-inline: auto;
  right: 24px;
}

.lightbox-next {
  inset-inline: auto;
  left: 24px;
}

.cta-footer {
  padding: 100px 24px;
  background:
    radial-gradient(circle at 76% 40%, rgba(40, 184, 255, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.52)),
    url("assets/category-events.jpeg") center / cover;
}

.cta-inner {
  width: min(860px, 100%);
  margin-inline: auto;
  text-align: center;
}

.cta-inner p {
  color: #eeeeee;
}

.cta-actions {
  justify-content: center;
}

.accessibility-statement {
  padding: 88px max(24px, calc((100vw - 980px) / 2));
  background:
    radial-gradient(circle at 12% 15%, rgba(40, 184, 255, 0.08), transparent 28%),
    #0d0d0d;
  border-block-start: 1px solid rgba(240, 200, 117, 0.2);
}

.accessibility-statement-inner {
  padding: 34px;
  border: 1px solid rgba(240, 200, 117, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.accessibility-statement h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.accessibility-statement p,
.accessibility-statement li {
  color: var(--muted);
}

.accessibility-statement ul {
  margin: 22px 0;
  padding-inline-start: 26px;
}

.accessibility-statement a {
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.statement-date {
  margin-block-end: 0;
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  background: #000000;
  border-block-start: 1px solid rgba(240, 200, 117, 0.24);
}

.site-footer nav a {
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #dddddd;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.accessibility-widget {
  position: fixed;
  inset-inline-end: 18px;
  inset-block-end: 22px;
  z-index: 1300;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.accessibility-toggle {
  min-width: 96px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(240, 200, 117, 0.7);
  border-radius: 999px;
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.accessibility-panel {
  width: min(300px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(240, 200, 117, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: var(--shadow);
}

.accessibility-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.accessibility-panel button,
.accessibility-panel a {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-start: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  cursor: pointer;
}

.accessibility-panel button[aria-pressed="true"] {
  color: #111111;
  background: var(--gold-light);
}

.back-to-top {
  position: fixed;
  inset-inline-end: 38px;
  inset-block-end: 88px;
  z-index: 1290;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(201, 154, 69, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.05);
  box-shadow: 0 22px 52px rgba(201, 154, 69, 0.46);
}

.back-to-top svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  inset-inline-start: 22px;
  inset-block-end: 22px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 48px rgba(201, 154, 69, 0.42);
  animation: pulse 1900ms ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.call-float {
  position: fixed;
  inset-inline-start: 22px;
  inset-block-end: 96px;
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #111111;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 18px 48px rgba(201, 154, 69, 0.36);
  animation: pulse 2100ms ease-in-out infinite;
}

.call-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

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

@keyframes meter {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1.42); }
}

@keyframes lightField {
  from { background-position: 0 0, 0 0; }
  to { background-position: 220px 130px, -190px 210px; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    inset-block-start: 104px;
    inset-inline: 16px;
    display: grid;
    justify-content: stretch;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(240, 200, 117, 0.28);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .menu-open .site-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-menu a {
    min-height: 54px;
    border-radius: var(--radius-sm);
    border-inline-start: 0;
    border-block-end: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-actions {
    justify-self: end;
  }

  .hero-inner,
  .reason-layout,
  .about,
  .featured-video {
    grid-template-columns: 1fr;
  }

  .youtube-frame {
    width: min(390px, 100%);
    margin-inline: auto;
  }

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

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

  .gallery-row-track,
  .gallery-track {
    grid-auto-columns: calc((100% - 28px) / 3);
    gap: 14px;
  }

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

  .center-image,
  .center-image img {
    min-height: 440px;
    height: 440px;
  }

  .reason-layout {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  .site-header {
    padding-block-start: 10px;
  }

  .header-inner {
    width: calc(100% - 20px);
    height: 68px;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .phone-link {
    display: none;
  }

  .social-link {
    min-width: 40px;
    padding-inline: 8px;
  }

  .site-menu {
    inset-block-start: 88px;
    inset-inline: 10px;
  }

  .strip-track {
    position: static;
    width: 100%;
    animation: none;
  }

  .hero {
    min-height: auto;
    padding-block: 118px 58px;
  }

  h1 {
    font-size: clamp(28px, 9.4vw, 42px);
    line-height: 1.16;
    font-weight: 800;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
  }

  .hero-card {
    padding: 24px;
  }

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

  .section {
    padding-block: 68px;
  }

  .attractions {
    padding-block: 68px 58px;
  }

  .featured-video {
    padding-block: 68px;
    gap: 28px;
  }

  .featured-video-copy .btn {
    width: 100%;
  }

  .attractions-heading {
    margin-block-end: 34px;
  }

  .attraction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .attraction-item img {
    width: min(150px, 100%);
  }

  .attraction-item h3 {
    margin-block-start: 16px;
    font-size: 26px;
  }

  .reason-card {
    min-height: auto;
  }

  .center-image,
  .center-image img {
    min-height: 360px;
    height: 360px;
  }

  .about-image,
  .about-image img {
    min-height: 300px;
    height: 300px;
  }

  .review-slide {
    padding: 34px 24px;
  }

  .review-slider .slides {
    min-height: 620px;
  }

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

  .gallery-grid figure {
    border-radius: 16px;
  }

  .gallery-row-track,
  .gallery-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

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

  .recommend-card {
    min-height: auto;
  }

  .recommend-card img {
    height: 205px;
    margin-block-start: 42px;
  }

  .recommend-name {
    font-size: 23px;
  }

  .slider-btn.prev {
    inset-inline: auto;
    right: 8px;
  }

  .slider-btn.next {
    inset-inline: auto;
    left: 8px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .lightbox-frame {
    padding: 8px;
    border-radius: 24px;
  }

  .lightbox-frame img {
    max-height: 72vh;
    border-radius: 18px;
  }

  .lightbox-frame figcaption {
    inset-block-end: 14px;
  }

  .lightbox-close {
    inset-block-start: 14px;
    inset-inline-end: 14px;
    width: 46px;
    height: 46px;
    font-size: 36px;
  }

  .lightbox-arrow {
    width: 48px;
    height: 48px;
    font-size: 38px;
  }

  .lightbox-prev {
    inset-inline: auto;
    right: 12px;
  }

  .lightbox-next {
    inset-inline: auto;
    left: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .accessibility-statement {
    padding-block: 62px;
  }

  .accessibility-statement-inner {
    padding: 24px;
  }

  .accessibility-widget {
    inset-inline-end: 12px;
    inset-block-end: 84px;
  }

  .back-to-top {
    width: 52px;
    height: 52px;
    inset-inline-end: 34px;
    inset-block-end: 150px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    inset-inline-start: 16px;
    inset-block-end: 16px;
  }

  .call-float {
    width: 56px;
    height: 56px;
    inset-inline-start: 16px;
    inset-block-end: 82px;
  }
}
