/* ============================================================
   INLIV LUXURY FURNITURE — Unified Stylesheet
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--bg);
  color: var(--espresso);
  font-size: var(--body-size);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

ul {
  list-style: none;
}

button {
  font-family: "Jost", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}


:root {
  /* Colors from style.css */
  --gold: #f18238;
  --gold-light: #e0c98a;
  --gold-dark: #9e7f47;
  --gold-gradient: linear-gradient(135deg, #C6A76B 0%, #a67c37 50%, #9e7f47 100%);
  --gold-gradient-hover: linear-gradient(135deg, #e0c98a 0%, #C6A76B 50%, #a67c37 100%);
  --dark: #0B0B0B;
  --dark-2: #111111;
  --white: #ffffff;
  --off-white: #FDF9F3;
  --text-body: #3a3428;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-bg: rgba(11, 11, 11, 0.15);
  --glass-border: rgba(198, 167, 107, 0.2);

  /* Colors from inliv.css */
  --bg: #f7f5f1;
  --bg-warm: #fffdfb;
  --espresso: #1c1a17;
  --taupe: #1a1a19;
  --gold-lt: #d9cbb3;
  --border: #e8e2d9;
  --card-bg: #efefef;

  /* Typography from style.css */
  --h1-size: clamp(2.2rem, 5vw, 3.5rem);
  --h2-size: clamp(1.8rem, 4vw, 2.5rem);
  --h3-size: clamp(1.4rem, 2.5vw, 1.6rem);
  --body-size: clamp(0.9rem, 1.2vw, 1.05rem);

  /* Typography from inliv.css */
  --ff-serif: "Playfair Display", serif;
  --ff-sans: "Jost", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Dynamic spacing from style.css */
  --section-pad: clamp(3rem, 10vw, 7.5rem);
  --spacing-lg: clamp(1rem, 5vw, 4.5rem);
  --container-gap: clamp(1.2rem, 4vw, 3rem);
  --element-gap: clamp(0.8rem, 2vw, 1.5rem);

  /* Dynamic spacing from inliv.css */
  --container-max: 1400px;
  --section-gap: clamp(80px, 12vh, 140px);
  --content-gap: clamp(40px, 6vh, 60px);

  /* FX & transitions from style.css */
  --gold-glow: 0 0 20px rgba(198, 167, 107, 0.5);
  --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --text-shadow-premium: 0 2px 20px rgba(0, 0, 0, 0.6);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-premium: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ─── BASE SITE STYLES (style.css) ─── */
/* ============================================================
   HAMLET ON THE GANGES — style.css
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */










img {
  max-width: 100%;
  display: block;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--h2-size);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dark);
  line-height: 1.15;
}

.section-eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--element-gap);
  display: block;
}

.section-

.view-all-link {
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.view-all-link:hover {
  color: var(--gold-light);
}

/* ── NAVIGATION DROPDOWN ───────────────────────────────────── */
.glass-dropdown {
  background: rgba(11, 11, 11, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 167, 107, 0.2) !important;
  border-radius: 12px !important;
  padding: 1rem 0 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-top: 0 !important;
  visibility: hidden;
  opacity: 0;
  display: block !important;
  transition: all 0.3s ease, visibility 0s linear 0.1s, opacity 0.3s linear;
}

.nav-item.dropdown:hover .glass-dropdown {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  animation: slideDropdown 0.4s ease forwards;
}

.dropdown-item {
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: transparent !important;
  color: var(--gold) !important;
  padding-left: 2rem !important;
}

.dropdown-divider {
  border-color: rgba(198, 167, 107, 0.1) !important;
}

@keyframes slideDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .dropdown-toggle::after {
    display: none;
  }
}

/* ── UTILITIES ────────────────────────────────────────────── */
.section-padding {
  padding: var(--section-pad) 0;
}

.g-inner {
  --bs-gutter-x: var(--container-gap) !important;
  --bs-gutter-y: var(--container-gap) !important;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-20 {
  border-radius: 20px;
}

.glass-morph {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold-solid {
  background: var(--gold-gradient);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: .9rem 2.4rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(198, 167, 107, .25);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold-solid:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(198, 167, 107, 0.45), var(--gold-glow);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 4px;
  padding: .9rem 2.4rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: #fff;
  background: rgba(198, 167, 107, .15);
  transform: translateY(-4px);
}

.btn-outline-white {
  color: white;
  border: 2px solid #c3c3c3bf;
  align-items: center;
  display: grid !important;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-white:hover {
  color: white;
  border: 2px solid #c3c3c3bf;
  align-items: center;
  display: grid !important;
  transition: var(--transition-smooth);
  background: rgba(198, 167, 107, .15);
  transform: translateY(-4px);
}


.btn-gold-outline-sm {
  background: transparent;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: .45rem 1.2rem;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.btn-gold-outline-sm:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-booknow {
  background: var(--gold-gradient);
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  padding: .65rem 1.6rem;
  transition: var(--transition-premium);
  box-shadow: 0 4px 18px rgba(198, 167, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-booknow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-booknow:hover::before {
  left: 100%;
}

.btn-booknow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 167, 107, 0.5), var(--gold-glow);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
#mainNav {
  padding: 1.25rem 0;
  z-index: 1050;
}

#mainNav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-premium);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(198, 167, 107, 0.05);
}

.navbar-brand {
  padding: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}

@media (max-width: 991.98px) {
  .logo-img {
    height: 40px;
  }

  .luxury-img-frame {

    padding: 0;
  }

  #mainNav {
    padding: 0.65rem 0.75rem !important;
  }
}

@media (max-width: 575.98px) {
  .logo-img {
    height: 40px;
    max-width: 120px;
  }

  

  #mainNav {
    padding: 0.6rem 0.75rem !important;
    width: 100%;
    left: 0;
    max-width: 100vw;
    right: 0;
  }
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 0 !important;
  position: relative;
  transition: var(--transition-premium);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 0 10px rgba(198, 167, 107, 0.5);
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  text-shadow: 0 0 8px rgba(198, 167, 107, 0.4);
  transform: scale(1.05);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

/* ── HAMBURGER ICON ────────────────────────────────────────── */
.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── MOBILE OFFCANVAS ─────────────────────────────────────── */
.mobile-offcanvas {
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(198, 167, 107, 0.2);
  width: 300px !important;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-fast);
  display: block;
}

.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-subnav-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.mobile-subnav-link:hover {
  color: var(--gold);
}

.btn-booknow.sm-btn {
  padding: 0.45rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

@media (max-width: 375px) {
  .btn-booknow.sm-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.65rem;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  /* More reliable on mobile */
  min-height: 600px;
  background: #000;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 70%;
  height: 100%;
  color: #e7c283a6;
}

.hero-arrow:hover.swiper-button-next svg,
.hero-arrow:hover.swiper-button-prev svg {
  color: #fff !important;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.hero-media-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  /* Initial zoom for Ken Burns */
}

/* YouTube Background specialized cover logic */
.hero-youtube-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%) scale(1.15);
  /* Zoom slightly to hide black bars/UI */
  pointer-events: none;
  z-index: 1;
}

.hero-youtube-container iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}


/* Base Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(171 164 164 / 35%) 0%, rgb(201 134 134 / 40%) 50%, rgb(251 239 248 / 38%) 100%);
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/60-lines.png");
  opacity: 0.03;
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
}

@media (max-width: 991.98px) {
  .hero-content .row.align-items-center.min-vh-100 {
    min-height: auto !important;
    padding: 120px 18px 80px;
  }
}

.page-hero-content {
  position: relative;
  z-index: 10;
}

.hero-text-wrap {
  opacity: 1;
  /* Managed by GSAP */
}

.hero-eyebrow {
  display: block;
  font-size: .85rem;
  letter-spacing: .4em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: var(--text-shadow-premium);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--h1-size);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: var(--text-shadow-premium);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 2rem;
  box-shadow: var(--gold-glow);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--container-gap);
  font-weight: 400;
  text-shadow: var(--text-shadow-premium);
}

/* Controls Layer */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 20;
}

/* Counter */
.hero-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.hero-counter .current {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-counter .divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-counter .total {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Pagination */
.hero-pagination {
  position: relative !important;
  bottom: 0 !important;
  width: auto !important;
  display: flex;
  gap: 12px;
}

.hero-pagination .swiper-pagination-bullet {
  background: #fff !important;
  width: 6px !important;
  height: 6px !important;
  opacity: 0.25 !important;
  margin: 0 !important;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.hero-pagination .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--gold) !important;
  transform: scale(1.5);
}

/* Custom Arrows */
.hero-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: static !important;
  margin: 0 !important;
}

.hero-arrow::after {
  display: none;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-eyebrow {
    letter-spacing: .25em;
    font-size: 0.75rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }



  /* .hero-nav-arrows {
    display: none !important;
  } */
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
}

.scroll-text {
  font-size: .65rem;
  letter-spacing: .5em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
}

.mouse-icon {
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(198, 167, 107, 0.4);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 2px;
  height: 6px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    top: 22px;
    opacity: 0;
  }
}

/* ── FEATURE BANNER ───────────────────────────────────────── */
.feature-banner {
  position: relative;
  overflow: hidden;
  background-image: url(../images/vector/experience_vector.png), linear-gradient(120deg, #836a22 0%, #f2d6a1 40%, #bd9755 70%, #9f8052 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 18px 18px 40px;
  border-radius: 15px;
  padding: 60px 18px;
}

@media (max-width: 767.98px) {
  .feature-banner {
    margin: 80px 0px 80px;
    border-radius: 0 !important;
  }

  .villa-feature-v2-section {

    padding-top: 0 !important;
  }
}

.wave-img {
  width: 100%;
  display: block;
}

.banner-wave.top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-top {
  transform: rotate(180deg) scaleX(-1);
  opacity: .7;
}

.banner-wave.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.wave-bottom {
  opacity: .7;
}

.banner-eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  color: rgba(11, 11, 11, .65);
  font-weight: 600;
  text-transform: uppercase;
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 6vw, 2.7rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .02em;
  line-height: 1.25;
}

.banner-sub {
  font-size: 14px;
  color: rgba(11, 11, 11, .7);
  margin: 0 auto;
}

.feature-pill {
  background: rgba(255, 255, 255, .45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50px;
  padding: .55rem 1.2rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--dark);
  text-align: center;
  transition: all .3s;
}

.feature-pill:hover {
  background: rgba(255, 255, 255, .7);
  transform: translateY(-3px);
}

/* ── VILLAS ───────────────────────────────────────────────── */
.villas-section {
  background: var(--off-white);
}

.villa-feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .14);
  height: 100%;
  min-height: 420px;
}

.villa-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.villa-feature-card:hover .villa-feature-img {
  transform: scale(1.05);
}

.villa-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
}

.villa-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .18em;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 3px;
}

.villa-feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-top: 2px solid var(--gold);
}

.villa-feature-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
}

.villa-feature-info p {
  font-size: .82rem;
  color: #6a5d4d;
  line-height: 1.6;
  margin: .5rem 0;
}

/* Villa carousel cards */
.villa-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(198, 167, 107, .2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  transition: all .3s;
}

.villa-card:hover,
.villa-card.active-card {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(198, 167, 107, .3);
  transform: translateY(-4px);
}

.villa-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.villa-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.villa-card:hover .villa-card-img-wrap img {
  transform: scale(1.08);
}

.villa-card-

.villa-card-title {
  font-size: .68rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

/* Carousel controls */
.carousel-btn {
  background: rgba(255, 255, 255, .9);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  cursor: pointer;
  transition: all .25s;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Banquet mini card */
.banquet-mini-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
}

.banquet-mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banquet-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .7) 40%, rgba(0, 0, 0, .2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.banquet-mini-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

/* ── CUISINE ──────────────────────────────────────────────── */
.cuisine-section {
  background: var(--off-white);
  /* padding: var(--spacing-lg) 0; */
}

.cuisine-img-wrap {
  position: relative;
}

.cuisine-main-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .15);
}

.cuisine-glass-card {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(198, 167, 107, .35);
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.cuisine-glass-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.2;
}

.cuisine-glass-card p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55;
  margin: .6rem 0;
}

.cuisine-grid-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.cuisine-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cuisine-grid-img:hover img {
  transform: scale(1.07);
}

/* ── BANQUET ──────────────────────────────────────────────── */
.banquet-section {
  position: relative;
  background: url('../images/resorts-view.webp') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.banquet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .42) 100%);
}

.banquet-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
  max-width: 580px;
  margin: auto;
}

.banquet-eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  color: var(--gold);
  font-weight: 600;
}

.banquet-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.15;
}

.banquet-sub {
  font-size: .97rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
}

/* ── OFFERS ───────────────────────────────────────────────── */
.offers-section {
  background: var(--off-white);
  padding: var(--spacing-lg) 0;
}

.offers-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.offers-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .5s;
}

.offers-img-wrap:hover img {
  transform: scale(1.04);
}

.offers-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: .65rem;
  letter-spacing: .18em;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 3px;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
  border-left: 3px solid var(--gold);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: .5rem;
}

.testimonial-card p {
  font-size: .8rem;
  color: #5a5040;
  line-height: 1.6;
  margin: 0 0 .8rem;
}

.testimonial-card .t-name {
  font-size: .67rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--dark);
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-v2-section {
  background: var(--off-white);
  padding: var(--section-padding);
}

.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: 300px 300px; */
  gap: 20px;
}

.gallery-v2-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark);
}

.gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.9;
}

.gallery-v2-item:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.gi-tall {
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

.gallery-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(166, 124, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-v2-item:hover .gallery-v2-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: .72rem;
  letter-spacing: .2em;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .6);
  padding: .45rem 1rem;
  border-radius: 3px;
}

/* ── CONNECT ──────────────────────────────────────────────── */
.connect-section {
  background: #fff;
  padding: var(--spacing-lg) 0;
}

.social-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 8px;

  margin: 0 auto;
}

.sc-item {
  border-radius: 10px;
  overflow: hidden;
}

.sc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.sc-item:hover img {
  transform: scale(1.07);
}

.sc-center {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-card {
  text-align: center;
  padding: 1.5rem;
}

.follow-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  line-height: 1.2;
}

.follow-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .65);
  margin-top: .5rem;
}

.social-icons-row a {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0 .4rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

.social-icons-row a:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
  position: relative;
  background: url('../images/nignt-ballon-view.webp') center/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: var(--section-padding);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
}

.contact-section .section-title {
  color: #fff !important;
}

.contact-glass-card {
  background: rgba(11, 11, 11, 0.45);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(198, 167, 107, 0.3);
  border-radius: 15px;
  padding: 3.5rem 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(198, 167, 107, 0.2) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.2rem !important;
  transition: var(--transition-fast) !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, .5) !important;
}

.contact-input:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(198, 167, 107, 0.15) !important;
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, .65);
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-heading {
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .45rem;
}

.footer-links a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-col a.social-icon {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.3s ease-in-out;
}

.footer-col a.social-icon svg{
  color: var(--gold);
}

.footer-col a.social-icon:hover{
  transform: translateY(-4px);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.footer-social-icons a {
  color: rgba(255, 255, 255, .5);
  font-size: 1.15rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

.footer-social-icons a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(198, 167, 107, .3);
  border-radius: 4px;
  padding: .6rem 1rem;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.footer-input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .06em;
}



/* ── RESPONSIVE OVERRIDES ─────────────────────────────────── */
@media (max-width: 1199.98px) {
  .villa-v2-glass-card {
    width: 350px;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 991.98px) {

  .cuisine-section,
  .villas-v3-section,
  .gallery-v2-section,
  .offers-v2-section,
  .contact-section {
    padding: var(--section-pad) 0;
  }

  .cuisine-main-img {
    height: 380px;
  }

  .cuisine-glass-card {
    position: relative;
    max-width: 94%;
    margin: -1rem auto 3rem;
    padding: 2.2rem 1.5rem;
    z-index: 5;
    transform: none;
  }

  .villa-v2-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .villa-v2-frame {
    width: 100%;
  }

  .villa-v2-glass-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    transform: translateY(5%) !important;
    margin-top: -4rem;
    padding: 2.5rem 1.5rem;
  }

  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gi-tall,
  .gi-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: var(--h2-size);
  }

  .cuisine-main-img {
    height: 300px;
  }

  .cuisine-glass-card {
    position: relative;
    max-width: 94%;
    margin: 0 auto 3rem;
    padding: 2.2rem 1.5rem;
    z-index: 5;
    transform: none;
  }

  .contact-glass-card {
    padding: 2.5rem 1.5rem;
  }

  .social-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 140px);
  }

  .sc-center {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
  }
}

@media (max-width: 575.98px) {
  .gallery-v2-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-booknow {
    padding: 0.8rem 1.5rem;
    width: auto;
    display: inline-block;
  }
}

/* -- VILLA FEATURE V2 ------------------------------------- */
.villa-feature-v2-section {
  background: var(--off-white);
  padding: var(--spacing-lg) 0;

}

.villa-v2-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
}

.villa-v2-frame {
  position: relative;
  width: 85%;
  padding: 12px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(198, 167, 107, 0.2);
}

.villa-v2-img-inner {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
}

.villa-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.villa-v2-frame:hover .villa-v2-img {
  transform: scale(1.05);
}

.villa-tag-v2 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 4px;
  z-index: 2;
}

.villa-v2-glass-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  width: 400px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.villa-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.villa-v2-text {
  font-size: 0.95rem;
  color: #7c7c7c;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-gold-pill {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(198, 167, 107, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-gold-pill:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(198, 167, 107, 0.5);
  color: #fff;
}

/* Responsive Overrides for Villa Feature V2 */
@media (max-width: 991.98px) {
  .villa-v2-wrapper {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
    justify-content: center;
  }

  #villa-feature::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    left: 0;
    margin: auto;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .villas-next,
  .villas-prev {
    display: none;
  }

  .villa-v2-frame {
    width: 100%;
    margin-bottom: -60px;
  }

  .villa-v2-img-inner {
    height: 380px;
  }

  .villa-v2-glass-card {
    position: relative;
    width: 94%;
    right: auto;
    top: auto;
    transform: translateY(5%) !important;
    transform: none;
    padding: 2.5rem 1.5rem;
    margin: -2.5rem auto 0;
  }

  .villa-v2-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .villa-v2-frame {
    padding: 8px;
    border-radius: 12px;
  }

  .villa-v2-img-inner {
    height: 280px;
  }

  .villa-v2-glass-card {
    width: 95%;
    padding: 2rem 1.5rem;
    margin-top: -40px;
  }

  .villa-v2-title {
    font-size: 1.5rem;
  }
}


/* -- VILLAS V3 ------------------------------------------ */
.villas-v3-section {
  background: var(--off-white);
  padding: var(--section-padding);
}

.villa-v3-card {
  background: #5a624d;
  border-radius: 15px;
  overflow: hidden;
  padding: 12px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}


.villa-v3-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.villa-v3-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-v3-card:hover .villa-v3-img-wrap img {
  transform: scale(1.12);
}

.villas-v3-section .carousel-inner {

  padding: 18px 0;
}

.villa-v3-card:hover {
  background: linear-gradient(180deg, #d4b068 0%, #a67c37 100%);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(166, 124, 55, 0.25);
  z-index: 2;
  border: 1px solid rgba(212, 176, 104, 0.2);
}

.villa-v3-card:hover .villa-v3-link {
  background: #fff;
  color: var(--dark);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.villa-v3-

.villa-v3-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.villa-v3-title.dark-text {
  color: #1a1a1a;
}

.villa-v3-link {
  font-size: 0.72rem;
  color: #d4b068;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.villa-v3-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}





.carousel-nav-v3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #f1e9d9 !important;
  border: none !important;
  border-radius: 50%;
  color: #a67c37 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.carousel-nav-v3:hover {
  background: #d4b068 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-v3 i {
  font-size: 1.2rem;
}

.carousel-nav-v3.prev {
  left: 15px;
}

.carousel-nav-v3.next {
  right: 15px;
}

/* Indicators */
.v3-dot {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: #e0d5c1;
  margin: 0 6px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}

.v3-dot.active {
  background: #d4b068;
  width: 50px;
}

@media (min-width: 1200px) {
  .carousel-nav-v3.prev {
    left: -30px;
  }

  .carousel-nav-v3.next {
    right: -30px;
  }

  #villasCarousel {
    overflow: visible;
  }
}

/* -- MOMENTS BANNER V3 ---------------------------------- */
.moments-banner-v3 {
  position: relative;
  background-color: #fdfaf5;
  min-height: 500px;
  z-index: 1;
}

.moments-v3-overlay {

  min-height: 500px;
  display: flex;
  position: relative;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  background: url('../images/resorts-view.webp') center/cover no-repeat;
  /* Diagonal Cut Effect */
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
}

.overlay-moments {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.moments-v3-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

/* -- OFFERS V2 ------------------------------------------ */
.offers-v2-section {
  background: #fdfaf5;
  padding: var(--spacing-lg) 0;
}

.offer-v2-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.offer-v2-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.offer-v2-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.offer-v2-link:hover {
  color: #d4b068;
  border-bottom-color: #d4b068;
}

.testimonial-v2-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.testimonial-v2-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stars-v2 {
  color: #d4b068;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-v2-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-v2-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .carousel-nav-v3 {
    display: none;
  }

  .moments-banner-v3 {
    min-height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  }

  .moments-v3-overlay {
    min-height: 400px;
  }

  .offer-v2-img {
    height: 350px;
  }
}


/* Refinement for Carousel Nav Buttons to match image exactly */
.carousel-nav-v3 {
  background: #f1e9d9 !important;
  /* Lighter gold/cream background */
  border: none !important;
  color: #a67c37 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav-v3:hover {
  background: #a67c37 !important;
  color: #fff !important;
}







/* -- GALLERY V2 (REFERENCE MATCH) ------------------------- */
.gallery-v2-section {
  background-color: #fdfaf5;
  padding: 80px 0;
}

.gallery-v2-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-v2-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-v2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(2px);
}

.gallery-v2-item:hover .gallery-v2-overlay {
  opacity: 1;
}

.gallery-v2-item:hover img {
  transform: scale(1.1);
}

.hover-circle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #e0c98a 0%, #c6a76b 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(198, 167, 107, 0.4);
}

.gallery-v2-item:hover .hover-circle {
  transform: scale(1);
}

.hover-circle i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.hover-circle span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gallery-indicator {
  width: 60px;
  height: 4px;
  background: #c6a76b;
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.gallery-indicator::after {
  content: '';
  position: absolute;
  right: -10px;
  width: 10px;
  height: 4px;
  background: rgba(198, 167, 107, 0.3);
  border-radius: 2px;
}

/* -- CONNECT V2 (REFERENCE MATCH) ------------------------- */
.connect-v2-section {
  background-color: #fdfaf5;
  padding-bottom: 100px;
}

.connect-v2-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.connect-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}

.connect-v2-img-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.connect-v2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.connect-v2-img-wrap:hover img {
  transform: scale(1.08);
}

.glass-connect-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.connect-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.connect-v2-subtitle {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.connect-v2-handle {
  font-weight: 700;
  color: #c6a76b;
  display: block;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .gallery-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .connect-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
    gap: 12px;
  }

  .glass-connect-card {
    width: 94%;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -30px auto 30px;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-v2-item {
    border-radius: 15px;
  }

  .hover-circle {
    width: 80px;
    height: 80px;
  }

  .connect-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .connect-v2-img-wrap {
    height: 150px;
  }
}

/* -- SWIPER CUSTOM --------------------------------------- */
.villas-swiper {
  padding: 20px 0 60px !important;
  position: relative;
}

.swiper-slide {
  height: auto;
}

.villas-next,
.villas-prev {
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--gold) !important;
  transition: var(--transition-fast);
  top: 50%;
  z-index: 10;
}

.villas-next:after,
.villas-prev:after {
  content: '' !important;
}

.villas-next:hover,
.villas-prev:hover {
  background: var(--gold);
  color: var(--white) !important;
  box-shadow: var(--gold-glow);
}


.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.3;
}



.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* -- FALLBACK UI ----------------------------------------- */
.fallback-card {
  border: 2px dashed var(--gold-light);
  background: rgba(198, 167, 107, 0.05);
  transition: var(--transition-smooth);
}

.fallback-card:hover {
  background: rgba(198, 167, 107, 0.1);
}

.text-gold {
  color: var(--gold) !important;
}


/* -- ULTRA-PREMIUM RESPONSIVE POLISH ------------------------- */
@media (max-width: 991.98px) {
  

  .hero-glass-card {
    padding: 2.5rem 2rem;
  }

  .villas-swiper {
    padding: 20px 0 80px !important;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .gallery-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .cuisine-main-img {
    height: 350px;
  }

  .cuisine-glass-card {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: -50px;
    margin-left: 0;
    max-width: 100%;
  }

  .connect-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -- CINEMATIC REVEALS ----------------------------------- */
.villa-v3-card,
.gallery-v2-item,
.cuisine-grid-img {
  will-change: transform, opacity;
}



/* -- CONTACT LUXURY REDESIGN ------------------------- */
.contact-premium-section {
  background: #fff;
  position: relative;
}

.contact-info-luxury-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(198, 167, 107, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(198, 167, 107, 0.12);
  border-color: rgba(198, 167, 107, 0.3);
}

.contact-icon-premium {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fdfaf5 0%, #f1e9d9 100%);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
  border: 1px solid rgba(198, 167, 107, 0.2);
}

.contact-info-luxury-card:hover .contact-icon-premium {
  background: var(--gold);
  color: #fff;
  transform: rotateY(360deg);
}

.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.contact-card-text {
  font-size: 0.95rem;
  color: #6a5d4d;
  line-height: 1.6;
  margin-bottom: 0;
}

.premium-glass-form-wrap {
  position: relative;
  padding: 100px 0;
  background: url('../images/banner2.jpg') center/cover no-repeat fixed;
}

.premium-glass-form-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.luxury-contact-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.luxury-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.luxury-form-subtitle {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.premium-input-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.premium-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 0;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s;
}

.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.premium-input:focus {
  outline: none;
  border-color: var(--gold);
  padding-left: 10px;
}

.premium-input:focus::placeholder {
  opacity: 0;
  transform: translateX(10px);
}

.premium-label {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.premium-input:focus+.premium-label,
.premium-input:not(:placeholder-shown)+.premium-label {
  opacity: 1;
  transform: translateY(0);
}

.map-luxury-wrapper {
  position: relative;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  margin-top: -60px;
  z-index: 2;
  background: #fff;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .luxury-contact-form {
    padding: 3rem 2rem;
  }

  .connect-v2-section {
    padding-bottom: 0;
  }

  .banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .1px;
    line-height: 1;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .banner-sub {
    font-size: 14px;
    color: rgba(11, 11, 11, .7);
    margin: 0 auto;
    line-height: 18px;
    margin-top: 21px !important;
  }

  .feature-banner>div {
    padding: 0 !important;
  }

  .feature-banner {
    padding: 24px 18px;
  }

  .scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
  }

  .luxury-form-title {
    font-size: 2rem;
  }
}

/* ─── CUSTOM PAGE & LIGHTBOX STYLES (inliv.css) ─── */
img {
        display: block;
        width: 100%;
        height: auto;
      }
      a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s var(--ease);
      }
      ul {
        list-style: none;
      }
      button {
        font-family: "Jost", sans-serif;
        cursor: pointer;
        border: none;
        background: none;
        outline: none;
      }

      /* ─── VARIABLES ─── */
      

      /* ─── SCROLLBAR ─── */
      ::-webkit-scrollbar {
        width: 6px;
      }
      ::-webkit-scrollbar-track {
        background: var(--bg);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 3px;
      }

      /* ─── UTILITIES ─── */
      .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
      }
      .section {
        padding: var(--section-gap) 0;
      }
      .section-header {
        text-align: center;
        margin-bottom: var(--content-gap);
      }
      .section-title {
        font-family: var(--ff-serif);
        font-size: clamp(2.4rem, 5vw, 3.2rem);
        font-weight: 400;
        color: var(--espresso);
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .section-sub {
        font-size: 1rem;
        font-weight: 300;
        color: var(--taupe);
        max-width: 600px;
        margin: 0 auto;
      }

      /* ─── NAVIGATION ─── */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 900;
        padding: 30px 0;
        transition: all 0.5s var(--ease);
      }
      .nav.solid {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
      }
      .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }
      .nav-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .nav-logo-name {
        font-family: var(--ff-serif);
        font-size: 1.7rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--espresso);
        line-height: 1;
      }
      .nav-logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 4px;
      }
      .nav-links {
        display: flex;
        gap: 45px;
      }
      .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 400;
        color: var(--white);
        position: relative;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100px);
        transition: opacity 0.8s var(--ease), visibility 0.8s, transform 0.8s var(--ease), color 0.3s var(--ease);
      }
      .nav-links.visible a {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .nav-links.visible a:nth-child(1) { transition-delay: 0.1s; }
      .nav-links.visible a:nth-child(2) { transition-delay: 0.2s; }
      .nav-links.visible a:nth-child(3) { transition-delay: 0.3s; }
      .nav-links.visible a:nth-child(4) { transition-delay: 0.4s; }
      .nav-links.visible a:nth-child(5) { transition-delay: 0.5s; }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s var(--ease);
        transform: translateX(-50%);
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-links a.active {
        color: var(--gold);
        font-weight: 700;
      }

      .nav-hamburger {
        display: none;
      }
      .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease), visibility 0.4s;
      }
      .nav-overlay.open {
        opacity: 1;
        visibility: visible;
      }

      /* ─── HERO ─── */
      .hero {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
      }
      .hero-photo {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: #000;
      }
      .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: heroBreathing 5s ease-in-out infinite alternate;
        will-change: transform;
        position: relative;
        z-index: 1;
        overflow: hidden;
      }
      @keyframes heroBreathing {
        0% {
          transform: scale(1) translate(0, 0);
        }
        100% {
          transform: scale(1.08) translate(-1%, -1%);
        }
      }
      .hero-photo canvas {
        position: absolute;
        inset: 0;
        z-index: 2;
        opacity: 0.5;
        pointer-events: none;
        display: block;
        width: 100%;
        height: 100%;
      }
      .hero-photo-fade {
        position: absolute;
        inset: 0;
        z-index: 3;
        background: linear-gradient(
          to right,
          var(--bg) 0%,
          rgba(253, 251, 247, 0.2) 40%,
          transparent 80%
        );
      }
      .hero-inner {
        position: relative;
        z-index: 10;
        width: 100%;
      }
      .hero-content {
        max-width: 800px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100px);
        transition: opacity 1s var(--ease), visibility 1s, transform 1s var(--ease);
      }
      .hero-content.visible {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
      }
      .hero-headline {
        font-family: var(--ff-serif);
        font-size: clamp(3rem, 8vw, 5rem);
        line-height: 1.1;
        color: var(--espresso);
        margin-bottom: 24px;
      }
      .hero-headline em {
        font-style: italic;
        color: var(--gold);
        font-weight: 400;
      }
      .hero-sub {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        max-width: 680px;
        margin: 0 auto var(--container-gap);
        font-weight: 400;
        text-shadow: var(--text-shadow-premium);
      }
      .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        border: 1px solid var(--espresso);
        color: var(--gold);
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.3s var(--ease);
        border-radius: 10px;
        font-size: 1.1rem;
      }
      .hero-btn:hover {
        background: var(--espresso);
        color: var(--white);
        transform: translateY(-2px);
      }

      /* ─── CATEGORIES ─── */
      .categories {
        background: var(--bg);
      }
      .cat-card {
        background: var(--white);
        border-radius: 24px;
        padding: clamp(30px, 5vw, 60px);
        display: flex;
        align-items: center;
        gap: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
      }
      .cat-left {
        min-width: 260px;
        padding-right: 40px;
        border-right: 1px solid var(--border);
      }
      .cat-left-title {
        font-family: var(--ff-serif);
        font-size: 2.2rem;
        line-height: 1.2;
        color: var(--espresso);
        margin-bottom: 10px;
      }
      .cat-viewall {
        display: inline-flex;
        align-items: center;
        padding: 12px 28px;
        border: 1px solid var(--espresso);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: all 0.3s;
        border-radius: 10px;
      }
      .cat-viewall:hover {
        background: var(--espresso);
        color: var(--white);
      }
      .cat-items {
        display: flex;
        justify-content: space-between;
        flex: 1;
        padding-left: 20px;
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;
      }
      .cat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        transition: transform 0.4s var(--ease);
        cursor: pointer;
      }
      .cat-item:hover {
        transform: translateY(-10px);
      }
      .cat-item-img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        opacity: 0.7;
        transition: opacity 0.3s;
      }
      .cat-item:hover .cat-item-img {
        opacity: 1;
      }
      .cat-item-name {
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.05em;
      }

      /* ─── GRIDS ─── */
      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
      }

      /* ─── PRODUCTS ─── */
      .featured {
        background: var(--bg-warm);
      }
      .prod-card {
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s var(--ease);
        height: max-content;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      }
      .prod-card:hover {
        background: var(--white);
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
      }
      .prod-img-wrap {
        aspect-ratio: 1/1.1;
        overflow: hidden;
      }
      .prod-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s var(--ease);
      }
      .prod-card:hover .prod-img {
        transform: scale(1.1);
      }
      .prod-info {
        padding: 24px;
      }
      .prod-name {
        font-size: 1.15rem;
        font-weight: 500;
        margin-bottom: 12px;
        color: var(--espresso);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      /* ─── GALLERY ─── */
      .gallery {
        background: var(--bg);
      }
      .gallery-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
      }
      #gallery-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
        gap: 20px;
      }
      #gallery-section .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
      #gallery-section .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
      #gallery-section .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
      #gallery-section .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 1; }
      #gallery-section .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 2; }
      #gallery-section .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
      #gallery-section .gallery-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
      #gallery-section .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
      .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s var(--ease);
      }
      .gallery-item:hover img {
        transform: scale(1.15);
      }
      .gallery-overlay {
        position: absolute;
        inset: 0;
        background: rgba(166, 139, 94, 0.2);
        opacity: 0;
        transition: opacity 0.4s var(--ease);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .gallery-item:hover .gallery-overlay {
        opacity: 1;
      }
      .gallery-plus {
        width: 48px;
        height: 48px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(20px);
        transition: transform 0.4s var(--ease);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      .gallery-item:hover .gallery-plus {
        transform: translateY(0);
      }
      .gallery-plus svg {
        width: 20px;
        height: 20px;
        fill: var(--espresso);
        stroke-width: 1;
      }

      /* ─── TESTIMONIAL ─── */
      .testimonial {
        background: var(--bg-warm);
        position: relative;
        overflow: hidden;
      }
      .testimonial-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 100px;
        align-items: center;
        position: relative;
        z-index: 10;
      }
      .testimonial-title {
        font-family: var(--ff-serif);
        font-size: clamp(2.4rem, 5vw, 3.5rem);
        margin-bottom: 40px;
        line-height: 1.1;
        color: var(--espresso);
      }
      .testimonial-quote {
        font-size: 1.3rem;
        font-weight: 300;
        line-height: 1.8;
        margin-bottom: 40px;
        color: var(--espresso);
        font-style: italic;
      }
      .testimonial-author {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .testimonial-author::before {
        content: "";
        width: 50px;
        height: 1px;
        background: var(--gold);
      }

      .chair-showcase {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 500px;
      }
      .chair-img-wrap {
        max-width: 520px;
        perspective: 1200px;
        position: relative;
        z-index: 10;
      }
      .chair-img-wrap img {
        width: 100%;
        filter: brightness(1.08) contrast(1.12) drop-shadow(0 40px 70px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 30px rgba(166, 139, 94, 0.2));
        animation: chairFloat 8s ease-in-out infinite;
        will-change: transform;
      }
      @keyframes chairFloat {
        0%,
        100% {
          transform: translateY(0) rotateY(0) rotateX(0);
        }
        50% {
          transform: translateY(-30px) rotateY(10deg) rotateX(-2deg);
        }
      }
      .constellation-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.9;
        pointer-events: none;
        background: radial-gradient(circle at center, rgba(166, 139, 94, 0.15) 0%, transparent 65%);
      }
      .constellation-bg canvas {
        display: block;
        width: 100%;
        height: 100%;
      }

      /* ─── VALUES ─── */
      .values {
        background: var(--bg);
        border-top: 1px solid var(--border);
      }
      .values-row {
        display: flex;
        justify-content: space-between;
      }
      .value-item {
        flex: 1;
        text-align: center;
        padding: 0 40px;
        border-right: 1px solid var(--border);
      }
      .value-item:last-child {
        border-right: none;
      }
      .value-icon {
        margin-bottom: 24px;
        transition: all 0.3s ease-in-out;
      }
      .value-item:hover .value-icon {
        transform: scale(1.2) rotate(3deg);
      }

      .value-icon svg {
        width: 44px;
        height: 44px;
        stroke: var(--gold);
        stroke-width: 1;
        fill: none;
      }
      .value-name {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--espresso);
      }

      /* ─── FOOTER ─── */
      .footer {
        background: var(--bg-warm);
        padding-top: 80px;
        border-top: 1px solid var(--border);
      }

      .footer-logo{
        width: 220px;
        height: 43px;
        overflow: hidden;
        object-fit: cover;
      }

      .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
        margin-bottom: 30px;
      }
      .footer-logo-name {
        font-family: var(--ff-serif);
        font-size: 2rem;
        letter-spacing: 0.15em;
        margin-bottom: 8px;
        line-height: 1;
      }
      .footer-logo-sub {
        font-size: 0.6rem;
        letter-spacing: 0.5em;
        color: var(--gold);
        text-transform: uppercase;
      }
      .footer-tagline {
        font-size: 1rem;
        color: var(--taupe);
        margin-top: 25px;
        max-width: 280px;
        line-height: 1.7;
      }
      .footer-title {
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        margin-bottom: 35px;
        color: var(--espresso);
      }
      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-links a {
        font-size: 1rem;
        color: var(--taupe);
      }
      .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
      }

      .newsletter-text {
        font-size: 1rem;
        color: var(--taupe);
        margin-bottom: 25px;
      }
      .newsletter-form {
        display: flex;
        background: var(--white);
        border: 1px solid var(--border);
        padding: 6px;
        border-radius: 100px;
        position: relative;
      }
      .newsletter-input {
        flex: 1;
        padding: 0 20px;
        border: none;
        font-size: 0.95rem;
        background: none;
      }
      .newsletter-btn {
        width: 48px;
        height: 48px;
        background: var(--espresso);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s var(--ease);
      }
      .newsletter-btn:hover {
        background: var(--gold);
        transform: scale(1.05);
      }

      .footer-bottom {
        border-top: 1px solid var(--border);
        padding: 40px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: var(--taupe);
      }
      .footer-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .footer-info {
        display: flex;
        gap: 5px;
      }
      .footer-info a:hover {
        color: var(--gold);
      }

      /* ─── ANIMATIONS ─── */
      .fade-up {
        opacity: 0;
        transform: translateY(100px);
        transition: all 1s var(--ease);
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .stagger > * {
        opacity: 0;
        transform: translateY(25px);
        transition: all 0.7s var(--ease);
      }
      .stagger.visible > * {
        opacity: 1;
        transform: translateY(0);
      }
      .stagger.visible > *:nth-child(2) {
        transition-delay: 0.12s;
      }
      .stagger.visible > *:nth-child(3) {
        transition-delay: 0.24s;
      }
      .stagger.visible > *:nth-child(4) {
        transition-delay: 0.36s;
      }
      .stagger.visible > *:nth-child(5) {
        transition-delay: 0.48s;
      }

      .h-line {
        display: block;
        overflow: hidden;
      }
      .h-line-inner {
        display: block;
        transform: translateY(105%);
        transition: transform 1s var(--ease);
      }
      .hero-ready .h-line-inner {
        transform: translateY(0);
      }
      .hero-ready .h-line:nth-child(2) .h-line-inner {
        transition-delay: 0.15s;
      }
      .hero-ready .h-line:nth-child(3) .h-line-inner {
        transition-delay: 0.3s;
      }

      .hero-fade {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s var(--ease);
      }
      .hero-ready .hero-fade {
        opacity: 1;
        transform: translateY(0);
      }
      .hero-ready .hero-fade:nth-child(2) {
        transition-delay: 0.5s;
      }
      .hero-ready .hero-fade:nth-child(3) {
        transition-delay: 0.7s;
      }

      /* ─── RESPONSIVE ─── */
      @media (max-width: 1200px) {
        .nav {
          padding: 20px 0;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 60px;
        }
        .testimonial-grid {
          gap: 60px;
        }
      }
      @media (max-width: 1024px) {
        .grid-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        #gallery-section {
          grid-template-columns: repeat(2, 1fr);
          grid-auto-rows: 220px;
        }
        #gallery-section .gallery-item {
          grid-column: span 1 !important;
          grid-row: span 1 !important;
        }
        #gallery-section .gallery-item:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
        #gallery-section .gallery-item:nth-child(4) { grid-column: span 2 !important; grid-row: span 1 !important; }
        #gallery-section .gallery-item:nth-child(5) { grid-column: span 1 !important; grid-row: span 2 !important; }
        #gallery-section .gallery-item:nth-child(7) { grid-column: span 2 !important; grid-row: span 2 !important; }
        .cat-card {
          flex-direction: column;
          align-items: flex-start;
          gap: 40px;
        }
        .cat-left {
          border-right: none;
          border-bottom: 1px solid var(--border);
          padding: 0 0 30px;
          width: 100%;
        }
        .cat-items {
          padding-left: 0;
          padding-top: 10px;
          width: 100%;
          gap: 30px;
        }
        .testimonial-grid {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .testimonial-author {
          justify-content: center;
        }
        .testimonial-quote {
          max-width: 600px;
          margin: 0 auto 40px;
        }
      }
      @media (max-width: 768px) {

        .nav-container {
          padding: 0;
        }
        #gallery-section {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }
        #gallery-section .gallery-item {
          width: 100%;
          grid-column: auto !important;
          grid-row: auto !important;
        }
        #gallery-section .gallery-item img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }
        .prod-info {
          padding: 10px 24px;
        }
        .prod-name {
          margin-bottom: 0;
          font-size: 1rem;
        }
        .nav-links {
          display: flex;
          flex-direction: column;
          position: fixed;
          top: 0;
          right: -100%;
          width: 75%;
          max-width: 320px;
          height: 100vh;
          background: rgba(245, 241, 235, 0.98);
          backdrop-filter: blur(25px);
          -webkit-backdrop-filter: blur(25px);
          z-index: 1000;
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
          transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
          gap: 10px;
          padding: 100px 20px;
        }
        .nav-links.open {
          right: 0;
        }
        .nav-links a {
          opacity: 0 !important;
          visibility: hidden !important;
          transform: translateY(20px) !important;
          font-size: 1.35rem;
          margin-bottom: 25px;
          letter-spacing: 0.15em;
          width: 100%;
          transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s var(--ease), visibility 0.4s !important;
          color: var(--espresso);
          padding: 10px;
          margin-bottom: 0 !important;
          font-size: 0.9rem !important;
          border-radius: 10px;
          background: #c4cbc7;
          text-align: center;
          font-family: serif;
        }
        .nav-links a::after {
          display: none;
        }
        .nav-links.open a {
          opacity: 1 !important;
          visibility: visible !important;
          transform: translateY(0) !important;
        }
        .nav-links.open a:nth-child(1) { transition-delay: 0.1s !important; }
        .nav-links.open a:nth-child(2) { transition-delay: 0.18s !important; }
        .nav-links.open a:nth-child(3) { transition-delay: 0.26s !important; }
        .nav-links.open a:nth-child(4) { transition-delay: 0.34s !important; }
        .nav-links.open a:nth-child(5) { transition-delay: 0.42s !important; }

        .nav-hamburger {
          display: flex;
          flex-direction: column;
          gap: 6px;
          z-index: 1001;
          background: transparent;
          border: none;
          cursor: pointer;
          padding: 5px;
        }
        .nav-hamburger span {
          width: 28px;
          height: 2px;
          background: var(--white);
          transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s;
        }
        .nav-hamburger.active span:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
        }
        .nav-hamburger.active span:nth-child(2) {
          opacity: 0;
          transform: scaleX(0);
        }
        .nav-hamburger.active span:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
        }
        .hero-headline {
          font-size: 2.5rem;
        }
        .values-row {
          flex-direction: column;
          gap: 50px;
        }
        .value-item {
          border-right: none;
          border-bottom: 1px solid var(--border);
          padding-bottom: 40px;
        }
        .value-item:last-child {
          border-bottom: none;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 50px;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 30px;
          text-align: center;
        }
      }

      /* ─── LIGHTBOX ─── */
      .lightbox {
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease), visibility 0.4s;
      }
      .lightbox.open {
        opacity: 1;
        visibility: visible;
      }
      .lightbox-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10;
      }
      .lightbox-controls-left, .lightbox-controls-right {
        display: flex;
        gap: 20px;
      }
      .lb-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s var(--ease);
      }
      .lb-btn svg {
        width: 20px;
        height: 20px;
      }
      .lb-btn:hover {
        background: var(--gold);
        color: var(--espresso);
        transform: scale(1.1);
        border-color: var(--gold);
      }
      .lightbox-body {
        flex: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        z-index: 1;
      }
      .lightbox-img-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: grab;
      }
      .lightbox-img-wrap:active {
        cursor: grabbing;
      }
      .lightbox-img {
        width: auto;
        height: auto;
        max-width: 90vw;
        max-height: 75vh;
        object-fit: contain;
        transform-origin: center center;
        will-change: transform;
        transition: transform 0.3s var(--ease);
        user-select: none;
        pointer-events: none;
      }
      .lightbox-img.dragging {
        transition: none;
      }
      .lightbox-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        display: flex;
        justify-content: center;
        z-index: 10;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      }
      .lightbox-thumbnails {
        display: flex;
        gap: 15px;
        max-width: 80%;
        overflow-x: auto;
        padding: 10px 5px;
        scrollbar-width: thin;
        scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
      }
      .lightbox-thumbnails::-webkit-scrollbar {
        height: 4px;
      }
      .lightbox-thumbnails::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
      }
      .lightbox-thumbnails::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 4px;
      }
      .lb-thumb {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
        cursor: pointer;
        opacity: 0.5;
        border: 2px solid transparent;
        transition: all 0.3s var(--ease);
        flex-shrink: 0;
      }
      .lb-thumb:hover {
        opacity: 0.8;
      }
      .lb-thumb.active {
        opacity: 1;
        border-color: var(--gold);
        transform: translateY(-5px);
      }

      /* ─── GLOBAL SCROLLED NAVBAR TEXT COLOR CORRECTION ─── */
      /* .nav.solid .nav-links a {
        color: var(--espresso);
      } */
      .nav.solid .nav-hamburger span {
        background: var(--espresso);
      }

      /* ─── LIGHTBOX PREV/NEXT NAVIGATION CONTROLS ─── */
      .lb-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s var(--ease);
        z-index: 1000;
        cursor: pointer;
      }
      .lb-nav-btn svg {
        width: 24px;
        height: 24px;
      }
      .lb-nav-btn:hover {
        background: var(--gold);
        color: var(--espresso);
        transform: scale(1.1);
        border-color: var(--gold);
      }
      .lb-prev {
        left: 40px;
      }
      .lb-next {
        right: 40px;
      }
      @media (max-width: 768px) {
        .lb-prev {
          left: 15px;
        }
        .lb-next {
          right: 15px;
        }
        .lb-nav-btn {
          width: 40px;
          height: 40px;
        }
        .lb-nav-btn svg {
          width: 20px;
          height: 20px;
        }
      }

/* ─── CINEMATIC EFFECTS & ANIMATIONS (animations.css) ─── */
/* ============================================================
   HAMLET ON THE GANGES — animations.css
   Ultra-Premium Cinematic Reveal System — Companion Styles
   Drop-in: zero changes to style.css needed.
   ============================================================ */

/* ── WORD / CHAR SPLIT CONTAINERS ────────────────────────────
   These are injected by animations.js for title reveals.
   The outer .h-word-wrap clips overflow so words slide up
   from below the line elegantly.
   ──────────────────────────────────────────────────────────── */
.h-word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
    /* Tiny gap between words */
    margin-right: 0.22em;
}

.h-word {
    display: inline-block;
    will-change: transform, opacity;
    transform-origin: bottom center;
}

.h-char {
    display: inline-block;
    will-change: transform, opacity;
    transform-origin: bottom center;
}

/* ── SCROLL PROGRESS BAR ─────────────────────────────────────
   A thin gold line at the very top of the viewport that fills
   as the user scrolls down the page.
   ──────────────────────────────────────────────────────────── */
.h-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: linear-gradient(90deg, #C6A76B 0%, #e0c98a 50%, #9e7f47 100%);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(198, 167, 107, 0.7), 0 0 4px rgba(198, 167, 107, 0.4);
}

/* ── CUSTOM GOLD CURSOR ──────────────────────────────────────
   Two-layer cursor: a sharp dot + a lagging soft ring.
   Replaces the default cursor for a premium feel.
   ──────────────────────────────────────────────────────────── */
/* @media (pointer: fine) {

    body {
        cursor: none !important;
    }

    a,
    button,
    [role="button"],
    label,
    input,
    textarea,
    select,
    .villa-v3-card,
    .gallery-v2-item,
    .connect-v2-img-wrap {
        cursor: none !important;
    }
} */

/* .h-cursor-dot {
    position: fixed;
    top: -6px;
    left: -6px;
    width: 10px;
    height: 10px;
    background: #C6A76B;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
    mix-blend-mode: difference;
    transition: opacity 0.2s;
}

.h-cursor-ring {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(198, 167, 107, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    backdrop-filter: none;
    transition: opacity 0.3s;
} */

/* Hide custom cursor on touch devices */
/* @media (pointer: coarse) {

    .h-cursor-dot,
    .h-cursor-ring {
        display: none !important;
    }

    body {
        cursor: auto !important;
    }
} */

/* ── IMAGE REVEAL: Clip-path base states ─────────────────────
   GSAP animates from these states — the base just ensures
   elements are visible before JS loads (progressive enhancement).
   ──────────────────────────────────────────────────────────── */
.villa-v2-frame,
.offer-v2-img-wrap,
.cuisine-img-wrap {
    will-change: clip-path, opacity, transform;
}

/* ── PAGE HERO ENHANCEMENT ───────────────────────────────────
   Adds a subtle animated gradient shimmer over the hero image
   and a bottom fog to help text readability.
   ──────────────────────────────────────────────────────────── */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

/* ── SECTION TITLE OVERFLOW MANAGEMENT ──────────────────────
   When words are split, we don't want the clipping to
   cause layout shift. This ensures natural flow.
   ──────────────────────────────────────────────────────────── */
.section-title,
.banner-title,
.villa-v2-title,
.moments-v3-title,
.luxury-form-title {
    overflow: visible !important;
    /* Words wrap naturally */
    -webkit-font-smoothing: antialiased;
}

/* ── CUISINE GRID: Hover brightness lift ────────────────────
   Small CSS polish to complement the GSAP hover effects.
   ──────────────────────────────────────────────────────────── */
.cuisine-grid-img {
    position: relative;
}

.cuisine-grid-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(198, 167, 107, 0);
    transition: background 0.5s ease;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.cuisine-grid-img:hover::after {
    background: rgba(198, 167, 107, 0.08);
}

/* ── VILLA V3 CARD DEPTH SHADOW ──────────────────────────────
   Enhances the hover state with a stronger depth shadow
   that complements the GSAP translateY animation.
   ──────────────────────────────────────────────────────────── */
.villa-v3-card {
    transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.1s linear !important;
    /* transform managed by GSAP; ease by CSS for smoothness */
}



/* ── FEATURE PILLS: Pop-in from below ────────────────────────
   Initial state for progressive enhancement — pills visible
   if JS fails, but GSAP overrides to animate them in.
   ──────────────────────────────────────────────────────────── */
.feature-banner .feature-pill {
    will-change: transform, opacity;
}

/* ── TESTIMONIAL CARDS: Bottom border glow on hover ─────────
   Complements the GSAP scale hover animation.
   ──────────────────────────────────────────────────────────── */
.testimonial-v2-card {
    position: relative;
    overflow: hidden;
}

.testimonial-v2-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C6A76B, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-v2-card:hover::after {
    transform: scaleX(1);
}

/* ── FOOTER LINKS: Gold underline draw ───────────────────────
   CSS-only micro-interaction for footer nav items.
   ──────────────────────────────────────────────────────────── */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C6A76B;
    transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-links a:hover::after {
    width: 50%;
}

/* ── SCROLL INDICATOR: Enhanced breathing pulse ─────────────
   Replaces / enhances existing scroll indicator animation.
   ──────────────────────────────────────────────────────────── */
.scroll-indicator {
    animation: scrollBreathe 3.5s ease-in-out infinite;
}

@keyframes scrollBreathe {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-6px);
    }
}

/* ── CONTACT INPUT: Gold focus ring ─────────────────────────
   Enhances the existing focus state with a softer glow.
   ──────────────────────────────────────────────────────────── */
.contact-input:focus {
    box-shadow:
        0 0 0 3px rgba(198, 167, 107, 0.18),
        0 0 20px rgba(198, 167, 107, 0.1) !important;
    transform: translateY(-1px);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ── VILLA TAG V2: Entrance pulse ────────────────────────────
   A one-time CSS pulse after the tag appears (set by GSAP).
   ──────────────────────────────────────────────────────────── */
.villa-tag-v2 {
    animation: tagPulse 2.5s ease-out 1.5s 1 forwards;
}

@keyframes tagPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 167, 107, 0.6);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(198, 167, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 167, 107, 0);
    }
}

/* ── NAV ACTIVE INDICATOR: Gold dot ─────────────────────────
   A small dot under the active nav link as extra emphasis.
   ──────────────────────────────────────────────────────────── */
.navbar-nav .nav-link.active::before {
    content: '●';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.3rem;
    color: #C6A76B;
    opacity: 0.8;
    animation: dotFade 1.5s ease-in-out infinite alternate;
}

@keyframes dotFade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* ── GLIGHTBOX GOLD THEME OVERRIDE ──────────────────────────
   Tints the gallery lightbox close button to match brand.
   ──────────────────────────────────────────────────────────── */
.glightbox-clean .gnext,
.glightbox-clean .gprev {
    background: rgba(198, 167, 107, 0.2) !important;
    border: 1px solid rgba(198, 167, 107, 0.4) !important;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: rgba(198, 167, 107, 0.5) !important;
}

/* ── WILL-CHANGE CLEANUP ─────────────────────────────────────
   After animations complete, reset will-change to auto
   to free GPU layers. GSAP handles this automatically
   but we also set it for CSS-animated elements.
   ──────────────────────────────────────────────────────────── */
.h-word,
.h-char,
.h-scroll-progress,
.h-cursor-dot,
.h-cursor-ring {
    will-change: transform, opacity;
}

/* ── REDUCED MOTION: Accessibility ──────────────────────────
   Respects users who prefer reduced motion. GSAP animations
   will still run but CSS animations are disabled.
   ──────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    .h-cursor-dot,
    .h-cursor-ring,
    .h-scroll-progress,
    .scroll-indicator,
    .glass-connect-card::before,
    .villa-tag-v2,
    .testimonial-v2-card::after,
    .navbar-nav .nav-link.active::before {
        animation: none !important;
        transition: none !important;
    }

    .scroll-indicator {
        opacity: 1;
        transform: translateX(-50%);
    }
}