/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(10, 42, 78, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
}
.nav-logo-img { height: 52px; width: auto; display: block; mix-blend-mode: lighten; }
.footer-brand .nav-logo-img { height: 60px; }
.nav-logo-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1.1;
}
.nav-logo-text em { font-style: italic; font-weight: 400; color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 0 !important;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-weight: 800 !important; font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, letter-spacing 0.2s ease !important;
  transform: none !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: #fff !important;
  letter-spacing: 0.1em;
  transform: none !important;
}
.nav-cta:active,
.nav-cta:focus {
  background: var(--orange) !important;
  color: #fff !important;
  outline: none;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: visible;
  padding-top: 80px;
}
/* Clip decorative bg layers to hero bounds */
.hero-water-bg {
  clip-path: inset(0);
}

/* Water GIF background */
.hero-water-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/pool-waves.gif');
  background-size: cover;
  background-position: center 60%;
  animation: waterBreath 14s ease-in-out infinite alternate;
}
@keyframes waterBreath {
  from { transform: scale(1.0) translateY(0); }
  to   { transform: scale(1.07) translateY(-12px); }
}

/* Dark gradient overlay — left is dark for text legibility, right shows water */
.hero-water-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(14, 24, 36, 0.88) 0%,
      rgba(14, 24, 36, 0.70) 40%,
      rgba(14, 24, 36, 0.30) 75%,
      rgba(14, 24, 36, 0.15) 100%
    ),
    linear-gradient(to top,
      rgba(14, 24, 36, 0.6) 0%,
      transparent 40%
    );
}

/* Brand tint blended over the water on right side */
.hero-water-tint {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 75% 55%,
    rgba(26, 125, 217, 0.15) 0%,
    transparent 70%
  );
}

.hero-bg { position: absolute; inset: 0; opacity: 0.18; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,184,0,0.15);
  border-left: 3px solid var(--yellow);
  border-top: 1px solid rgba(255,184,0,0.25);
  border-right: 1px solid rgba(255,184,0,0.25);
  border-bottom: 1px solid rgba(255,184,0,0.25);
  color: var(--yellow); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.95rem 0.45rem 0.85rem;
  border-radius: 0;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #ffb800, #f26b1f, #ffb800);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 4s linear infinite;
  filter: drop-shadow(0 0 18px rgba(255,184,0,0.4));
}
@keyframes heroShimmer {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 42ch;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2rem; font-weight: 700; color: #fff; line-height: 1;
  display: flex; align-items: center; gap: 0.4rem;
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 0.3rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-visual { position: relative; animation: fadeIn 1s 0.3s ease both; }

