/* =============================================================
   VILLA ESPADA CAP CANA — Main Stylesheet v2
   Ultra-luxury golf villa rental, Cap Cana, Dominican Republic
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:     #0A1628;
  --navy-mid: #112240;
  --teal:     #0E4D64;
  --gold:     #C9A84C;
  --gold-lt:  #E8C96A;
  --cream:    #F5F0E8;
  --ivory:    #FDFAF5;
  --white:    #FFFFFF;
  --gray:     #8A8A8A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-lg:    0 24px 60px rgba(0,0,0,0.35);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.3);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
p { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 300; color: #3a3a3a; }
.overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── BACK BUTTON ────────────────────────────────────────────── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 3px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.back-btn:hover { background: var(--gold); color: var(--navy); }
.back-bar {
  background: var(--navy);
  padding: 0;
  margin-top: 72px; /* clears fixed nav */
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  height: 64px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-top {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-book-btn:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }
.nav-book-btn::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: white;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap iframe,
.hero-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.45) 0%,
    rgba(10,22,40,0.45) 50%,
    rgba(10,22,40,0.75) 80%,
    rgba(10,22,40,0.92) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  color: white;
  max-width: 900px;
}
.hero-content .overline { margin-bottom: 1.2rem; }
.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.6);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.25rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.hero-stat { }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 8vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::before {
  content: '';
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
}

/* ─── HERO SLIDER ────────────────────────────────────────────── */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-dots {
  position: absolute;
  bottom: 36px; left: 8vw;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.4s, width 0.4s;
}
.hero-dot.active { background: var(--gold); width: 48px; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SECTION BASE ───────────────────────────────────────────── */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 6vw; }
.section-header { margin-bottom: 60px; }
.section-header .overline { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ─── INTRO SECTION ──────────────────────────────────────────── */
.intro-section {
  background: var(--navy);
  color: white;
  padding: 80px 0;
}
.intro-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { color: white; margin-bottom: 24px; }
.intro-text p { color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.intro-text .btn { margin-top: 12px; }
.intro-badges {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.intro-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
}
.badge-icon {
  font-size: 2rem;
  min-width: 40px;
  text-align: center;
}
.badge-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
}
.badge-text span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
}

/* ─── GALLERY GRID ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2 / 3; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 3 / 4; }
.gallery-item:nth-child(5) { grid-column: 5 / 9; grid-row: 3 / 4; }
.gallery-item:nth-child(6) { grid-column: 9 / 13; grid-row: 3 / 4; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── AMENITIES GRID ─────────────────────────────────────────── */
.amenities-section { background: var(--cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.amenity-card {
  background: white;
  padding: 40px 32px;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  position: relative;
}
.amenity-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.amenity-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.amenity-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ─── GOLF SECTION ───────────────────────────────────────────── */
.golf-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.golf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.golf-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.golf-content {
  position: relative;
  z-index: 1;
  padding: 100px 8vw;
  max-width: 680px;
}
.golf-content h2 { color: white; margin-bottom: 24px; }
.golf-content p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.golf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.golf-badge {
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── EXPERIENCES ────────────────────────────────────────────── */
.experiences-section { background: white; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.exp-card:hover img { transform: scale(1.08); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}
.exp-card:hover .exp-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.3) 60%);
}
.exp-overlay .overline { margin-bottom: 8px; }
.exp-overlay h3 { color: white; margin-bottom: 12px; }
.exp-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s;
  opacity: 0;
}
.exp-card:hover .exp-overlay p {
  max-height: 100px;
  opacity: 1;
}
.exp-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.exp-card:hover .exp-arrow { opacity: 1; transform: translateY(0); }

/* ─── RATES SECTION ──────────────────────────────────────────── */
.rates-section { background: var(--cream); }
.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 60px;
}
.rate-card {
  background: white;
  padding: 48px 40px;
  position: relative;
}
.rate-card.featured {
  background: var(--navy);
  color: white;
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.rate-card.featured .rate-price { color: var(--gold); }
.rate-card.featured h3 { color: white; }
.rate-card.featured p { color: rgba(255,255,255,0.7); }
.rate-season {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.rate-card h3 { margin-bottom: 8px; }
.rate-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0;
}
.rate-price sup {
  font-size: 1.4rem;
  vertical-align: super;
}
.rate-price sub {
  font-size: 1rem;
  color: var(--gray);
}
.rate-includes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rate-includes li {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rate-includes li::before {
  content: '✓';
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ─── BOOKING FORM ───────────────────────────────────────────── */
.booking-section {
  background: var(--navy);
  padding: 80px 0;
}
.booking-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.booking-inner h2 { color: white; margin-bottom: 12px; }
.booking-inner > p { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.booking-form {
  background: white;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.form-field.full { grid-column: 1 / 3; }
.form-field label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit { grid-column: 1 / 3; text-align: center; padding-top: 16px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews-section { background: var(--ivory); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review-card {
  background: white;
  padding: 36px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}
.review-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.review-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ─── LOCATION SECTION ───────────────────────────────────────── */
.location-section { background: white; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-map {
  position: sticky;
  top: 100px;
  height: 480px;
  overflow: hidden;
}
.location-map iframe,
.location-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: none;
}
.location-points { display: flex; flex-direction: column; gap: 24px; }
.loc-point {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.loc-icon {
  font-size: 1.6rem;
  min-width: 44px;
  text-align: center;
}
.loc-detail strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 4px;
}
.loc-detail span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gray);
}

/* ─── STAFF SECTION ──────────────────────────────────────────── */
.staff-section { background: var(--navy); padding: 80px 0; }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.staff-card {
  text-align: center;
  color: white;
}
.staff-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}
.staff-card strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.staff-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ─── VIDEO SECTION ──────────────────────────────────────────── */
.video-section { background: var(--navy); padding: 0; }
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #060e1a;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-top {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  display: block;
  margin-bottom: 6px;
}
.footer-brand .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer-bottom .gold { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  height: 55vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.5), rgba(10,22,40,0.75));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  color: white;
  margin-top: 60px;
}
.page-hero-content .overline { margin-bottom: 12px; display: block; }
.page-hero-content h1 { color: white; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 8vw;
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }


/* ─── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: white; font-size: 2.5rem;
  cursor: pointer;
}

/* ─── FLOATING BOOK BUTTON ───────────────────────────────────── */
.float-book {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  transition: var(--transition);
  animation: pulse 3s infinite;
}
.float-book:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 8px 40px rgba(201,168,76,0.8); }
}

/* ─── DIVIDER ────────────────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-divider.center { margin: 20px auto; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ─── WATERPARK CALLOUT ──────────────────────────────────────── */
.waterpark-callout {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white;
  padding: 60px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.waterpark-callout h3 { color: white; margin-bottom: 12px; }
.waterpark-callout p { color: rgba(255,255,255,0.8); max-width: 500px; }
.waterpark-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

/* ─── AVAILABILITY CALENDAR ──────────────────────────────────── */
.availability-embed {
  background: white;
  padding: 40px;
  border: 1px solid #eee;
  text-align: center;
}
.availability-embed p {
  color: var(--gray);
  font-size: 0.9rem;
}
.availability-embed .btn { margin-top: 20px; }

/* ─── SEO CONTENT ────────────────────────────────────────────── */
.seo-content {
  background: var(--ivory);
  padding: 60px 0;
}
.seo-content h2 { font-size: 2rem; margin-bottom: 20px; }
.seo-content p { max-width: 800px; margin-bottom: 16px; }
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.seo-links a {
  background: white;
  border: 1px solid #ddd;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--navy);
  transition: var(--transition);
}
.seo-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rates-grid { grid-template-columns: 1fr; }
  .rate-card.featured { transform: none; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto; grid-row: auto;
  }
  .intro-section .container { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { position: static; }
  .exp-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; padding: 28px; }
  .form-field.full { grid-column: 1; }
  .form-submit { grid-column: 1; }
  .hero-stats { gap: 1.5rem; }
  .waterpark-callout { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .float-book { bottom: 20px; right: 20px; padding: 12px 20px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 250px; }
}
