/* ================================================================
   SuperSplash USA - FUN edition
   Water-fill preloader, layered animated waves, floating bubbles,
   splash decorations, ripple-on-hover buttons, moving palm-tree deco.
   ================================================================ */

:root {
  --cream: #FFFEF8;
  --cream-2: #FBF5DD;
  --sun: #FFD447;
  --sun-2: #FFE47A;
  --coral: #FF6A3D;
  --coral-2: #FF8B62;
  --sky: #C8ECFB;
  --sky-2: #7BD5F5;
  --teal: #28B2B8;
  --teal-deep: #1A7378;
  --ink: #0E3A3E;
  --ink-2: #1a4b50;
  --ink-3: #4a6d70;
  --white: #ffffff;
  --shadow-1: 0 12px 30px -14px rgba(14, 58, 62, .22);
  --shadow-2: 0 30px 80px -30px rgba(14, 58, 62, .3);
  --radius: 26px;
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --ease-bounce: cubic-bezier(.68,-.55,.27,1.55);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
  font-size: 17px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Common ==================================================================== */

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 6px 14px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  margin-bottom: 22px;
  background: rgba(40, 178, 184, .08);
}
.eyebrow--light {
  color: var(--cream);
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
}

.section-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  color: var(--ink);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

/* Buttons with ripple + splash =============================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-out), filter .3s ease;
  white-space: nowrap;
  will-change: transform;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--big { padding: 18px 32px; font-size: 16px; }

.btn--buy {
  background: linear-gradient(135deg, var(--coral) 0%, #ff4718 100%);
  color: var(--white);
  box-shadow: 0 10px 24px -6px rgba(255, 106, 61, .5);
}
.btn--buy:hover { box-shadow: 0 18px 34px -6px rgba(255, 106, 61, .75); }

.btn--pass {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 10px 24px -6px rgba(255, 212, 71, .55);
}
.btn--pass:hover { box-shadow: 0 18px 34px -6px rgba(255, 212, 71, .8); }

.btn--white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.2);
}
.btn--full { width: 100%; padding: 16px 24px; }

/* Splash ripple: expanding wave circle on hover */
.btn--splash::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  transform: translate(-50%,-50%) scale(0);
  transition: transform .8s var(--ease-out), opacity .8s ease;
  pointer-events: none;
  z-index: -1;
}
.btn--splash:hover::before {
  transform: translate(-50%,-50%) scale(40);
  opacity: 0;
}

/* Preloader: sky + rising water ============================================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}
.preloader__sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 50% 30%, rgba(255,220,120,.35), transparent 70%),
    linear-gradient(180deg, #7BD5F5 0%, #C8ECFB 100%);
  display: grid;
  place-items: center;
}
.preloader__sun {
  animation: sunRotate 20s linear infinite;
  transform-origin: 100px 100px;
  filter: drop-shadow(0 6px 22px rgba(255, 212, 71, .8));
}
.preloader__sun .sun-rays { transform-origin: 100px 100px; animation: sunRotate 12s linear infinite; }
@keyframes sunRotate { to { transform: rotate(360deg); } }

.preloader__water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, #28B2B8 0%, #1A7378 100%);
  overflow: visible;
}
.preloader__wave {
  position: absolute;
  top: -60px; left: 0;
  width: 200%;
  height: 80px;
  animation: waveDrift 6s linear infinite;
}
.preloader__wave--2 { top: -46px; height: 80px; animation: waveDrift 9s linear infinite reverse; }
.preloader__wave--3 { top: -32px; height: 80px; animation: waveDrift 12s linear infinite; }
@keyframes waveDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.preloader__bubbles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.preloader__bubbles span {
  position: absolute;
  bottom: -30px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  border: 2px solid rgba(255,255,255,.6);
  animation: bubbleRise 6s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}
.preloader__bubbles span:nth-child(1) { left: 10%; width: 24px; height: 24px; animation-delay: 0s; animation-duration: 5s; }
.preloader__bubbles span:nth-child(2) { left: 22%; width: 14px; height: 14px; animation-delay: 1.2s; animation-duration: 6s; }
.preloader__bubbles span:nth-child(3) { left: 35%; width: 28px; height: 28px; animation-delay: .5s; animation-duration: 5.5s; }
.preloader__bubbles span:nth-child(4) { left: 48%; width: 18px; height: 18px; animation-delay: 2.1s; animation-duration: 7s; }
.preloader__bubbles span:nth-child(5) { left: 60%; width: 22px; height: 22px; animation-delay: .8s; animation-duration: 4.8s; }
.preloader__bubbles span:nth-child(6) { left: 72%; width: 16px; height: 16px; animation-delay: 1.6s; animation-duration: 6.5s; }
.preloader__bubbles span:nth-child(7) { left: 84%; width: 26px; height: 26px; animation-delay: .3s; animation-duration: 5.2s; }
.preloader__bubbles span:nth-child(8) { left: 92%; width: 14px; height: 14px; animation-delay: 2.4s; animation-duration: 6.8s; }
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

.preloader__label {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: .1em;
  text-shadow: 0 4px 18px rgba(14, 58, 62, .5);
}
.preloader__title {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
}
.preloader__pct {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--sun);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.02em;
}

/* Live status pill ========================================================== */

.status {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid rgba(14, 58, 62, .1);
  box-shadow: var(--shadow-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--ink);
  text-transform: uppercase;
}
.status::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #26c568;
  box-shadow: 0 0 0 0 rgba(38, 197, 104, .55);
  animation: pulse 2s infinite;
}
.status.status--closed::before { background: #ff5757; animation: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(38, 197, 104, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(38, 197, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(38, 197, 104, 0); }
}
@media (max-width: 900px) {
  .status {
    top: auto;
    right: 50%;
    bottom: 16px;
    transform: translateX(50%);
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* Nav ======================================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 32px;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.is-stuck {
  background: rgba(255, 254, 248, .92);
  backdrop-filter: blur(16px);
  padding: 10px 32px;
  box-shadow: 0 10px 30px -22px rgba(14, 58, 62, .35);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.nav__brand-logo { display: inline-flex; }
.nav__brand-logo img { height: 60px; width: auto; display: block; }
.nav__brand-name {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Over the hero image the nav text needs light color */
.nav:not(.is-stuck) .nav__brand-name {
  background: linear-gradient(90deg, var(--cream) 0%, var(--sun) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__links {
  display: flex;
  gap: 26px;
  margin-left: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nav:not(.is-stuck) .nav__links { color: var(--cream); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--sun);
  transition: right .3s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }
.nav__ctas {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__ctas .btn--pass { display: none; }
  .nav { padding: 12px 18px; }
  .nav.is-stuck { padding: 8px 18px; }
}
@media (max-width: 640px) {
  .nav__brand-name { display: none; }
  .nav__brand-logo img { height: 72px; }
  .nav.is-stuck .nav__brand-logo img { height: 56px; }
  .nav__ctas .btn { padding: 10px 16px; font-size: 13px; }
}

/* Hamburger toggle — only visible on mobile */
.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  transition: background .25s;
}
.nav__toggle:hover { background: rgba(0,0,0,.06); }
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav:not(.is-stuck) .nav__toggle-bar { background: var(--cream); box-shadow: 0 1px 3px rgba(0,0,0,.35); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
}

/* Mobile slide-out menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  background: rgba(14, 58, 62, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100dvh;
  width: min(88vw, 380px);
  background: linear-gradient(180deg, #FFFEF8 0%, #C8ECFB 100%);
  padding: 96px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(14, 58, 62, .3);
  overflow-y: auto;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__links a {
  display: block;
  padding: 14px 8px;
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 58, 62, .1);
  transition: color .2s, transform .2s;
}
.mobile-menu__links a:hover { color: var(--teal); transform: translateX(4px); }
.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}
.mobile-menu__ctas .btn { justify-content: center; text-align: center; }
body.mobile-menu-open { overflow: hidden; }

/* Hero ====================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 32px 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.6s var(--ease-out);
  will-change: transform;
}
.hero.is-loaded .hero__img { transform: scale(1); }
/* Blue/teal gradient wash for text contrast on light hero image */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(14, 58, 62, .58) 0%, rgba(26, 115, 120, .42) 40%, rgba(40, 178, 184, .18) 70%, transparent 100%),
    linear-gradient(180deg, rgba(40, 90, 130, .2) 0%, transparent 50%, rgba(255,254,248,.0) 100%);
}

/* Sun in the sky */
.hero__sun {
  position: absolute;
  top: 8%;
  right: 6%;
  width: clamp(120px, 15vw, 220px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(255, 212, 71, .7));
  animation: sunFloat 6s var(--ease-in-out) infinite;
}
.hero__sun .sun-rays { transform-origin: 100px 100px; animation: sunRotate 30s linear infinite; }
@keyframes sunFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@media (max-width: 640px) { .hero__sun { display: none; } }

/* Bubbles rising in hero */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bubbles span {
  position: absolute;
  bottom: -40px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: 2px solid rgba(255,255,255,.55);
  animation: bubbleRiseSlow 10s var(--ease-in-out) infinite;
  will-change: transform, opacity;
}
.hero__bubbles span:nth-child(1) { left: 6%;  width: 30px; height: 30px; animation-delay: 0s;   animation-duration: 12s; }
.hero__bubbles span:nth-child(2) { left: 14%; width: 18px; height: 18px; animation-delay: 2s;   animation-duration: 9s; }
.hero__bubbles span:nth-child(3) { left: 24%; width: 40px; height: 40px; animation-delay: 1s;   animation-duration: 14s; }
.hero__bubbles span:nth-child(4) { left: 34%; width: 22px; height: 22px; animation-delay: 3s;   animation-duration: 11s; }
.hero__bubbles span:nth-child(5) { left: 46%; width: 28px; height: 28px; animation-delay: .7s;  animation-duration: 13s; }
.hero__bubbles span:nth-child(6) { left: 60%; width: 20px; height: 20px; animation-delay: 4s;   animation-duration: 10s; }
.hero__bubbles span:nth-child(7) { left: 72%; width: 34px; height: 34px; animation-delay: 1.5s; animation-duration: 15s; }
.hero__bubbles span:nth-child(8) { left: 82%; width: 16px; height: 16px; animation-delay: 3.5s; animation-duration: 8s; }
.hero__bubbles span:nth-child(9) { left: 90%; width: 26px; height: 26px; animation-delay: 2.2s; animation-duration: 12s; }
.hero__bubbles span:nth-child(10){ left: 96%; width: 22px; height: 22px; animation-delay: .3s;  animation-duration: 11s; }
@keyframes bubbleRiseSlow {
  0%   { transform: translateY(0) translateX(0) scale(.8); opacity: 0; }
  15%  { opacity: .85; }
  50%  { transform: translateY(-50vh) translateX(20px) scale(1); }
  85%  { opacity: .85; }
  100% { transform: translateY(-110vh) translateX(-15px) scale(1.1); opacity: 0; }
}

/* Layered waves at the bottom of hero */
.hero__waves {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 180px;
  pointer-events: none;
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 100%;
  will-change: transform;
}
.hero__wave--back  { animation: waveDrift 22s linear infinite; opacity: .8; }
.hero__wave--mid   { animation: waveDrift 16s linear infinite reverse; opacity: .9; height: 90%; }
.hero__wave--front { animation: waveDrift 10s linear infinite; height: 80%; }
@media (max-width: 640px) { .hero__waves { height: 100px; } }

.hero__content {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 0 12px var(--sun);
  animation: pulseYellow 1.6s infinite;
}
@keyframes pulseYellow {
  0%,100% { transform: scale(1); box-shadow: 0 0 12px var(--sun); }
  50%     { transform: scale(1.4); box-shadow: 0 0 22px var(--sun); }
}

.hero__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 8.4vw, 8rem);
  line-height: .9;
  letter-spacing: -.04em;
  margin: 0 0 32px;
  color: var(--cream);
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.35);
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line--accent {
  color: var(--sun);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.03em;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 560px;
  color: var(--cream);
  margin: 0 0 40px;
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 22px;
  max-width: 900px;
}
.stat { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px; }
.stat__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.stat__plus, .stat__k {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--sun);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.stat__lbl {
  flex-basis: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  opacity: .92;
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px; padding: 18px 20px; }
}

.hero__scroll {
  position: absolute;
  bottom: 190px;
  right: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  color: var(--cream);
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.hero__scroll svg { animation: bob 1.6s var(--ease-in-out) infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(4px); }
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* Marquee =================================================================== */

.marquee {
  background: var(--teal);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 4px solid var(--teal-deep);
  border-bottom: 4px solid var(--teal-deep);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
  will-change: transform;
  padding-left: 34px;
  color: var(--cream);
}
.marquee__track em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--sun);
  padding: 0 6px;
}
.marquee__icon {
  display: inline-flex; align-items: center;
  animation: spin 10s linear infinite;
}
.marquee__icon svg { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Wave divider ============================================================== */

.divider {
  position: relative;
  height: 120px;
  margin-top: -1px;
  overflow: hidden;
  line-height: 0;
}
.divider svg {
  width: 200%; height: 100%; display: block;
  animation: waveDrift 26s linear infinite;
  will-change: transform;
}

/* Rides / attractions ======================================================= */

.rides {
  padding: 140px 32px 90px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
}
.rides__deco--tube {
  position: absolute;
  top: 40px; right: 20px;
  animation: floatTilt 5s var(--ease-in-out) infinite;
  opacity: .28;
  pointer-events: none;
}
@keyframes floatTilt {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-16px) rotate(8deg); }
}

.rides__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.rides__head .section-lead { margin: 0 auto; }

.rides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(360px, auto);
  gap: 22px;
}

.ride {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease-bounce), box-shadow .5s var(--ease-out);
  border: 1px solid rgba(14, 58, 62, .06);
}
.ride:hover {
  transform: translateY(-8px) rotate(-.6deg);
  box-shadow: 0 24px 44px -18px rgba(14, 58, 62, .38);
}
.ride__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ride__img::after {
  content: '';
  position: absolute; inset: auto 0 -2px 0;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40" preserveAspectRatio="none"><path d="M0,20 C240,40 480,0 720,20 C960,40 1200,0 1440,20 L1440,40 L0,40 Z" fill="%23ffffff"/></svg>') no-repeat center bottom/100% 100%;
  z-index: 2;
}
.ride__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
  will-change: transform;
}
.ride:hover .ride__img img { transform: scale(1.08); }
.ride__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--white);
}
.ride__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 5px 12px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(40, 178, 184, .1);
  align-self: flex-start;
}
.ride h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.ride p {
  font-size: .95rem;
  color: var(--ink-3);
  margin: 0 0 18px;
  line-height: 1.55;
  flex: 1;
}
.ride__cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--coral);
  transition: transform .3s var(--ease-out), color .3s ease;
  display: inline-block;
  align-self: flex-start;
}
.ride:hover .ride__cta { transform: translateX(8px); color: var(--teal-deep); }

.ride--big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 720px;
  display: grid;
  grid-template-rows: 1.4fr 1fr;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
}
.ride--big .ride__img { aspect-ratio: auto; height: 100%; }
.ride--big .ride__img::after { background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 40" preserveAspectRatio="none"><path d="M0,20 C240,40 480,0 720,20 C960,40 1200,0 1440,20 L1440,40 L0,40 Z" fill="%231A7378"/></svg>') no-repeat center bottom/100% 100%; }
.ride--big .ride__body {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  padding: 40px 44px 40px;
  color: var(--cream);
  justify-content: center;
}
.ride--big h3 {
  color: var(--cream);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}
.ride--big p {
  color: rgba(255, 254, 248, .88);
  font-size: 1.05rem;
  max-width: 520px;
}
.ride--big .ride__tag {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--ink);
}
.ride--big .ride__cta { color: var(--sun); }

@media (max-width: 1024px) {
  .rides__grid { grid-template-columns: repeat(2, 1fr); }
  .ride--big { grid-column: span 2; grid-row: span 1; min-height: 480px; grid-template-rows: 1fr auto; }
}
@media (max-width: 640px) {
  .rides { padding: 90px 18px 60px; }
  .rides__grid { grid-template-columns: 1fr; }
  .ride--big { grid-column: span 1; min-height: 480px; }
  .ride--big .ride__body { padding: 30px 28px; }
}

/* Feature =================================================================== */

.feature {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 32px 200px;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.feature__bg { position: absolute; inset: 0; z-index: -1; }
.feature__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}
.feature__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 40%, rgba(40, 178, 184, .35), transparent 65%),
    linear-gradient(90deg, rgba(14, 58, 62, .8) 0%, rgba(14, 58, 62, .45) 55%, rgba(14, 58, 62, .15) 100%);
}
.feature__inner {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.feature__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: .92;
  letter-spacing: -.045em;
  color: var(--cream);
  margin: 0 0 28px;
  max-width: 16ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.feature__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: rgba(255, 254, 248, .95);
  max-width: 540px;
  margin: 0 0 40px;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.feature__wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 200%;
  height: 100px;
  z-index: 1;
  animation: waveDrift 20s linear infinite;
  will-change: transform;
}
.feature__wave--top {
  position: absolute;
  top: -1px; bottom: auto; left: 0;
  width: 200%;
  height: 70px;
  z-index: 2;
  animation: waveDrift 24s linear infinite reverse;
  will-change: transform;
}
.cta__wave--top {
  position: absolute;
  top: -1px; left: 0;
  width: 200%;
  height: 70px;
  z-index: 2;
  animation: waveDrift 24s linear infinite reverse;
  will-change: transform;
}
.groups__wave--top {
  position: absolute;
  top: -1px; left: 0;
  width: 200%;
  height: 70px;
  z-index: 2;
  animation: waveDrift 24s linear infinite reverse;
  will-change: transform;
}
@media (max-width: 640px) {
  .feature { padding: 100px 18px 120px; min-height: auto; }
}

/* Tickets =================================================================== */

.tickets {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 140px 32px 120px;
  position: relative;
}
.tickets__deco {
  position: absolute;
  top: 30px; left: 4%;
  animation: floatTilt 6s var(--ease-in-out) infinite;
  opacity: .28;
  pointer-events: none;
}
.tickets__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.tickets__head .section-lead { margin: 0 auto; }
.tickets__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.ticket {
  position: relative;
  padding: 46px 40px 42px;
  border-radius: 28px;
  background: var(--white);
  border: 1.5px solid rgba(14, 58, 62, .08);
  transition: transform .5s var(--ease-out), border-color .3s ease, box-shadow .3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.ticket:hover {
  transform: translateY(-10px) rotate(.6deg);
  box-shadow: 0 30px 60px -22px rgba(14, 58, 62, .4);
}

.ticket--pass {
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-color: transparent;
  color: var(--cream);
}
.ticket--pass::before {
  content: '';
  position: absolute; inset: -1px;
  background: radial-gradient(60% 40% at 100% 0%, rgba(255, 212, 71, .28), transparent 70%);
  pointer-events: none;
}
.ticket__ribbon {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--sun);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  animation: wiggle 3s var(--ease-in-out) infinite;
  transform-origin: center;
}
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  25%     { transform: rotate(-4deg); }
  75%     { transform: rotate(4deg); }
}
.ticket__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 18px;
  display: block;
}
.ticket--pass .ticket__eyebrow { color: var(--sun); }
.ticket__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 14px;
  color: var(--ink);
}
.ticket--pass .ticket__name { color: var(--cream); }
.ticket__blurb {
  color: var(--ink-3);
  margin: 0 0 26px;
}
.ticket--pass .ticket__blurb { color: rgba(255, 254, 248, .85); }
.ticket__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid rgba(14, 58, 62, .1);
}
.ticket--pass .ticket__list { border-color: rgba(255, 254, 248, .18); }
.ticket__list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid rgba(14, 58, 62, .1);
  font-size: .95rem;
  color: var(--ink-2);
  position: relative;
}
.ticket--pass .ticket__list li { border-color: rgba(255, 254, 248, .18); color: var(--cream); }
.ticket__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 18px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.ticket--pass .ticket__list li::before { border-color: var(--sun); }
@media (max-width: 720px) {
  .tickets__grid { grid-template-columns: 1fr; gap: 22px; }
  .tickets { padding: 100px 18px; }
  .ticket { padding: 36px 28px 32px; }
}

/* Plan ====================================================================== */

.plan {
  padding: 140px 32px 90px;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--cream);
}
.plan__head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.plan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.plan__card {
  padding: 34px 28px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid rgba(14, 58, 62, .08);
  transition: transform .5s var(--ease-bounce), border-color .3s ease, box-shadow .3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
}
.plan__card:hover {
  transform: translateY(-8px) rotate(-.8deg);
  border-color: var(--teal);
  box-shadow: 0 24px 44px -18px rgba(40, 178, 184, .4);
}
.plan__icon {
  color: var(--teal);
  margin-bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(40, 178, 184, .12);
  display: grid;
  place-items: center;
}
.plan__card:hover .plan__icon { animation: wiggle 1s var(--ease-in-out); }
.plan__card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.plan__stat {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral);
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1;
}
.plan__card p:not(.plan__stat) {
  font-size: .95rem;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  margin-top: auto;
}

.plan__extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1.5px dashed rgba(14, 58, 62, .18);
}
.plan__extra { padding: 24px 4px; }
.plan__extra-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  color: var(--coral);
  display: block;
  margin-bottom: 12px;
}
.plan__extra h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.plan__extra p { margin: 0; color: var(--ink-3); font-size: .95rem; }

@media (max-width: 1024px) { .plan__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .plan { padding: 90px 18px 60px; }
  .plan__grid { grid-template-columns: 1fr; gap: 16px; }
  .plan__extras { grid-template-columns: 1fr; }
}

/* Groups ==================================================================== */

.groups {
  padding: 140px 32px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.groups::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 71, .35), transparent 70%);
  z-index: 0;
  animation: floatSlow 8s var(--ease-in-out) infinite;
}
@keyframes floatSlow {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(20px, 30px); }
}
.groups__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.groups__list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.groups__item {
  padding: 24px 4px;
  border-top: 1px solid rgba(14, 58, 62, .18);
  transition: padding .3s ease;
}
.groups__item:last-child { border-bottom: 1px solid rgba(14, 58, 62, .18); }
.groups__item:hover { padding-left: 12px; }
.groups__label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.groups__item p { color: var(--ink-3); font-size: .98rem; margin: 0 0 12px; }
.linky {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--coral);
  transition: color .2s ease;
}
.linky:hover { color: var(--teal-deep); }
.groups__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
}
.groups__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}
.groups__ball {
  position: absolute;
  bottom: -30px; right: -30px;
  animation: ballBounce 3s var(--ease-in-out) infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
  z-index: 2;
}
@keyframes ballBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-20px) rotate(180deg); }
}
@media (max-width: 900px) {
  .groups__inner { grid-template-columns: 1fr; gap: 40px; }
  .groups { padding: 90px 18px; }
  .groups__photo { aspect-ratio: 4 / 3; transform: none; }
}

/* FAQ ======================================================================= */

.faq {
  padding: 140px 32px 100px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
}
.faq__head { text-align: center; margin-bottom: 60px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1.5px solid rgba(14, 58, 62, .12);
  padding: 26px 4px;
  transition: padding .3s ease;
}
.faq__item[open] { padding-bottom: 32px; }
.faq__item:last-child { border-bottom: 1.5px solid rgba(14, 58, 62, .12); }
.faq__item summary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 20px; height: 20px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--teal-deep); }
.faq__item p {
  color: var(--ink-3);
  font-size: 1rem;
  margin: 14px 0 0;
  padding-right: 30px;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .faq { padding: 90px 18px 60px; }
  .faq__item summary { font-size: 1.15rem; }
}

/* CTA final ================================================================= */

.cta {
  padding: 180px 32px 160px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(40, 178, 184, .45), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, rgba(255, 106, 61, .28), transparent 65%),
    linear-gradient(180deg, var(--teal-deep) 0%, var(--ink) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.cta__waves { position: absolute; inset: 0; pointer-events: none; }
.cta__wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 200%;
  height: 200px;
  animation: waveDrift 22s linear infinite;
}
.cta__wave--2 { animation: waveDrift 30s linear infinite reverse; height: 180px; }
.cta__inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.cta__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 40px;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.cta__row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cta__note {
  color: rgba(255, 254, 248, .75);
  font-size: .95rem;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 640px) { .cta { padding: 100px 18px; } }

/* Footer ==================================================================== */

.footer {
  background: var(--ink);
  padding: 80px 32px 40px;
  color: rgba(255, 254, 248, .7);
}
.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 254, 248, .1);
}
.footer__logo { height: 72px; width: auto; display: block; margin-bottom: 20px; filter: brightness(1.05); }
.footer__brand p { color: rgba(255, 254, 248, .55); font-size: .95rem; margin: 0; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 6px;
}
.footer__col a {
  font-size: .95rem;
  color: rgba(255, 254, 248, .7);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  color: rgba(255, 254, 248, .35);
  font-size: 12px;
  text-align: center;
}
@media (max-width: 720px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 60px 18px 32px; }
}

/* Motion primitives ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-fade] {
  opacity: 0;
  transform: translateY(20px);
}
[data-split] {
  overflow: hidden;
  display: block;
}
[data-split] > .split-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
/* CSS-driven reveal so the headline always shows even if GSAP flakes.
   Triggered by .hero.is-loaded (added when preloader completes or failsafe fires). */
.hero.is-loaded [data-split] > .split-inner {
  animation: splitReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.is-loaded .hero__title-line:nth-child(1) .split-inner { animation-delay: .20s; }
.hero.is-loaded .hero__title-line:nth-child(2) .split-inner { animation-delay: .28s; }
.hero.is-loaded .hero__title-line:nth-child(3) .split-inner { animation-delay: .36s; }
.hero.is-loaded .hero__title-line:nth-child(4) .split-inner { animation-delay: .44s; }
@keyframes splitReveal {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
/* Same for [data-fade] (badge, lead, ctas) — CSS-only reveal on hero load */
.hero.is-loaded [data-fade] {
  animation: fadeUp .9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero.is-loaded .hero__badge { animation-delay: .10s; }
.hero.is-loaded .hero__lead  { animation-delay: .55s; }
.hero.is-loaded .hero__ctas  { animation-delay: .70s; }
.hero.is-loaded .stat:nth-of-type(1) { animation-delay: .85s; }
.hero.is-loaded .stat:nth-of-type(2) { animation-delay: .95s; }
.hero.is-loaded .stat:nth-of-type(3) { animation-delay: 1.05s; }
.hero.is-loaded .stat:nth-of-type(4) { animation-delay: 1.15s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Scroll-triggered split-title (h2 lines wrapped by initSplitTitles JS) */
[data-split-title] .stl-inner {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}
[data-split-title].is-in .stl-inner {
  animation: splitReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-split-title].is-in span:nth-child(1) .stl-inner { animation-delay: 0s; }
[data-split-title].is-in span:nth-child(2) .stl-inner { animation-delay: .08s; }
[data-split-title].is-in span:nth-child(3) .stl-inner { animation-delay: .16s; }
[data-split-title].is-in span:nth-child(4) .stl-inner { animation-delay: .24s; }

