/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  /* Brand Palette */
  --olive:     #A1AD70;   /* warm olive green */
  --blue:      #388CCF;   /* sky blue */
  --indigo:    #7071BE;   /* muted indigo/purple */
  --teal:      #38A39E;   /* teal/seafoam */

  /* Semantic aliases (keeps all existing var() references working) */
  --gold:       #388CCF;          /* primary accent → blue */
  --gold-light: #7071BE;          /* secondary accent → indigo */
  --gold-dim:   rgba(56,140,207,0.14);

  --white:  #ffffff;
  --dark:   #0e0e0e;
  --dark2:  #141414;
  --text-grey: #888;
  --text-mid:  #555;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Raleway', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --ease-out:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-expo: cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  overflow-x: hidden;
  background: #fff;
  cursor: none;
}

@media (max-width: 768px) { body { cursor: auto; } }


/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.3s;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(56,163,158,0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--teal);
  background: rgba(56,163,158,0.12);
}
.cursor-ring.clicking { transform: translate(-50%,-50%) scale(0.8); }

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.loader-logo { height: 52px; filter: brightness(0) invert(1); opacity: 0.85; animation: loaderPulse 1.5s ease-in-out infinite; }
@keyframes loaderPulse { 0%,100% { opacity:0.5; } 50% { opacity:1; } }
.loader-bar { width: 200px; height: 1px; background: rgba(255,255,255,0.12); position: relative; overflow: hidden; }
.loader-fill { height: 100%; background: var(--olive); width: 0%; transition: width 0.1s linear; }
.loader-percent { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 3px; color: rgba(255,255,255,0.4); }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 52px;
  background: transparent;
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out), box-shadow 0.5s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 52px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.nav-menu-toggle {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 600; letter-spacing: 2.5px;
  transition: color 0.3s;
}
.navbar.scrolled .nav-menu-toggle { color: #333; }
.hamburger-lines { display: flex; flex-direction: column; gap: 5px; }
.hamburger-lines span {
  display: block; height: 1px; background: currentColor;
  transition: transform 0.4s var(--ease-expo), width 0.3s, opacity 0.3s;
}
.hamburger-lines span:nth-child(1) { width: 22px; }
.hamburger-lines span:nth-child(2) { width: 16px; }
.hamburger-lines span:nth-child(3) { width: 22px; }
.nav-menu-toggle:hover .hamburger-lines span:nth-child(2) { width: 22px; }
.menu-label { font-size: 0.58rem; letter-spacing: 2.5px; }
.nav-logo-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  cursor: pointer;
}
.nav-logo-img { height: 44px; width: auto; transition: filter 0.4s, transform 0.4s; }
.navbar:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }
.nav-logo-center:hover .nav-logo-img { transform: scale(1.04); }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.58rem; font-weight: 600; letter-spacing: 2.5px;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 24px;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  position: relative; overflow: hidden;
}
.nav-cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-expo);
}
.nav-cta-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.navbar.scrolled .nav-cta-btn { color: #333; border-color: #333; }
.navbar.scrolled .nav-cta-btn::before { background: var(--blue); }
.navbar.scrolled .nav-cta-btn:hover { color: #fff; }


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,5,5,0.72) 0%,
    rgba(5,5,5,0.45) 50%,
    rgba(5,5,5,0.15) 100%
  );
}
/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,0.12); z-index: 10;
}
.hero-progress-fill {
  height: 100%; background: var(--teal); width: 0%;
  transition: width 0.05s linear;
}
/* Side right indicators */
.hero-side-right {
  position: absolute; right: 32px; top: 50%;
  transform: translateY(-50%); z-index: 10;
}
.slide-numbers { display: flex; flex-direction: column; align-items: center; gap: 0; }
.slide-line { width: 1px; height: 60px; background: rgba(255,255,255,0.25); }
.slide-num {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 300;
  color: rgba(255,255,255,0.4); cursor: pointer;
  padding: 12px 8px; line-height: 1;
  transition: color 0.35s, transform 0.35s;
  letter-spacing: 1px; user-select: none;
}
.slide-num:hover { color: rgba(255,255,255,0.8); }
.slide-num.active { color: var(--teal); transform: scale(1.2); }
/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0;
  padding: 0 7%;
  max-width: 760px;
}

/* Script label — "Meraki" like "Antigua" in screenshot */
.hero-script-label {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: rgba(255,255,255,0.92);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
  letter-spacing: 1px;
}

/* Main headline — bold condensed all caps */
.hero-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.title-line {
  display: block;
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  opacity: 0; animation: slideUp 1.1s var(--ease-expo) forwards;
}
.title-line.line1 { animation-delay: 0.35s; }
.title-line.line2 { animation-delay: 0.5s; }

/* Sub-block — stacked info lines */
.hero-sub-block {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
}
.hero-sub-top {
  font-family: var(--font-condensed);
  font-size: clamp(0.7rem, 1.4vw, 0.88rem);
  letter-spacing: 3px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.hero-sub-highlight {
  font-family: var(--font-condensed);
  font-size: clamp(0.78rem, 1.6vw, 0.98rem);
  letter-spacing: 2.5px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.hero-sub-highlight strong {
  font-weight: 700; color: #fff;
}
.hero-sub-tag {
  font-family: var(--font-condensed);
  font-size: clamp(0.68rem, 1.3vw, 0.82rem);
  letter-spacing: 2px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent;
  color: var(--white);
  font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600; letter-spacing: 3px;
  text-decoration: none; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s ease 0.95s forwards;
  transition: background 0.4s, border-color 0.4s;
  overflow: hidden; position: relative;
}
.hero-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}
.hero-btn:hover::before { transform: scaleX(1); transform-origin: left; }
/* Arrows */
.slider-arrows {
  position: absolute; bottom: 42px; right: 52px;
  display: flex; gap: 8px; z-index: 10;
}
.arrow-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent; color: var(--white); font-size: 0.7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.arrow-btn:hover { background: var(--teal); border-color: var(--teal); transform: scale(1.05); }
/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute; bottom: 48px; left: 52px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s ease 1.3s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 2px; height: 8px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100% { transform:translateY(0);opacity:1; } 60% { transform:translateY(10px);opacity:0; } }
.hero-scroll-indicator span {
  font-family: var(--font-sans); font-size: 0.48rem; letter-spacing: 3px;
  color: rgba(255,255,255,0.5); font-weight: 500;
}

@keyframes slideUp { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }


/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--blue); overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 3px; color: rgba(255,255,255,0.85);
  font-weight: 500; text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-dot { color: var(--olive) !important; font-size: 0.5rem !important; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   SECTION EYEBROW
   ============================================ */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.eyebrow-line { flex-shrink: 0; width: 32px; height: 1px; background: var(--indigo); }
.eyebrow-text { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 3.5px; color: var(--indigo); font-weight: 600; }
.eyebrow-light .eyebrow-line { background: rgba(255,255,255,0.5); }
.eyebrow-light .eyebrow-text { color: rgba(255,255,255,0.65); }

/* ============================================
   DATA-REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0; transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-child] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal-child].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-child]:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-child]:nth-child(3) { transition-delay: 0.24s; }
[data-reveal-child]:nth-child(4) { transition-delay: 0.36s; }
[data-reveal-child]:nth-child(5) { transition-delay: 0.48s; }


/* ============================================
   ABOUT SECTION
   ============================================ */
.about { background: #f5f7f0; padding: 120px 52px; }
.about-container {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 500px;
  gap: 80px; align-items: center;
}
.about-text { display: flex; flex-direction: column; gap: 22px; }
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300; color: #0a0a0a; line-height: 1.08;
}
.about-desc {
  font-family: var(--font-sans); font-size: 0.97rem;
  line-height: 1.88; color: #666; max-width: 56ch;
}
/* Stats */
.about-stats {
  display: flex; align-items: center; gap: 0;
  border: 1px solid #eee; margin-top: 10px;
}
.stat-item {
  flex: 1; padding: 22px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stat-divider { width: 1px; height: 60px; background: #eee; }
.stat-number {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 300;
  color: var(--blue); line-height: 1;
}
.stat-label { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 2px; color: #999; font-weight: 500; text-transform: uppercase; }
/* Ambassador */
.about-ambassador {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border: 1px solid #eee; margin-top: 8px;
  background: #fff;
  transition: box-shadow 0.3s;
}
.about-ambassador:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.amb-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(56,163,158,0.12); border: 1px solid rgba(56,163,158,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem;
}
.amb-info { display: flex; flex-direction: column; gap: 3px; }
.amb-label { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 2px; color: #aaa; }
.amb-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: #111; }
/* Right images */
.about-images {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-main {
  position: relative; width: 100%; max-width: 440px; height: 360px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0,0,0,0.1);
}
.about-img-main img { width:100%; height:100%; object-fit:cover; transition: transform 0.8s var(--ease-out); }
.about-img-main:hover img { transform: scale(1.04); }
.img-accent-line {
  position: absolute; bottom: 0; left: 0;
  width: 60px; height: 3px; background: var(--olive);
}
.about-img-secondary {
  position: absolute; right: -24px; top: -40px;
  width: 210px; height: 155px;
  overflow: hidden; transform: rotate(-2.5deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border: 6px solid #fff;
}
.about-img-secondary img { width:100%; height:100%; object-fit:cover; }
.about-img-badge {
  position: absolute; left: -18px; bottom: 36px;
  background: var(--blue); color: #fff;
  padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  box-shadow: 0 8px 32px rgba(56,140,207,0.35);
}
.about-img-badge i { color: var(--olive); font-size: 0.9rem; }
.about-img-badge span { font-family: var(--font-sans); font-size: 0.55rem; letter-spacing: 2px; color: rgba(255,255,255,0.85); }

@media (max-width: 1100px) {
  .about-container { grid-template-columns: 1fr 400px; gap: 50px; }
  .about { padding: 90px 36px; }
}
@media (max-width: 768px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 300px; }
  .about-img-main { max-width: 100%; height: 260px; }
  .about-img-secondary { display: none; }
  .about-img-badge { display: none; }
  .about { padding: 64px 24px; }
}


/* ============================================
   VILLA SECTION
   ============================================ */
.villa-section {
  position: relative; overflow: hidden;
  padding: 130px 52px;
  display: flex; align-items: center; justify-content: center;
}
.villa-bg { position: absolute; inset: 0; }
.villa-bg-img { width:100%; height:100%; object-fit:cover; object-position:center; filter:brightness(0.38); }
.villa-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.45) 100%);
}
.villa-inner {
  position: relative; z-index: 5; max-width: 1200px; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
  text-align: center;
}
.villa-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300; color: #fff; line-height: 1.1;
  letter-spacing: 1px;
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.villa-heading.revealed { opacity: 1; transform: translateY(0); }
.villa-middle {
  display: grid; grid-template-columns: 1fr 260px 1fr;
  gap: 60px; align-items: center; width: 100%;
}
.villa-left { text-align: left; }
.villa-left p, .villa-right p {
  font-family: var(--font-sans); color: rgba(255,255,255,0.72);
  line-height: 1.8; font-size: 0.9rem;
}
.villa-left-p1 {
  font-family: var(--font-serif) !important;
  font-size: 1.25rem !important; font-weight: 300;
  color: rgba(255,255,255,0.88) !important;
  margin-bottom: 16px;
}
.villa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.85);
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 2px; font-weight: 600;
  text-decoration: none; transition: background 0.35s, border-color 0.35s;
}
.villa-cta:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.villa-center { position: relative; display: flex; align-items: center; justify-content: center; }
.villa-number-wrap { display: flex; flex-direction: column; align-items: center; z-index: 2; }
.villa-number {
  font-family: var(--font-serif); font-size: 6rem; font-weight: 300;
  color: var(--olive); line-height: 1;
}
.villa-number-label {
  font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.5); text-transform: uppercase; text-align: center;
  line-height: 1.6;
}
.villa-ring {
  position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(161,173,112,0.35);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100% { transform:scale(1); opacity:0.5; } 50% { transform:scale(1.08); opacity:1; } }
.villa-right { text-align: right; }

@media (max-width: 900px) {
  .villa-middle { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .villa-left, .villa-right { text-align: center; }
  .villa-section { padding: 90px 24px; }
}


/* ============================================
   PLOT DETAILS SECTION
   ============================================ */
.plot-details { background: #f7f9fc; padding: 120px 52px; }
.plot-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.plot-left { display: flex; flex-direction: column; gap: 12px; }
.plot-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300; color: #0a0a0a;
  margin-bottom: 24px; line-height: 1.1;
}
.plot-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.plot-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: padding-left 0.35s var(--ease-out);
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), padding-left 0.35s var(--ease-out);
}
.plot-item.revealed { opacity: 1; transform: translateX(0); }
.plot-item:hover { padding-left: 8px; }
.plot-item:nth-child(1) { transition-delay: 0.0s; }
.plot-item:nth-child(2) { transition-delay: 0.1s; }
.plot-item:nth-child(3) { transition-delay: 0.2s; }
.plot-item:nth-child(4) { transition-delay: 0.3s; }
.plot-item:nth-child(5) { transition-delay: 0.4s; }
.plot-icon-wrap { flex-shrink: 0; }
.plot-icon {
  width: 46px; height: 46px;
  border: 1px solid rgba(56,163,158,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 1rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.plot-item:hover .plot-icon { background: var(--teal); color: #fff; border-color: var(--teal); transform: scale(1.06); }
.plot-item-text { display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.plot-item-title { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; color: #111; }
.plot-item-sub { font-family: var(--font-sans); font-size: 0.8rem; color: #999; line-height: 1.5; }
/* Right image */
.plot-right { position: relative; }
.plot-img-wrap { position: relative; overflow: hidden; }
.plot-img-wrap img { width:100%; height: 520px; object-fit: cover; transition: transform 0.8s var(--ease-out); display: block; }
.plot-img-wrap:hover img { transform: scale(1.04); }
.plot-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.55) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 32px;
}
.plot-badge {
  background: var(--indigo); color: #fff; padding: 16px 22px;
  display: flex; flex-direction: column; gap: 2px;
}
.pb-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; line-height: 1; }
.pb-text { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 2px; font-weight: 600; }

@media (max-width: 900px) {
  .plot-container { grid-template-columns: 1fr; gap: 50px; }
  .plot-img-wrap img { height: 320px; }
  .plot-details { padding: 80px 24px; }
}


/* ============================================
   PROMO VIDEO SECTION
   ============================================ */
.promo-video {
  position: relative; width: 100%; height: 520px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.promo-bg { position: absolute; inset: 0; }
.promo-bg-img { width:100%; height:100%; object-fit:cover; filter:brightness(0.42); }
.promo-overlay {
  position: absolute; inset: 0;
  background: rgba(8,6,4,0.55);
}
.promo-content {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-align: center;
}
.promo-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; color: #fff; letter-spacing: 2px;
}
.play-btn-wrap { position: relative; display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.play-btn {
  width: 78px; height: 78px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,0.95);
  color: var(--blue); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
  padding-left: 5px;
  position: relative; z-index: 2;
}
.play-btn:hover { background: var(--olive); color: #fff; transform: scale(1.1); }
.play-ripple {
  position: absolute; width: 100px; height: 100px;
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.35);
  animation: rippleAnim 2.5s ease-out infinite;
}
.play-ripple.delay { animation-delay: 1.2s; }
@keyframes rippleAnim { 0% { transform:scale(0.8); opacity:0.8; } 100% { transform:scale(2); opacity:0; } }
/* Video modal */
.video-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.video-modal.active { opacity: 1; pointer-events: all; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.9); cursor: pointer; }
.modal-box {
  position: relative; z-index: 2; width: 90%; max-width: 920px;
  transform: scale(0.88); transition: transform 0.45s var(--ease-expo);
}
.video-modal.active .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: -46px; right: 0;
  background: transparent; border: 1px solid rgba(255,255,255,0.45);
  color: #fff; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem;
  transition: background 0.3s, border-color 0.3s;
}
.modal-close:hover { background: var(--teal); border-color: var(--teal); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }


/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section { background: #111420; padding: 100px 0 80px; overflow: hidden; }
.gallery-header {
  text-align: center; padding: 0 52px; margin-bottom: 50px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.gallery-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: #fff; letter-spacing: 1px;
}
.gallery-slider-wrap { position: relative; overflow: hidden; }
.gallery-track {
  display: flex; gap: 16px;
  padding: 0 52px;
  transition: transform 0.7s var(--ease-expo);
  will-change: transform;
}
.gallery-slide {
  flex-shrink: 0; width: calc(50% - 60px);
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-slide img {
  width: 100%; height: 360px; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease-out);
}
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-slide:hover .gallery-slide-overlay { opacity: 1; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.5); color: #fff; font-size: 0.8rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
}
.gallery-arrow:hover { background: var(--indigo); border-color: var(--indigo); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.gallery-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gallery-dot.active { background: var(--olive); transform: scale(1.3); }

@media (max-width: 768px) {
  .gallery-slide { width: calc(100% - 40px); }
  .gallery-track { padding: 0 20px; }
  .gallery-slide img { height: 240px; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: #fff; }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr;
  gap: 80px; align-items: start;
  padding: 120px 52px 80px;
}
.contact-divider { background: #eee; align-self: stretch; }
.contact-left { display: flex; flex-direction: column; gap: 28px; }
.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300; color: #0a0a0a; line-height: 1.1;
}
/* Colorful accent bar under contact title */
.contact-title::after {
  content: '';
  display: block;
  margin-top: 14px;
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--olive));
  border-radius: 2px;
}
.contact-tagline { font-family: var(--font-sans); font-size: 0.9rem; color: #888; line-height: 1.6; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: #333;
  font-family: var(--font-sans); font-size: 0.88rem;
  transition: color 0.3s;
  padding: 12px 16px; border: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.contact-detail-item:hover { border-color: #eee; color: var(--blue); }
.cd-icon {
  width: 40px; height: 40px; border: 1px solid rgba(56,163,158,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.85rem; flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.contact-detail-item:hover .cd-icon { background: var(--teal); color: #fff; border-color: var(--teal); }
.contact-socials { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px; border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  color: #666; font-size: 0.85rem; text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.social-icon:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }
/* Form */
.contact-right { padding-top: 24px; }
.meraki-form { display: flex; flex-direction: column; gap: 24px; }
.mf-group { position: relative; }
.mf-input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid #ddd; padding: 14px 0 12px;
  font-family: var(--font-sans); font-size: 0.9rem; color: #111;
  outline: none; transition: border-color 0.3s;
  resize: none;
}
.mf-input::placeholder { color: #bbb; }
.mf-input:focus { border-bottom-color: var(--blue); }
.mf-line {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width 0.4s var(--ease-expo);
}
.mf-input:focus ~ .mf-line { width: 100%; }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mf-textarea { display: block; }
.mf-submit {
  display: inline-flex; align-items: center; gap: 12px;
  align-self: flex-start;
  padding: 16px 42px; background: var(--blue); border: 2px solid var(--blue);
  color: #fff; font-family: var(--font-sans); font-size: 0.62rem;
  font-weight: 700; letter-spacing: 3px; cursor: pointer;
  transition: background 0.35s, color 0.35s;
  position: relative; overflow: hidden;
}
.mf-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--teal); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-expo);
}
.mf-submit span, .mf-submit i { position: relative; z-index: 1; }
.mf-submit:hover::before { transform: scaleX(1); transform-origin: left; }
.mf-submit:hover { border-color: var(--teal); }
/* Footer bar */
.contact-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 52px;
  border-top: 1px solid #f0f0f0;
}
.footer-logo-img { height: 36px; width: auto; opacity: 0.7; }
.footer-copy { font-family: var(--font-sans); font-size: 0.7rem; color: #aaa; letter-spacing: 1px; }
.footer-loc { font-family: var(--font-sans); font-size: 0.72rem; color: #999; display: flex; align-items: center; gap: 6px; }
.footer-loc i { color: var(--teal); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 50px; padding: 80px 24px 60px; }
  .contact-divider { display: none; }
  .contact-footer-bar { flex-direction: column; gap: 14px; padding: 22px 24px; text-align: center; }
  .mf-row { grid-template-columns: 1fr; }
}


/* ============================================
   FULLSCREEN MENU OVERLAY  — white minimal
   ============================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none; visibility: hidden;
  /* white background slides in from left */
}
.menu-overlay.open { pointer-events: all; visibility: visible; }

/* ---- Close button — always top-right, never hidden ---- */
.menu-close-btn {
  position: fixed; top: 28px; right: 44px; z-index: 2100;
  width: 44px; height: 44px;
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: rotate(-90deg) scale(0.7);
  transition: opacity 0.35s 0.15s, transform 0.35s 0.15s, background 0.25s, border-color 0.25s;
  pointer-events: none;
}
.menu-overlay.open .menu-close-btn {
  opacity: 1; transform: rotate(0deg) scale(1);
  pointer-events: all;
}
.menu-close-btn span {
  position: absolute; width: 18px; height: 1.5px;
  background: #111; border-radius: 2px;
  transition: background 0.25s;
}
.menu-close-btn span:first-child { transform: rotate(45deg); }
.menu-close-btn span:last-child  { transform: rotate(-45deg); }
.menu-close-btn:hover { background: #111; border-color: #111; }
.menu-close-btn:hover span { background: #fff; }

/* ---- Overlay inner layout ---- */
.menu-overlay-inner {
  display: flex; width: 100%; height: 100%;
}

/* ---- Left panel: nav links ---- */
.menu-panel-left {
  flex: 1;
  background: #fff;
  display: flex; align-items: center;
  padding: 80px 8% 80px 10%;
  transform: translateX(-100%);
  transition: transform 0.65s var(--ease-expo);
}
.menu-overlay.open .menu-panel-left { transform: translateX(0); }

.menu-nav { display: flex; flex-direction: column; gap: 0; }

.menu-link {
  display: flex; align-items: baseline; gap: 18px;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: padding-left 0.35s var(--ease-expo);
  overflow: hidden;
}
.menu-link:first-child { border-top: 1px solid #f0f0f0; }
.menu-link:hover { padding-left: 8px; }

.ml-num {
  font-family: var(--font-sans);
  font-size: 0.52rem; letter-spacing: 2px; font-weight: 600;
  color: #ccc;
  flex-shrink: 0; width: 22px;
  transition: color 0.3s;
}
.ml-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: #1a1a1a;
  letter-spacing: 0.5px;
  display: block;
  transform: translateY(100%);
  transition: transform 0.55s var(--ease-expo), color 0.3s;
}
.menu-overlay.open .ml-text { transform: translateY(0); }
.menu-link:nth-child(1) .ml-text { transition-delay: 0.10s; }
.menu-link:nth-child(2) .ml-text { transition-delay: 0.16s; }
.menu-link:nth-child(3) .ml-text { transition-delay: 0.22s; }
.menu-link:nth-child(4) .ml-text { transition-delay: 0.28s; }
.menu-link:nth-child(5) .ml-text { transition-delay: 0.34s; }

.menu-link:hover .ml-num { color: var(--indigo); }
.menu-link:hover .ml-text { color: var(--indigo); }

/* ---- Right panel: contact info ---- */
.menu-panel-right {
  width: 300px;
  background: #fafafa;
  border-left: 1px solid #f0f0f0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px;
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-expo) 0.05s;
}
.menu-overlay.open .menu-panel-right { transform: translateX(0); }

.menu-right-content {
  display: flex; flex-direction: column; gap: 28px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease 0.45s, transform 0.45s ease 0.45s;
}
.menu-overlay.open .menu-right-content { opacity: 1; transform: translateY(0); }

.menu-logo-img {
  height: 32px; width: auto;
  opacity: 0.5;
}

.menu-info { display: flex; flex-direction: column; gap: 6px; }
.menu-info-label {
  font-family: var(--font-sans); font-size: 0.48rem;
  letter-spacing: 3px; color: #bbb; font-weight: 600;
  text-transform: uppercase; margin-bottom: 4px;
}
.menu-info-phone {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400;
  color: #111; text-decoration: none;
  transition: color 0.3s;
}
.menu-info-phone:hover { color: var(--blue); }
.menu-info-email {
  font-family: var(--font-sans); font-size: 0.72rem;
  color: #888; text-decoration: none;
  transition: color 0.3s;
}
.menu-info-email:hover { color: var(--blue); }
.menu-info-loc {
  font-family: var(--font-sans); font-size: 0.68rem;
  color: #aaa; margin-top: 2px;
  display: flex; align-items: center; gap: 6px;
}
.menu-info-loc i { color: var(--teal); font-size: 0.65rem; }

.menu-socials { display: flex; gap: 10px; }
.menu-socials a {
  width: 32px; height: 32px;
  border: 1px solid #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  color: #888; font-size: 0.72rem; text-decoration: none;
  border-radius: 50%;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.menu-socials a:hover { border-color: var(--blue); color: var(--blue); }

.menu-copy {
  font-family: var(--font-sans); font-size: 0.55rem;
  letter-spacing: 1.5px; color: #ccc;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .menu-close-btn { top: 20px; right: 24px; }
  .menu-panel-right { display: none; }
  .menu-panel-left { padding: 80px 8%; }
}
@media (max-width: 480px) {
  .ml-text { font-size: 1.8rem; }
}
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--indigo); color: #fff; }

/* ============================================
   MAGNETIC BUTTON — JS handled
   ============================================ */
.magnetic-btn { display: inline-flex; }

/* ============================================
   RESPONSIVE NAVBAR
   ============================================ */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .hero-side-right { display: none; }
  .hero-scroll-indicator { display: none; }
  .slider-arrows { bottom: 24px; right: 24px; }
  .menu-panel-right { display: none; }
  .menu-panel-left { padding: 80px 8% 80px 8%; }
  .hero-content { padding: 0 6%; max-width: 100%; }
}

@media (max-width: 480px) {
  .villa-number { font-size: 4.5rem; }
  .about-stats { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }
}



/* ============================================
   AMENITY SECTIONS  (Nature / Wellness / Adventure)
   ============================================ */

/* ---- Color themes ---- */
.amen-nature    { background: #A1AD70; }
.amen-wellness  { background: #388CCF; }
.amen-adventure { background: #7071BE; }

/* ---- Peek images (top & bottom edge) ---- */
.amen-img-peek {
  width: 100%; height: 200px; overflow: hidden;
  position: relative;
}
.amen-img-peek img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  display: block;
}
.amen-img-top  img { object-position: center 70%; }
.amen-img-bottom img { object-position: center 30%; }

/* ---- Body layout ---- */
.amen-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  padding: 72px 7% 64px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---- Left: text ---- */
.amen-tag {
  font-family: var(--font-sans);
  font-size: 0.58rem; letter-spacing: 3px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.amen-heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.amen-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 38ch;
  margin-bottom: 32px;
}
.amen-btn {
  display: inline-block;
  padding: 13px 34px;
  border: 2px solid rgba(255,255,255,0.9);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  cursor: pointer;
}
.amen-btn:hover {
  background: #fff;
  color: #333;
  border-color: #fff;
}

/* ---- Right: 2×2 grid of cards ---- */
.amen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.amen-card {
  background: rgba(0,0,0,0.18);
  padding: 24px 22px;
  transition: background 0.3s;
}
.amen-card:hover { background: rgba(0,0,0,0.30); }
.amen-card-title {
  font-family: var(--font-sans);
  font-size: 0.82rem; font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.amen-card-title i {
  font-size: 0.85rem;
  opacity: 0.75;
}
.amen-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.amen-card ul li {
  font-family: var(--font-sans);
  font-size: 0.78rem; color: rgba(255,255,255,0.72);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.amen-card ul li::before {
  content: '•';
  position: absolute; left: 0;
  color: rgba(255,255,255,0.45);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .amen-body {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 6%;
  }
  .amen-desc { max-width: 100%; }
  .amen-img-peek { height: 140px; }
}
@media (max-width: 540px) {
  .amen-grid { grid-template-columns: 1fr; }
  .amen-heading { font-size: 2rem; }
  .amen-img-peek { height: 100px; }
}
