/* ═══════════════════════════════════════════════════════════
   THE POOL. — LUXURY CSS
   Dark aqua palette, glassmorphism, water animations
═══════════════════════════════════════════════════════════ */

:root {
  --bg-deep:      #04090f;
  --bg-mid:       #06111d;
  --bg-card:      #091826;
  --blue-deep:    #1a3dbf;
  --blue-mid:     #1e6fc4;
  --blue-teal:    #0099c4;
  --blue-bright:  #00c4e8;
  --blue-wave:    #2d52d4;
  --aqua:         #00b8d9;
  --aqua-bright:  #00c8ec;
  --aqua-dark:    #0077a8;
  --aqua-glow:    rgba(0,196,232,0.18);
  --text-primary: #e8f4f8;
  --text-muted:   #7aafc2;
  --text-dim:     #3a6478;
  --glass-bg:     rgba(9,24,38,0.65);
  --glass-border: rgba(30,111,196,0.22);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    26px;
  --radius-xl:    40px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.splash-active { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Typography ─── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
  display: block;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--blue-bright); font-weight: 800; }
.section-title.center { text-align: center; }

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-teal));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,61,191,0.5); }
.btn-primary.full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.15);
}

/* ═══════════════════════════════════════════════════════════
   SPLASH SCREEN
═══════════════════════════════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#splashCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.splash-logo {
  opacity: 0;
  transform: translateY(20px);
  animation: splashFadeUp 1s 0.3s forwards;
  width: clamp(260px, 50vw, 420px);
  margin: 0 auto;
}
.splash-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
}
.splash-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  opacity: 0;
  animation: splashFadeUp 1s 0.6s forwards;
}
.splash-loader {
  width: 160px;
  height: 2px;
  background: rgba(0,212,255,0.15);
  border-radius: 100px;
  margin: 2.5rem auto 0;
  overflow: hidden;
  opacity: 0;
  animation: splashFadeUp 0.8s 0.9s forwards;
}
.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--aqua-dark), var(--aqua-bright));
  border-radius: 100px;
  animation: loaderFill 2s 1.1s forwards cubic-bezier(0.4,0,0.2,1);
}
@keyframes splashFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
  padding: 0;
}
#navbar.scrolled {
  background: rgba(5, 13, 20, 0.85);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,212,255,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 44px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 0.55rem 1.6rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-teal));
  color: #fff !important;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { box-shadow: 0 8px 28px rgba(26,61,191,0.5); transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  background: rgba(5,13,20,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--glass-border);
}
.nav-mobile a {
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,212,255,0.06);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--aqua-bright); }
.nav-mobile .mobile-cta {
  margin-top: 1.2rem;
  padding: 0.9rem;
  text-align: center;
  background: linear-gradient(135deg, var(--aqua-dark), var(--aqua-bright));
  color: var(--bg-deep);
  border-radius: 100px;
  font-weight: 500;
  border: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.18); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,9,15,0.65) 0%, rgba(4,9,15,0.45) 40%, rgba(4,9,15,0.82) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(0,80,160,0.25) 0%, transparent 70%);
}
#rippleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 4rem;
  margin-bottom: 7rem;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(232,244,248,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════
   WAVE DIVIDER
═══════════════════════════════════════════════════════════ */
.wave-divider {
  position: relative;
  height: 70px;
  overflow: hidden;
  margin-top: -1px;
  pointer-events: none;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
  transition-delay: var(--delay, 0s);
}
.reveal         { transform: translateY(32px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }
.reveal-scale   { transform: scale(0.94); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
#about {
  padding: 10rem 0 8rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  position: relative;
  padding-bottom: 6rem;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--glass-border);
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 55%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--glass-border);
  border: 3px solid var(--bg-deep);
}
.about-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.about-body strong { color: var(--aqua-bright); font-weight: 500; }
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════
   AMENITIES
═══════════════════════════════════════════════════════════ */
#amenities {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
.amenities-water-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,90,140,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, var(--bg-deep), var(--bg-mid), var(--bg-deep));
}
#amenities .container {
  position: relative;
  z-index: 1;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  position: relative;
}
.amenity-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,212,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.amenity-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.2);
}
.amenity-card:hover::before { opacity: 1; }
.amenity-icon {
  width: 52px;
  height: 52px;
  color: var(--blue-bright);
  margin-bottom: 1.2rem;
  transition: transform 0.3s;
}
.amenity-card:hover .amenity-icon { transform: scale(1.1); }
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.amenity-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   MEMBERSHIP
═══════════════════════════════════════════════════════════ */
#membership {
  padding: 10rem 0;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}
#membership::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua-dark), transparent);
}
#membership::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua-dark), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: start;
}
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aqua-dark), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: rgba(0,212,255,0.4);
  background: linear-gradient(160deg, rgba(0,119,168,0.25), rgba(10,29,46,0.8));
  transform: scale(1.04);
}
.pricing-card.featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--aqua-bright), transparent); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-teal));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.pricing-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
}
.price-dollar {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: var(--blue-bright);
}
.price-cents {
  font-size: 1.8rem;
  margin-top: 0.4rem;
  color: var(--text-muted);
}
.pricing-period {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-size: 0.75rem;
}
.pricing-addon {
  margin-top: 2.5rem;
}
.addon-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(12px);
  max-width: 700px;
  margin: 0 auto;
}
.addon-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.addon-card > div { flex: 1; }
.addon-card strong { font-size: 1rem; color: var(--text-primary); display: block; }
.addon-card p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
.addon-price {
  font-family: 'Nunito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.addon-price span { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
#gallery {
  padding: 10rem 0 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 8px;
  margin-top: 4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,13,20,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-overlay span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
#testimonials {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-mid);
}
.testimonials-water {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,61,191,0.08) 0%, transparent 70%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}
.testimonial-card {
  background: rgba(12, 28, 48, 0.92);
  border: 1px solid rgba(30,111,196,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testimonial-stars {
  color: var(--blue-bright);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testimonial-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.testimonial-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
#faq {
  padding: 10rem 0;
  background: var(--bg-mid);
  position: relative;
}
#faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua-dark), transparent);
}
.faq-container { max-width: 780px; }
.faq-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--blue-bright); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--blue-mid);
  transition: transform 0.35s, color 0.3s;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue-bright); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p {
  min-height: 0;
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  overflow: hidden;
}
.faq-answer > p strong { color: var(--aqua-bright); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
#contact {
  padding: 10rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--blue-bright);
  flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b8d9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(30,111,196,0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { font-size: 0.95rem; padding: 1rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.footer-wave {
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 40px;
  overflow: hidden;
}
.footer-wave svg { width: 100%; height: 100%; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  display: block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover {
  border-color: var(--blue-mid);
  color: var(--blue-bright);
  background: rgba(26,61,191,0.12);
  transform: translateY(-2px);
}
.footer-links h4,
.footer-hours h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--aqua-bright); }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,212,255,0.05);
}
.hours-row.closed { color: var(--text-dim); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   WATER SHIMMER UTILITY
═══════════════════════════════════════════════════════════ */
@keyframes waterShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { max-width: 560px; margin: 0 auto; }
  .about-img-accent { right: -1rem; bottom: -2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 4rem auto 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  #about { padding: 6rem 0; }
  #amenities { padding: 6rem 0; }
  #membership { padding: 6rem 0; }
  #gallery { padding: 6rem 0 0; }
  #testimonials { padding: 6rem 0; }
  #faq { padding: 6rem 0; }
  #contact { padding: 6rem 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addon-card { flex-direction: column; text-align: center; }
  .about-img-accent { display: none; }
  .hero-sub br { display: none; }
  .section-sub br { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { gap: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}
