/* ==========================================================================
   Waterfalls Club Residence — Design System
   Bootstrap 5.3 as structure only · fully customized visual layer
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts (Google Fonts hosted locally — Manrope + Inter)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope/manrope-v20-latin_latin-ext-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-latin_latin-ext-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-latin_latin-ext-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-latin_latin-ext-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter/inter-v20-latin_latin-ext-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — deep ink + waterfall teal */
  --wf-ink: #0a141c;
  --wf-ink-soft: #12212c;
  --wf-slate: #243844;
  --wf-muted: #5a6f7a;
  --wf-muted-soft: #7a8d96;

  --wf-accent: #1a4f4a;
  --wf-accent-hover: #123a36;
  --wf-accent-soft: #2a6b65;
  --wf-accent-glow: rgba(42, 107, 101, 0.18);

  --wf-white: #ffffff;
  --wf-off-white: #f5f7f8;
  --wf-mist: #eef2f4;
  --wf-surface: #ffffff;
  --wf-surface-elevated: #fafbfc;

  --wf-border: rgba(18, 33, 44, 0.1);
  --wf-border-strong: rgba(18, 33, 44, 0.16);

  --wf-success: #1f6b45;
  --wf-success-bg: #e8f5ee;
  --wf-danger: #b42318;
  --wf-danger-bg: #fef3f2;
  --wf-warning: #8a6a12;
  --wf-warning-bg: #fff8e8;
  --wf-info: #1e4e8c;
  --wf-info-bg: #eef4fb;

  --wf-shadow-xs: 0 1px 2px rgba(10, 20, 28, 0.04);
  --wf-shadow-sm: 0 4px 16px rgba(10, 20, 28, 0.06);
  --wf-shadow-md: 0 12px 32px rgba(10, 20, 28, 0.08);
  --wf-shadow-lg: 0 24px 56px rgba(10, 20, 28, 0.12);

  --wf-radius-sm: 0.5rem;
  --wf-radius: 0.75rem;
  --wf-radius-lg: 1.1rem;
  --wf-radius-xl: 1.5rem;
  --wf-radius-pill: 999px;

  --wf-space-1: 0.25rem;
  --wf-space-2: 0.5rem;
  --wf-space-3: 0.75rem;
  --wf-space-4: 1rem;
  --wf-space-5: 1.5rem;
  --wf-space-6: 2rem;
  --wf-space-7: 3rem;
  --wf-space-8: 4.5rem;
  --wf-space-9: 6.5rem;

  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.125rem;
  --text-h4: clamp(1.35rem, 2vw, 1.5rem);
  --text-h3: clamp(1.65rem, 2.5vw, 1.9rem);
  --text-h2: clamp(2rem, 3.5vw, 2.5rem);
  --text-h1: clamp(2.6rem, 6vw, 3.75rem);

  --transition-fast: 160ms ease;
  --transition: 240ms ease;
  --transition-slow: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Override Bootstrap blues */
  --bs-primary: #1a4f4a;
  --bs-primary-rgb: 26, 79, 74;
  --bs-link-color: #1a4f4a;
  --bs-link-hover-color: #123a36;
  --bs-border-radius: var(--wf-radius);
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--wf-ink-soft);
  --bs-body-bg: var(--wf-off-white);
  --bs-secondary: #5a6f7a;
  --bs-success: #1f6b45;
  --bs-danger: #b42318;
  --bs-warning: #8a6a12;
  --bs-info: #1e4e8c;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--wf-ink-soft);
  background:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(42, 107, 101, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(18, 33, 44, 0.04), transparent 45%),
    linear-gradient(180deg, var(--wf-off-white) 0%, var(--wf-mist) 50%, var(--wf-off-white) 100%);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

:focus-visible {
  outline: 2px solid var(--wf-accent-soft);
  outline-offset: 3px;
}

.display-font {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   Typography scale
   -------------------------------------------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--wf-ink);
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--wf-ink);
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--wf-ink);
}

h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--wf-ink);
}

h4, .h4 { font-size: var(--text-h4); line-height: 1.3; }
h5, .h5 { font-size: 1.15rem; line-height: 1.35; }
h6, .h6 { font-size: 0.95rem; line-height: 1.4; }

.section {
  padding: var(--wf-space-9) 0;
}

.section--alt {
  background: var(--wf-white);
}

.section--mist {
  background: linear-gradient(180deg, var(--wf-mist) 0%, var(--wf-off-white) 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--wf-ink);
}

.section-lead {
  color: var(--wf-muted);
  max-width: 38rem;
  font-size: var(--text-lg);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wf-accent-soft);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--wf-radius-pill);
  padding: 0.8rem 1.55rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition-fast),
    box-shadow var(--transition);
  border-width: 1.5px;
}

.btn:active:not(:disabled) {
  transform: scale(0.98);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-sm {
  min-height: 38px;
  padding: 0.45rem 1rem;
  font-size: var(--text-sm);
}

.btn-lg {
  min-height: 54px;
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

.btn-wf {
  --bs-btn-bg: var(--wf-accent);
  --bs-btn-border-color: var(--wf-accent);
  --bs-btn-hover-bg: var(--wf-accent-hover);
  --bs-btn-hover-border-color: var(--wf-accent-hover);
  --bs-btn-active-bg: var(--wf-ink);
  --bs-btn-active-border-color: var(--wf-ink);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-bg: var(--wf-accent);
  --bs-btn-disabled-border-color: var(--wf-accent);
  --bs-btn-disabled-color: #fff;
  box-shadow: 0 8px 24px rgba(26, 79, 74, 0.22);
}

.btn-wf:hover {
  box-shadow: 0 12px 28px rgba(26, 79, 74, 0.3);
  transform: translateY(-1px);
}

.btn-wf-outline {
  --bs-btn-color: rgba(245, 247, 248, 0.92);
  --bs-btn-border-color: rgba(245, 247, 248, 0.35);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.1);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: rgba(255, 255, 255, 0.14);
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-color: #fff;
  backdrop-filter: blur(6px);
}

.link-wf {
  color: var(--wf-accent);
  font-weight: 600;
  text-decoration: none;
}

.link-wf:hover {
  color: var(--wf-accent-hover);
  text-decoration: underline;
}

.btn-outline-secondary {
  --bs-btn-color: var(--wf-slate);
  --bs-btn-border-color: var(--wf-border-strong);
  --bs-btn-hover-bg: var(--wf-mist);
  --bs-btn-hover-border-color: var(--wf-slate);
  --bs-btn-hover-color: var(--wf-ink);
}

.btn-outline-primary {
  --bs-btn-color: var(--wf-accent);
  --bs-btn-border-color: var(--wf-accent);
  --bs-btn-hover-bg: var(--wf-accent);
  --bs-btn-hover-border-color: var(--wf-accent);
  --bs-btn-hover-color: #fff;
}

.btn-outline-danger {
  --bs-btn-color: var(--wf-danger);
  --bs-btn-border-color: rgba(180, 35, 24, 0.35);
  --bs-btn-hover-bg: var(--wf-danger);
  --bs-btn-hover-border-color: var(--wf-danger);
  --bs-btn-hover-color: #fff;
}

.btn-outline-warning {
  --bs-btn-color: var(--wf-warning);
  --bs-btn-border-color: rgba(138, 106, 18, 0.35);
  --bs-btn-hover-bg: var(--wf-warning);
  --bs-btn-hover-border-color: var(--wf-warning);
  --bs-btn-hover-color: #fff;
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.4);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: #fff;
}

.btn-light {
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-color: var(--wf-ink);
  --bs-btn-hover-bg: var(--wf-mist);
  --bs-btn-hover-border-color: var(--wf-mist);
  --bs-btn-hover-color: var(--wf-ink);
  box-shadow: var(--wf-shadow-sm);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.site-navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition),
    backdrop-filter var(--transition);
  padding: 1.15rem 0;
  background: transparent;
}

.site-navbar.is-scrolled {
  background: rgba(10, 20, 28, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 0.65rem 0;
}

.site-navbar .nav-link {
  color: rgba(245, 247, 248, 0.82) !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--wf-radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus-visible,
.site-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.site-navbar .navbar-toggler {
  border: 0;
  padding: 0.35rem;
  line-height: 1;
  box-shadow: none !important;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px var(--wf-accent-glow) !important;
}

.brand-logo {
  height: 48px;
  width: auto;
  transition: height var(--transition), opacity var(--transition-fast), filter var(--transition-fast);
}

.brand-logo--light {
  display: none;
}

.site-navbar:not(.is-scrolled) .brand-logo--color {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.site-navbar.is-scrolled .brand-logo {
  height: 40px;
}

.site-navbar.is-scrolled .brand-logo--color {
  display: none;
}

.site-navbar.is-scrolled .brand-logo--light {
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.35));
}

@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    background: rgba(10, 20, 28, 0.96);
    backdrop-filter: blur(16px);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: var(--wf-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-navbar .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .site-navbar .nav-item.ms-lg-2 {
    margin-top: 0.5rem;
  }

  .site-navbar .nav-item.ms-lg-2 .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--wf-off-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 20, 28, 0.9) 0%, rgba(10, 20, 28, 0.58) 48%, rgba(26, 79, 74, 0.38) 100%),
    linear-gradient(180deg, rgba(10, 20, 28, 0.28) 0%, rgba(10, 20, 28, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 7.5rem;
  padding-bottom: 6rem;
  max-width: 44rem;
}

.hero__brand {
  width: min(260px, 68vw);
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
  opacity: 0;
  animation: fadeUp 0.85s var(--ease-out) 0.08s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1.15rem;
  color: #fff;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease-out) 0.2s forwards;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(245, 247, 248, 0.82);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease-out) 0.34s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.85s var(--ease-out) 0.48s forwards;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(245, 247, 248, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.85s ease 0.9s forwards, scrollPulse 2.2s ease-in-out 1.6s infinite;
}

.hero__scroll-icon {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(245, 247, 248, 0.45);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: rgba(245, 247, 248, 0.8);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero__brand,
  .hero h1,
  .hero p,
  .hero__actions,
  .hero__scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__media img {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Features & amenities
   -------------------------------------------------------------------------- */
.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem;
  border-radius: var(--wf-radius-lg);
  background: transparent;
  transition: background var(--transition), transform var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--wf-radius);
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(42, 107, 101, 0.14), rgba(26, 79, 74, 0.08));
  color: var(--wf-accent);
  font-size: 1.3rem;
  transition: transform var(--transition), background var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
  background: linear-gradient(145deg, rgba(42, 107, 101, 0.22), rgba(26, 79, 74, 0.12));
}

.split-media {
  border-radius: var(--wf-radius-xl);
  min-height: 420px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: var(--wf-shadow-md);
  transition: transform 0.55s var(--ease-out), box-shadow var(--transition);
}

.split-media:hover {
  transform: scale(1.01);
  box-shadow: var(--wf-shadow-lg);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--wf-muted);
  line-height: 1.5;
}

.check-list i {
  color: var(--wf-success);
  font-size: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.amenity {
  padding: 1.6rem 1.25rem;
  border-radius: var(--wf-radius-lg);
  background: var(--wf-white);
  border: 1px solid var(--wf-border);
  box-shadow: var(--wf-shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.amenity:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 107, 101, 0.28);
  box-shadow: var(--wf-shadow-sm);
}

.amenity i {
  font-size: 1.55rem;
  color: var(--wf-accent);
  margin-bottom: 0.85rem;
  display: block;
  transition: transform var(--transition);
}

.amenity:hover i {
  transform: translateY(-2px);
}

.amenity strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wf-ink);
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   Map
   -------------------------------------------------------------------------- */
.map-frame {
  width: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--wf-radius-xl);
  filter: grayscale(0.15) contrast(1.04);
  box-shadow: var(--wf-shadow-sm);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--wf-ink);
  color: rgba(245, 247, 248, 0.68);
  padding: var(--wf-space-8) 0 2rem;
}

.site-footer h2 {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
}

.site-footer a {
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
  .section {
    padding: 5.5rem 0;
  }
}

@media (max-width: 991.98px) {
  .split-media {
    min-height: 280px;
    border-radius: var(--wf-radius-lg);
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4rem 0;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .amenity {
    padding: 1.15rem 1rem;
  }

  .hero__content {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  .btn {
    min-height: 48px;
  }
}

@media (max-width: 374.98px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__media img {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
