:root {
  --blue-900: #0c4a82;
  --blue-800: #0f5d9f;
  --blue-700: #1374be;
  --blue-600: #1d96dd;
  --blue-500: #41b8ee;
  --blue-100: #e8f8ff;
  --yellow-500: #ffd400;
  --yellow-400: #ffe451;
  --yellow-100: #fff7bf;
  --white: #ffffff;
  --ink-900: #12304f;
  --ink-700: #36526f;
  --ink-500: #62809c;
  --surface: #f7fbff;
  --shadow-soft: 0 22px 60px rgba(9, 63, 109, 0.14);
  --shadow-strong: 0 24px 70px rgba(2, 45, 79, 0.26);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --nav-height: 78px;
  --transition: 280ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
}

body.poster-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  background:
    radial-gradient(circle at 12% 20%, rgba(29, 150, 221, 0.08), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(255, 212, 0, 0.12), transparent 14%),
    radial-gradient(circle at 80% 75%, rgba(65, 184, 238, 0.1), transparent 15%);
}

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

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

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

button {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.top-strip {
  background: linear-gradient(180deg, #0a4b84 0%, #1365aa 100%);
  color: rgba(255, 255, 255, 0.96);
}

.top-strip-grid {
  display: grid;
  gap: 0.6rem;
  padding: 0.65rem 0 0.8rem;
}

.top-strip p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  font-size: 0.9rem;
}

.top-strip span:first-child {
  color: var(--yellow-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.separator {
  opacity: 0.55;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex-shrink: 0;
}

.icon-inline {
  width: 1.05rem;
  height: 1.05rem;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 0.7rem 0 0.85rem;
  background: linear-gradient(180deg, rgba(10, 75, 132, 0.74), rgba(10, 75, 132, 0));
  transition: padding var(--transition), background-color var(--transition);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-height);
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 50px rgba(5, 58, 102, 0.18);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled .nav-shell {
  box-shadow: 0 18px 48px rgba(3, 44, 82, 0.28);
  border-color: rgba(255, 212, 0, 0.56);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(19, 116, 190, 0.1);
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink-700);
}

.brand-copy strong {
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-900);
}

.brand-copy span {
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.34rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 212, 0, 0.28);
}

.menu-toggle span {
  width: 1.15rem;
  height: 0.16rem;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--blue-900);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.site-nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

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

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--blue-900);
  font-weight: 700;
  text-align: center;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(19, 116, 190, 0.08);
  transform: translateY(-1px);
}

.site-nav a.is-current {
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  box-shadow: 0 12px 24px rgba(255, 212, 0, 0.28);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition);
}

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

.button-primary {
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  box-shadow: 0 14px 28px rgba(255, 212, 0, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(255, 212, 0, 0.4);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-small {
  min-height: 2.9rem;
  padding-inline: 1.15rem;
}

.nav-cta {
  color: var(--blue-900) !important;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 2.3rem 0 2.4rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 212, 0, 0.15), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 15%),
    linear-gradient(180deg, #0c4a82 0%, #09548f 42%, #0764a9 100%);
  color: var(--white);
  isolation: isolate;
}

.hero-background,
.hero-overlay,
.hero-bubbles {
  position: absolute;
  inset: 0;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 51, 92, 0.28), rgba(7, 79, 135, 0.7)),
    linear-gradient(90deg, rgba(4, 33, 64, 0.55), rgba(4, 33, 64, 0.12) 40%, rgba(4, 33, 64, 0.55));
}

.hero-bubbles {
  background:
    radial-gradient(circle at 12% 62%, rgba(255, 255, 255, 0.12), transparent 9%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.1), transparent 7%),
    radial-gradient(circle at 90% 28%, rgba(255, 212, 0, 0.18), transparent 10%);
}

.hero-grid,
.hero-ribbon,
.about-grid,
.splash-grid,
.footer-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.hero-core {
  order: -1;
  text-align: center;
}

.hero-logo-badge {
  width: min(9rem, 34vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 1), rgba(238, 249, 255, 0.96));
  border: 6px solid rgba(255, 212, 0, 0.9);
  box-shadow:
    0 18px 36px rgba(0, 26, 49, 0.26),
    0 0 0 8px rgba(255, 255, 255, 0.08);
}

.hero-logo {
  width: 72%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 23, 46, 0.18));
}

.hero-eyebrow {
  color: var(--yellow-500);
}

.hero h1,
.ticket-board h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(3.35rem, 11vw, 7.6rem);
  line-height: 0.9;
  text-shadow: 0 12px 40px rgba(0, 18, 34, 0.3);
}

.hero-description {
  width: min(100%, 40rem);
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.hero-chip-row span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.ticket-board {
  width: min(100%, 25rem);
  margin: 1.5rem auto 0;
  padding: 1.2rem 1.15rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(4, 37, 67, 0.86), rgba(4, 49, 86, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 2px solid rgba(255, 212, 0, 0.52);
  box-shadow: var(--shadow-strong);
}

.ticket-kicker {
  margin: 0;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticket-board h2 {
  margin-top: 0.2rem;
  color: var(--white);
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  line-height: 0.95;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: left;
}

.ticket-row span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.ticket-row strong {
  color: var(--yellow-500);
  font-size: 1rem;
  font-weight: 800;
}

.ticket-note {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.hero-poster {
  width: min(100%, 18rem);
  margin: 0 auto;
}

.poster-card {
  --poster-rotate: -3deg;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 4px solid rgba(255, 212, 0, 0.88);
  box-shadow: var(--shadow-strong);
  transform: rotate(var(--poster-rotate));
  animation: floaty 5.6s ease-in-out infinite;
}

.hero-poster-right .poster-card {
  --poster-rotate: 3deg;
  animation-delay: 1.2s;
}

.poster-card-alt {
  border-color: rgba(255, 255, 255, 0.75);
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-ribbon {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-ribbon article,
.about-stat,
.attraction-card,
.highlight-card,
.splash-points article {
  box-shadow: var(--shadow-soft);
}

.hero-ribbon article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--blue-900);
}

.hero-ribbon strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-ribbon span {
  color: var(--ink-700);
  font-size: 0.94rem;
}

.section-wave {
  position: relative;
  height: 58px;
  overflow: hidden;
}

.section-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 240px 58px;
}

.wave-blue-yellow {
  background: var(--yellow-500);
}

.wave-blue-yellow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 58' preserveAspectRatio='none'%3E%3Cpath fill='%230764a9' d='M0 18C20 2 40 2 60 18s40 16 60 0 40-16 60 0 40 16 60 0v40H0z'/%3E%3C/svg%3E");
}

.wave-yellow-white {
  background: var(--white);
}

.wave-yellow-white::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 58' preserveAspectRatio='none'%3E%3Cpath fill='%23ffd400' d='M0 18C20 2 40 2 60 18s40 16 60 0 40-16 60 0 40 16 60 0v40H0z'/%3E%3C/svg%3E");
}

.wave-white-blue {
  background: linear-gradient(180deg, #0f5d9f, #0b5a98);
}

.wave-white-blue::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 58' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 18C20 2 40 2 60 18s40 16 60 0 40-16 60 0 40 16 60 0v40H0z'/%3E%3C/svg%3E");
}

.wave-blue-white {
  background: var(--white);
}

.wave-blue-white::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 58' preserveAspectRatio='none'%3E%3Cpath fill='%230f5d9f' d='M0 18C20 2 40 2 60 18s40 16 60 0 40-16 60 0 40 16 60 0v40H0z'/%3E%3C/svg%3E");
}

.wave-white-sky {
  background: linear-gradient(180deg, #eff9ff 0%, #cfeeff 100%);
}

.wave-white-sky::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 58' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 18C20 2 40 2 60 18s40 16 60 0 40-16 60 0 40 16 60 0v40H0z'/%3E%3C/svg%3E");
}

.about-section,
.attractions-section,
.visitor-section,
.highlights-section,
.splash-section {
  padding: 1rem 0 5rem;
}

.about-section {
  background: linear-gradient(180deg, var(--yellow-500), #ffdd1e 100%);
}

.about-grid,
.splash-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-copy h2,
.section-heading h2,
.visitor-heading h2,
.splash-copy h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.98;
  color: var(--blue-900);
}

.about-copy p,
.section-heading p,
.splash-copy p {
  margin: 1rem 0 0;
  color: var(--ink-700);
}

.about-stat-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.about-stat {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
}

.about-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.06rem;
  color: var(--blue-900);
}

.about-stat span {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-strong);
  background: #082a46;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #082a46;
}

.video-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(12, 74, 130, 0.92);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.attractions-section,
.highlights-section {
  background: var(--white);
}

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

.attraction-grid,
.highlight-grid {
  display: grid;
  gap: 1rem;
}

.gallery-section {
  background: linear-gradient(180deg, #0f5d9f, #0b5a98);
  padding: 4rem 0 5rem;
  color: var(--white);
}

.gallery-section .eyebrow {
  color: var(--yellow-400);
}

.gallery-section h2 {
  color: var(--white);
}

.gallery-section p {
  color: rgba(255, 255, 255, 0.85);
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #082a46;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-strong);
  transition: transform var(--transition), border-color var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow-400);
}

.gallery-card video,
.gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.attraction-card,
.highlight-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(19, 116, 190, 0.12);
}

.attraction-card img,
.highlight-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.attraction-copy,
.highlight-copy {
  padding: 1rem 1rem 1.15rem;
}

.attraction-copy h3,
.highlight-copy h3,
.testimonial-copy h3,
.site-footer h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--blue-900);
}

.attraction-copy p,
.highlight-copy p,
.testimonial-copy p {
  margin: 0.55rem 0 0;
  color: var(--ink-700);
}

.visitor-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 88% 24%, rgba(255, 212, 0, 0.18), transparent 12%),
    linear-gradient(180deg, #0f5d9f 0%, #0b4e89 100%);
  color: var(--white);
}

.visitor-shell {
  padding: 2rem 1rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.visitor-heading {
  text-align: center;
}

.visitor-eyebrow {
  color: var(--yellow-500);
}

.visitor-heading h2 {
  color: var(--white);
}

.testimonial-slider {
  margin-top: 1.6rem;
}

.testimonial-slide {
  display: none;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
}

.testimonial-slide.is-active {
  display: grid;
}

.testimonial-avatar {
  width: min(100%, 12rem);
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(8, 50, 86, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Emoji Avatar Stickers */
.avatar-sticker {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  border-radius: 50%;
  animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.avatar-family {
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}

.avatar-group {
  background: linear-gradient(135deg, #1374be 0%, #0a4f8a 100%);
}

.avatar-weekend {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

.testimonial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.testimonial-tags span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(12, 74, 130, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.testimonial-dot {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.testimonial-dot.is-active {
  transform: scale(1.15);
  background: var(--yellow-500);
}

.splash-section {
  background: linear-gradient(180deg, #eff9ff 0%, #d7f0ff 100%);
}

.splash-copy p {
  max-width: 42rem;
}

.splash-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.splash-points article {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
}

.splash-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue-900);
  font-size: 1rem;
}

.splash-points span {
  color: var(--ink-700);
}

.splash-visual {
  position: relative;
}

.splash-visual::before {
  content: "";
  position: absolute;
  inset: auto 8% -7% 8%;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(16, 91, 149, 0.16);
  filter: blur(12px);
}

.splash-visual img {
  position: relative;
  width: 100%;
  max-width: 31rem;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 49% 51% 39% 61% / 55% 36% 64% 45%;
  border: 10px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-strong);
}

.page-hero {
  position: relative;
  padding: 2.7rem 0 3rem;
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 212, 0, 0.18), transparent 16%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 15%),
    linear-gradient(180deg, #0c4a82 0%, #09548f 44%, #0764a9 100%);
  color: var(--white);
  isolation: isolate;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero::before {
  background:
    radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.12), transparent 8%),
    radial-gradient(circle at 90% 28%, rgba(255, 212, 0, 0.18), transparent 10%);
}

.page-hero::after {
  background:
    linear-gradient(180deg, rgba(4, 33, 64, 0.18), rgba(4, 33, 64, 0.42)),
    linear-gradient(90deg, rgba(4, 33, 64, 0.48), rgba(4, 33, 64, 0.1) 40%, rgba(4, 33, 64, 0.42));
}

.page-hero-grid,
.content-grid,
.feature-grid-alt,
.media-grid,
.poster-grid,
.contact-grid,
.booking-grid,
.video-duo,
.stats-ribbon {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.page-hero-grid {
  align-items: center;
}

.page-hero-copy {
  text-align: center;
}

.page-hero-copy h1,
.booking-card h3,
.contact-card h3,
.info-card h3,
.route-card h3,
.panel-callout h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 0.98;
}

.page-hero-copy h1 {
  font-size: clamp(2.9rem, 9vw, 6.2rem);
  color: var(--white);
}

.page-hero-copy p {
  width: min(100%, 44rem);
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
}

.page-actions,
.page-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.page-actions {
  margin-top: 1.5rem;
}

.page-pill-row {
  margin-top: 1.25rem;
}

.page-pill-row span {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.page-hero-media {
  position: relative;
}

.hero-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 4px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual-card img,
.hero-visual-card video {
  width: 100%;
  object-fit: cover;
}

.hero-visual-card img {
  aspect-ratio: 5 / 4;
}

.hero-visual-card video {
  aspect-ratio: 16 / 9;
}

.hero-visual-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(7, 56, 97, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.hero-visual-badge strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.hero-visual-badge span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.page-section {
  padding: 1rem 0 5rem;
}

.page-section-soft {
  background: linear-gradient(180deg, #eff9ff 0%, #d7f0ff 100%);
}

.page-section-yellow {
  background: linear-gradient(180deg, var(--yellow-500), #ffdd1e 100%);
}

.page-section-blue {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 88% 24%, rgba(255, 212, 0, 0.18), transparent 12%),
    linear-gradient(180deg, #0f5d9f 0%, #0b4e89 100%);
  color: var(--white);
}

.page-section-blue .section-heading h2,
.page-section-blue .section-heading p,
.page-section-blue .section-heading .eyebrow,
.page-section-blue .panel-callout h3,
.page-section-blue .panel-callout p,
.page-section-blue .panel-callout li,
.page-section-blue .route-card h3,
.page-section-blue .route-card p,
.page-section-blue .route-card li {
  color: inherit;
}

.section-heading.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.info-card,
.contact-card,
.booking-card,
.panel-callout,
.route-card,
.form-shell,
.stat-card {
  padding: 1.2rem;
  border-radius: 28px;
  border: 1px solid rgba(19, 116, 190, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.contact-card h3,
.booking-card h3,
.panel-callout h3,
.route-card h3 {
  color: var(--blue-900);
  font-size: 1.55rem;
}

.info-card p,
.contact-card p,
.booking-card p,
.panel-callout p,
.route-card p,
.stat-card p {
  margin: 0.6rem 0 0;
  color: var(--ink-700);
}

.check-list,
.bullet-list,
.timeline-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-700);
}

.check-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.14);
}

.page-section-blue .check-list li,
.page-section-blue .bullet-list li,
.page-section-blue .panel-callout p,
.page-section-blue .route-card p {
  color: rgba(255, 255, 255, 0.84);
}

.page-section-blue .info-card,
.page-section-blue .contact-card,
.page-section-blue .booking-card,
.page-section-blue .panel-callout,
.page-section-blue .route-card,
.page-section-blue .form-shell,
.page-section-blue .stat-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.page-section-blue .info-card h3,
.page-section-blue .contact-card h3,
.page-section-blue .booking-card h3,
.page-section-blue .panel-callout h3,
.page-section-blue .route-card h3,
.page-section-blue .stat-card strong {
  color: var(--white);
}

.page-section-blue .check-list li::before,
.page-section-blue .bullet-list li::before {
  background: var(--yellow-500);
}

.stat-card strong {
  display: block;
  color: var(--blue-900);
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
}

.media-card-alt,
.poster-card-flat,
.video-panel {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(19, 116, 190, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.media-card-alt img,
.poster-card-flat img,
.video-panel img,
.video-panel video {
  width: 100%;
  object-fit: cover;
}

.media-card-alt img {
  aspect-ratio: 4 / 3;
}

.media-card-alt .map-embed {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.poster-card-flat img {
  aspect-ratio: 1 / 1;
}

.video-panel img {
  aspect-ratio: 16 / 11;
}

.video-panel video {
  aspect-ratio: 16 / 9;
}

.media-card-copy,
.poster-card-copy,
.video-panel-copy {
  padding: 1rem;
}

.media-card-copy h3,
.poster-card-copy h3,
.video-panel-copy h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--blue-900);
}

.media-card-copy p,
.poster-card-copy p,
.video-panel-copy p {
  margin: 0.55rem 0 0;
  color: var(--ink-700);
}

.panel-callout {
  position: relative;
  overflow: hidden;
}

.panel-callout::before {
  content: "";
  position: absolute;
  inset: auto -15% -25% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.18), transparent 65%);
  pointer-events: none;
}

.contact-card h3,
.route-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  box-shadow: 0 12px 20px rgba(255, 212, 0, 0.22);
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
}

.timeline-list {
  gap: 0.9rem;
}

.timeline-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.timeline-list strong {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  font-size: 0.85rem;
}

.timeline-copy h4 {
  margin: 0;
  font-size: 1rem;
  color: inherit;
}

.timeline-copy p {
  margin: 0.2rem 0 0;
}

.booking-kicker {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(19, 116, 190, 0.08);
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-card .hero-actions {
  justify-content: flex-start;
  margin-top: 1.1rem;
}

.booking-card .button-secondary {
  color: var(--blue-900);
  border-color: rgba(19, 116, 190, 0.2);
  background: rgba(19, 116, 190, 0.05);
}

.page-section-blue .booking-card .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.form-shell h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--blue-900);
}

.form-shell p {
  margin: 0.75rem 0 0;
  color: var(--ink-700);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 116, 190, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink-900);
  font: inherit;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f98b0;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.45);
  outline-offset: 2px;
  border-color: rgba(19, 116, 190, 0.42);
}

.form-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(19, 116, 190, 0.06);
  color: var(--ink-700);
  font-size: 0.94rem;
}

.page-cta-box {
  padding: 1.5rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 212, 0, 0.12), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  text-align: center;
}

.page-cta-box h2 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.98;
}

.page-cta-box p {
  width: min(100%, 40rem);
  margin: 0.9rem auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-cta-box-dark {
  background: linear-gradient(180deg, #0f5d9f, #0b4e89);
  color: var(--white);
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 212, 0, 0.08), transparent 12%),
    linear-gradient(180deg, #10355d 0%, #0a2541 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand-block p,
.footer-bottom p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.footer-brand img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
}

.footer-brand strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand span {
  font-size: 0.92rem;
}

.site-footer h3 {
  color: var(--yellow-500);
}

.site-footer ul {
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.contact-list li {
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--yellow-500);
  font-weight: 800;
}

.footer-bottom strong {
  color: inherit;
}

.quick-rail {
  position: fixed;
  right: 0.85rem;
  top: 50%;
  z-index: 50;
  display: none;
  transform: translateY(-50%);
}

.quick-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.45rem;
  border-radius: 14px;
  background: rgba(12, 74, 130, 0.94);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(5, 55, 95, 0.18);
}

.quick-rail-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.quick-rail a:last-child {
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(255, 212, 0, 0.34);
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float .icon-inline {
  width: 1.35rem;
  height: 1.35rem;
}

.opening-poster-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 28, 49, 0.82);
  backdrop-filter: blur(10px);
}

.opening-poster-card {
  position: relative;
  width: min(100%, 34rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  background: #ffffff;
}

.opening-poster-image {
  display: block;
  width: 100%;
  height: auto;
}

.opening-poster-close {
  position: sticky;
  top: 0.9rem;
  display: block;
  margin: 0.9rem 0.9rem -3.2rem auto;
  min-width: 5rem;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-400), var(--yellow-500));
  color: var(--blue-900);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(5, 58, 102, 0.24);
  z-index: 1;
}

.opening-poster-close:hover,
.opening-poster-close:focus-visible {
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 212, 0, 0.98);
  outline-offset: 3px;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(var(--poster-rotate));
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }
}

@media (min-width: 700px) {
  .top-strip-grid,
  .hero-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .page-hero-grid,
  .content-grid,
  .contact-grid,
  .video-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid-alt,
  .media-grid,
  .poster-grid,
  .booking-grid,
  .stats-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-core,
  .splash-copy {
    grid-column: 1 / -1;
  }

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

  .testimonial-slide.is-active {
    grid-template-columns: 13rem minmax(0, 1fr);
  }

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

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

  .field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .top-strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .page-hero {
    padding-top: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr) minmax(12rem, 18rem);
    gap: 1.5rem;
    min-height: calc(100vh - var(--nav-height) - 5rem);
  }

  .hero-core {
    order: 0;
    text-align: center;
    padding-inline: 1rem;
  }

  .hero-actions,
  .hero-chip-row {
    justify-content: center;
  }

  .hero-core,
  .splash-copy {
    grid-column: auto;
  }

  .page-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

  .page-hero-copy {
    text-align: left;
  }

  .page-hero-copy p {
    margin-inline: 0;
  }

  .page-actions,
  .page-pill-row {
    justify-content: flex-start;
  }

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

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

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

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  }

  .quick-rail {
    display: block;
  }

  .whatsapp-float {
    display: none;
  }
}

/* Review Section */
.review-section {
  padding-bottom: 5rem;
}

.review-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-qr {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  border: 1px solid rgba(19, 116, 190, 0.1);
  max-width: 280px;
  width: 100%;
}

.qr-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.qr-text {
  font-weight: 600;
  color: var(--blue-700);
  font-size: 1rem;
}

@media (max-width: 959px) {
  .nav-shell {
    border-radius: 30px;
  }
}

@media (max-width: 699px) {
  .top-strip {
    display: none;
  }

  .site-header {
    padding-top: 0.95rem;
  }

  .hero-poster {
    width: min(100%, 14rem);
  }

  .ticket-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .visitor-shell {
    padding-inline: 0.8rem;
  }

  .opening-poster-modal {
    padding: 0.75rem;
  }

  .opening-poster-card {
    width: 100%;
    border-radius: 22px;
  }

  .opening-poster-close {
    min-height: 2.5rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Pricing Posters Section */
.pricing-poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 1023px) {
  .pricing-poster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .pricing-poster-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-poster-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(19, 116, 190, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-poster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19, 116, 190, 0.18);
}

.pricing-poster-card img {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-poster-label {
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-700);
  text-align: center;
  border-top: 2px solid rgba(19, 116, 190, 0.08);
}

/* Booking Sticker Card */
.booking-sticker-card {
  background: linear-gradient(135deg, #1374be 0%, #0a4f8a 100%);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(19, 116, 190, 0.3);
  color: var(--white);
}

.booking-sticker-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}

.sticker-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: ripplePulse 2s ease-in-out infinite;
}

@keyframes ripplePulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.15; }
}

.sticker-emoji-stack {
  position: relative;
  z-index: 1;
  text-align: center;
}

.sticker-main {
  display: block;
  font-size: 5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.sticker-badge {
  position: absolute;
  bottom: -8px;
  right: -12px;
  font-size: 2rem;
  background: var(--yellow);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.booking-sticker-copy {
  text-align: center;
}

.booking-sticker-copy h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.sticker-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.sticker-check-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

