/* ═══════════════════════════════════
   RESET & VARIABLES
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-light: #162436;
  --gold: #C9A84C;
  --gold-light: #e0c06a;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --text: #2c2c2c;
  --text-muted: #666;
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-heading em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section { padding: 100px 6vw; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }
.section-header.light .section-heading { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 4px;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-brochure {
  gap: 8px;
  border-color: rgba(201,168,76,0.5);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 12px 24px;
}
.btn-brochure svg { color: var(--gold); }
.btn-brochure:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 40px;
  transition: var(--transition);
}
.btn-call:hover { background: var(--gold-light); }
.btn-call svg { width: 14px; height: 14px; }

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 20px 6vw;
  transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 6vw;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.85) 0%,
    rgba(13,27,42,0.5) 60%,
    rgba(13,27,42,0.3) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 6vw;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline .word {
  display: inline-block;
  overflow: hidden;
  padding-right: 0.15em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0;
}
.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════
   STATS STRIP
═══════════════════════════════════ */
.stats-strip {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 6vw;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 20px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-badge span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; display: block; }
.about-badge strong { font-family: 'Playfair Display', serif; font-size: 1.4rem; display: block; }

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.about-highlights svg {
  width: 18px; height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   VILLAS
═══════════════════════════════════ */
.villas { background: var(--grey); }

.villa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.villa-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}
.villa-card:hover {
  box-shadow: 0 20px 60px rgba(201,168,76,0.2);
}

.villa-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.villa-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.villa-card:hover .villa-card-img img { transform: scale(1.05); }

.villa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.villa-tag {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.villa-card-body {
  padding: 28px;
}
.villa-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.villa-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.specs-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.specs-table td:first-child { color: var(--text-muted); }
.specs-table td:last-child { font-weight: 600; color: var(--navy); text-align: right; }

/* ═══════════════════════════════════
   VILLA OPTION LABEL (preview helper)
═══════════════════════════════════ */
.villa-option-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px dashed rgba(201,168,76,0.35);
  border-radius: 4px;
  padding: 8px 20px;
  margin: 56px auto 32px;
  display: inline-block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

/* ═══════════════════════════════════
   OPTION 1 — Horizontal + Icon Stats
═══════════════════════════════════ */
.vo1-wrap { display: flex; flex-direction: column; gap: 32px; }

.vo1-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  background: var(--white);
}
.vo1-img {
  position: relative;
  min-height: 380px;
}
.vo1-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.vo1-card:hover .vo1-img img { transform: scale(1.04); }
.vo1-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.vo1-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.vo1-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.vo1-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.vo1-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.vo1-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.vo1-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--off-white);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
}
.vo1-stat svg { width: 20px; height: 20px; color: var(--gold); margin-bottom: 2px; }
.vo1-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.vo1-stat-val small { font-size: 0.65rem; font-weight: 500; }
.vo1-stat-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.vo1-floor-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.vo1-floor {
  flex: 1;
  background: rgba(13,27,42,0.04);
  border-left: 3px solid var(--gold);
  padding: 8px 10px;
  border-radius: 4px;
}
.vo1-floor span { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; }
.vo1-floor strong { font-size: 0.82rem; color: var(--navy); }

/* ═══════════════════════════════════
   OPTION 2 — Comparison Columns
═══════════════════════════════════ */
.vo2-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  max-width: 860px;
  margin: 0 auto;
}
.vo2-header {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
}
.vo2-col-head {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.vo2-col-head img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vo2-col-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85), transparent);
  padding: 20px 20px 16px;
}
.vo2-type {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.vo2-col-meta strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
}
.vo2-divider-head {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vo2-divider-head::after {
  content: 'VS';
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.vo2-rows { padding: 0 24px 8px; }
.vo2-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 8px;
}
.vo2-row:last-child { border-bottom: none; }
.vo2-cell { font-size: 0.88rem; color: var(--navy); font-weight: 500; }
.vo2-row .vo2-cell:last-child { text-align: right; }
.vo2-row-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}
.vo2-row-total .vo2-cell { font-size: 1rem; font-weight: 700; color: var(--navy); }
.vo2-row-total .vo2-row-label { color: var(--gold); font-weight: 600; }
.vo2-ctas {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
}
.vo2-ctas .btn-primary { flex: 1; text-align: center; justify-content: center; }

/* ═══════════════════════════════════
   OPTION 3 — Cinematic Banners
═══════════════════════════════════ */
.vo3-wrap { display: flex; flex-direction: column; gap: 4px; }
.vo3-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
}
.vo3-bg { position: absolute; inset: 0; }
.vo3-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vo3-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,27,42,0.92) 45%, rgba(13,27,42,0.55) 100%);
}
.vo3-overlay-moon {
  background: linear-gradient(100deg, rgba(6,14,24,0.93) 45%, rgba(6,14,24,0.55) 100%);
}
.vo3-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 6vw;
  width: 100%;
  align-items: center;
}
.vo3-type {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.vo3-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.vo3-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 340px;
}
.vo3-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.vo3-spec {
  background: rgba(13,27,42,0.6);
  padding: 14px 16px;
  backdrop-filter: blur(8px);
}
.vo3-spec span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}
.vo3-spec strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 600;
}

/* ── Mobile overrides for all 3 options ── */
@media (max-width: 768px) {
  .vo1-card { grid-template-columns: 1fr; }
  .vo1-img { min-height: 240px; }
  .vo1-stats { grid-template-columns: repeat(2, 1fr); }
  .vo2-header { grid-template-columns: 1fr 48px 1fr; }
  .vo2-col-head { height: 140px; }
  .vo2-row { grid-template-columns: 1fr 80px 1fr; }
  .vo2-ctas { flex-direction: column; }
  .vo3-content { grid-template-columns: 1fr; gap: 24px; padding: 36px 5vw; }
  .vo3-title { font-size: 1.7rem; }
  .vo3-banner { min-height: auto; }
}

/* ═══════════════════════════════════
   TEXT REVEAL MASK
═══════════════════════════════════ */
.reveal-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-mask-inner {
  display: block;
  transform: translateY(100%);
}

/* ═══════════════════════════════════
   SECTION HEADING GOLD SWEEP
═══════════════════════════════════ */
.heading-wrap {
  position: relative;
  display: inline-block;
}
.heading-sweep {
  position: absolute;
  top: 0; left: -4%; bottom: 0;
  width: 0%;
  background: var(--gold);
  z-index: 2;
  pointer-events: none;
}

/* ═══════════════════════════════════
   AMENITIES — HORIZONTAL SCROLL
═══════════════════════════════════ */
.amenities { background: var(--navy); }
.amenities .section-eyebrow { color: var(--gold); }
.amenities .section-heading { color: var(--white); }

/* horizontal track wrapper */
.amenity-hscroll-outer {
  overflow: hidden;
  margin-bottom: 60px;
}
.amenity-hscroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* each card in horizontal strip — keep same card look */
.amenity-image-grid {
  display: none; /* replaced by horizontal scroll on desktop */
}

.amenity-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 360px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
}
.amenity-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.amenity-img-card:hover img { transform: scale(1.06); }
.amenity-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 20px 16px 12px;
}

.amenity-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.amenity-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.amenity-icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  transition: border-color 0.3s, background 0.3s;
}
.amenity-icon-circle:hover { border-color: var(--gold); background: rgba(201,168,76,0.15); }
.amenity-icon-circle svg { width: 26px; height: 26px; fill: var(--gold); }
.amenity-icon-circle img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) saturate(100%) invert(72%) sepia(45%) saturate(450%) hue-rotate(1deg) brightness(95%); }

.amenity-icon-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════
   GALLERY
═══════════════════════════════════ */
.gallery { background: var(--grey); }

/* ═══════════════════════════════════
   FILMSTRIP CAROUSEL
═══════════════════════════════════ */
.gallery { padding-bottom: 80px; }

.filmstrip {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  /* 16:9 on desktop, taller on mobile */
  aspect-ratio: 16 / 7;
  cursor: grab;
  user-select: none;
}
.filmstrip:active { cursor: grabbing; }

.filmstrip-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.filmstrip-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.filmstrip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}


/* Prev / Next buttons */
.filmstrip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}
.filmstrip-btn:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.filmstrip-prev { left: 20px; }
.filmstrip-next { right: 20px; }

/* Slide counter */
.filmstrip-counter {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2px;
}
.filmstrip-counter #filmstripCurrent {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.filmstrip-sep { margin: 0 2px; opacity: 0.5; }

/* Progress bar */
.filmstrip-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.filmstrip-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width 0.05s linear;
  transform-origin: left;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ═══════════════════════════════════
   LOCATION
═══════════════════════════════════ */
.location {
  background: var(--navy);
  padding: 0;
}

.location-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 6vw 60px;
}

.location-intro {
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.location-gmb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: rgba(201,168,76,0.45);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 12px 24px;
}
.location-gmb-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Proximity grid */
.proximity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prox-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.prox-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
}

.prox-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.prox-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
}

.prox-card strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.prox-card span {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  line-height: 1.5;
}

.prox-card-highlight {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.prox-card-highlight strong { color: var(--gold); }

/* Full-width map */
.location-map-full {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  filter: grayscale(25%) contrast(1.05);
  opacity: 0.9;
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials { background: var(--navy); overflow: hidden; }

.testimonial-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.testimonial-track-wrap:active { cursor: grabbing; }

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar { display: none; }
.testimonial-author strong { color: var(--white); display: block; font-size: 0.9rem; }
.testimonial-author span { color: var(--gold); font-size: 0.75rem; }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-btn:hover { background: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact { background: var(--grey); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-detail-item:hover { color: var(--gold); }
.contact-detail-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 16px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group label {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: 0.2s ease;
  pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  color: #2e7d32;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
/* ═══════════════════════════════════
   FOOTER — LUXURY REDESIGN
═══════════════════════════════════ */
.footer {
  background: #060e18;
  position: relative;
}

.footer-gold-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}

.footer-inner {
  padding: 56px 6vw 32px;
}

/* Brand block */
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.footer-brand-block img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.25);
}
.footer-brand-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-brand-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Thin gold rule */
.footer-divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5) 0%, rgba(201,168,76,0.08) 100%);
  margin-bottom: 40px;
}

/* Three columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

/* Nav links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }

/* Contact links */
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact-link svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-link:hover { color: var(--gold); }

.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 6px;
}

/* Bottom bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-bar span {
  color: rgba(255,255,255,0.25);
  font-size: 0.72rem;
}
.footer-tagline {
  font-style: italic;
  color: rgba(201,168,76,0.4) !important;
}

/* ═══════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: whatsappRing 2.5s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes whatsappRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════════════════════
   STICKY BOOKING BAR
═══════════════════════════════════ */
.booking-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6vw;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  gap: 16px;
}
.booking-bar.visible { transform: translateY(0); }

.booking-bar-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
  min-width: 0;
}
.booking-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.booking-bar-text strong { color: var(--gold); }
.booking-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.booking-bar-close:hover { color: var(--white); }

/* push whatsapp up when bar visible */
.booking-bar.visible ~ .whatsapp-float,
body.bar-open .whatsapp-float {
  bottom: 90px;
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
/* reveal classes — initial opacity/transform set by GSAP in main.js */

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .amenity-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 768px) {
  .section { padding: 70px 5vw; }

  .nav-links, .btn-call { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; color: var(--white); }

  .about { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 16px; }

  .villa-cards { grid-template-columns: 1fr; }

  .amenity-hscroll-outer { margin-left: -5vw; margin-right: -5vw; padding: 0 5vw; overflow-x: auto; }
  .amenity-img-card { width: 280px; }
  .amenity-icons-grid { grid-template-columns: repeat(3, 1fr); }

  .filmstrip { aspect-ratio: 4 / 3; }
  .filmstrip-btn { width: 42px; height: 42px; }
  .filmstrip-caption { left: 20px; bottom: 20px; font-size: 0.85rem; }

  .location-top { grid-template-columns: 1fr; gap: 36px; padding: 56px 5vw 40px; }
  .location-map-full iframe { height: 260px; }

  .testimonial-card { flex: 0 0 100%; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }

  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .footer-brand-block { flex-direction: column; text-align: center; }
  .footer-col-center, .footer-col-right { text-align: left; }

  .stat-divider { display: none; }
  .stats-strip { gap: 0; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .filmstrip { aspect-ratio: 1 / 1; }
  .filmstrip-btn { width: 38px; height: 38px; }
  .filmstrip-prev { left: 12px; }
  .filmstrip-next { right: 12px; }
  .amenity-img-card { width: 240px; }
  .amenity-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ═══════════════════════════════════
   MOBILE ACTION BAR
═══════════════════════════════════ */
.mobile-action-bar {
  display: none;
}

/* Desktop: hide mobile-only elements */
.hero-call-strip { display: none; }
.amenity-scroll-hint { display: none; }

@media (max-width: 768px) {
  /* Body padding so content clears the bar */
  body { padding-bottom: 68px; }

  /* Hide desktop booking bar & WhatsApp on mobile */
  .booking-bar { display: none !important; }
  .whatsapp-float { display: none !important; }

  /* Mobile action bar */
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    height: 68px;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.25);
    /* Safe area inset for iPhones with home bar */
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
  }

  .mab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .mab-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
    border-radius: 0 0 2px 2px;
  }

  .mab-btn:active::before,
  .mab-btn:focus::before { width: 60%; }

  .mab-call { color: rgba(255,255,255,0.65); }
  .mab-call:active { color: #7ecfff; }

  .mab-whatsapp { color: rgba(255,255,255,0.65); }
  .mab-whatsapp:active { color: #25D366; }

  .mab-enquire {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .mab-enquire svg { stroke: var(--navy); }
  .mab-enquire:active { background: #b8922f; }

  /* ─── Full-screen menu: slide from right ─── */
  .nav-links {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
  }

  /* Individual link stagger via CSS custom props */
  .nav-links.open a:nth-child(1) { animation: mobileNavItem 0.45s 0.05s both ease; }
  .nav-links.open a:nth-child(2) { animation: mobileNavItem 0.45s 0.12s both ease; }
  .nav-links.open a:nth-child(3) { animation: mobileNavItem 0.45s 0.19s both ease; }
  .nav-links.open a:nth-child(4) { animation: mobileNavItem 0.45s 0.26s both ease; }
  .nav-links.open a:nth-child(5) { animation: mobileNavItem 0.45s 0.33s both ease; }
  .nav-links.open a:nth-child(6) { animation: mobileNavItem 0.45s 0.40s both ease; }

  @keyframes mobileNavItem {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Close X button inside menu */
  .nav-links.open::before {
    content: '✕';
    position: fixed;
    top: 28px; right: 24px;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    pointer-events: none;
  }

  /* Gold accent line on menu links */
  .nav-links.open a {
    position: relative;
    padding-bottom: 6px;
  }
  .nav-links.open a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links.open a:hover::after { width: 40%; }

  /* Hero tap-to-call strip */
  .hero-call-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 11px 20px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 100px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.05);
    transition: background 0.2s, border-color 0.2s;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-call-strip:active {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
  }
  .hero-call-strip svg { flex-shrink: 0; }

  /* Amenity scroll snap */
  .amenity-hscroll-outer {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .amenity-hscroll-outer::-webkit-scrollbar { display: none; }
  .amenity-img-card { scroll-snap-align: start; }

  /* Amenity scroll dots indicator */
  .amenity-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    opacity: 0.5;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .amenity-scroll-hint svg { animation: swipeHint 1.6s ease-in-out infinite; }
  @keyframes swipeHint {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(6px); opacity: 1; }
  }

  /* Tighter hero headline on small screens */
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }

  /* Section heading size */
  .section-heading { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  /* Stats strip: 2 columns */
  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 24px 16px; }

  /* Villa card: remove extra side margin */
  .villa-card { margin: 0; }

  /* Contact info cards stack */
  .contact-info-items { gap: 16px; }

  /* Premium gold top-border on section */
  .section:first-of-type { border-top: none; }
}
