:root {
  --navy: #003b73;
  --navy-text: #123d63;
  --maroon: #7f1734;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #111827;
}

::selection {
  background: rgba(127, 23, 52, 0.25);
  color: #111827;
}

::-moz-selection {
  background: rgba(127, 23, 52, 0.25);
  color: #111827;
}

.aquavil-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  will-change: transform;
}

.aquavil-header.is-hidden {
  transform: translateY(calc(-100% - 2px));
}

.nav-inner {
  background: var(--navy);
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
}

/* ── Base nav link styles ── */
.site-nav > a,
.nav-dropdown-trigger {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  line-height: 1;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-nav > a:last-child {
  padding-right: 14px;
}

/* ── Hover effect ── */
.site-nav > a:hover,
.nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Underline slide-in on hover */
.site-nav > a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
}

.site-nav > a:hover::after,
.nav-dropdown-trigger:hover::after {
  width: 60%;
  left: 20%;
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
  border-left: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 59, 115, 0.08);
  color: var(--maroon);
}

.phase-banner {
  background: var(--maroon);
  color: #fff;
}

.phase-inner {
  width: min(1360px, 100% - 30px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
}

.phase-top {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
}

.phase-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.phase-cta-text {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.register-btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}

.register-btn:hover {
  background: #fff;
  color: var(--maroon);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 55vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-14%);
  text-align: center;
  padding: 24px;
}

.hero-content h1 {
  font-size: clamp(22px, 3.5vw, 55px);
  line-height: 0.9;
  color: var(--navy-text);
  letter-spacing: 0.02em;
}

.hero-content p {
  margin-top: 8px;
  font-size: clamp(9px, 1.125vw, 15px);
  color: var(--navy-text);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── Liquid Glass Bonus Badge ── */
.bonus-badge {
  --liquid-sheen-duration: 3.8s;
  margin: 16px auto 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(127, 23, 52, 0.72);
  color: #fff;
  font-size: clamp(10px, 1.25vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 300ms ease-out,
    background-color 300ms ease-out,
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
  cursor: pointer;
}

.bonus-badge:hover {
  background: rgba(127, 23, 52, 0.82);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bonus-badge:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 14px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Inner glow */
.bonus-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.75;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(200, 140, 170, 0.3), transparent 60%);
  pointer-events: none;
}

/* Animated sheen */
.bonus-badge::after {
  content: "";
  position: absolute;
  left: -2rem;
  right: -2rem;
  top: -2.5rem;
  height: 7rem;
  transform: rotate(12deg);
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: liquid-sheen var(--liquid-sheen-duration) ease-in-out infinite;
  pointer-events: none;
}

/* Text above overlays */
.bonus-badge__label {
  position: relative;
  z-index: 10;
}

.beach-map-section {
  padding: clamp(28px, 5vw, 64px) 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.beach-map-intro {
  width: min(980px, 100%);
  margin: 0 auto clamp(16px, 2.2vw, 26px);
  text-align: center;
  font-family: "Geist", "Inter", sans-serif;
  color: var(--navy-text);
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.beach-map-intro-emphasis {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 700;
}

.beach-map-inner {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 30, 60, 0.18);
  border: 1px solid rgba(0, 59, 115, 0.12);
}

.beach-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.beach-map-caption {
  position: absolute;
  right: clamp(8px, 1.2vw, 14px);
  bottom: clamp(6px, 1vw, 12px);
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.promo-video-section {
  padding: 0 18px clamp(28px, 5vw, 64px);
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.promo-video-title {
  width: min(1120px, 100%);
  margin: 0 auto clamp(14px, 2vw, 22px);
  text-align: center;
  color: var(--navy-text);
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.promo-video-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 30, 60, 0.18);
  border: 1px solid rgba(0, 59, 115, 0.12);
  background: #000;
}

.promo-video-shell {
  position: relative;
}

.promo-video {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.promo-video-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.video-play-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  min-width: 96px;
  min-height: 96px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.video-play-toggle:hover {
  background: rgba(0, 0, 0, 0.74);
}

.video-icon-pause {
  display: none;
}

.promo-video-shell.is-playing .video-icon-play {
  display: none;
}

.promo-video-shell.is-playing .video-icon-pause {
  display: inline;
}

.video-mute-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: auto;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.video-mute-toggle:hover {
  background: rgba(0, 0, 0, 0.74);
}

.promo-video-shell:hover .video-play-toggle,
.promo-video-shell:hover .video-mute-toggle,
.promo-video-shell:focus-within .video-play-toggle,
.promo-video-shell:focus-within .video-mute-toggle {
  opacity: 1;
}

.live-beach-section {
  background: linear-gradient(180deg, #ffffff 0%, #e0ddd6 22%, #e0ddd6 100%);
  padding: clamp(28px, 5vw, 64px) 18px;
}

.live-beach-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.live-beach-title {
  text-align: center;
  color: var(--navy-text);
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.live-beach-copy {
  width: min(980px, 100%);
  margin: clamp(12px, 2vw, 18px) auto clamp(22px, 3vw, 34px);
  text-align: center;
  color: #2f3e4b;
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.65;
  font-weight: 400;
}

.live-beach-feature {
  position: relative;
  border: 1px solid rgba(0, 59, 115, 0.16);
  box-shadow: 0 16px 42px rgba(0, 30, 60, 0.16);
  overflow: hidden;
}

.live-beach-feature + .live-beach-feature {
  margin-top: clamp(14px, 2.2vw, 24px);
}

.live-beach-feature-image {
  display: block;
  width: 100%;
  height: auto;
}

.live-beach-feature-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46%;
  max-width: 520px;
  padding: clamp(22px, 3vw, 44px) clamp(20px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 16px);
  color: #f6f7f9;
  transition: width 0.3s ease, background 0.3s ease;
}

.live-beach-feature:hover .live-beach-feature-overlay {
  width: 49%;
  max-width: 550px;
}

.live-beach-feature-overlay h3 {
  font-size: clamp(24px, 3.6vw, 54px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.live-beach-feature-overlay p {
  font-size: clamp(11px, 0.95vw, 16px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: justify;
}

.live-beach-feature-overlay .feature-cta {
  margin-top: clamp(4px, 0.8vw, 10px);
  font-size: clamp(14px, 1.4vw, 22px);
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.live-beach-feature-overlay .feature-cta strong {
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 26px);
  letter-spacing: 0.05em;
}

.live-beach-feature-overlay-right {
  right: 0;
  background: rgba(121, 141, 163, 0.72);
}

.live-beach-feature-overlay-left {
  left: 0;
  background: rgba(43, 42, 42, 0.68);
}

.live-beach-feature:hover .live-beach-feature-overlay-right {
  background: rgba(116, 138, 162, 0.82);
}

.live-beach-feature:hover .live-beach-feature-overlay-left {
  background: rgba(37, 35, 35, 0.8);
}

/* ── Singles / Detached card ── */
.live-beach-feature-singles .live-beach-feature-overlay-singles {
  width: 46%;
  max-width: 520px;
  background: rgba(40, 38, 36, 0.72);
  justify-content: center;
  padding: clamp(22px, 3vw, 44px) clamp(20px, 2.8vw, 40px);
  gap: clamp(10px, 1.3vw, 16px);
}

.live-beach-feature-singles:hover .live-beach-feature-overlay-singles {
  width: 49%;
  max-width: 550px;
  background: rgba(35, 33, 31, 0.82);
}

.live-beach-feature-singles .live-beach-feature-overlay-singles h3 {
  color: #c4a68a;
  font-size: clamp(24px, 3.6vw, 54px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  font-weight: 300;
  font-style: italic;
}

.live-beach-feature-singles .live-beach-feature-overlay-singles p {
  color: rgba(240, 238, 234, 0.94);
  font-size: clamp(11px, 0.95vw, 16px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: justify;
}

.live-beach-feature-singles .live-beach-feature-overlay-singles .feature-cta {
  margin-top: clamp(6px, 1vw, 14px);
  color: #c4a68a;
  font-size: clamp(14px, 1.4vw, 22px);
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-beach-feature-singles .live-beach-feature-overlay-singles .feature-cta strong {
  color: #c4a68a;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 26px);
  letter-spacing: 0.05em;
}

/* ── Liquid Sheen Keyframes ── */
@keyframes liquid-sheen {
  0% {
    transform: translateX(-140%) translateY(-30%) rotate(12deg);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.55;
  }
  85% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(140%) translateY(30%) rotate(12deg);
    opacity: 0;
  }
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

@media (max-width: 1050px) {
  .nav-inner {
    justify-content: space-between;
  }

  .nav-center {
    width: 100%;
    justify-content: space-between;
  }

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

  .site-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 22px 14px;
    gap: 4px;
    z-index: 999;
  }

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

  .site-nav > a,
  .nav-dropdown-trigger {
    border-left: none;
    padding: 6px 8px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border-radius: 6px;
    padding: 4px 0;
    margin-top: 2px;
    margin-left: 12px;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu a {
    color: #fff;
    font-size: 13px;
    padding: 8px 14px;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .beach-map-section {
    padding: 22px 14px;
  }

  .beach-map-intro {
    font-size: clamp(16px, 5.2vw, 24px);
    margin-bottom: 14px;
  }

  .beach-map-inner {
    border-radius: 14px;
  }

  .promo-video-section {
    padding: 0 14px 22px;
  }

  .promo-video-title {
    margin-bottom: 12px;
    font-size: clamp(16px, 5vw, 24px);
  }

  .promo-video-inner {
    border-radius: 14px;
  }

  .video-play-toggle {
    min-width: 74px;
    min-height: 74px;
    font-size: 13px;
  }

  .video-mute-toggle {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 7px 10px;
  }

  .live-beach-section {
    padding: 22px 14px;
  }

  .live-beach-title {
    font-size: clamp(20px, 7vw, 30px);
  }

  .live-beach-copy {
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.6;
    margin: 10px auto 18px;
  }

  .live-beach-feature-overlay {
    position: relative;
    width: 100%;
    max-width: none;
    background: rgba(37, 35, 35, 0.85);
    padding: 16px 14px 18px;
  }

  .live-beach-feature-overlay-right {
    right: auto;
    background: rgba(100, 120, 145, 0.88);
  }

  .live-beach-feature-overlay-left {
    left: auto;
  }

  .live-beach-feature:hover .live-beach-feature-overlay {
    width: 100%;
    max-width: none;
  }

  .live-beach-feature-overlay h3 {
    font-size: clamp(20px, 6.2vw, 30px);
  }

  .live-beach-feature-overlay p {
    font-size: clamp(12px, 3.5vw, 16px);
    text-align: left;
  }

  .live-beach-feature-overlay .feature-cta {
    font-size: clamp(14px, 4.4vw, 21px);
  }

  .live-beach-feature-singles .live-beach-feature-overlay-singles {
    width: 100%;
    max-width: none;
    padding: 16px 14px 18px;
    background: rgba(35, 33, 31, 0.88);
  }

  .live-beach-feature-singles:hover .live-beach-feature-overlay-singles {
    width: 100%;
    max-width: none;
  }

  .live-beach-feature-singles .live-beach-feature-overlay-singles h3 {
    font-size: clamp(20px, 6.6vw, 34px);
  }

  .live-beach-feature-singles .live-beach-feature-overlay-singles p {
    font-size: clamp(12px, 3.8vw, 16px);
    text-align: left;
  }

  .live-beach-feature-singles .live-beach-feature-overlay-singles .feature-cta {
    font-size: clamp(14px, 4.4vw, 21px);
  }
}
