/**
 * H2O Homepage — "Sunset Nirvana" day→night layout.
 * Depends on h2o-tokens.css (design-system module).
 */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.h2o-page {
  font-family: var(--h2o-font-body);
  color: var(--h2o-foreground);
  background: var(--h2o-background);
  line-height: 1.6;
}
.h2o-page h1, .h2o-page h2, .h2o-page h3 {
  font-family: var(--h2o-font-display);
  font-weight: var(--h2o-display-weight, 600);
  letter-spacing: var(--h2o-display-tracking, -0.01em);
  line-height: 1.15;
}
.h2o-page img { max-width: 100%; height: auto; }
.h2o-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.h2o-section { padding: 84px 0; }

.h2o-label {
  font-size: 12.5px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--h2o-primary); margin-bottom: 12px;
}
.h2o-label--light { color: rgba(255,255,255,.85); }
.h2o-label--neon { color: var(--h2o-neon); }
.h2o-page h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; max-width: 780px; }
.h2o-lede { color: var(--h2o-foreground-soft); max-width: 640px; font-size: 16px; margin-bottom: 8px; }
.h2o-lede--night { color: var(--h2o-fg-dark-muted); }

/* ── Skip link (a11y) ── */
.h2o-skip {
  position: absolute; left: -9999px; top: 0; z-index: 60;
  background: var(--h2o-night-deep); color: #fff;
  padding: 12px 22px; border-radius: 0 0 12px 0;
  font-weight: 700; text-decoration: none;
}
.h2o-skip:focus { left: 0; }

/* ── Topbar (desktop) ── */
.h2o-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 51;
  background: rgba(4, 10, 22, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: transform var(--h2o-dur) var(--h2o-ease), opacity var(--h2o-dur) var(--h2o-ease);
}
.h2o-topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 36px; font-size: 12.5px;
}
.h2o-topbar__hours {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(195, 210, 229, .95); font-weight: 600; margin: 0;
}
.h2o-topbar__hours svg { width: 13px; height: 13px; color: var(--h2o-neon); flex: none; }
.h2o-topbar__contact { display: inline-flex; align-items: center; gap: 20px; }
.h2o-topbar__contact a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(195, 210, 229, .95); text-decoration: none; font-weight: 600;
}
.h2o-topbar__contact a:hover { color: var(--h2o-neon); }
.h2o-topbar__contact svg { width: 13px; height: 13px; }
body.h2o-scrolled .h2o-topbar { transform: translateY(-100%); opacity: 0; }

/* ── Header ── */
.h2o-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 50;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(7, 16, 33, .48), rgba(7, 16, 33, 0));
  transition: background var(--h2o-dur) var(--h2o-ease), box-shadow var(--h2o-dur) var(--h2o-ease),
              padding var(--h2o-dur) var(--h2o-ease), top var(--h2o-dur) var(--h2o-ease);
}
.h2o-header.is-scrolled {
  top: 0;
  background: rgba(7, 16, 33, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(7, 16, 33, .35);
  padding: 10px 0;
}
.h2o-header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Brand */
.h2o-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.h2o-brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(140deg, #22D3EE, #0284C7 70%);
  color: #fff; box-shadow: 0 4px 14px rgba(2, 132, 199, .45);
}
.h2o-brand__mark svg { width: 24px; height: 24px; }
.h2o-brand__text {
  display: inline-flex; flex-direction: column; line-height: 1.05;
  color: #fff; font-family: var(--h2o-font-display); font-weight: 600; font-size: 21px;
  letter-spacing: var(--h2o-display-tracking, -0.01em);
}
.h2o-brand__text em {
  font-style: normal; font-family: var(--h2o-font-body); font-weight: 700;
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--h2o-neon); margin-top: 3px;
}
.h2o-brand--footer .h2o-brand__mark { width: 46px; height: 46px; }

/* Desktop nav */
.h2o-nav { display: flex; align-items: center; gap: 4px; }
.h2o-nav > a, .h2o-nav__parent {
  color: rgba(255, 255, 255, .92); text-decoration: none;
  font-weight: 600; font-size: 15px;
  padding: 9px 13px; border-radius: 9px;
  transition: background 180ms ease, color 180ms ease;
}
.h2o-nav > a:hover, .h2o-nav__parent:hover { color: #fff; background: rgba(255, 255, 255, .10); }
.h2o-nav > a[aria-current="page"], .h2o-nav__group.is-current .h2o-nav__parent {
  color: #fff; background: rgba(34, 211, 238, .16);
}
.h2o-nav__label { display: none; }
.h2o-nav__foot { display: none; }
.h2o-nav__group { position: relative; }
.h2o-nav__parent { display: inline-flex; align-items: center; gap: 6px; }
.h2o-nav__parent svg { width: 13px; height: 13px; transition: transform 200ms ease; }
.h2o-nav__group:hover .h2o-nav__parent svg,
.h2o-nav__group:focus-within .h2o-nav__parent svg { transform: rotate(180deg); }

/* Mega panels */
.h2o-mega {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(7, 16, 33, .97);
  border: 1px solid rgba(34, 211, 238, .25); border-radius: 16px;
  padding: 12px; width: 330px;
  display: grid; gap: 4px;
  opacity: 0; visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  box-shadow: 0 20px 50px rgba(4, 10, 22, .55);
}
.h2o-mega::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.h2o-nav__group:hover .h2o-mega, .h2o-nav__group:focus-within .h2o-mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.h2o-mega__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px; border-radius: 11px; text-decoration: none;
}
.h2o-mega__item:hover { background: rgba(34, 211, 238, .12); }
.h2o-mega__thumb {
  width: 54px; height: 42px; flex: none; border-radius: 8px;
  background-size: cover; background-position: center;
  border: 1px solid rgba(255, 255, 255, .15);
}
.h2o-mega__item strong { display: block; color: #fff; font-size: 14px; font-weight: 700; line-height: 1.25; }
.h2o-mega__item em { display: block; font-style: normal; color: rgba(195, 210, 229, .85); font-size: 12px; margin-top: 2px; }

.h2o-nav__cta { padding: 11px 22px !important; font-size: 14px !important; margin-left: 10px; }

/* Header actions (mobile call + burger) */
.h2o-header__actions { display: none; align-items: center; gap: 8px; }
.h2o-header__call {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--h2o-gradient-cta); color: #fff;
  box-shadow: 0 6px 18px rgba(244, 63, 94, .4);
}
.h2o-header__call svg { width: 19px; height: 19px; }
.h2o-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px; cursor: pointer; padding: 0;
}
.h2o-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 220ms ease, opacity 220ms ease; }
.h2o-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.h2o-burger.is-open span:nth-child(2) { opacity: 0; }
.h2o-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.h2o-nav-backdrop {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(4, 10, 22, .6);
  opacity: 0; transition: opacity 250ms ease;
}
.h2o-nav-backdrop.is-open { opacity: 1; }

@media (min-width: 1025px) { .h2o-burger, .h2o-header__actions { display: none; } }

/* ── Hero ── */
.h2o-hero { position: relative; overflow: hidden; color: #fff; background: var(--h2o-gradient-hero); }

/* Aurora orbs — soft radial gradients (no blur filter: cheap on every GPU).
   GSAP drifts them via transform on desktop only. */
.h2o-orbs, .h2o-night__bloom { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.h2o-orb { position: absolute; border-radius: 50%; will-change: transform; }
.h2o-orb--sun { width: 560px; height: 560px; top: -190px; right: -130px; background: radial-gradient(circle, rgba(255, 138, 76, .60) 0%, rgba(255, 138, 76, 0) 66%); }
.h2o-orb--pool { width: 680px; height: 680px; bottom: -260px; left: -220px; background: radial-gradient(circle, rgba(34, 211, 238, .48) 0%, rgba(34, 211, 238, 0) 66%); }
.h2o-orb--magenta { width: 460px; height: 460px; top: 24%; right: 12%; background: radial-gradient(circle, rgba(225, 29, 143, .32) 0%, rgba(225, 29, 143, 0) 66%); }
.h2o-orb--neon { width: 600px; height: 600px; top: -210px; left: -170px; background: radial-gradient(circle, rgba(124, 58, 237, .35) 0%, rgba(124, 58, 237, 0) 66%); }
.h2o-orb--violet { width: 560px; height: 560px; bottom: -230px; right: -150px; background: radial-gradient(circle, rgba(225, 29, 143, .26) 0%, rgba(225, 29, 143, 0) 66%); }
.h2o-hero__in { padding: 150px 24px 150px; position: relative; z-index: 2; text-align: center; }
.h2o-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--h2o-radius-pill);
  padding: 7px 18px; font-size: 13px; font-weight: 700; letter-spacing: .4px;
}
.h2o-kicker svg { width: 15px; height: 15px; }
.h2o-hero h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 600;
  margin: 26px auto 18px; max-width: 900px;
  text-shadow: 0 4px 30px rgba(7, 16, 33, .35);
}
.h2o-hero__pop { color: #FFD8A8; }
.h2o-hero__tagline { font-size: clamp(16px, 2vw, 19px); max-width: 620px; margin: 0 auto 34px; color: rgba(255,255,255,.92); }
.h2o-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.h2o-hero__chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; list-style: none; margin-top: 30px; }
.h2o-hero__chips li {
  font-size: 12.5px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--h2o-radius-pill);
  padding: 6px 15px; background: rgba(255,255,255,.08);
}
.h2o-hero__stats { display: flex; gap: 40px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.h2o-stat { text-align: center; }
.h2o-stat__n { display: block; font-family: var(--h2o-font-display); font-weight: 600; font-size: 30px; color: #FFD8A8; }
.h2o-stat__l { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,.75); font-weight: 700; }
.h2o-waves { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; line-height: 0; }
.h2o-waves svg { width: 100%; height: 90px; display: block; }

/* ── About ── */
.h2o-about { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.h2o-about__text p { color: var(--h2o-foreground-soft); margin-bottom: 16px; }
.h2o-about__text .h2o-btn { margin-top: 6px; }
.h2o-about__panel {
  position: relative; min-height: 290px; border-radius: var(--h2o-radius);
  background:
    radial-gradient(240px 140px at 75% 20%, rgba(255, 216, 168, .55), transparent 65%),
    linear-gradient(150deg, #22D3EE, #0284C7 55%, #2563EB);
  box-shadow: var(--h2o-shadow-lg);
}
.h2o-about__badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: var(--h2o-radius-sm);
  box-shadow: var(--h2o-shadow-md);
  padding: 16px 22px; font-weight: 800; font-size: 13px; line-height: 1.35;
  color: var(--h2o-foreground);
}
.h2o-about__badge-n {
  font-family: var(--h2o-font-display); font-weight: 600; font-size: 34px;
  color: var(--h2o-primary); display: block;
}

/* ── Day venues ── */
.h2o-venues-day { background: linear-gradient(180deg, var(--h2o-background), #E0F5FE); }
.h2o-cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.h2o-vcard { overflow: hidden; padding-bottom: 22px; }
.h2o-vcard__photo { height: 150px; position: relative; background-size: cover; background-position: center; }
.h2o-vcard__photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(340px 90px at 50% 115%, rgba(255,255,255,.55), transparent 70%);
}
.h2o-vcard__photo--pool { background: linear-gradient(135deg, #A5F3FC 0%, #06B6D4 55%, #2563EB); }
.h2o-vcard__photo--edge { background: linear-gradient(135deg, #22D3EE 0%, #0284C7 60%, #0369A1); }
.h2o-vcard__photo--heaven { background: linear-gradient(135deg, #FDE68A 0%, #F97316 55%, #E11D8F); }
.h2o-vcard__badge {
  position: absolute; top: 12px; left: 14px; z-index: 1;
  background: rgba(255,255,255,.92); color: var(--h2o-primary);
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--h2o-radius-pill); padding: 3px 11px;
}
.h2o-vcard h3 { font-size: 19px; padding: 18px 22px 2px; }
.h2o-vcard__tag { padding: 2px 22px 6px; font-size: 12.5px; font-weight: 700; color: var(--h2o-primary); }
.h2o-vcard__tag--night { padding: 0 0 6px; color: var(--h2o-neon); }
.h2o-vcard > p:not(.h2o-vcard__tag) { font-size: 13.5px; color: var(--h2o-foreground-soft); padding: 0 22px; min-height: 84px; }
.h2o-vcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 14px 22px 0; color: var(--h2o-accent-hover);
  font-weight: 800; font-size: 14px; text-decoration: none;
}
.h2o-vcard__link svg { width: 15px; height: 15px; transition: transform 200ms ease; }
.h2o-vcard__link:hover svg { transform: translateX(4px); }
.h2o-vcard__link--night { margin: 14px 0 0; color: #FF9C6E; }

/* ── Booking (golden hour) ── */
.h2o-booking { background: var(--h2o-gradient-dusk); color: #fff; padding: 84px 0; position: relative; overflow: hidden; }
.h2o-booking__sheen {
  position: absolute; top: -20%; bottom: -20%; left: 0; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .16) 50%, transparent);
  transform: translateX(-120%) skewX(-8deg);
  will-change: transform; pointer-events: none;
}
.h2o-booking__in, .h2o-night .h2o-container { position: relative; z-index: 1; }
.h2o-booking__in { max-width: 760px; text-align: center; }
.h2o-booking__text p { color: rgba(255,255,255,.93); margin-bottom: 22px; }
.h2o-booking__contacts { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; font-weight: 700; font-size: 15.5px; }
.h2o-booking__contacts li { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; }
.h2o-booking__contacts svg { width: 17px; height: 17px; flex: none; }
.h2o-booking__contacts a { color: #fff; text-decoration: none; border-bottom: 1.5px solid rgba(255,255,255,.4); }
.h2o-booking__contacts a:hover { border-color: #fff; }
.h2o-booking__cta { border: 2px solid rgba(255,255,255,.85); }

/* ── Night ── */
.h2o-night { background: var(--h2o-gradient-night); color: var(--h2o-fg-dark); padding: 92px 0; position: relative; overflow: hidden; }
.h2o-night h2 { color: #fff; }
.h2o-cards2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 38px; }
.h2o-ncard { padding: 28px; overflow: hidden; }
.h2o-ncard__photo {
  height: 170px; margin: -28px -28px 20px;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--h2o-border-night);
  position: relative;
}
.h2o-ncard__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 27, 51, .85));
}
.h2o-ncard__cap {
  display: inline-block; font-size: 11.5px; font-weight: 800; letter-spacing: 1px;
  color: #FF9C6E; border: 1px solid rgba(255,156,110,.45);
  border-radius: var(--h2o-radius-pill); padding: 2px 12px; margin-bottom: 14px;
  text-transform: uppercase;
}
.h2o-ncard h3 { font-size: 21px; margin-bottom: 10px; }
.h2o-ncard p { font-size: 14px; color: var(--h2o-fg-dark-muted); }

.h2o-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.h2o-why__card {
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--h2o-radius);
  padding: 26px; background: rgba(255,255,255,.04);
}
.h2o-why__card svg { width: 30px; height: 30px; color: var(--h2o-neon); margin-bottom: 14px; }
.h2o-why__card h3 { font-size: 16px; margin-bottom: 8px; color: #fff; }
.h2o-why__card p { font-size: 13.5px; color: var(--h2o-fg-dark-muted); }

.h2o-quote { margin: 72px auto 0; max-width: 720px; text-align: center; }
.h2o-quote blockquote {
  font-size: clamp(16px, 2.2vw, 20px); font-weight: 600; line-height: 1.65;
  color: #E8F1FB;
}

/* ── Google reviews ── */
.h2o-reviews { margin-top: 84px; text-align: center; }
.h2o-reviews__badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid var(--h2o-border-night);
  border-radius: var(--h2o-radius-pill); padding: 10px 24px; margin: 6px 0 34px;
}
.h2o-reviews__score { font-family: var(--h2o-font-display); font-weight: 600; font-size: 24px; color: #FFD8A8; }
.h2o-reviews__stars { color: #FBBF24; font-size: 16px; letter-spacing: 2px; }
.h2o-reviews__count { font-size: 13.5px; font-weight: 700; color: var(--h2o-fg-dark-muted); }
.h2o-reviews__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 18px; text-align: left; }
.h2o-review { padding: 24px; margin: 0; }
.h2o-review__stars { color: #FBBF24; letter-spacing: 2px; margin-bottom: 12px; }
.h2o-review blockquote { font-size: 14px; line-height: 1.7; color: #E8F1FB; }
.h2o-review figcaption { margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--h2o-neon); }
.h2o-reviews__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 28px;
  color: var(--h2o-neon); font-weight: 800; font-size: 14.5px; text-decoration: none;
}
.h2o-reviews__more svg { width: 15px; height: 15px; }
.h2o-reviews__more:hover { text-decoration: underline; }

/* ── Instagram reels ── */
.h2o-reels { margin-top: 84px; text-align: center; }
.h2o-reels .h2o-lede { margin: 0 auto 8px; }
.h2o-reelgrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 34px 0 30px;
}
.h2o-reelcard {
  position: relative; display: block; aspect-ratio: 4 / 5;
  border-radius: var(--h2o-radius-sm); overflow: hidden;
  background-size: cover; background-position: center;
  border: 1px solid var(--h2o-border-night);
  transition: transform var(--h2o-dur) var(--h2o-ease), border-color var(--h2o-dur) var(--h2o-ease);
}
.h2o-reelcard::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 33, 0) 45%, rgba(7, 16, 33, .82));
}
.h2o-reelcard:hover { transform: translateY(-5px); border-color: rgba(34, 211, 238, .6); }
.h2o-reelcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 54px; height: 54px; border-radius: 50%; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7, 16, 33, .55); border: 1.5px solid rgba(255, 255, 255, .65);
  color: #fff; transition: background var(--h2o-dur) var(--h2o-ease), transform var(--h2o-dur) var(--h2o-ease);
}
.h2o-reelcard__play svg { width: 22px; height: 22px; margin-left: 3px; }
.h2o-reelcard:hover .h2o-reelcard__play { background: rgba(34, 211, 238, .45); transform: translate(-50%, -60%) scale(1.08); }
.h2o-reelcard__label {
  position: absolute; left: 14px; bottom: 12px; z-index: 1;
  color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .4px;
}

.h2o-faqs { margin-top: 80px; max-width: 760px; }
.h2o-faqs h2 { margin-bottom: 24px; }
.h2o-faq {
  border: 1px solid var(--h2o-border-night); border-radius: var(--h2o-radius-sm);
  background: rgba(255,255,255,.04); margin-bottom: 12px;
  transition: border-color var(--h2o-dur) var(--h2o-ease);
}
.h2o-faq[open] { border-color: rgba(34,211,238,.6); }
.h2o-faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 700; font-size: 15px; color: #fff;
}
.h2o-faq summary::-webkit-details-marker { display: none; }
.h2o-faq__icon { position: relative; width: 16px; height: 16px; flex: none; }
.h2o-faq__icon::before, .h2o-faq__icon::after {
  content: ''; position: absolute; background: var(--h2o-neon); border-radius: 2px;
  transition: transform var(--h2o-dur) var(--h2o-ease);
}
.h2o-faq__icon::before { top: 7px; left: 0; width: 16px; height: 2.5px; }
.h2o-faq__icon::after { top: 0; left: 6.75px; width: 2.5px; height: 16px; }
.h2o-faq[open] .h2o-faq__icon::after { transform: rotate(90deg); }
.h2o-faq > p { padding: 0 22px 20px; font-size: 14px; color: var(--h2o-fg-dark-muted); }

/* ── Footer ── */
.h2o-footer { background: var(--h2o-night-deep); color: var(--h2o-fg-dark-muted); padding: 72px 0 34px; }
.h2o-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; }
.h2o-footer__grid--mega { grid-template-columns: 1.7fr 1fr 1.2fr 1fr 1.4fr; gap: 30px; }
.h2o-footer__rating { display: flex; align-items: center; gap: 8px; margin: 0 0 18px; }
.h2o-footer__stars { color: #FBBF24; letter-spacing: 2px; font-size: 14px; }
.h2o-footer__rating a { color: var(--h2o-fg-dark-muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.h2o-footer__rating a:hover { color: var(--h2o-neon); }
.h2o-footer__col h4 {
  font-family: var(--h2o-font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.h2o-footer__col > a { display: block; color: var(--h2o-fg-dark-muted); text-decoration: none; font-size: 14px; padding: 5px 0; }
.h2o-footer__col > a:hover { color: var(--h2o-neon); }
.h2o-footer__col--brand p { font-size: 13.5px; margin: 16px 0 20px; max-width: 300px; }
.h2o-brand--footer { font-size: 18px; }
.h2o-social { display: flex; gap: 10px; }
.h2o-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  transition: border-color 200ms ease, background 200ms ease;
}
.h2o-social a:hover { border-color: var(--h2o-neon); background: rgba(34,211,238,.12); }
.h2o-social svg { width: 16px; height: 16px; }
.h2o-footer address { font-style: normal; font-size: 14px; line-height: 2; }
.h2o-footer address a { color: var(--h2o-fg-dark-muted); text-decoration: none; }
.h2o-footer address a:hover { color: var(--h2o-neon); }
.h2o-footer__legal {
  margin-top: 52px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px; text-align: center;
}
.h2o-footer__legal p { max-width: 720px; margin: 0 auto; }

/* ── Scroll reveal ── */
.h2o-reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms var(--h2o-ease), transform 600ms var(--h2o-ease); }
.h2o-reveal.is-in { opacity: 1; transform: none; }
/* When GSAP drives motion, CSS transitions must not fight its inline styles */
html.h2o-motion .h2o-reveal { transition: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .h2o-cards3 { grid-template-columns: 1fr 1fr; }
  .h2o-why { grid-template-columns: 1fr; }
  .h2o-footer__grid, .h2o-footer__grid--mega { grid-template-columns: 1fr 1fr; }
  .h2o-reviews__grid { grid-template-columns: 1fr; }
  .h2o-reelgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .h2o-section { padding: 64px 0; }

  /* Perf: phones skip expensive blur compositing and defer below-fold rendering */
  .h2o-header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(7, 16, 33, .96); }
  .h2o-card-day { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(255, 255, 255, .92); }
  .h2o-card-night { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(16, 33, 59, .75); }
  .h2o-kicker, .h2o-btn--glass { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .h2o-orb { will-change: auto; }
  .h2o-venues-day, .h2o-booking, .h2o-night, .h2o-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
  .h2o-reelgrid { grid-template-columns: 1fr 1fr; }
  .h2o-hero__in { padding: 120px 24px 130px; }
  .h2o-hero__stats { gap: 26px; }
  .h2o-about { grid-template-columns: 1fr; }
  .h2o-about__panel { min-height: 210px; }
  .h2o-cards3, .h2o-cards2 { grid-template-columns: 1fr; }
  .h2o-vcard > p:not(.h2o-vcard__tag) { min-height: 0; }
  .h2o-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}


/* ── Tablet & mobile: drawer navigation (≤1024px) ── */
@media (max-width: 1024px) {
  .h2o-topbar { display: none; }
  .h2o-header { top: 0; background: rgba(7, 16, 33, .94); padding: 10px 0; }
  .h2o-header__actions { display: inline-flex; }

  .h2o-nav {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 49;
    width: min(360px, 88vw);
    background: #0A1730;
    border-left: 1px solid rgba(34, 211, 238, .2);
    box-shadow: -24px 0 60px rgba(4, 10, 22, .6);
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 84px 22px 28px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    transition: transform 280ms var(--h2o-ease);
  }
  .h2o-nav.is-open { transform: translateX(0); }

  .h2o-nav > a, .h2o-nav__parent {
    display: block; font-size: 16.5px; padding: 13px 12px;
    border-radius: 10px; color: rgba(255, 255, 255, .94);
  }
  .h2o-nav__group { position: static; margin-top: 6px; }
  .h2o-nav__parent { display: none; } /* group label replaces the dropdown trigger */
  .h2o-nav__label {
    display: block; font-size: 11px; font-weight: 800; letter-spacing: 2.2px;
    text-transform: uppercase; color: var(--h2o-neon);
    padding: 16px 12px 6px; border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 10px;
  }
  .h2o-nav__group:first-of-type .h2o-nav__label { border-top: 0; margin-top: 0; }
  .h2o-mega {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: none; border: 0; box-shadow: none; padding: 0; width: auto; gap: 2px;
  }
  .h2o-mega__item { padding: 10px 12px; border-radius: 10px; min-height: 48px; }
  .h2o-mega__thumb { width: 44px; height: 36px; }
  .h2o-mega__item strong { font-size: 15px; }
  .h2o-mega__item em { font-size: 12px; }
  .h2o-nav__cta {
    display: flex; justify-content: center; margin: 18px 0 0 !important;
    padding: 15px 22px !important; font-size: 15.5px !important;
  }
  .h2o-nav__foot {
    display: block; margin-top: 22px; padding: 18px 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px; color: var(--h2o-fg-dark-muted);
  }
  .h2o-nav__foot-phone {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 800; font-size: 16px; text-decoration: none; margin-bottom: 6px;
  }
  .h2o-nav__foot-phone svg { width: 15px; height: 15px; color: var(--h2o-neon); }
  .h2o-nav__foot span { display: block; }
}
