/* ============================================================
   LOTUS GROVE — Premium Resort Design System
   Hero inspired by Olivia Harper Homes
   ============================================================ */

:root {
  /* Colors */
  --teal-dark: #0D2A35;
  --teal: #153D4B;
  --gold: #E49951;
  --gold-light: #F5D3A9;
  --cream: #F2F2EC;
  --white: #FFFFFF;
  --text-main: #333333;
  --muted: #666666;
  --border: #E5E5E5;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 12px;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  
  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 7rem;
  
  /* Border Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 10px 30px rgba(228, 153, 81, 0.3);
  
  /* Transitions */
  --duration: 0.3s;
  --duration-slow: 0.6s;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  
  /* Layout */
  --header-h: 90px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; overflow-x: hidden; } /* Changed scroll-behavior from smooth for Lenis */
body { font-family: var(--font-body); color: var(--text-main); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }

/* Lenis smooth scrolling specific styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease-out); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--teal-dark); }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.text-gold { color: var(--gold); }

/* ---------- UTILITIES ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--sp-lg); }
.section { padding: var(--sp-3xl) 0; }
.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }
.section--dark { background-color: var(--teal-dark); color: var(--white); }
.section--dark h2 { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: var(--radius-full); font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; transition: all var(--duration) var(--ease-out); gap: 10px; cursor: pointer; position: relative; overflow: hidden; }
.btn--primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: #d68940; transform: translateY(-2px); box-shadow: 0 15px 30px rgba(228, 153, 81, 0.4); }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); }
.btn--glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); color: var(--white); }
.btn--glass:hover { background: rgba(255,255,255,0.2); }
.btn--large { padding: 18px 36px; font-size: 1rem; }
.btn__arrow { transition: transform var(--duration) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.pulse-glow { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(228, 153, 81, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(228, 153, 81, 0); } 100% { box-shadow: 0 0 0 0 rgba(228, 153, 81, 0); } }


/* ================================================================
   PRELOADER — Cinematic Brand Intro (SVG Mask)
   ================================================================ */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none; /* Let clicks pass through just in case */
}

.svg-mask-text {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  /* Font size is set via inline vw in HTML for responsive scaling,
     but we ensure it behaves properly here */
}

/* ================================================================
   HEADER — 3 Column Layout: Nav | Logo | Actions
   Inspired by Olivia Harper Homes
   ================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 var(--sp-xl);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.5s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(13, 42, 53, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  height: 70px;
}

/* Left: Nav links */
.site-header__nav {
  display: flex;
  gap: clamp(1.2rem, 2vw, 2.5rem);
  justify-self: start;
}

.site-header__nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding: 4px 0;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.site-header__nav a:hover {
  color: var(--white);
}

.site-header__nav a:hover::after {
  width: 100%;
}

/* Center: Logo */
.site-header__logo {
  justify-self: center;
}

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

.site-header__logo img {
  height: 55px;
  transition: all 0.5s var(--ease-out);
  filter: brightness(0) invert(1);
}

.site-header.scrolled .site-header__logo img {
  height: 42px;
}

/* Right: Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  justify-self: end;
}

.site-header__actions .header-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.site-header__social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--duration) var(--ease-out);
}

.site-header__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.8);
  transition: fill var(--duration) var(--ease-out);
}

.site-header__social:hover {
  border-color: var(--gold);
  background: rgba(228, 153, 81, 0.1);
}

.site-header__social:hover svg {
  fill: var(--gold);
}


/* ================================================================
   HERO — Cinematic Video + Brand Logo
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

/* Video Background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark cinematic overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 42, 53, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(13, 42, 53, 0.7) 100%
  );
  z-index: 3;
  pointer-events: none;
}

/* Keyword Tags — ● Premium · ● Curated · ● Exclusive */
.hero__keywords {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: var(--sp-xl);
  opacity: 0;
  transform: translateY(15px);
}

.hero__keyword {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__keyword-dot {
  width: 6px;
  height: 6px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Hero Content — Brand Logo Center */
.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  color: var(--white);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  overflow: hidden;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
  display: inline-block;
}

.hero__title .word { overflow: hidden; padding-bottom: 5px; } /* For SplitType words */
.hero__title .char { transform: translateY(110%); } /* Initially hide characters */

.hero__divider {
  width: 120px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.5rem;
}

/* Bottom: Scroll Indicator */
.hero__bottom {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  opacity: 0;
}

/* Mouse Scroll Widget */
.hero__mouse {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero__mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 2.2s cubic-bezier(.15,.41,.69,.94) infinite;
}

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

.hero__scroll-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration) var(--ease-out);
}

.hero__scroll-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s var(--ease-out);
}

.hero__scroll-text:hover {
  color: var(--gold-light);
}

.hero__scroll-text:hover::after {
  width: 100%;
}


/* ---------- STATS BAR ---------- */
.stats-bar { position: relative; z-index: 10; margin-top: -60px; }
.stats-bar__inner { background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-xl) var(--sp-2xl); box-shadow: var(--shadow-xl); display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-xl); }
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); height: 40px; width: 1px; background: var(--border); }
.stat-item__number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-xs); }
.stat-item__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: var(--sp-2xl); display: flex; flex-direction: column; align-items: center; }
.section-header__label { display: inline-flex; align-items: center; gap: var(--sp-sm); color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.85rem; font-weight: 600; margin-bottom: var(--sp-md); }
.section-header__label span { display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.section-header__title { margin-bottom: var(--sp-md); }
.section-header__desc { max-width: 600px; margin: 0 auto; color: var(--muted); }

/* ---------- ABOUT SECTION ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); align-items: center; }
.about__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about__image img { width: 100%; height: 500px; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.about__image:hover img { transform: scale(1.05); }
.about__image-badge { position: absolute; bottom: var(--sp-xl); right: var(--sp-xl); background: var(--gold); color: var(--white); padding: var(--sp-md) var(--sp-lg); border-radius: var(--radius-md); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; box-shadow: var(--shadow-gold); }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); margin-bottom: var(--sp-xl); }
.about__feature { display: flex; align-items: center; gap: var(--sp-sm); font-weight: 500; font-size: 0.95rem; }
.about__feature svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ---------- ACCOMMODATIONS ---------- */
.accommodations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-xl); }
.accom-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out); transform-style: preserve-3d; perspective: 1000px; }
.accom-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.accom-card__image { position: relative; height: 320px; overflow: hidden; }
.accom-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.accom-card:hover .accom-card__image img { transform: scale(1.08); }
.accom-card__badge { position: absolute; top: var(--sp-md); left: var(--sp-md); background: var(--gold); color: var(--white); padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.accom-card__body { padding: var(--sp-xl); }
.accom-card__title { font-size: 1.5rem; margin-bottom: var(--sp-sm); }
.accom-card__desc { color: var(--muted); margin-bottom: var(--sp-lg); }
.accom-card__amenities { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.amenity-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--cream); border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 500; color: var(--teal); }
.amenity-tag svg { width: 14px; height: 14px; fill: var(--gold); }

/* ---------- AMENITIES (3D TILT CARDS) ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); }
.amenity-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 380px; cursor: pointer; transform-style: preserve-3d; transition: transform var(--duration) var(--ease-out); }
.amenity-card__bg { position: absolute; inset: 0; }
.amenity-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
.amenity-card:hover .amenity-card__bg img { transform: scale(1.1); }
.amenity-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,42,53,0.9) 0%, rgba(13,42,53,0.2) 60%, transparent 100%); transition: background var(--duration) var(--ease-out); }
.amenity-card:hover .amenity-card__overlay { background: linear-gradient(to top, rgba(13,42,53,0.95) 0%, rgba(13,42,53,0.5) 60%, rgba(13,42,53,0.2) 100%); }
.amenity-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--sp-xl); z-index: 2; transform: translateY(20px); transition: transform var(--duration) var(--ease-out); }
.amenity-card:hover .amenity-card__content { transform: translateY(0); }
.amenity-card__icon { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-md); box-shadow: var(--shadow-gold); }
.amenity-card__icon svg { width: 24px; height: 24px; fill: var(--white); }
.amenity-card__title { color: var(--white); font-size: 1.4rem; margin-bottom: var(--sp-sm); }
.amenity-card__desc { color: rgba(255,255,255,0.7); font-size: 0.9rem; opacity: 0; transform: translateY(10px); transition: all var(--duration) var(--ease-out); }
.amenity-card:hover .amenity-card__desc { opacity: 1; transform: translateY(0); }

/* ---------- EVENTS SHOWCASE ---------- */
.events-showcase { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.events-tabs { background: var(--teal-dark); padding: var(--sp-3xl) var(--sp-2xl); display: flex; flex-direction: column; justify-content: center; }
.events-tabs h2 { color: var(--white); margin-bottom: var(--sp-xl); }
.event-tab { display: flex; align-items: center; gap: var(--sp-md); padding: var(--sp-md) var(--sp-lg); border-left: 3px solid transparent; cursor: pointer; transition: all var(--duration) var(--ease-out); color: rgba(255,255,255,0.6); font-size: 1.1rem; font-weight: 500; }
.event-tab:hover, .event-tab.active { border-left-color: var(--gold); color: var(--white); background: rgba(255,255,255,0.05); }
.event-tab.active { color: var(--gold); }
.event-tab__number { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 400; color: var(--gold); min-width: 24px; }
.events-visual { position: relative; overflow: hidden; }
.events-visual__slide { position: absolute; inset: 0; opacity: 0; transition: opacity var(--duration-slow) var(--ease-out); }
.events-visual__slide.active { opacity: 1; z-index: 2; }
.events-visual__slide img { width: 100%; height: 100%; object-fit: cover; }
.events-visual__info { position: absolute; bottom: var(--sp-xl); left: var(--sp-xl); right: var(--sp-xl); padding: var(--sp-lg); background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: var(--radius-md); color: var(--white); }
.events-visual__info h3 { color: var(--white); margin-bottom: var(--sp-xs); font-size: 1.3rem; }
.events-visual__info p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }

/* ---------- GALLERY ---------- */
.gallery-full-wrap { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; }
.gallery-grid { 
    display: flex; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}
.gallery-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari/Edge */

.gallery-item { flex: 0 0 100vw; height: 80vh; position: relative; scroll-snap-align: center; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 42, 53, 0.3) 0%, transparent 40%); pointer-events: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s ease-out; }
.gallery-item:hover img { transform: scale(1.02); }

/* Premium Overlay Navigation Arrows */
.gallery-nav { 
    position: absolute; 
    top: 50%; left: 3vw; right: 3vw; 
    transform: translateY(-50%); 
    display: flex; 
    justify-content: space-between; 
    pointer-events: none; /* Let clicks pass through the empty middle */
    z-index: 10; 
}
.gallery-arrow { 
    pointer-events: auto; /* Re-enable clicks */
    width: 60px; height: 60px; 
    border-radius: 50%; 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    color: var(--teal-dark); 
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.2); 
}
.gallery-arrow:hover { 
    background: var(--gold); 
    border-color: var(--gold); 
    color: var(--white); 
    transform: scale(1.1); 
    box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.4);
}
.gallery-arrow:active { transform: scale(0.95); }
.gallery-arrow svg { width: 30px; height: 30px; fill: currentColor; }
.gallery-arrow.disabled { opacity: 0; pointer-events: none; transform: scale(0.8); }

/* ---------- LOCATION ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); align-items: center; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.location__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.8) contrast(1.1); }
.location__detail { display: flex; align-items: flex-start; gap: var(--sp-md); margin-bottom: var(--sp-lg); padding: var(--sp-md); background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.location__detail-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--cream); display: flex; align-items: center; justify-content: center; }
.location__detail-icon svg { width: 24px; height: 24px; fill: var(--gold); }

/* ---------- BOOKING FORM ---------- */
.booking { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); color: var(--white); padding: var(--sp-3xl) 0; position: relative; }
.booking__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-3xl); align-items: center; }
.booking__info h2 { color: var(--white); margin-bottom: var(--sp-lg); }
.booking__contact-item { display: flex; align-items: center; gap: var(--sp-sm); margin-bottom: var(--sp-md); font-size: 1.1rem; }
.booking__contact-item svg { width: 24px; height: 24px; fill: var(--gold); }
.booking__form { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: var(--sp-2xl); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.form-group { margin-bottom: var(--sp-lg); display: flex; flex-direction: column; }
.form-group label { margin-bottom: var(--sp-xs); font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.2); color: var(--white); font-family: inherit; font-size: 1rem; transition: border-color var(--duration) var(--ease-out); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: var(--teal-dark); color: var(--white); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--teal-dark); color: var(--white); padding: var(--sp-3xl) 0 var(--sp-xl); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-2xl); margin-bottom: var(--sp-3xl); }
.footer-logo { height: 60px; filter: brightness(0) invert(1); margin-bottom: var(--sp-md); }
.footer-desc { color: rgba(255,255,255,0.7); max-width: 400px; }
.footer-col h4 { color: var(--gold); margin-bottom: var(--sp-lg); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; font-size: 1rem; }
.footer-links li, .footer-contact li { margin-bottom: var(--sp-sm); color: rgba(255,255,255,0.8); }
.footer-contact li { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.footer-contact svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--sp-xl); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.social-links { display: flex; gap: var(--sp-md); }
.social-links a svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.5); transition: fill var(--duration) var(--ease-out); }
.social-links a:hover svg { fill: var(--gold); }

/* ---------- ANIMATIONS / REVEALS ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: all 0.8s var(--ease-out); }
.active { opacity: 1; transform: translate(0, 0); }
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }


/* ================================================================
   MOBILE NAV OVERLAY
   ================================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.mobile-nav.active a {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .site-header__nav,
  .site-header__actions .header-cta,
  .site-header__social {
    display: none;
  }

  .site-header__logo { order: 0; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
  }
  
  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    border-radius: 2px;
  }
  
  .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .mobile-nav { display: flex !important; }
  
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { padding-bottom: var(--sp-md); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { padding-top: var(--sp-md); }
  
  .about, .accommodations-grid, .amenities-grid, .events-showcase, .location-grid, .booking__inner { grid-template-columns: 1fr; }
  .about__image { height: 400px; margin-bottom: var(--sp-lg); }
  .events-visual { height: 400px; width: 100%; position: relative; }
  .events-tabs { padding: var(--sp-xl); }
  .footer-grid { grid-template-columns: 1fr; }

  .hero__brand-logo { max-width: clamp(220px, 50vw, 350px); }
  .hero__keywords { gap: 1rem; }
  .hero__keyword { font-size: 0.7rem; letter-spacing: 0.15em; }
  .hero__tagline { font-size: 0.8rem; letter-spacing: 0.18em; }
}

@media (min-width: 1025px) {
  .menu-toggle { display: none; }
}

@media (max-width: 768px) {
  .stats-bar__inner { grid-template-columns: 1fr; gap: var(--sp-md); }
  .stat-item::after { display: none !important; }
  .stat-item { padding: var(--sp-sm) 0 !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  /* Horizontal Gallery Mobile Sizing */
  .gallery-full-wrap { width: 100vw; margin-left: -50vw; margin-right: -50vw; left: 50%; right: 50%; }
  .gallery-item { flex: 0 0 100vw; height: 60vh; }
  
  .gallery-nav { left: 10px; right: 10px; }
  .gallery-arrow { width: 44px; height: 44px; }
  .gallery-arrow svg { width: 24px; height: 24px; }

  .hero__keywords { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .gallery-item { height: 50vh; }
  .gallery-nav { display: none; } /* Rely entirely on touch swipe for mobile */
}
