/*! Skyline 360 Park — stylesheet
 *  Design & front-end engineering: Steve Ubangha Ewa
 *  https://nazarng.com/steve.html
 */
:root {
  /* Skyline 360 palette — purple, orange-gold, cyan */
  --blue: #4a1f7a;
  --blue-deep: #2e1054;
  --blue-soft: #7a4bb8;
  --blue-card: rgba(255, 255, 255, 0.16);
  --red: #ff7a00;
  --red-hot: #ff9500;
  --ink: #14081f;
  --ink-soft: #3d3348;
  --paper: #ffffff;
  --muted: #5c5368;
  --lime: #c8ff2e;
  --cyan: #2ec4ff;
  --magenta: #ff2d6a;
  --max: 1200px;
  --pad: clamp(1rem, 4vw, 3rem);
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Montserrat", "Inter", system-ui, sans-serif;
  --radius-card: 18px;
  --shadow-btn: 4px 4px 0 rgba(30, 12, 58, 0.35);
  --header-h: clamp(106px, 10.6vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  /* reserves the scrollbar track so releasing the loader's scroll lock
     cannot nudge the layout sideways */
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

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

/* Responsive <picture> wrappers fill framed media parents */
.stack-main > picture,
.stack-float > picture,
.visit-photo > picture,
.act-spot > picture,
.act-card > picture,
.attr-hero-main > picture,
.attr-hero-float > picture,
.attr-tile-media > picture,
.party-page-hero-main > picture,
.party-page-float > picture,
.party-flow-media > picture,
.party-pkg-media > picture,
.contact-hero-photo > picture,
.party-hero-media > picture,
.step-media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: break-word;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(100%, var(--max));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
}

.topo {
  background-color: var(--blue);
  background-image: url("../assets/topo.svg");
  background-size: 700px 700px;
  background-repeat: repeat;
}

.curve-bottom {
  border-bottom-left-radius: 50% 80px;
  border-bottom-right-radius: 50% 80px;
  position: relative;
  z-index: 2;
}

.curve-top {
  border-top-left-radius: 50% 80px;
  border-top-right-radius: 50% 80px;
  position: relative;
  z-index: 2;
}

/* Buttons — clipped corners matching original */
.btn {
  --btn-clip: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 44px;
  min-width: 0;
  max-width: 100%;
  padding: 0.75rem 1.55rem;
  background: var(--red);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-align: center;
  line-height: 1.2;
  border: 0;
  box-shadow: var(--shadow-btn);
  clip-path: polygon(
    0 0,
    calc(100% - var(--btn-clip)) 0,
    100% var(--btn-clip),
    100% 100%,
    var(--btn-clip) 100%,
    0 calc(100% - var(--btn-clip))
  );
  transition: transform 0.2s ease, background 0.2s ease, filter 0.2s ease;
  white-space: normal;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.btn:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-lg {
  min-height: 52px;
  padding: 0.9rem 1.7rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.btn-round {
  --btn-clip: 0px;
  clip-path: none;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.4);
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
}

.btn-ghost-light {
  background: transparent;
  border: 2px solid #fff;
  box-shadow: none;
  color: #fff !important;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Header — jagged neon cyber shell matching brand art */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 0.55rem 0 0.7rem;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 0, 22, 0.72) 0%,
    rgba(10, 0, 22, 0.35) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

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

.site-header.is-over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-over-hero::before {
  background: linear-gradient(
    180deg,
    rgba(10, 0, 22, 0.55) 0%,
    rgba(10, 0, 22, 0.18) 60%,
    transparent 100%
  );
}

.site-header.is-over-hero.is-scrolled,
.site-header.is-scrolled {
  background: rgba(10, 0, 22, 0.88);
  box-shadow: 0 12px 36px rgba(8, 0, 18, 0.45);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 1rem, 1380px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

/* The badge is sized by the logo, not the other way round: padding leaves room
   for the arrow tip on the right, and the panel shrink-wraps whatever height
   .brand-logo is set to. Adjust .brand-logo height to resize the whole thing. */
.brand,
.brand-panel {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-right: -2.1rem;
  padding: 0.65rem 3.1rem 0.65rem 0.85rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand-panel:hover {
  transform: translateY(-2px) scale(1.015);
}

.brand-chrome {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
  /* Static filter only: animating drop-shadow re-rasterises this large SVG every
     frame and starves the main thread, which stalls nav hover responses. */
  filter:
    drop-shadow(0 0 6px rgba(255, 45, 155, 0.8))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

/* logo-nav.png is cropped tight to the artwork, so this height is the real
   visible height of the mark. This is the only knob for the logo's size. */
.brand-panel img:not(.brand-chrome),
.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  height: clamp(68px, 6.8vw, 98px);
  width: auto;
  max-width: none;
  /* guards the aspect ratio if a narrow breakpoint caps the width */
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(255, 179, 0, 0.45))
    drop-shadow(0 0 22px rgba(255, 45, 155, 0.3))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.75));
}

.header-main {
  position: relative;
  z-index: 3;
  flex: 1;
  min-width: 0;
  height: clamp(74px, 7.6vw, 96px);
  display: flex;
  align-items: center;
  overflow: visible;
}

.header-main-chrome {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 0;
  filter:
    drop-shadow(0 0 5px rgba(46, 196, 255, 0.5))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.header-main-body {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(0.5rem, 1.5vw, 1.25rem);
  /* nav-bar-chrome.svg's teeth bite 20% of the bar height in from the top and
     bottom edges, so the content box has to stay inside that band. */
  padding: clamp(0.75rem, 1.35vw, 1.2rem) clamp(1.15rem, 2.2vw, 1.9rem)
    clamp(0.75rem, 1.35vw, 1.2rem) clamp(1.8rem, 3.2vw, 2.8rem);
  overflow: visible;
}

.nav-desktop {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 0;
  overflow: visible;
}

.nav-desktop > .nav-link,
.nav-desktop > .nav-item {
  position: relative;
  flex: 1 1 0;
  max-width: 168px;
  align-self: stretch;
}

.nav-desktop > .nav-link:not(:last-child)::after,
.nav-desktop > .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  pointer-events: none;
}

.nav-link {
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.62rem, 0.92vw, 0.78rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(0, 0, 0, 0.35);
  padding: 0.25rem 0.55rem;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.is-active,
.nav-item.is-open > .nav-dropdown-toggle {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.12);
}

.nav-ico {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 0;
}

.nav-ico svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav-ico-attractions { color: #ff4fd8; filter: drop-shadow(0 0 5px rgba(255, 79, 216, 0.85)); }
.nav-ico-location { color: #2ec4ff; filter: drop-shadow(0 0 5px rgba(46, 196, 255, 0.85)); }
.nav-ico-contact { color: #b56bff; filter: drop-shadow(0 0 5px rgba(181, 107, 255, 0.85)); }
.nav-ico-waiver { color: #7dff4a; filter: drop-shadow(0 0 5px rgba(125, 255, 74, 0.85)); }

.nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
  line-height: 1;
}

.nav-label-contact {
  position: relative;
}

.nav-label-contact::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -0.28rem;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 6' fill='none'%3E%3Cpath d='M1 3 Q5 0 9 3 Q13 6 17 3 Q21 0 25 3 Q29 6 33 3 Q37 0 41 3 Q45 6 49 3 Q53 0 57 3' stroke='%23b56bff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  filter: drop-shadow(0 0 3px rgba(181, 107, 255, 0.9));
}

.nav-item {
  position: relative;
  z-index: 5;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-item.has-dropdown:hover,
.nav-item.has-dropdown:focus-within,
.nav-item.has-dropdown.is-open {
  z-index: 400;
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-item.has-dropdown:hover .nav-caret,
.nav-item.is-open .nav-caret,
.mobile-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  min-width: 230px;
  /* Transparent top padding bridges the jagged bar edge so the panel does not
     vanish while the pointer travels from the toggle down to the menu. */
  padding: 0.75rem 0.5rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* visibility is intentionally not transitioned so the panel appears on the
     first frame of hover; only the cheap composited properties animate. */
  transition: opacity 0.12s linear, transform 0.12s ease-out;
  /* Own compositing layer so opening the panel never repaints the hero video
     and topo background sitting underneath it. */
  will-change: opacity, transform;
  z-index: 400;
}

.nav-dropdown-inner {
  padding: 0.55rem;
  background: linear-gradient(180deg, #1a0530 0%, #2e1054 100%);
  border: 1px solid rgba(255, 45, 155, 0.35);
  border-radius: 14px;
  box-shadow:
    0 0 12px rgba(160, 32, 240, 0.35),
    0 16px 40px rgba(8, 0, 18, 0.55);
  position: relative;
}

.nav-dropdown-inner::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #1a0530;
  border-left: 1px solid rgba(255, 45, 155, 0.35);
  border-top: 1px solid rgba(255, 45, 155, 0.35);
}

/* Hover state is pure CSS so the menu opens even before/without main.js;
   the is-open class keeps click and keyboard control working. */
.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.is-open > .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item.has-dropdown:has(.nav-dropdown-toggle:focus-visible) > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: none;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 122, 0, 0.28);
  transform: translateX(3px);
  outline: none;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.btn-stamp {
  --stamp-clip: polygon(
    0% 18%, 4% 0%, 10% 14%, 16% 0%, 22% 14%, 28% 0%, 34% 14%, 40% 0%, 46% 14%, 52% 0%,
    58% 14%, 64% 0%, 70% 14%, 76% 0%, 82% 14%, 88% 0%, 94% 14%, 100% 0%,
    100% 82%, 96% 100%, 90% 86%, 84% 100%, 78% 86%, 72% 100%, 66% 86%, 60% 100%,
    54% 86%, 48% 100%, 42% 86%, 36% 100%, 30% 86%, 24% 100%, 18% 86%, 12% 100%,
    6% 86%, 0% 100%
  );
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.46rem 0.7rem 0.46rem 0.6rem;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 0.86vw, 0.74rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  clip-path: var(--stamp-clip);
  filter: drop-shadow(0 3px 0 rgba(20, 0, 40, 0.55));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-stamp:hover {
  transform: translateY(-2px);
  filter:
    brightness(1.06)
    drop-shadow(0 5px 0 rgba(20, 0, 40, 0.55));
}

.btn-stamp-party {
  background: linear-gradient(180deg, #ffb020 0%, #ff7a00 55%, #ff5a00 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-stamp-visit {
  background: linear-gradient(180deg, #ff4fd8 0%, #ff2d9b 55%, #e0107a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Banner-scale stamps: the nav button silhouette sized up and flipped to dark
   ink on a bright fill. */
.btn-stamp-hero {
  min-height: clamp(44px, 3.6vw, 54px);
  gap: 0.5rem;
  padding: 0.68rem 1rem 0.68rem 0.85rem;
  font-size: clamp(0.64rem, 1.05vw, 0.82rem);
  letter-spacing: 0.06em;
}

.btn-stamp-ticket {
  background: linear-gradient(180deg, #ffe066 0%, #ffb020 48%, #ff8a00 100%);
  color: #2a0748 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-stamp-explore {
  background: linear-gradient(180deg, #a8ecff 0%, #43c9ff 48%, #12a6f0 100%);
  color: #0b2540 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-stamp-hero .btn-stamp-ico {
  width: clamp(1rem, 1.4vw, 1.3rem);
  height: clamp(1rem, 1.4vw, 1.3rem);
  color: inherit;
}

.btn-stamp-hero .btn-stamp-arrow {
  width: clamp(1.15rem, 1.6vw, 1.5rem);
  height: clamp(1.15rem, 1.6vw, 1.5rem);
}

.btn-stamp-ico {
  width: 1.05rem;
  height: 1.05rem;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.btn-stamp-ico svg,
.btn-stamp-arrow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.btn-stamp-text {
  line-height: 1;
}

.btn-stamp-arrow {
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  margin-left: 0.1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  position: relative;
  margin-left: auto;
  background: rgba(20, 0, 42, 0.65);
  box-shadow: 0 0 12px rgba(255, 45, 155, 0.35);
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(10, 0, 22, 0.97);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-nav > a:not(.btn) {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 0.9rem 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.mobile-dropdown-panel {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0 0.85rem 0.75rem;
}

.mobile-dropdown.is-open .mobile-dropdown-panel {
  display: flex;
}

.mobile-dropdown-panel a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.7rem 0.5rem;
  border-radius: 10px;
}

.mobile-dropdown-panel a:hover,
.mobile-dropdown-panel a:focus-visible {
  background: rgba(255, 122, 0, 0.22);
  outline: none;
}

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 0.5rem;
}

.mobile-nav-ctas .btn {
  width: 100%;
  min-height: 52px;
  font-size: clamp(0.85rem, 3.2vw, 1rem);
  letter-spacing: 0.03em;
  padding: 0.85rem 1.35rem;
  white-space: normal;
  line-height: 1.2;
  box-shadow: 4px 4px 0 rgba(30, 12, 58, 0.85);
}

.mobile-nav-ctas .btn-stamp {
  width: 100%;
  min-height: 52px;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
}

/* Hero — the footage is full-frame 16:9, so the media box matches that ratio and
   nothing gets cropped away. Never use `contain` here: any mismatch between box
   and footage would show as black bars. */
.hero {
  position: relative;
  /* keep in sync with the intrinsic size of assets/skylinevideo-hero.mp4 */
  --hero-aspect: 1920 / 1080;
  min-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  background: #1a0b2e;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(46, 16, 84, 0.45) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--hero-aspect);
  flex: 0 0 auto;
  background: #1a0b2e;
}

.hero-media video,
.hero-media .hero-video,
.hero-media .hero-fallback,
.hero-media .hero-poster-fallback,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  display: block;
}

.hero-poster-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video.is-loading {
  opacity: 0;
}

.hero-media img.hero-photo {
  animation: heroKen 18s ease-in-out infinite alternate;
  transform-origin: center 40%;
}

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

.hero-fallback {
  background:
    linear-gradient(135deg, #1a0b2e 0%, #3d1a6e 40%, #2ec4ff 100%);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scrim {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  aspect-ratio: var(--hero-aspect);
  background: linear-gradient(
    180deg,
    rgba(46, 16, 84, 0.18) 0%,
    rgba(15, 11, 24, 0.04) 45%,
    rgba(15, 11, 24, 0.15) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Headline banner under the video band. The zigzag is a clip-path on
   .hero-bar-frame, repeated a few px inward on .hero-bar-stage, so the sliver of
   gradient left showing between the two reads as a neon deckle edge. Height is
   driven by the copy, which is what lets one rule set cover 320px to ultrawide. */
.hero-bar {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 100%;
  padding:
    clamp(0.5rem, 1.5vw, 1.1rem)
    clamp(0.5rem, 1.6vw, 1.35rem)
    clamp(1.4rem, 3.2vw, 2.5rem);
  background: linear-gradient(180deg, #1a0b2e 0%, #250c46 46%, #3d1a6e 100%);
}

.hero-bar-frame {
  /* Percentages, so the teeth stay proportional instead of turning into a fine
     comb on a wide monitor or giant spikes on a phone. */
  --torn-clip: polygon(
    0% 4%, 3% 0%, 6% 4%, 9% 0%, 12% 4%, 15% 0%, 18% 4%, 21% 0%, 24% 4%, 27% 0%,
    30% 4%, 33% 0%, 36% 4%, 39% 0%, 42% 4%, 45% 0%, 48% 4%, 51% 0%, 54% 4%,
    57% 0%, 60% 4%, 63% 0%, 66% 4%, 69% 0%, 72% 4%, 75% 0%, 78% 4%, 81% 0%,
    84% 4%, 87% 0%, 90% 4%, 93% 0%, 96% 4%, 99% 0%, 100% 3%,
    98% 12%, 100% 22%, 98% 32%, 100% 42%, 98% 52%, 100% 62%, 98% 72%, 100% 82%,
    98% 92%, 100% 97%,
    97% 100%, 94% 96%, 91% 100%, 88% 96%, 85% 100%, 82% 96%, 79% 100%, 76% 96%,
    73% 100%, 70% 96%, 67% 100%, 64% 96%, 61% 100%, 58% 96%, 55% 100%, 52% 96%,
    49% 100%, 46% 96%, 43% 100%, 40% 96%, 37% 100%, 34% 96%, 31% 100%, 28% 96%,
    25% 100%, 22% 96%, 19% 100%, 16% 96%, 13% 100%, 10% 96%, 7% 100%, 4% 96%,
    1% 100%, 0% 97%,
    2% 92%, 0% 82%, 2% 72%, 0% 62%, 2% 52%, 0% 42%, 2% 32%, 0% 22%, 2% 12%
  );
  position: relative;
  width: min(100%, 1480px);
  margin-inline: auto;
  padding: clamp(3px, 0.45vw, 8px);
  background: linear-gradient(
    104deg,
    #ff2d9b 0%,
    #a020f0 25%,
    #2ec4ff 52%,
    #c8ff2e 76%,
    #ff7a00 100%
  );
  clip-path: var(--torn-clip);
}

.hero-bar-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 27vw, 430px);
  background: radial-gradient(120% 95% at 12% 50%, #3a1063 0%, #24073f 55%, #1b0533 100%);
  overflow: hidden;
  clip-path: var(--torn-clip);
}

/* Halftone dots, the same trick the reference art uses to stop the flat purple
   from reading as dead space. */
.hero-bar-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.7px);
  background-size: 9px 9px;
  pointer-events: none;
}

.hero-bar-art {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 60%;
  /* Feathers the photo into the purple rather than butting it against a seam. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 18%, #000 52%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 18%, #000 52%);
}

.hero-bar-art picture,
.hero-bar-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bar-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(27, 5, 51, 0.85) 0%,
    rgba(27, 5, 51, 0.35) 34%,
    rgba(27, 5, 51, 0.05) 62%,
    rgba(58, 16, 99, 0.42) 100%
  );
}

.hero-bar-accents {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hb-star,
.hb-plus,
.hb-dot,
.hb-bolt {
  position: absolute;
  display: block;
}

.hb-star {
  width: clamp(9px, 1.3vw, 19px);
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  animation: hbTwinkle 3.4s ease-in-out infinite;
}

.hb-star-a { left: 3.5%; top: 20%; background: #ffd23d; }
.hb-star-b {
  left: 33%;
  top: 10%;
  width: clamp(7px, 1vw, 14px);
  background: #2ec4ff;
  animation-delay: 0.9s;
}
.hb-star-c {
  left: 5%;
  top: 72%;
  width: clamp(7px, 0.95vw, 13px);
  background: #ff4fd8;
  animation-delay: 1.8s;
}

.hb-plus {
  width: clamp(8px, 1.1vw, 16px);
  aspect-ratio: 1;
  clip-path: polygon(
    38% 0%, 62% 0%, 62% 38%, 100% 38%, 100% 62%, 62% 62%,
    62% 100%, 38% 100%, 38% 62%, 0% 62%, 0% 38%, 38% 38%
  );
  animation: hbTwinkle 4.2s ease-in-out infinite;
}

.hb-plus-a { left: 2%; top: 46%; background: #2ec4ff; animation-delay: 0.5s; }
.hb-plus-b { left: 27%; top: 66%; background: #ffd23d; animation-delay: 1.3s; }

.hb-dot {
  width: clamp(4px, 0.55vw, 8px);
  aspect-ratio: 1;
  border-radius: 50%;
}

.hb-dot-a { left: 10%; top: 32%; background: #ff7a00; }
.hb-dot-b { left: 37%; top: 28%; background: #c8ff2e; }

.hb-bolt {
  left: 35%;
  top: 21%;
  width: clamp(12px, 1.7vw, 23px);
  animation: hbBoltFloat 5.2s ease-in-out infinite;
}

.hb-bolt svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

@keyframes hbTwinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(14deg); }
}

@keyframes hbBoltFloat {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(12deg) translateY(-8px); }
}

.hero-bar-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 2.2vw, 1.75rem);
  padding: clamp(1.5rem, 3.4vw, 2.75rem) clamp(1.15rem, 3vw, 2.6rem);
}

/* Every line is its own flex item so it shrink-wraps its word — that is what
   lets the splash behind FUN and the per-line rotations track the text width. */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.05rem, 0.25vw, 0.25rem);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  max-width: 100%;
}

.hl-line {
  display: block;
  max-width: 100%;
}

/* The white lines can outline with text-shadow because their fill is opaque; the
   gradient lines below cannot, so they use stacked drop-shadows instead. */
.hl-experience {
  font-size: clamp(1rem, 3.1vw, 2.05rem);
  letter-spacing: 0.03em;
  transform: rotate(-1.6deg);
  text-shadow:
    0.035em 0 0 #2a0748,
    -0.035em 0 0 #2a0748,
    0 0.035em 0 #2a0748,
    0 -0.035em 0 #2a0748,
    0.025em 0.025em 0 #2a0748,
    -0.025em 0.025em 0 #2a0748,
    0 0.1em 0.03em rgba(16, 2, 32, 0.85);
}

.hl-fun {
  position: relative;
  isolation: isolate;
  font-size: clamp(2.9rem, 10vw, 6.4rem);
  line-height: 0.82;
  letter-spacing: -0.015em;
  transform: rotate(-1.8deg);
}

.hl-fun-splash {
  position: absolute;
  z-index: 0;
  inset: 12% -13% 7%;
  border-radius: 48% 52% 60% 40% / 56% 44% 56% 44%;
  background: linear-gradient(
    102deg,
    rgba(255, 45, 155, 0.62) 0%,
    rgba(255, 122, 0, 0.5) 52%,
    rgba(255, 45, 155, 0.16) 100%
  );
  filter: blur(clamp(9px, 1.4vw, 20px));
  transform: rotate(-4deg);
}

/* drop-shadow traces the glyph alpha, so em offsets give an outline that scales
   with the font — text-shadow cannot, because background-clip:text leaves the
   fill transparent and the shadow shows straight through it. */
.hl-fun-word {
  position: relative;
  z-index: 1;
  display: block;
  background: linear-gradient(
    180deg,
    #fff3a8 0%,
    #ffd23d 20%,
    #ffa01e 46%,
    #ff4d7d 76%,
    #ff2d9b 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0.035em 0 0 #2a0748)
    drop-shadow(-0.035em 0 0 #2a0748)
    drop-shadow(0 0.035em 0 #2a0748)
    drop-shadow(0 -0.035em 0 #2a0748)
    drop-shadow(0 0.085em 0.02em rgba(16, 2, 32, 0.8));
}

.hl-from {
  margin-top: clamp(0.1rem, 0.5vw, 0.45rem);
  font-size: clamp(0.66rem, 1.85vw, 1.08rem);
  letter-spacing: 0.15em;
  transform: rotate(-1.2deg);
  text-shadow:
    0.045em 0 0 #2a0748,
    -0.045em 0 0 #2a0748,
    0 0.045em 0 #2a0748,
    0 -0.045em 0 #2a0748,
    0 0.1em 0.2em rgba(12, 2, 26, 0.9);
}

.hl-perspective {
  font-size: clamp(1.3rem, 4.9vw, 3.15rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  transform: rotate(-1.2deg) skewX(-6deg);
  background: linear-gradient(180deg, #eafbff 0%, #7fe3ff 32%, #2ec4ff 62%, #4f7dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0.028em 0 0 #0d2a4d)
    drop-shadow(-0.028em 0 0 #0d2a4d)
    drop-shadow(0 0.028em 0 #0d2a4d)
    drop-shadow(0 -0.028em 0 #0d2a4d)
    drop-shadow(0 0.07em 0.02em rgba(10, 2, 30, 0.75));
}

.hero-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
  width: 100%;
  min-width: 0;
}

.page-hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 5rem;
  color: #fff;
  position: relative;
  z-index: 0;
}

.page-hero h1 {
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.page-hero .hero-art {
  width: min(320px, 70vw);
  margin: 0 auto 1.5rem;
  animation: floaty 4.5s ease-in-out infinite;
}

.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}

/* Keep consecutive blue blocks tight so they read as one band */
#celebrate {
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

#rates {
  padding-top: 0;
  overflow-x: hidden;
}

.section-blue {
  color: #fff;
}

.section-blue p {
  color: rgba(255, 255, 255, 0.95);
}

.section-title {
  font-size: clamp(1.55rem, 6.5vw, 4.5rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  overflow-wrap: normal;
  line-height: 1.05;
  max-width: 100%;
}

.section-title.dark {
  color: var(--ink);
  text-align: left;
}

/* About / Celebrate — flex composition */
.celebrate-flex {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.celebrate-visual {
  flex: 1 1 320px;
  position: relative;
  min-width: 0;
}

.celebrate-copy {
  flex: 1 1 340px;
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

/* "Imagination" needed 481px of a 530px column at the old 3.8rem ceiling —
   inside the rounding error of the fallback face, so it severed on some widths. */
.celebrate-copy h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  margin-bottom: 1rem;
  overflow-wrap: normal;
}

.celebrate-copy > p {
  font-size: 1.05rem;
  max-width: 38rem;
}

.photo-stack {
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  perspective: 900px;
  overflow: hidden;
}

.photo-stack figure {
  margin: 0;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  background: #2a1548;
}

.stack-main {
  position: absolute;
  inset: 8% 12% 12% 8%;
  border-radius: 22px;
  z-index: 1;
}

.stack-main img,
.stack-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-main:hover img,
.stack-float:hover img,
.media-zoom:hover img {
  transform: scale(1.08);
}

.stack-float {
  position: absolute;
  z-index: 2;
  border-radius: 16px;
  animation: floaty 5.5s ease-in-out infinite;
}

.stack-float-a {
  width: 38%;
  aspect-ratio: 1;
  top: 0;
  right: 0;
  animation-delay: -1.2s;
}

.stack-float-b {
  width: 42%;
  aspect-ratio: 4 / 3;
  bottom: 0;
  left: 0;
  animation-delay: -2.4s;
}

.stack-badge {
  position: absolute;
  z-index: 3;
  bottom: 18%;
  right: -2%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  animation: pulse-badge 2.8s ease-in-out infinite;
}

.stack-badge span {
  font-size: 1.35rem;
  line-height: 1;
}

.stack-badge small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

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

.celebrate-mascot {
  position: absolute;
  width: min(160px, 36%);
  bottom: -4%;
  right: -2%;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  animation: floaty 4.8s ease-in-out infinite;
}

.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 1.75rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1 1 5rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
  color: #fff;
}

.stat span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.mascot {
  width: min(420px, 100%);
  margin-inline: auto;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

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

.float-decor {
  width: min(160px, 40vw);
  margin: 0 auto 1rem;
  animation: floaty 4.2s ease-in-out infinite;
}

/* Pricing — animated 4-card grid */
.rates-head {
  text-align: center;
  margin-bottom: 0.5rem;
}

.rates-lead {
  max-width: 32rem;
  margin: -0.5rem auto 0;
  opacity: 0.9;
}

.rate-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin-top: 2.25rem;
  align-items: stretch;
}

.rate-card-v2 {
  --rate-accent: var(--blue);
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 1.45rem 1.2rem 1.35rem;
  box-shadow: 0 12px 36px rgba(15, 11, 24, 0.14);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.rate-card-v2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rate-accent), var(--red), var(--cyan));
  background-size: 200% 100%;
  opacity: 0.85;
  animation: rate-bar 4s linear infinite;
  z-index: 1;
}

.rate-card-v2:nth-child(2) { --rate-accent: #5b2d91; }
.rate-card-v2:nth-child(3) { --rate-accent: #1a8fb8; }
.rate-card-v2:nth-child(4) { --rate-accent: #c45a00; }

.rate-featured {
  background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow:
    0 14px 40px rgba(255, 122, 0, 0.18),
    0 12px 36px rgba(15, 11, 24, 0.12);
}

.rate-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 0;
}

.rate-card-v2:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 56px rgba(15, 11, 24, 0.22);
  border-color: rgba(255, 122, 0, 0.45);
}

.rate-card-v2:hover .rate-shine {
  animation: rate-shine 0.85s ease forwards;
}

.rate-card-v2:hover .rate-hero-price strong {
  animation: rate-price-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--red);
}

.rate-card-v2:hover .check {
  animation: rate-check 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--red);
}

.rate-card-v2:hover li:nth-child(2) .check { animation-delay: 0.05s; }
.rate-card-v2:hover li:nth-child(3) .check { animation-delay: 0.1s; }
.rate-card-v2:hover li:nth-child(4) .check { animation-delay: 0.15s; }

.rate-card-v2:hover .btn {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.rate-card-v2 .rate-panel-top,
.rate-card-v2 .rate-hero-price,
.rate-card-v2 ul,
.rate-card-v2 .btn {
  position: relative;
  z-index: 1;
}

.rate-panel-top {
  margin-bottom: 0.65rem;
}

.rate-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  margin-bottom: 0.55rem;
}

.rate-tag-soft {
  background: var(--blue);
}

.rate-tag-cyan {
  background: linear-gradient(90deg, #1a8fb8, #2ec4ff);
}

.rate-card-v2 h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--ink);
  overflow-wrap: normal;
}

.rate-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.3rem 0 0;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.rate-hero-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rate-hero-price strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--blue);
  transition: color 0.3s ease;
}

.rate-hero-price span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.rate-card-v2 ul {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  flex: 1;
}

.rate-card-v2 li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0;
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, padding-left 0.25s ease;
  min-width: 0;
}

.rate-card-v2 li:hover {
  padding-left: 4px;
}

.rate-card-v2 li span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.rate-card-v2 li strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--blue);
  flex-shrink: 0;
}

.rate-card-v2 .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding-inline: 1.2rem;
  transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  transition: background 0.3s ease, transform 0.3s ease;
}

@keyframes rate-shine {
  to { transform: translateX(120%); }
}

@keyframes rate-price-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes rate-check {
  0% { transform: scale(1); }
  40% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

@keyframes rate-bar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Legacy rate panels (other pages / fallback) */
.rate-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.rate-panel {
  flex: 1 1 300px;
  max-width: 460px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 12px 40px rgba(15, 11, 24, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.rate-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 11, 24, 0.2);
}

.rate-panel-alt {
  background: linear-gradient(180deg, #fff 0%, #f3ecff 100%);
}

.rate-panel h3 {
  font-size: 1.35rem;
  color: var(--ink);
}

.rate-panel ul {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  flex: 1;
}

.rate-panel li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rate-panel li span:nth-child(2) {
  flex: 1;
}

.rate-panel li strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--blue);
}

/* Legacy about (other pages) */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.about-copy p {
  font-size: 1.05rem;
  max-width: 38rem;
}

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

.rate-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 12px 40px rgba(15, 11, 24, 0.12);
}

.rate-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
}

.rate-card ul {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.rate-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Kinetic brand ticker */
.ticker-section {
  position: relative;
  z-index: 5;
  margin: -28px 0;
  padding: 1.75rem 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, #fff 18%, #fff 82%, transparent 100%);
  pointer-events: none;
}

.ticker-lanes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 100%;
}

.ticker-lane {
  overflow: hidden;
  padding: 0.7rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-lane-a {
  background: linear-gradient(90deg, var(--red) 0%, #ff9500 50%, var(--red) 100%);
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.28);
  transform: skewY(-1.5deg);
}

.ticker-lane-b {
  background: linear-gradient(90deg, #2e1054 0%, #4a1f7a 40%, #1a7fb8 100%);
  box-shadow: 0 10px 28px rgba(46, 16, 84, 0.28);
  transform: skewY(1.5deg);
}

.ticker-lane .marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.ticker-lane-b .marquee-track {
  animation-direction: reverse;
  animation-duration: 32s;
}

.ticker-chip {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 0.35rem 0 1.1rem;
  white-space: nowrap;
}

.ticker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
  margin: 0 0.35rem;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  animation: ticker-pulse 1.8s ease-in-out infinite;
}

.ticker-lane-b .ticker-dot {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(46, 196, 255, 0.25);
  animation-delay: 0.4s;
}

.ticker-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 6px rgba(255, 122, 0, 0.35),
    0 12px 30px rgba(15, 11, 24, 0.22);
  animation: ticker-core-bob 3.2s ease-in-out infinite;
}

.ticker-core-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(74, 31, 122, 0.45);
  animation: ticker-spin 12s linear infinite;
}

.ticker-core-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

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

@keyframes ticker-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

@keyframes ticker-core-bob {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, calc(-50% - 6px)) scale(1.04); }
}

@keyframes ticker-spin {
  to { transform: rotate(360deg); }
}

/* Legacy ribbon classes (unused) */
.ribbon {
  position: absolute;
  left: -10%;
  width: 120%;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ribbon-a {
  top: 40%;
  transform: rotate(-6deg);
}

.ribbon-b {
  top: 52%;
  transform: rotate(5deg);
  background: #e86a00;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ribbon-b .marquee-track {
  animation-direction: reverse;
  animation-duration: 26s;
}

.marquee-track span {
  padding: 0 1.25rem;
}

/* Visit hub / Hours */
.hours {
  text-align: center;
}

.visit-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.visit-live {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

.visit-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3dff8a;
  box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.55);
  animation: visit-pulse 1.8s ease-out infinite;
}

.visit-head h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 0.65rem;
  overflow-wrap: normal;
  max-width: 100%;
  line-height: 1.05;
}

.visit-lead {
  max-width: 34rem;
  margin: 0 auto;
  opacity: 0.92;
}

.hours-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-align: left;
}

.day-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  padding: 1.35rem 1.2rem 1.3rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.day-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.day-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.day-card:hover::after {
  opacity: 1;
}

.day-card:hover .day-icon {
  transform: rotate(-8deg) scale(1.08);
  color: var(--cyan);
}

.day-card:hover .day-chip {
  background: var(--red);
  color: #fff;
}

.day-card-hot {
  background: linear-gradient(160deg, rgba(255, 122, 0, 0.28), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 149, 0, 0.55);
}

.day-icon {
  width: 44px;
  height: 44px;
  color: #fff;
  margin-bottom: 0.55rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.day-icon svg {
  width: 100%;
  height: 100%;
}

.day-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.day-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0.15rem 0 0.35rem;
}

.day-time {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: 0.02em;
}

.day-time-split {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
}

.day-time-split strong {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-right: 0.35rem;
}

.day-programs {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.day-programs li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.1rem 0.65rem;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.92;
}

/* Keeps the program name readable: when it cannot sit beside the time,
   the time wraps to its own line instead of crushing the name. */
.day-programs li span:first-child {
  flex: 1 1 8rem;
  hyphens: none;
}

.day-programs li span:last-child {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
  opacity: 0.88;
}

.day-chip {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.visit-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  text-align: left;
  background: rgba(15, 11, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.visit-info {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  min-width: 0;
}

.visit-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  min-height: 220px;
  background: #2a1548;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.visit-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.85rem;
  background: linear-gradient(transparent, rgba(15, 11, 24, 0.82));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.visit-photo figcaption strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.visit-photo figcaption span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.visit-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0.35rem 0.25rem;
}

.visit-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hours .address {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.visit-meta {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.visit-meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}

.visit-meta li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.16);
}

.visit-meta-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.visit-meta strong {
  font-size: 0.92rem;
  text-align: right;
}

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

.visit-actions .social-ig {
  margin: 0;
  flex-shrink: 0;
}

.visit-note {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.visit-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-map {
  min-width: 0;
  display: flex;
}

.visit-map .map-frame {
  flex: 1;
  min-height: 280px;
  aspect-ratio: auto;
  height: 100%;
}

.map-frame {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.35);
  background: #ebe4f5;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-frame-flex:hover {
  transform: scale(1.01);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.map-frame iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.social-ig {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-ig:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

.social-ig svg {
  width: 26px;
  height: 26px;
}

@keyframes visit-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(61, 255, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 255, 138, 0); }
}

/* Legacy hours (unused) */
.hours-flex {
  display: flex;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.hours-copy {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hours-map {
  flex: 1.2 1 320px;
  min-width: 0;
}

.hours .sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hours .sub a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hours-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font-weight: 700;
}

/* Explore / feature flex panels */
.explore-section {
  background: #3b1870;
  margin-top: -48px;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.explore-intro {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.explore-intro .float-decor {
  display: block;
  width: min(120px, 28vw);
  margin: 0 auto 0.75rem;
}

.explore-lead {
  max-width: 34rem;
  margin: -0.5rem auto 0;
  opacity: 0.92;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  width: 100%;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card .feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 3px solid #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  background: linear-gradient(145deg, #e8d9ff, #7a4bb8);
  width: 100%;
  aspect-ratio: 16 / 10;
}

.feature-card .feature-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card .feature-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 1rem;
}

.feature-card .feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.14);
  margin-bottom: 0.25rem;
  user-select: none;
}

.feature-card .feature-copy h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-bottom: 0.55rem;
  overflow-wrap: normal;
  line-height: 1.15;
}

.feature-card .feature-copy p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
  flex: 1;
}

.feature-card .btn {
  align-self: flex-start;
  max-width: 100%;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 4px solid #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  background: linear-gradient(145deg, #e8d9ff, #7a4bb8);
}

.feature-media img,
.ph-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-copy {
  position: relative;
}

.feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 0.35rem;
  user-select: none;
}

.feature-copy h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.feature-copy p {
  max-width: 34rem;
  margin-bottom: 1.25rem;
}

/* Legacy stacked flex (unused on home; kept for safety) */
.feature-flex {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.feature-panel {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.feature-panel-flip {
  flex-direction: row-reverse;
}

.feature-panel .feature-media,
.feature-panel .feature-copy {
  flex: 1 1 300px;
  min-width: 0;
}

/* Legacy feature rows for other pages */
.feature-rows {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-copy { order: 1; }

.feature-row .feature-media img,
.feature-row .ph-img {
  border-radius: 22px;
  border: 4px solid #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.feature-row:hover .feature-media img {
  transform: scale(1.02);
}

/* Activities showcase — attention-first grid */
.act-showcase {
  overflow: hidden;
  margin-top: -36px;
  padding-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.act-showcase-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.act-showcase-head h2 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.05;
  overflow-wrap: normal;
  max-width: 100%;
}

.act-showcase-head > p {
  margin: 0 auto;
  opacity: 0.95;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.act-showcase-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.15rem);
  min-height: clamp(420px, 52vw, 560px);
}

.act-spot,
.act-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: #2a1548;
  text-decoration: none !important;
  color: #fff !important;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.act-spot {
  grid-row: 1 / -1;
  grid-column: 1;
  min-height: 320px;
}

.act-spot img,
.act-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.act-spot::after,
.act-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 8, 40, 0.88) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.act-spot-body,
.act-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.15rem 1.2rem;
}

.act-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.act-spot-body h3,
.act-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.4vw, 1.85rem);
  color: #fff;
  line-height: 1.1;
  overflow-wrap: normal;
  max-width: 100%;
}

.act-spot-body p {
  margin: 0 0 0.75rem;
  max-width: 28rem;
  font-size: 0.95rem;
  opacity: 0.92;
}

.act-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.act-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.act-spot:hover img,
.act-card:hover img {
  transform: scale(1.08);
}

.act-spot:hover::after,
.act-card:hover::after {
  background: linear-gradient(180deg, rgba(74, 31, 122, 0.15) 20%, rgba(20, 8, 40, 0.92) 100%);
}

.act-spot:hover .act-link::after,
.act-card:hover .act-link::after {
  transform: translateX(4px);
}

.act-spot:hover,
.act-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.65);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.act-showcase-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

/* Legacy activities (unused) */
.activities {
  overflow: hidden;
  margin-top: -36px;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.activities-flex {
  display: flex;
  align-items: stretch;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.act-rail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.v-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1;
}

.v-dash {
  flex: 1;
  width: 0;
  min-height: 120px;
  border-left: 2px dashed rgba(255, 255, 255, 0.55);
}

.bento-grid {
  flex: 1 1 420px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 0.85rem;
  min-height: 420px;
}

.bento-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: #2a1548;
  min-height: 140px;
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 0.9rem 0.75rem;
  background: linear-gradient(transparent, rgba(15, 11, 24, 0.75));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bento-hero {
  grid-row: 1 / -1;
  grid-column: 1;
}

.bento-wide {
  grid-column: 2 / -1;
}

.act-carousel {
  display: none;
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  background: #2a2a38;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}

.carousel-track .slide {
  min-width: 100%;
  height: 100%;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 11, 24, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  z-index: 2;
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.carousel-dots button.is-active {
  background: #fff;
}

/* Legacy activities */
.activities-stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: stretch;
}

.v-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.activities-collage {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "cta"
    "carousel";
  row-gap: 1.35rem;
  align-items: center;
  justify-items: center;
}

.act-cta {
  grid-area: cta;
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

/* Party & Soar — flex */
#party {
  padding-top: clamp(1rem, 3vw, 2rem);
  overflow-x: hidden;
}

.party-flex {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.party-flex .party-hero-copy {
  flex: 1.05 1 280px;
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.party-flex .party-hero-media {
  flex: 0.95 1 280px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  margin-left: -2rem;
  max-width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.35);
}

.party-flex .party-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sized against the viewport but living in a half-width flex column, so the
   ceiling has to leave room for the fallback face: the heading renders in
   Impact or plain sans-serif until Archivo Black lands, and both are wider.
   No break-word here — this is one word, and breaking it only ever produces a
   severed "BIRTHDA / Y" rather than a useful wrap. */
.party-kicker {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.4vw, 5.5rem);
  color: #fff;
  line-height: 0.9;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  max-width: 100%;
}

.party-soar-panel {
  background: #fff;
  color: var(--blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 36px 100%, 0 calc(100% - 36px));
  padding: 1.75rem 2rem 1.85rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 140px;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* "Celebrate!" overran the white panel's inner width by a few px at 4.4rem,
   which is what severed it into "CELEBRAT / E". */
.party-soar-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--blue);
  margin: 0;
  overflow-wrap: normal;
  min-width: 0;
}

.party-soar-panel .btn {
  max-width: 100%;
  white-space: normal;
}

.party-steps-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.party-steps-flex li {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 0 0 1.35rem;
  text-align: center;
  backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}

.party-steps-flex li:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.22);
}

.step-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.party-steps-flex li:hover .step-media img {
  transform: scale(1.06);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  margin: 0 auto 0.85rem;
}

.party-steps-flex h3,
.party-steps h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  padding: 0 1.1rem;
}

.party-steps-flex p,
.party-steps p {
  font-size: 0.95rem;
  margin: 0;
  padding: 0 1.15rem;
}

.party-ig {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.party-ig .social-ig {
  margin: 0;
}

/* Legacy party */
.party-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: end;
  margin-bottom: 2.25rem;
  position: relative;
}

.party-hero-copy {
  position: relative;
  z-index: 2;
}

.party-hero-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  margin-left: -2rem;
  max-width: 100%;
  min-width: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.party-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.party-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.party-steps li {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.35rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* FAQ */
.faq {
  background: #fff;
  color: var(--ink);
  padding-top: clamp(4rem, 9vw, 7rem);
}

.faq-head {
  margin-bottom: 2rem;
}

.faq-head h2 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--ink);
  margin-bottom: 0.35rem;
  overflow-wrap: normal;
  max-width: 100%;
  line-height: 1.05;
}

.faq-head p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.faq-card {
  border: 1px solid rgba(122, 75, 184, 0.45);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin: 0;
}

.faq-card .faq-q {
  list-style: none;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  padding: 1rem 2.75rem 1rem 1.15rem;
  margin: 0;
  line-height: 1.25;
  position: relative;
  user-select: none;
  overflow-wrap: break-word;
  max-width: 100%;
}

.faq-card .faq-q::-webkit-details-marker {
  display: none;
}

.faq-card .faq-q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

.faq-card[open] .faq-q::after {
  content: "–";
}

.faq-card .faq-q:hover {
  filter: brightness(1.08);
}

.faq-card .answer {
  padding: 1.1rem 1.15rem 1.25rem;
  color: var(--muted);
  margin: 0;
  max-width: none;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.65;
  animation: faqOpen 0.25s ease;
}

.faq-card .answer-body {
  padding: 1.1rem 1.15rem 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  animation: faqOpen 0.25s ease;
}

.faq-card .answer-body > *:first-child {
  margin-top: 0;
}

.faq-card .answer-body > *:last-child {
  margin-bottom: 0;
}

.faq-card .answer-body p {
  margin: 0 0 0.85rem;
  max-width: none;
  color: var(--muted);
}

.faq-card .answer-body ul,
.faq-card .answer-body ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.faq-card .answer-body li {
  margin-bottom: 0.35rem;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer brand band — infinite slide */
.footer-brand {
  --mega-pad-y: clamp(1.35rem, 3.5vw, 2.35rem);
  background:
    linear-gradient(180deg, rgba(255, 122, 0, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(46, 196, 255, 0.14), transparent 40%),
    linear-gradient(135deg, #2e1054 0%, var(--blue) 48%, #5a2a96 100%);
  color: #fff;
  padding: var(--mega-pad-y) 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.footer-brand::before,
.footer-brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  pointer-events: none;
}

.footer-brand::before {
  top: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--red), var(--cyan), transparent);
  opacity: 0.85;
  animation: mega-edge-glow 4.5s ease-in-out infinite;
}

.footer-brand::after {
  bottom: 0;
  background: linear-gradient(90deg, transparent, var(--red), var(--cyan), var(--red), transparent);
  opacity: 0.7;
  animation: mega-edge-glow 4.5s ease-in-out infinite reverse;
}

.footer-brand .mega-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.footer-brand .marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.footer-brand .mega-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.footer-brand .mega-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 1.75rem);
  padding: 0 clamp(1rem, 3.5vw, 2.5rem);
  white-space: nowrap;
}

.footer-brand .mega-name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6.2vw, 4.25rem);
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 24px rgba(46, 196, 255, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.28);
  background: linear-gradient(
    105deg,
    #fff 0%,
    #fff 38%,
    var(--cyan) 50%,
    #fff 62%,
    #fff 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mega-shimmer 5.5s ease-in-out infinite;
}

.footer-brand .mega-name em {
  font-style: normal;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--red);
  -webkit-text-fill-color: var(--red);
  text-shadow:
    0 0 18px rgba(255, 122, 0, 0.55),
    0 4px 14px rgba(255, 122, 0, 0.35);
  display: inline-block;
  animation: mega-accent-pulse 2.8s ease-in-out infinite;
}

.footer-brand .orb {
  width: clamp(28px, 4.8vw, 52px);
  height: clamp(28px, 4.8vw, 52px);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.88);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 4px rgba(46, 196, 255, 0.12),
    0 0 18px rgba(255, 122, 0, 0.25);
  animation: mega-orb-spin 9s linear infinite;
}

.footer-brand .orb span {
  width: 52%;
  height: 52%;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cyan), var(--red));
  box-shadow: 0 0 12px rgba(46, 196, 255, 0.45);
  animation: mega-orb-core 2.4s ease-in-out infinite;
}

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

@keyframes mega-accent-pulse {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.12); transform: scale(1.04); }
}

@keyframes mega-orb-spin {
  to { transform: rotate(360deg); }
}

@keyframes mega-orb-core {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(0.82); opacity: 1; }
}

@keyframes mega-edge-glow {
  0%, 100% { opacity: 0.45; filter: saturate(1); }
  50% { opacity: 0.95; filter: saturate(1.35); }
}

@media (max-width: 809.98px) {
  .footer-brand {
    --mega-pad-y: clamp(1.1rem, 4vw, 1.65rem);
  }

  .footer-brand .mega-name {
    font-size: clamp(1.35rem, 7.5vw, 2.35rem);
    letter-spacing: 0.02em;
  }

  .footer-brand .mega-item {
    gap: 0.75rem;
    padding: 0 0.95rem;
  }

  .footer-brand .orb {
    width: clamp(22px, 6vw, 34px);
    height: clamp(22px, 6vw, 34px);
    border-width: 2px;
  }

  .footer-brand .marquee-track {
    animation-duration: 22s;
  }

  .footer-brand .mega-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
}

@media (max-width: 479.98px) {
  .footer-brand .mega-name {
    font-size: clamp(1.2rem, 8.5vw, 1.7rem);
  }

  .footer-brand .marquee-track {
    animation-duration: 18s;
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: clamp(1.35rem, 3.2vw, 1.85rem) var(--pad);
  background:
    radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255, 122, 0, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 100% at 100% 100%, rgba(46, 196, 255, 0.18), transparent 50%),
    radial-gradient(ellipse 55% 90% at 0% 100%, rgba(200, 255, 46, 0.12), transparent 48%),
    linear-gradient(180deg, #3a1768 0%, #2e1054 42%, #1a0530 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 -18px 48px rgba(18, 6, 31, 0.45),
    0 -4px 0 rgba(255, 122, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 -10px 22px rgba(8, 0, 20, 0.35);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 215, 80, 0.15) 20%,
    rgba(255, 122, 0, 0.85) 50%,
    rgba(46, 196, 255, 0.55) 80%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -40%;
  width: min(70vw, 520px);
  height: 120%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
  animation: footerGlowDrift 6.5s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

.site-footer a {
  color: var(--lime);
  font-weight: 700;
}

.footer-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  font-size: clamp(0.92rem, 2.4vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  transform-style: preserve-3d;
  animation: footerCopyFloat 3.4s ease-in-out infinite;
}

.footer-copy-brand {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: none;
  background: linear-gradient(
    110deg,
    #fff8e7 0%,
    #ffe566 18%,
    #fff 36%,
    #2ec4ff 52%,
    #ff7a00 68%,
    #c8ff2e 84%,
    #fff 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 0 rgba(10, 0, 24, 0.55)) drop-shadow(0 6px 14px rgba(255, 122, 0, 0.35));
  animation: footerBrandShimmer 3.2s linear infinite;
}

.footer-copy-sep {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
}

.footer-copy-note {
  color: rgba(255, 255, 255, 0.82);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 2px 0 rgba(20, 8, 40, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.35);
}

@keyframes footerGlowDrift {
  from { opacity: 0.45; transform: translateX(-50%) translateY(0); }
  to { opacity: 0.85; transform: translateX(-50%) translateY(10%); }
}

@keyframes footerCopyFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-3px) rotateX(6deg);
  }
}

@keyframes footerBrandShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 260% center; }
}

@media (max-width: 520px) {
  .footer-copy {
    flex-direction: column;
    gap: 0.2rem;
  }

  .footer-copy-sep {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::after,
  .footer-copy,
  .footer-copy-brand {
    animation: none !important;
  }

  .footer-copy {
    transform: none;
  }

  .footer-copy-brand {
    background: linear-gradient(90deg, #ffe566, #fff, #2ec4ff);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 0 rgba(10, 0, 24, 0.45));
  }
}

/* Attractions page — rebuilt showcase */
.attr-hero {
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.attr-hero-flex {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.attr-hero-copy {
  flex: 1 1 320px;
  min-width: 0;
}

/* "Attractions" alone is wider than the copy column at the old 5rem ceiling, and
   break-word answered that by severing it into "ATTRACTIO / NS". The heading is
   meant to wrap after "Our"; the ceiling now leaves the long word room to sit on
   its own line whole, with slack for the wider fallback face. */
.attr-hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.02;
  /* explicit, not merely absent: the base h1 rule would otherwise re-apply
     break-word and go on severing the word */
  overflow-wrap: normal;
}

.attr-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 36rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.attr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.attr-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.attr-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.attr-hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.attr-hero-stats span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.attr-hero-visual {
  flex: 1 1 300px;
  position: relative;
  min-height: 360px;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
  overflow: hidden;
}

.attr-hero-main {
  margin: 0;
  width: 78%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  background: #2a1548;
}

.attr-hero-main img,
.attr-hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.attr-hero-float {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}

.attr-hero-float-a {
  width: 42%;
  aspect-ratio: 4 / 3;
  left: 0;
  bottom: 8%;
  animation-delay: -1.5s;
}

.attr-hero-float-b {
  width: 34%;
  aspect-ratio: 1;
  left: 6%;
  top: 4%;
  animation-delay: -2.8s;
}

.attr-hero-mascot {
  position: absolute;
  width: min(140px, 32%);
  right: 0;
  bottom: 0;
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  animation: floaty 4.5s ease-in-out infinite;
  pointer-events: none;
}

.attr-intro-band {
  background: #fff;
  color: var(--ink);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.attr-intro-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.attr-intro-copy {
  flex: 1 1 320px;
  max-width: 40rem;
  min-width: 0;
}

.attr-intro-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  color: var(--blue);
  overflow-wrap: normal;
}

.attr-intro-copy p {
  color: var(--muted);
  margin: 0;
  overflow-wrap: break-word;
}

.attr-intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
  max-width: 100%;
}

.attr-intro-pills span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1a7fb8);
  padding: 0.55rem 0.9rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  animation: attr-pill-pop 3.5s ease-in-out infinite;
}

.attr-intro-pills span:nth-child(2) { animation-delay: 0.2s; background: linear-gradient(135deg, var(--red), #ff9500); }
.attr-intro-pills span:nth-child(3) { animation-delay: 0.4s; }
.attr-intro-pills span:nth-child(4) { animation-delay: 0.6s; background: linear-gradient(135deg, #1a7fb8, var(--cyan)); }
.attr-intro-pills span:nth-child(5) { animation-delay: 0.8s; background: linear-gradient(135deg, var(--red), var(--blue)); }

@keyframes attr-pill-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.attr-showcase {
  padding-top: clamp(3rem, 7vw, 5rem);
  overflow-x: hidden;
}

.attr-showcase-head {
  text-align: center;
  margin-bottom: 1.25rem;
  max-width: 100%;
  min-width: 0;
  padding-inline: 0.15rem;
}

.attr-showcase-head .section-title {
  max-width: 100%;
  overflow-wrap: normal;
  hyphens: manual;
}

.attr-showcase-lead {
  margin: -0.35rem auto 0;
  max-width: 34rem;
  opacity: 0.92;
  overflow-wrap: break-word;
  padding-inline: 0.15rem;
}

.attr-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 2rem;
  max-width: 100%;
}

.attr-filter {
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  max-width: 100%;
  box-sizing: border-box;
}

.attr-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.7);
}

.attr-filter.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 22px rgba(255, 122, 0, 0.35);
}

.attr-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.attr-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 11, 24, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    opacity 0.35s ease;
}

.attr-tile[hidden],
.attr-tile.is-filtered-out {
  display: none !important;
}

.attr-tile:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.attr-tile-lg {
  grid-row: span 2;
}

.attr-tile-wide {
  grid-column: span 2;
}

.attr-tile-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #2a1548;
}

.attr-tile-lg .attr-tile-media {
  aspect-ratio: auto;
  flex: 1;
  min-height: 280px;
}

.attr-tile-wide .attr-tile-media {
  aspect-ratio: 16 / 9;
}

.attr-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.attr-tile:hover .attr-tile-media img {
  transform: scale(1.08);
}

.attr-tile-body {
  padding: 1rem 1.05rem 1.15rem;
  color: #fff;
}

.attr-tag {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 122, 0, 0.9);
  padding: 0.28rem 0.55rem;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
  margin-bottom: 0.45rem;
}

.attr-tile-body h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 0.4rem;
  overflow-wrap: normal;
}

.attr-tile-body p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.92;
  overflow-wrap: anywhere;
}

.attr-empty {
  text-align: center;
  margin: 1.5rem 0 0;
  font-weight: 700;
}

.attr-experience {
  background: #fff;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.attr-experience-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.attr-exp-card {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #f6f1fc, #fff);
  border: 1px solid rgba(122, 75, 184, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.attr-exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(46, 16, 84, 0.12);
}

.attr-exp-card h3 {
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  overflow-wrap: normal;
}

.attr-exp-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

.attr-cta-band {
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  overflow-x: hidden;
}

.attr-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
  min-width: 0;
}

.attr-cta-flex > * {
  min-width: 0;
  max-width: 100%;
  flex: 1 1 16rem;
}

.attr-cta-flex h2 {
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
  overflow-wrap: normal;
  line-height: 1.08;
  max-width: 100%;
}

.attr-cta-flex p {
  margin: 0;
  max-width: 34rem;
  opacity: 0.95;
  overflow-wrap: break-word;
}

.attr-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
  flex: 0 1 auto;
}

.visit-mini {
  text-align: center;
}

.visit-mini h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.75rem;
  overflow-wrap: normal;
}

.visit-mini .address {
  margin-bottom: 1.25rem;
}

.visit-mini-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Legacy attractions helpers */
.attractions-intro {
  background: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.attractions-intro .grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.attractions-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.attractions-intro p {
  color: var(--muted);
  max-width: 36rem;
}

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

.attr-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0.85rem 0 0.4rem;
}

.attr-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  margin: 0;
}

.attr-card .ph-img {
  aspect-ratio: 1;
  border-width: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.attr-card:hover .ph-img {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.08);
}

.feature-row:hover .feature-media img {
  transform: scale(1.02);
}

/* Book Party page — rebuilt showcase */
.party-page-hero {
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.party-page-hero-flex {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.party-page-hero-copy {
  flex: 1 1 320px;
  min-width: 0;
}

/* "Celebrate" alone is wider than the copy column at the old 5.2rem ceiling,
   and break-word answered that by severing it into "CELEBRAT / E". The heading
   is meant to wrap between words; the ceiling now leaves the long word room
   to sit whole, with slack for the wider fallback face. */
.party-page-hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.02;
  /* explicit, not merely absent: the base h1 rule would otherwise re-apply
     break-word and go on severing the word */
  overflow-wrap: normal;
}

.party-page-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 36rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.party-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.party-page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.party-page-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.party-page-hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1;
}

.party-page-hero-stats span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.party-page-hero-visual {
  flex: 1 1 300px;
  position: relative;
  max-width: 540px;
  width: 100%;
  margin-inline: auto;
  min-height: 340px;
  overflow: hidden;
}

.party-page-hero-main {
  margin: 0;
  width: 82%;
  margin-left: auto;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  background: #2a1548;
}

.party-page-hero-main img,
.party-page-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.party-page-float {
  position: absolute;
  margin: 0;
  width: 38%;
  aspect-ratio: 1;
  left: 0;
  bottom: 4%;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}

.party-page-cake {
  position: absolute;
  width: min(150px, 34%);
  top: -4%;
  left: 8%;
  z-index: 3;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  animation: floaty 4.2s ease-in-out infinite;
  pointer-events: none;
}

.party-why {
  background: #fff;
  color: var(--ink);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.party-why-head {
  text-align: center;
  margin-bottom: 2rem;
}

.party-why-head h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--blue);
  margin-bottom: 0.5rem;
  overflow-wrap: normal;
}

.party-why-head p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
}

.party-why-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.party-why-card {
  flex: 1 1 240px;
  min-width: 0;
  max-width: 100%;
  padding: 1.5rem 1.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff, #f6f1fc);
  border: 1px solid rgba(122, 75, 184, 0.28);
  box-shadow: 0 12px 32px rgba(46, 16, 84, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.party-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(46, 16, 84, 0.14);
}

.party-why-card:hover .party-why-icon {
  background: var(--red);
  transform: scale(1.06) rotate(-6deg);
}

.party-why-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.35s ease;
}

.party-why-icon svg {
  width: 28px;
  height: 28px;
}

.party-why-card h3 {
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
  overflow-wrap: normal;
}

.party-why-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

.party-flow-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.party-flow-lead {
  margin: -0.35rem auto 0;
  max-width: 34rem;
  opacity: 0.92;
}

.party-flow-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.party-flow-step {
  flex: 1 1 240px;
  min-width: 0;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, background 0.35s ease;
}

.party-flow-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.party-flow-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.party-flow-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.party-flow-step:hover .party-flow-media img {
  transform: scale(1.06);
}

.party-flow-label {
  display: inline-block;
  margin: 1rem 1.15rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}

.party-flow-step h3 {
  margin: 0 1.15rem 0.45rem;
  font-size: 1.35rem;
  overflow-wrap: normal;
}

.party-flow-step p {
  margin: 0 1.15rem 1.25rem;
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

.party-packages-section {
  background: #fff;
  color: var(--ink);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.party-packages-head {
  text-align: center;
  margin-bottom: 2rem;
}

.party-packages-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--blue);
  margin-bottom: 0.5rem;
  overflow-wrap: normal;
}

.party-packages-head p {
  margin: 0;
  color: var(--muted);
}

.party-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.party-pkg-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8f4fc);
  border: 1px solid rgba(122, 75, 184, 0.28);
  box-shadow: 0 12px 36px rgba(46, 16, 84, 0.1);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.party-pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(46, 16, 84, 0.16);
  border-color: rgba(255, 122, 0, 0.45);
}

.party-pkg-featured {
  border-color: rgba(255, 122, 0, 0.55);
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.16);
}

@media (min-width: 1200px) {
  .party-pkg-featured {
    transform: translateY(-6px) scale(1.02);
  }

  .party-pkg-featured:hover {
    transform: translateY(-12px) scale(1.02);
  }
}

.party-pkg-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #2a1548;
}

.party-pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.party-pkg-card:hover .party-pkg-media img {
  transform: scale(1.07);
}

.party-pkg-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 0.35rem 0.65rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.party-pkg-badge-hot {
  background: var(--red);
}

.party-pkg-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 1.15rem 1.1rem 1.25rem;
}

.party-pkg-body h3 {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin-bottom: 0.35rem;
  color: var(--ink);
  overflow-wrap: normal;
}

.party-pkg-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--red);
  margin: 0 0 0.85rem;
  line-height: 1;
}

.party-pkg-body ul {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  flex: 1;
}

.party-pkg-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.party-pkg-body li::before {
  content: "✓";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}

.party-pkg-body .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: clamp(0.72rem, 2.6vw, 0.84rem);
  letter-spacing: 0.02em;
  padding: 0.8rem 1.35rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  overflow-wrap: break-word;
  --btn-clip: 10px;
}

.party-pkg-card:hover .btn {
  filter: brightness(1.06);
}

.party-cta-band {
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.party-cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.party-cta-flex > * {
  min-width: 0;
  max-width: 100%;
}

.party-cta-flex h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.5rem;
  overflow-wrap: normal;
}

.party-cta-flex p {
  margin: 0;
  max-width: 34rem;
  opacity: 0.95;
  overflow-wrap: break-word;
}

.party-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
}

/* Party packages (legacy) */
.packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  color: var(--ink);
  overflow: hidden;
}

.package-photo {
  width: calc(100% + 3rem);
  max-width: none;
  height: 180px;
  object-fit: cover;
  margin: -1.5rem -1.5rem 1.1rem;
  display: block;
}

.package-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.package-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--red);
  margin: 0.5rem 0 0.85rem;
}

.package-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.package-card li { margin-bottom: 0.35rem; }

/* Contact page — rebuilt (no form) */
.contact-hero {
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.contact-hero-flex {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.contact-hero-copy {
  flex: 1 1 320px;
  min-width: 0;
}

/* Matches the Attractions and Book-a-Party hero h1s so the three page headers
   read as one set. "Let's Connect" had room at the old 5rem, but the mismatch
   would have shown once those two came down. */
.contact-hero-copy h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.02;
  overflow-wrap: normal;
}

.contact-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 36rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hero-visual {
  flex: 1 1 300px;
  position: relative;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.contact-hero-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 3;
  background: #2a1548;
}

.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hero-badge {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  animation: pulse-badge 2.8s ease-in-out infinite;
  z-index: 2;
}

.contact-hero-badge strong {
  font-size: 1.15rem;
  line-height: 1;
}

.contact-hero-badge span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-section {
  background: #fff;
  color: var(--ink);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.contact-info-head {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-info-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--blue);
  margin-bottom: 0.5rem;
  overflow-wrap: normal;
}

.contact-info-head p {
  margin: 0;
  color: var(--muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
  padding: 1.5rem 1.25rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #fff 0%, #f6f1fc 100%);
  border: 1px solid rgba(122, 75, 184, 0.28);
  box-shadow: 0 12px 32px rgba(46, 16, 84, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--cyan));
  background-size: 200% 100%;
  animation: rate-bar 4s linear infinite;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(46, 16, 84, 0.16);
  border-color: rgba(255, 122, 0, 0.45);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.08) rotate(-6deg);
  background: var(--red);
  color: #fff;
}

.contact-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  margin-bottom: 1rem;
  transition: transform 0.35s ease, background 0.35s ease;
}

.contact-info-icon svg {
  width: 30px;
  height: 30px;
}

.contact-info-label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.contact-info-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.contact-info-detail {
  margin: 0 0 0.65rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-info-detail a {
  color: var(--blue);
  font-weight: 800;
  word-break: break-word;
}

.contact-info-detail a:hover {
  color: var(--red);
}

.contact-info-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-info-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-message-cta {
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.contact-message-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 24px;
  background: rgba(15, 11, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  max-width: 100%;
  box-sizing: border-box;
}

.contact-message-flex > * {
  min-width: 0;
  max-width: 100%;
}

.contact-message-copy {
  flex: 1 1 300px;
  min-width: 0;
}

.contact-message-icon {
  width: 64px;
  height: 64px;
  color: var(--cyan);
  margin-bottom: 0.85rem;
  animation: floaty 4.2s ease-in-out infinite;
}

.contact-message-icon svg {
  width: 100%;
  height: 100%;
}

.contact-message-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.55rem;
  overflow-wrap: normal;
  line-height: 1.08;
}

.contact-message-copy p {
  margin: 0;
  max-width: 36rem;
  opacity: 0.95;
  overflow-wrap: break-word;
}

.contact-message-btn {
  flex-shrink: 1;
  max-width: 100%;
  animation: contact-cta-pulse 2.6s ease-in-out infinite;
}

@keyframes contact-cta-pulse {
  0%, 100% { transform: translateY(0); box-shadow: var(--shadow-btn); }
  50% { transform: translateY(-4px); box-shadow: 6px 10px 0 rgba(30, 12, 58, 0.35); }
}

.contact-connect {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.contact-connect-flex {
  display: flex;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}

.contact-connect-copy {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-connect-copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.65rem;
  overflow-wrap: normal;
  line-height: 1.05;
}

.contact-connect-copy > p {
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-social svg {
  width: 22px;
  height: 22px;
}

.contact-social:hover {
  background: rgba(255, 122, 0, 0.35);
  transform: translateY(-3px);
}

.contact-connect-map {
  flex: 1.15 1 300px;
  min-width: 0;
}

.contact-connect-map .map-frame {
  height: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 11;
}

/* Contact form */
.contact-form-section {
  background: #fff;
  padding: 3rem 0 4rem;
}

.contact-form {
  width: min(100%, 720px);
  margin: 0 auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(122, 75, 184, 0.45);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #f6f1fc;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #e8f8ee;
  color: #11691a;
  font-weight: 600;
}

.form-status.is-visible { display: block; }

/* Below-fold sections skip layout/paint until near viewport */
#rates,
#hours,
#activities,
#party,
#faq,
#waiver,
.attractions-grid,
.party-packages,
.contact-grid,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 96px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.12s);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up {
  transform: translateY(40px);
}

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

/* Soft tilt for interactive media */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
  will-change: transform;
}

/* Placeholder image helper */
.ph {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(15, 11, 24, 0.08)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.12) 12px,
      rgba(255, 255, 255, 0.12) 13px
    ),
    #7a4bb8;
  color: rgba(15, 11, 24, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 1099.98px) and (min-width: 810px) {
  .header-ctas {
    gap: 0.35rem;
  }

  .btn-stamp-ico {
    display: none;
  }

  .btn-stamp {
    padding-inline: 0.55rem 0.45rem;
  }

  .header-main-body {
    padding-left: 1.55rem;
    padding-right: 1.15rem;
    gap: 0.4rem;
  }
}

@media (max-width: 1199.98px) {
  .nav-desktop { gap: 0; }
  .nav-link { font-size: 0.62rem; padding: 0.2rem 0.35rem; }
  .nav-ico { width: 1.4rem; height: 1.4rem; }
  .brand-panel {
    margin-right: -1.7rem;
    padding: 0.55rem 2.5rem 0.55rem 0.7rem;
  }
  .brand-panel img:not(.brand-chrome),
  .brand-logo {
    height: clamp(58px, 6.2vw, 78px);
  }
  .header-main {
    height: clamp(70px, 7.2vw, 86px);
  }
  .btn-stamp {
    font-size: 0.58rem;
    min-height: 38px;
    padding: 0.4rem 0.5rem;
    gap: 0.25rem;
  }
  .btn-stamp-ico,
  .btn-stamp-arrow {
    width: 0.95rem;
    height: 0.95rem;
  }

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

@media (max-width: 809.98px) {
  .header-main,
  .nav-desktop,
  .header-ctas { display: none; }

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

  .brand-panel {
    margin-right: 0;
    padding: 0.25rem 0.5rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
  }

  .brand-chrome {
    display: none;
  }

  .brand-panel img:not(.brand-chrome),
  .brand-logo {
    height: clamp(52px, 12vw, 78px);
    max-width: min(300px, 74vw);
  }

  .site-header {
    background: linear-gradient(180deg, #1a0530 0%, #2e1054 100%);
    padding: 0.35rem 0;
    min-height: 86px;
  }

  .site-header::before {
    display: none;
  }

  .site-header.is-over-hero {
    background: linear-gradient(180deg, #1a0530 0%, #2e1054 100%);
  }

  /* All CTAs: keep labels inside chamfered buttons on small screens */
  .btn {
    --btn-clip: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    overflow-wrap: break-word;
    font-size: clamp(0.74rem, 2.6vw, 0.88rem);
    letter-spacing: 0.03em;
    padding: 0.72rem 1.3rem;
  }

  .btn-lg {
    min-height: 50px;
    padding: 0.82rem 1.35rem;
    font-size: clamp(0.78rem, 2.8vw, 0.92rem);
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: clamp(0.7rem, 2.3vw, 0.8rem);
  }

  .btn-round {
    --btn-clip: 0px;
    clip-path: none;
  }

  .section {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }

  :root {
    --pad: clamp(1.25rem, 5.5vw, 2rem);
    --header-h: 90px;
  }

  .celebrate-copy {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 0.15rem;
  }

  .celebrate-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
    max-width: 100%;
  }

  .celebrate-copy > p {
    margin-inline: auto;
    max-width: 36rem;
    font-size: 0.98rem;
  }

  .celebrate-copy .eyebrow {
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }

  .celebrate-copy .stat-strip {
    justify-content: center;
    margin: 0.85rem 0 1rem;
  }

  .site-header,
  .site-header.is-over-hero {
    position: sticky;
  }

  .site-header.is-over-hero:not(.is-scrolled) {
    background: linear-gradient(180deg, #1a0530 0%, #2e1054 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header.is-over-hero.is-scrolled {
    background: linear-gradient(180deg, #14081f 0%, #24103f 100%);
  }

  .brand img {
    height: clamp(52px, 12vw, 78px);
    max-width: min(300px, 74vw);
  }

  .hero {
    /* Phones keep the same 16:9 box as desktop: assets/skylinevideo-hero-mobile.mp4
       is just a smaller encode of the same frame, so every pixel it delivers is
       shown instead of being discarded by object-fit. */
    --hero-aspect: 16 / 9;
    min-height: 0;
    height: auto;
  }

  .hero-bar {
    padding: 0.4rem 0.4rem clamp(1.25rem, 5vw, 1.9rem);
  }

  /* No fixed floor on a phone: the panel is exactly as tall as the copy, since
     the video band above already carries the imagery. */
  .hero-bar-stage {
    min-height: 0;
    align-items: stretch;
  }

  /* The half-width photo column has nowhere to go once the copy centres, so the
     art drops behind the whole panel as texture instead. */
  .hero-bar-art {
    width: 100%;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.22) 62%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.22) 62%, transparent 100%);
  }

  .hero-bar-copy {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: clamp(0.9rem, 3.6vw, 1.35rem);
    padding: clamp(1.4rem, 5.5vw, 2.1rem) clamp(1rem, 4.5vw, 1.6rem) clamp(1.3rem, 4.5vw, 1.8rem);
  }

  .hero-headline {
    align-items: center;
    text-align: center;
  }

  .hero-bar-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-bar-actions .btn-stamp {
    width: 100%;
    max-width: 100%;
    font-size: clamp(0.66rem, 3.1vw, 0.8rem);
  }

  /* Keep only the sparkles that frame the corners; the rest would land under the
     centred copy. */
  .hb-star-b,
  .hb-plus-b,
  .hb-dot-b,
  .hb-bolt {
    display: none;
  }

  .hb-star-a { left: 6%; top: 8%; }
  .hb-star-c { left: 8%; top: 84%; }
  .hb-plus-a { left: 88%; top: 12%; }
  .hb-dot-a { left: 91%; top: 26%; }

  .about-grid,
  .rate-grid,
  .feature-row,
  .feature-row.reverse,
  .party-hero,
  .party-steps,
  .faq-grid,
  .attractions-intro .grid,
  .attr-grid,
  .packages,
  .activities-stage {
    grid-template-columns: 1fr;
  }

  .attr-bento {
    grid-template-columns: 1fr;
  }

  .attr-tile-lg,
  .attr-tile-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .attr-hero-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .attr-hero {
    padding: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(1.5rem, 4vw, 2.25rem);
  }

  .attr-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  /* Phones give the copy the full column width, so the long word fits with room
     to spare and break-word stays a never-fired last resort against clipping. */
  .attr-hero-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.05;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .attr-hero-lead {
    font-size: 0.98rem;
    max-width: none;
  }

  .attr-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.15rem;
  }

  .attr-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  .attr-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.75rem;
  }

  .attr-hero-stats strong {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  }

  .attr-hero-stats span {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .attr-hero-visual {
    max-width: min(100%, 420px);
    min-height: 280px;
    margin-inline: auto;
    display: block;
    overflow: hidden;
  }

  .attr-hero-main {
    width: 78%;
    margin-left: auto;
    margin-right: 0;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    border-width: 3px;
    grid-column: auto;
  }

  .attr-hero-float {
    position: absolute;
    width: auto;
    animation: floaty 5s ease-in-out infinite;
  }

  .attr-hero-float-a {
    width: 44%;
    aspect-ratio: 4 / 3;
    left: 0;
    bottom: 8%;
    top: auto;
    right: auto;
  }

  .attr-hero-float-b {
    width: 36%;
    aspect-ratio: 1;
    left: 4%;
    top: 4%;
    bottom: auto;
    right: auto;
  }

  .attr-hero-mascot {
    display: none;
  }

  .attr-intro-band {
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    overflow-x: hidden;
  }

  .attr-intro-copy {
    max-width: 100%;
  }

  .attr-intro-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    overflow-wrap: break-word;
  }

  .attr-showcase {
    padding-top: clamp(2rem, 5vw, 3rem);
    overflow-x: hidden;
  }

  .attr-showcase-head {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .attr-showcase-head .section-title {
    font-size: clamp(1.35rem, 7.2vw, 2rem);
    padding-inline: 0;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .attr-showcase-lead {
    font-size: 0.92rem;
    max-width: none;
    overflow-wrap: break-word;
  }

  .attr-filters {
    gap: 0.4rem;
    margin-bottom: 1.35rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .attr-filter {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.75rem;
    flex: 0 1 auto;
  }

  .attr-cta-band {
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow-x: hidden;
  }

  .attr-cta-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1.15rem;
    width: 100%;
    max-width: 100%;
  }

  .attr-cta-flex > * {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .attr-cta-flex h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
    overflow-wrap: anywhere;
  }

  .attr-cta-flex p {
    max-width: none;
    width: 100%;
    font-size: 0.95rem;
    overflow-wrap: break-word;
  }

  .attr-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .attr-cta-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  .visit-mini h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    overflow-wrap: break-word;
  }

  .visit-mini-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .visit-mini-actions .btn {
    width: 100%;
    padding-inline: 1.3rem;
  }

  .party-page-hero-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .party-page-hero {
    padding: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(1.5rem, 4vw, 2.25rem);
  }

  .party-page-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  /* Phones give the copy the full column width, so the long word fits with room
     to spare and break-word stays a never-fired last resort against clipping. */
  .party-page-hero-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.05;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .party-page-lead {
    font-size: 0.98rem;
    max-width: none;
  }

  .party-page-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1.15rem;
  }

  .party-page-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  .party-page-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 0.75rem;
  }

  .party-page-hero-stats strong {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .party-page-hero-stats span {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .party-page-hero-visual {
    max-width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    overflow: hidden;
  }

  .party-page-hero-main {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 10;
    grid-column: auto;
    border-radius: 18px;
    border-width: 3px;
  }

  .party-page-float {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(48%, 180px);
    aspect-ratio: 1;
    animation: none;
    justify-self: start;
  }

  .party-page-cake {
    display: none;
  }

  .party-why {
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  }

  .party-why-head h2,
  .party-packages-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    overflow-wrap: break-word;
  }

  .party-packages-section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .party-packages-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-inline: auto;
  }

  .party-pkg-body .btn {
    width: 100%;
    max-width: 100%;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    padding: 0.85rem 1.3rem;
  }

  .party-cta-band {
    padding: clamp(2rem, 5vw, 3rem) 0;
    overflow: hidden;
  }

  .party-cta-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1.15rem;
  }

  .party-cta-flex h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .party-cta-flex p {
    max-width: none;
  }

  .party-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .party-cta-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .contact-hero {
    padding: clamp(1.5rem, 4vw, 2.25rem) 0 clamp(1.5rem, 4vw, 2.25rem);
  }

  .contact-hero-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .contact-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .contact-hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .contact-hero-lead {
    font-size: 0.98rem;
    max-width: none;
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-hero-actions .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  .contact-hero-visual {
    max-width: 100%;
  }

  .contact-hero-badge {
    width: 76px;
    height: 76px;
    right: 6%;
    bottom: 8%;
  }

  .contact-info-section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

  .contact-info-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    overflow-wrap: break-word;
  }

  .contact-info-detail {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-message-cta {
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    overflow: hidden;
  }

  .contact-message-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 1.15rem;
    padding: 1.25rem 1.1rem;
  }

  .contact-message-icon {
    margin-inline: 0;
  }

  .contact-message-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .contact-message-copy p {
    max-width: none;
  }

  .contact-message-btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
    flex-shrink: 1;
  }

  .contact-connect {
    padding-top: clamp(2rem, 5vw, 3rem);
    overflow: hidden;
  }

  .contact-connect-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .contact-connect-copy {
    width: 100%;
    max-width: 100%;
  }

  .contact-connect-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .contact-connect-copy > p {
    max-width: none;
  }

  .contact-socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
  }

  .contact-social {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    box-sizing: border-box;
  }

  .contact-connect-map {
    width: 100%;
    max-width: 100%;
  }

  .contact-connect-map .map-frame {
    min-height: 220px;
    aspect-ratio: 16 / 11;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-connect-map .map-frame-flex:hover {
    transform: none;
  }

  .feature-row.reverse .feature-media,
  .feature-row.reverse .feature-copy {
    order: initial;
  }

  .celebrate-flex,
  .party-flex,
  .activities-flex {
    flex-direction: column;
  }

  .act-showcase {
    margin-top: -20px;
    padding-top: clamp(2rem, 5vw, 2.75rem);
    padding-bottom: clamp(2rem, 5vw, 2.75rem);
  }

  .act-showcase-head {
    margin-bottom: 1.35rem;
    text-align: center;
  }

  .act-showcase-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    overflow-wrap: break-word;
  }

  .act-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    gap: 0.75rem;
  }

  .act-spot {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .act-card {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .act-spot-body {
    padding: 1rem 0.95rem 0.95rem;
  }

  .act-spot-body p {
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
  }

  .act-showcase-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.25rem;
  }

  .act-showcase-cta .btn {
    width: 100%;
    max-width: 100%;
    padding-inline: 1.3rem;
  }

  #celebrate {
    padding-top: clamp(1.25rem, 3.5vw, 1.75rem);
    padding-bottom: 0.5rem;
  }

  #rates {
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .celebrate-flex {
    gap: 0.35rem;
    align-items: stretch;
  }

  .celebrate-visual,
  .celebrate-copy {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .celebrate-visual {
    max-width: 260px;
    margin-inline: auto;
    overflow: hidden;
  }

  .hours-days {
    grid-template-columns: 1fr;
  }

  .visit-panel,
  .visit-info {
    grid-template-columns: 1fr;
  }

  .visit-map .map-frame {
    min-height: 240px;
    aspect-ratio: 16 / 11;
    height: auto;
  }

  .visit-actions .btn {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
  }

  .hours-flex {
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    max-width: 420px;
    margin-inline: auto;
  }

  .explore-section {
    margin-top: -16px;
    padding-top: clamp(2rem, 5vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  }

  .explore-intro {
    margin-bottom: 1.15rem;
  }

  .explore-intro .float-decor {
    width: min(72px, 22vw);
    margin: 0 auto 0.35rem;
    animation: none;
  }

  .explore-intro .section-title {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 0.45rem;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .explore-lead {
    font-size: 0.95rem;
    margin-top: 0;
    padding-inline: 0.25rem;
  }

  .activities {
    margin-top: -20px;
    padding-top: clamp(1.75rem, 4vw, 2.5rem);
  }

  .feature-card .feature-media {
    aspect-ratio: 16 / 10;
  }

  .feature-card .feature-copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .feature-card .feature-copy p {
    font-size: 0.95rem;
  }

  .feature-card .btn {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 0.75rem 1.3rem;
    box-sizing: border-box;
  }

  .photo-stack {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 220px;
  }

  .stack-main {
    inset: 3% 6% 6% 3%;
    border-radius: 16px;
  }

  .stack-float-a {
    width: 32%;
  }

  .stack-float-b {
    width: 36%;
  }

  .stack-badge {
    width: 58px;
    height: 58px;
    bottom: 6%;
    right: 6%;
  }

  .stack-badge span {
    font-size: 0.95rem;
  }

  .celebrate-mascot {
    display: none;
  }

  .rate-grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .rate-card-v2 {
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .visit-head h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .faq-head h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .attr-intro-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
  }

  .attr-intro-copy,
  .attr-intro-pills {
    width: 100%;
    max-width: 100%;
  }

  .attr-experience-flex,
  .party-why-flex,
  .party-flow-flex {
    flex-direction: column;
  }

  .attr-exp-card,
  .party-why-card,
  .party-flow-step {
    flex: 1 1 auto;
    width: 100%;
  }

  .party-hero-media {
    margin-left: 0;
  }

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

  .visit-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .rates-head {
    margin-bottom: 0.25rem;
    padding-inline: 0.15rem;
  }

  .rates-lead {
    font-size: 0.95rem;
    padding-inline: 0.25rem;
  }

  .section-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
    padding-inline: 0.1rem;
    line-height: 1.08;
  }

  .party-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .party-flex .party-hero-copy,
  .party-flex .party-hero-media {
    flex: 0 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .party-flex .party-hero-media {
    margin-left: 0;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .party-flex .party-hero-media img {
    min-height: 0;
    height: 100%;
  }

  .party-kicker {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .party-soar-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem 1.1rem 1.25rem;
    min-height: 0;
    gap: 0.85rem;
  }

  .party-soar-panel h2 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .party-soar-panel .btn {
    width: 100%;
    padding-inline: 1.3rem;
  }

  .party-steps-flex li {
    flex: 1 1 100%;
  }

  .rate-card-v2:hover {
    transform: translateY(-8px) scale(1.01);
  }

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

  .rate-panel {
    max-width: none;
  }

  .hours {
    text-align: center;
  }

  .hours-copy .social-ig {
    margin: 0;
  }

  .bento-grid {
    display: none;
  }

  .act-carousel {
    display: block;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .act-rail {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.85rem;
  }

  .act-rail .v-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .act-rail .v-dash {
    flex: 1 1 100%;
    min-height: 0;
    width: auto;
    height: 0;
    border-left: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.55);
  }

  .party-flex .party-hero-media {
    margin-left: 0;
    width: 100%;
  }

  .activities-stage {
    gap: 1rem;
  }

  .v-rail {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: 0.75rem;
  }

  .v-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .v-dash {
    flex: 1;
    min-height: 0;
    width: auto;
    height: 0;
    border-left: 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.55);
  }

  .activities-collage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cta"
      "carousel";
    justify-items: center;
  }

  .act-carousel {
    justify-self: center;
  }

  .ticker-section {
    margin: -16px 0;
    padding: 1.25rem 0;
  }

  .ticker-core {
    width: 64px;
    height: 64px;
  }

  .page-hero { min-height: 420px; padding-bottom: 4rem; }

  .curve-bottom {
    border-bottom-left-radius: 50% 48px;
    border-bottom-right-radius: 50% 48px;
  }

  .curve-top {
    border-top-left-radius: 50% 48px;
    border-top-right-radius: 50% 48px;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }
}

@media (min-width: 810px) and (max-width: 1099.98px) {
  .rate-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

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

  .act-showcase-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    min-height: 440px;
  }

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

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

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

  .attr-tile-lg {
    grid-row: span 1;
    grid-column: span 2;
  }

  .attr-tile-wide {
    grid-column: span 2;
  }

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

  /* Three columns in this range leave each card phone-narrow, so give the
     program name its own line instead of a shrunken column. */
  .day-programs li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
  }

  .day-programs li span:first-child {
    flex: 0 0 auto;
  }

  .day-programs li span:last-child {
    margin-left: 0;
    text-align: left;
  }

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

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

  .visit-map .map-frame {
    min-height: 280px;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .bento-hero {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .bento-wide {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 479.98px) {
  .rate-grid-4,
  .contact-info-grid,
  .act-showcase-grid {
    grid-template-columns: 1fr;
  }

  .day-programs li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.05rem;
  }

  .day-programs li span:first-child {
    flex: 0 0 auto;
  }

  .day-programs li span:last-child {
    margin-left: 0;
    text-align: left;
  }

  .day-time {
    font-size: 0.98rem;
  }

  .day-time-split {
    font-size: 0.9rem;
  }

  .act-card {
    aspect-ratio: 16 / 10;
  }

  .attr-showcase-head .section-title {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }

  .attr-cta-flex h2,
  .party-cta-flex h2 {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
  }

  .attr-filter {
    font-size: 0.68rem;
    padding: 0.45rem 0.65rem;
  }

  .btn {
    --btn-clip: 8px;
    font-size: clamp(0.7rem, 3.2vw, 0.84rem);
    padding: 0.7rem 1.2rem;
    letter-spacing: 0.02em;
  }

  .btn-lg {
    padding: 0.78rem 1.25rem;
    font-size: clamp(0.74rem, 3.4vw, 0.88rem);
  }

  .attr-hero-stats,
  .party-page-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .attr-hero-stats div:last-child,
  .party-page-hero-stats div:last-child {
    grid-column: 1 / -1;
  }

  .attr-hero-stats strong,
  .party-page-hero-stats strong {
    font-size: clamp(1.1rem, 6vw, 1.35rem);
  }

  .attr-hero-stats span,
  .party-page-hero-stats span {
    font-size: 0.58rem;
  }

  .attr-hero-visual {
    min-height: 260px;
    max-width: min(100%, 360px);
  }

  .attr-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
  }

  .party-page-hero-copy h1 {
    font-size: clamp(1.55rem, 9vw, 2.15rem);
  }

  .party-kicker {
    font-size: clamp(1.45rem, 9vw, 2rem);
  }

  .act-showcase-head h2,
  .visit-head h2,
  .party-why-head h2,
  .party-packages-head h2,
  .contact-message-copy h2,
  .contact-info-head h2,
  .contact-connect-copy h2 {
    font-size: clamp(1.4rem, 8vw, 1.9rem);
  }

  .faq-head h2 {
    font-size: clamp(1.75rem, 11vw, 2.35rem);
  }

  .faq-card .faq-q {
    font-size: 0.85rem;
    padding: 0.9rem 2.4rem 0.9rem 1rem;
  }

  .celebrate-copy h2 {
    font-size: clamp(1.3rem, 7.5vw, 1.75rem);
  }

  .section-title {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .stat-strip {
    gap: 0.75rem 1rem;
  }

  .curve-bottom {
    border-bottom-left-radius: 50% 32px;
    border-bottom-right-radius: 50% 32px;
  }

  .curve-top {
    border-top-left-radius: 50% 32px;
    border-top-right-radius: 50% 32px;
  }

  .rate-hero-price strong {
    font-size: clamp(1.75rem, 10vw, 2.25rem);
  }

  .party-pkg-body {
    padding: 1.1rem 1rem 1.2rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .brand-panel img:not(.brand-chrome),
  .brand-logo,
  .brand img {
    max-width: min(300px, 76vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up {
    opacity: 1;
    transform: none;
  }

  [data-tilt] {
    transform: none !important;
  }

  .rate-card-v2::before,
  .rate-shine {
    animation: none !important;
  }

  .rate-card-v2:hover {
    transform: none;
  }

  .contact-message-btn,
  .contact-hero-badge,
  .attr-intro-pills span,
  .act-spot,
  .act-card {
    animation: none !important;
  }

  .act-spot:hover,
  .act-card:hover {
    transform: none;
  }

  .footer-brand .mega-name {
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .footer-brand .mega-name em {
    color: var(--red);
    -webkit-text-fill-color: var(--red);
    transform: none;
  }
}

/* ==========================================================================
   Page loader — a 360° sweep orbits the logo while the page settles.

   Two rules keep it from ever costing load time:
   1. It only exists when JS is running (html.has-loader), so a scripting
      failure can never leave a visitor staring at an overlay.
   2. Dismissal is not gated on the animation. The moment content is ready the
      overlay stops taking pointer events and the page scrolls again, while the
      fade finishes purely decoratively on top.
   ========================================================================== */

.page-loader {
  --loader-size: clamp(196px, 46vw, 288px);
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  place-content: center;
  justify-items: center;
  gap: clamp(1.35rem, 4vw, 2rem);
  overflow: hidden;
  background: radial-gradient(circle at 50% 38%, #43197c 0%, #24104a 44%, #150922 100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.has-loader .page-loader {
  display: grid;
}

/* the same topography texture the header uses, so the loader feels native */
.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/topo.svg") repeat;
  background-size: 520px 520px;
  opacity: 0.16;
  pointer-events: none;
}

.page-loader::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(38% 42% at 22% 26%, rgba(255, 122, 0, 0.3), transparent 70%),
    radial-gradient(40% 44% at 78% 74%, rgba(46, 196, 255, 0.26), transparent 72%);
  animation: loaderDrift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.loader-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--loader-size);
  height: var(--loader-size);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.loader-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.loader-track {
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.loader-track-inner {
  inset: 13%;
  border: 1px dashed rgba(255, 255, 255, 0.11);
  animation: loaderSpin 20s linear infinite reverse;
}

/* The comet sweep needs masking to read as a ring rather than a filled disc,
   so it is only drawn where masking is actually supported. */
@supports ((-webkit-mask: radial-gradient(#000, #000)) or (mask: radial-gradient(#000, #000))) {
  .loader-sweep {
    inset: 0;
    background: conic-gradient(
      from 0deg,
      rgba(255, 122, 0, 0) 0deg,
      rgba(255, 122, 0, 0) 168deg,
      rgba(255, 122, 0, 0.85) 292deg,
      #ff9500 336deg,
      #ffd79c 358deg,
      rgba(255, 255, 255, 0) 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 5px), #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side, #0000 calc(100% - 5px), #000 calc(100% - 5px));
    animation: loaderSpin 1.9s cubic-bezier(0.66, 0.14, 0.34, 0.86) infinite;
  }

  .loader-sweep-alt {
    inset: 13%;
    background: conic-gradient(
      from 0deg,
      rgba(46, 196, 255, 0) 0deg,
      rgba(46, 196, 255, 0) 198deg,
      rgba(46, 196, 255, 0.8) 318deg,
      #bdefff 358deg,
      rgba(46, 196, 255, 0) 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, #0000 calc(100% - 3px), #000 calc(100% - 3px));
    animation-duration: 3s;
    animation-direction: reverse;
  }
}

/* rides the leading edge of the outer sweep, so it reads as one comet */
.loader-spark {
  position: absolute;
  inset: 0;
  animation: loaderSpin 1.9s cubic-bezier(0.66, 0.14, 0.34, 0.86) infinite;
  pointer-events: none;
}

.loader-spark::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 10px 3px rgba(255, 149, 0, 0.85),
    0 0 24px 9px rgba(255, 122, 0, 0.4);
}

.loader-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(var(--loader-size) * 0.66);
  animation: loaderPulse 2.6s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(8, 3, 18, 0.55));
}

.loader-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 2.3vw, 0.82rem);
  letter-spacing: 0.34em;
  /* offsets the trailing letter-space so the text stays optically centred */
  text-indent: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  transition: opacity 0.25s ease;
}

.loader-bar {
  position: relative;
  z-index: 1;
  width: min(230px, 52vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-soft), var(--red) 48%, var(--cyan));
  animation: loaderBar 1.25s ease-in-out infinite;
}

/* Exit: the page is already usable here — this is decoration only. */
.page-loader.is-done {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.page-loader.is-done .loader-stage {
  transform: scale(1.12);
  opacity: 0;
}

.page-loader.is-done .loader-caption,
.page-loader.is-done .loader-bar {
  opacity: 0;
}

.has-loader .page-loader[hidden] {
  display: none;
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes loaderBar {
  0% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(285%);
  }
}

@keyframes loaderDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader::after,
  .loader-track-inner,
  .loader-sweep,
  .loader-spark,
  .loader-logo,
  .loader-bar span {
    animation: none;
  }

  .loader-bar span {
    width: 100%;
  }

  .page-loader,
  .loader-stage {
    transition-duration: 0.15s;
  }
}

/* —— Opening Soon location pages —— */
.soon-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding:
    calc(var(--header-h) + clamp(1.25rem, 4vw, 2.5rem))
    var(--pad)
    clamp(2.5rem, 6vw, 4rem);
  overflow: clip;
  color: #fff;
  background: #12061f;
}

.soon-page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.soon-page-bg picture,
.soon-page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: soonBgDrift 22s ease-in-out infinite alternate;
}

.soon-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(46, 16, 84, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, rgba(18, 6, 31, 0.72) 0%, rgba(18, 6, 31, 0.55) 42%, rgba(18, 6, 31, 0.88) 100%);
}

.soon-orbs,
.soon-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.soon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: soonOrbFloat 10s ease-in-out infinite;
}

.soon-orb-a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.55), transparent 68%);
}

.soon-orb-b {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  right: -10%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(46, 196, 255, 0.45), transparent 68%);
  animation-delay: -4s;
}

.soon-orb-c {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  top: 55%;
  left: 40%;
  background: radial-gradient(circle, rgba(200, 255, 46, 0.28), transparent 68%);
  animation-delay: -7s;
}

.soon-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 6px 2px rgba(255, 255, 255, 0.9),
    0 0 16px 4px rgba(255, 215, 80, 0.55);
  animation: soonTwinkle 2.4s ease-in-out infinite;
}

.soon-sparkle:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s; }
.soon-sparkle:nth-child(2) { top: 28%; left: 78%; width: 4px; height: 4px; animation-delay: 0.4s; }
.soon-sparkle:nth-child(3) { top: 62%; left: 18%; width: 5px; height: 5px; animation-delay: 0.9s; }
.soon-sparkle:nth-child(4) { top: 72%; left: 86%; animation-delay: 1.3s; }
.soon-sparkle:nth-child(5) { top: 40%; left: 50%; width: 3px; height: 3px; animation-delay: 1.7s; }
.soon-sparkle:nth-child(6) { top: 14%; left: 58%; width: 4px; height: 4px; animation-delay: 0.2s; }
.soon-sparkle:nth-child(7) { top: 84%; left: 42%; width: 5px; height: 5px; animation-delay: 1.1s; }
.soon-sparkle:nth-child(8) { top: 50%; left: 8%; width: 3px; height: 3px; animation-delay: 1.8s; }

.soon-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2.2vw, 1.35rem);
}

.soon-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 3.15rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 2px 0 rgba(20, 8, 40, 0.35),
    0 0 28px rgba(255, 122, 0, 0.35);
  animation: soonBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.soon-brand em {
  font-style: normal;
  color: var(--lime);
}

.soon-pin {
  width: 52px;
  height: 52px;
  color: var(--red);
  filter: drop-shadow(0 0 12px rgba(255, 122, 0, 0.65));
  animation: soonPinBounce 2.2s ease-in-out infinite;
}

.soon-pin svg {
  width: 100%;
  height: 100%;
}

.soon-content h1 {
  font-size: clamp(1.85rem, 6.2vw, 3.6rem);
  color: #fff;
  text-shadow: 0 3px 18px rgba(8, 0, 20, 0.45);
  animation: soonBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.soon-glitter {
  position: relative;
  z-index: 1;
  margin: 0.15rem 0 0;
  padding: 0.55rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5.2vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  filter: drop-shadow(0 0 12px rgba(255, 215, 80, 0.45));
  animation: soonGlitterPulse 2.2s ease-in-out infinite;
}

.soon-glitter::before,
.soon-glitter::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: soonStarSpin 2.5s linear infinite;
  pointer-events: none;
}

.soon-glitter::before {
  left: 0.15rem;
  animation-delay: 0s;
}

.soon-glitter::after {
  right: 0.15rem;
  animation-delay: -1.2s;
}

.soon-glitter-text,
.soon-year {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(
    110deg,
    #fff8e7 0%,
    #ffe566 14%,
    #fff 28%,
    #2ec4ff 42%,
    #ff7a00 56%,
    #c8ff2e 70%,
    #fff 84%,
    #ffd700 100%
  );
  background-size: 280% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: soonGlitterSweep 2.8s linear infinite;
}

.soon-year {
  font-size: 0.82em;
  letter-spacing: 0.08em;
  animation:
    soonGlitterSweep 2.8s linear infinite,
    soonYearGlow 1.6s ease-in-out infinite;
}

.soon-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 2.4vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  animation: soonBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.35rem;
  animation: soonBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.soon-actions .btn {
  min-width: min(100%, 11.5rem);
}

.soon-actions .btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
}

.soon-more {
  margin: 1.1rem 0 0;
  animation: soonBrandIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.soon-more > p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.soon-more-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  margin-top: 0.55rem;
}

.soon-more-links a {
  color: var(--cyan);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.soon-more-links a:hover,
.soon-more-links a:focus-visible {
  color: var(--lime);
  border-bottom-color: var(--lime);
  outline: none;
}

.nav-dropdown a.is-active,
.mobile-dropdown-panel a.is-active {
  background: rgba(255, 122, 0, 0.32);
  color: var(--lime);
}

@keyframes soonBgDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, 1%, 0); }
}

@keyframes soonOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

@keyframes soonTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.55); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes soonGlitterSweep {
  0% { background-position: 0% center; }
  100% { background-position: 280% center; }
}

@keyframes soonGlitterPulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 80, 0.35));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 215, 80, 0.85)) drop-shadow(0 0 40px rgba(46, 196, 255, 0.35));
    transform: scale(1.035);
  }
}

@keyframes soonYearGlow {
  0%, 100% {
    opacity: 0.88;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes soonStarSpin {
  0%, 100% { opacity: 0.35; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(180deg); }
}

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

@keyframes soonBrandIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .soon-page {
    align-items: end;
    padding-bottom: clamp(2rem, 8vw, 3rem);
  }

  .soon-glitter {
    padding-inline: 1.25rem;
    font-size: clamp(1.2rem, 7.2vw, 1.85rem);
  }

  .soon-actions {
    width: 100%;
    flex-direction: column;
  }

  .soon-actions .btn {
    width: 100%;
  }

  .soon-pin {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon-page-bg img,
  .soon-orb,
  .soon-sparkle,
  .soon-glitter,
  .soon-glitter::before,
  .soon-glitter::after,
  .soon-glitter-text,
  .soon-year,
  .soon-pin,
  .soon-brand,
  .soon-content h1,
  .soon-lead,
  .soon-actions,
  .soon-more {
    animation: none !important;
  }

  .soon-page-bg img {
    transform: none;
  }

  .soon-glitter {
    filter: none;
    transform: none;
  }

  .soon-glitter-text,
  .soon-year {
    background: linear-gradient(90deg, #ffe566, #fff, #2ec4ff);
    -webkit-background-clip: text;
    background-clip: text;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
