:root {
  --ink: #222222; /* Charcoal */
  --muted: #5A6562;
  --green: #0F4C45; /* Deep Emerald */
  --green-2: #16645B;
  --gold: #C8A45D; /* Rich Gold */
  --warm: #F9F7F2; /* Ivory */
  --paper: #FFFFFF;
  --line: rgba(15, 76, 69, 0.1);
  --shadow: 0 24px 60px rgba(15, 76, 69, 0.08);
  --radius: 12px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

section[id] {
  scroll-margin-top: 110px;
}

/* Lenis smooth scroll styling */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm); /* Base background is Ivory */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  font: inherit;
  transition: all 0.3s ease;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

/* Section 1: Announcement Bar */
.announcement {
  position: relative;
  background: var(--green);
  min-height: 44px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(200, 164, 93, 0.2);
}

.announcement-track {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  text-align: center;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  color: #fff;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.announcement-slide a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-slide a:hover {
  color: #fff;
}

/* Luxury Top Bar */
.luxury-top-bar {
  background: var(--green);
  border-bottom: 1px solid rgba(200, 164, 93, 0.2);
  color: rgba(255, 255, 255, 0.9);
  height: 40px;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.luxury-top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.top-bar-container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  color: #fff;
  transition: color 0.3s;
}

.top-bar-link:hover {
  color: var(--gold);
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-bar-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  transition: all 0.3s;
}

.top-bar-wa-btn:hover {
  color: #fff;
  transform: translateY(-0.5px);
}

/* Luxury Floating Header */
.site-header {
  position: fixed;
  top: 40px; /* Sits directly below the fixed top bar */
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(8, 20, 18, 0.15);
  border-bottom: 1px solid rgba(200, 164, 93, 0.0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-header.scrolled {
  top: 0;
  background: rgba(10, 30, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 164, 93, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.brand-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-transform: none;
  margin-top: 0.1rem;
}

.site-header.scrolled .brand-title {
  color: var(--gold);
}

.site-header.scrolled .brand-subtitle {
  color: rgba(255,255,255,0.7);
}

/* Nav Menu */
.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.site-header.scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA Header button */
.header-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.6rem;
  border-radius: 999px; /* Rounded pill */
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green) !important;
  background: linear-gradient(135deg, #E5C07B 0%, #C8A45D 100%); /* Gold gradient */
  box-shadow: 0 4px 15px rgba(200, 164, 93, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-cta-pill:hover {
  transform: scale(1.05) translateY(-1px) !important; /* Scale and micro lift */
  box-shadow: 0 8px 25px rgba(200, 164, 93, 0.6), 0 0 15px rgba(200, 164, 93, 0.4) !important; /* glow hover */
  color: var(--green) !important;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #FFF;
  transition: all 0.3s;
}

.site-header.scrolled .nav-toggle {
  border-color: var(--line);
}
.site-header.scrolled .nav-toggle span {
  background: var(--gold);
}

/* Luxury Cinematic Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 400px);
  align-items: center;
  gap: 4rem;
  /* top padding accounts for: fixed top-bar (40px) + fixed header (~80px) + breathing room */
  padding: clamp(10rem, 20vh, 14rem) clamp(1rem, 5vw, 4rem) clamp(5rem, 10vh, 8rem);
  overflow: hidden;
  color: #fff;
  background-color: #081917;
}

/* Background image Ken Burns effect */
.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-kb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px);
  transform: scale(1.02);
  animation: kenburns 20s infinite alternate ease-in-out;
  will-change: transform;
}

@keyframes kenburns {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(-1%, -0.5%);
  }
}

/* Multi-layer luxury overlay */
.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.hero-overlay-mid {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 69, 0.24); /* Light emerald tint */
  z-index: 2;
}

.hero-overlay-bot {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 25, 22, 0.72) 0%, rgba(8, 25, 22, 0.28) 50%, rgba(8, 25, 22, 0.08) 100%),
              linear-gradient(90deg, rgba(8, 25, 22, 0.68) 0%, rgba(8, 25, 22, 0.34) 45%, transparent 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
}

/* reveal lines */
.hero-eyebrow-reveal {
  overflow: hidden;
  margin: 0 0 1rem;
}

.hero-eyebrow-reveal .eyebrow-text {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 4px; /* 4px letter spacing */
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title-reveal {
  margin: 0 0 1.5rem;
}

.hero-title-reveal .hero-title-line {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem); /* Clamp(60px, 8vw, 110px) is ~clamp(2.8rem, 5.8vw, 5.8rem) */
  font-weight: 600;
  line-height: 1.05;
  color: #FFFFFF;
}

.hero-desc-reveal {
  max-width: 650px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions-reveal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Premium Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(15, 76, 69, 0.05);
}

.btn.primary {
  background: var(--green);
  color: #FFFFFF;
  border-color: var(--green);
  box-shadow: 0 6px 20px rgba(15, 76, 69, 0.15);
}

.btn.primary:hover {
  background: var(--green-2);
  border-color: var(--green-2);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 76, 69, 0.25);
}

.btn.secondary-gold {
  background: transparent;
  color: var(--green);
  border-color: var(--gold);
}

.btn.secondary-gold:hover {
  background: var(--gold);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 164, 93, 0.2);
}

.luxury-gold-btn {
  background: linear-gradient(135deg, #E5C07B 0%, #C8A45D 100%) !important;
  color: var(--green) !important;
  box-shadow: 0 6px 20px rgba(200, 164, 93, 0.3) !important;
  border-radius: 999px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  border: none !important;
  cursor: pointer;
}

.luxury-gold-btn:hover {
  background: #FFFFFF !important;
  color: var(--green) !important;
  transform: scale(1.03) translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4) !important;
}

.ghost-btn {
  position: relative;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #FFFFFF !important;
  border-radius: 999px !important;
  overflow: hidden;
  padding: 0.9rem 2rem !important;
  cursor: pointer;
}

.ghost-btn:hover {
  border-color: #FFFFFF !important;
  transform: translateY(-2px) !important;
}

/* Sweep shine effect on hover */
.shine-sweep {
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: none;
}

.ghost-btn:hover .shine-sweep {
  left: 170%;
  transition: left 0.75s ease-in-out;
}

/* Trust Indicators as Glassmorphism Cards */
.trust-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-card {
  flex: 1 1 calc(33.33% - 0.85rem);
  min-width: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.15rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(8, 25, 22, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.trust-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.trust-card-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.35rem;
}

.trust-card-icon {
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.trust-card p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Floating booking widget */
.booking-card-floating {
  position: relative;
  z-index: 4;
  align-self: center;
  padding: 2.2rem 1.8rem;
  background: rgba(8, 25, 22, 0.7); /* Dark semi-transparent base */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--gold); /* Gold border */
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: border-color 0.3s;
}

.limited-tag {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  color: var(--green);
  background: var(--gold);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.15rem;
}

.booking-card-floating h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  margin-top: 0;
}

.booking-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.booking-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.65rem;
}

.booking-benefits li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--green);
  background: linear-gradient(135deg, #E5C07B 0%, #C8A45D 100%);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(200, 164, 93, 0.25);
  transition: all 0.3s;
}

.booking-card-cta:hover {
  background: #ffffff;
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Scroll to Discover Indicator */
.scroll-indicator-container {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
}

.scroll-indicator-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--gold);
  animation: scrollLine 2.2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% {
    top: -15px;
  }
  50% {
    top: 40px;
  }
  100% {
    top: 40px;
  }
}



.booking-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--green);
}

.booking-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  background: var(--green);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(15, 76, 69, 0.15);
  transition: all 0.3s;
}

.booking-card a:hover {
  background: var(--green-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 76, 69, 0.25);
}

.limited {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: #fff;
  background: var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(5rem, 9vh, 8.5rem) 0;
}

/* Titles & Section Headers */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--green);
  margin: 0;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head p:last-child {
  margin: 0;
  font-size: 1.1rem;
}

/* Section 3: About Section */
.about-section {
  background: var(--warm); /* Ivory */
}

.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 5rem;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-featured-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 93, 0.22);
  box-shadow: var(--shadow);
  height: 420px;
  width: 100%;
}

.about-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-featured-visual:hover .about-large-img {
  transform: scale(1.05);
}

.about-img-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8, 25, 22, 0.85);
  border: 1px solid var(--gold);
  color: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2;
}

.about-showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.about-showcase-item {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}

.about-showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-img-wrapper {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 93, 0.18);
  height: 340px;
  box-shadow: var(--shadow);
}

.showcase-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-img-wrapper:hover img {
  transform: scale(1.05);
}

.showcase-info {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.showcase-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.95rem;
  color: var(--green);
  margin: 0;
  font-weight: 600;
}

.showcase-info p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* Section 4: Statistics */
.feature-band {
  padding: 3rem 0;
  background: var(--green);
  color: #fff;
  border-top: 1px solid rgba(200, 164, 93, 0.2);
  border-bottom: 1px solid rgba(200, 164, 93, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats div {
  padding: 1rem;
  border-left: 1px solid rgba(200, 164, 93, 0.25);
  text-align: center;
}

.stats div:first-child {
  border-left: none;
}

.stats strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.stats span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Section 5: Why Choose Us */
.why-section {
  background: #ffffff; /* White background */
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.why-grid article {
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm); /* Light Ivory cards */
  box-shadow: 0 4px 20px rgba(15, 76, 69, 0.02);
  transition: all 0.3s ease;
}

.why-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.why-grid article h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--green);
}

.why-grid article p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Section 6: Experience Section (NEW) */
.experience-section {
  background: var(--warm); /* Ivory */
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200, 164, 93, 0.15);
  box-shadow: var(--shadow);
}

.experience-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experience-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover .experience-card-bg img {
  transform: scale(1.08);
}

.experience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 22, 0.1) 0%, rgba(8, 25, 22, 0.85) 100%);
  z-index: 1;
}

.experience-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.experience-card-content h3 {
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.experience-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Section 7: Rooms (Accommodation) Section */
.rooms-section {
  background: #ffffff; /* White background */
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 40px rgba(15, 76, 69, 0.04);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.room-slider {
  position: relative;
  overflow: hidden;
  height: 260px;
  width: 100%;
}

.room-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-slide-img:hover {
  transform: scale(1.04);
}

.room-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 25, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: all 0.3s;
  z-index: 5;
  padding: 0;
  line-height: 1;
}

.room-slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  box-shadow: 0 0 10px rgba(200, 164, 93, 0.4);
}

.room-slider-arrow.prev {
  left: 0.75rem;
}

.room-slider-arrow.next {
  right: 0.75rem;
}

.room-slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 5;
}

.room-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.room-slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.room-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.room-topline h3 {
  font-size: 1.5rem;
  color: var(--green);
}

.room-topline span {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--warm);
  color: var(--green);
  border: 1px solid rgba(15, 76, 69, 0.1);
}

.room-card p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  min-height: 50px;
}

.room-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.price-row strong {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  color: var(--green);
  font-weight: 700;
}

.room-book-btn {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  border-radius: var(--radius);
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}



.featured-room {
  border-color: rgba(200, 164, 93, 0.6);
  box-shadow: 0 15px 45px rgba(200, 164, 93, 0.08);
}

.wide-room {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.wide-room img {
  height: 100%;
  min-height: 400px;
}

/* Shared Living Spaces Rebuild */
.spaces-section {
  background: #ffffff; /* White background */
}

.spaces-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.space-tab-btn {
  background: transparent;
  border: 1px solid rgba(15, 76, 69, 0.15);
  color: var(--green);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.space-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.space-tab-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(15, 76, 69, 0.15);
}

.spaces-panes {
  position: relative;
  width: 100%;
}

.space-pane {
  display: none;
}

.space-pane.active {
  display: block;
  animation: fadeInSpace 0.6s ease forwards;
}

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

.space-pane-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.space-showcase-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.spaces-slider {
  position: relative;
  overflow: hidden;
  height: 440px;
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spaces-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.spaces-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.spaces-slide-img:hover {
  transform: scale(1.04);
}

.spaces-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 25, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: all 0.3s;
  z-index: 5;
  padding: 0;
  line-height: 1;
}

.spaces-slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  box-shadow: 0 0 10px rgba(200, 164, 93, 0.4);
}

.spaces-slider-arrow.prev {
  left: 1rem;
}

.spaces-slider-arrow.next {
  right: 1rem;
}

.spaces-thumbnails-strip {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(15, 76, 69, 0.05);
}

.spaces-thumbnails-strip::-webkit-scrollbar {
  height: 4px;
}

.spaces-thumbnails-strip::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 4px;
}

.spaces-thumb-btn {
  flex: 0 0 76px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.3s ease;
  background: none;
}

.spaces-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spaces-thumb-btn:hover,
.spaces-thumb-btn.active {
  opacity: 1;
  border-color: var(--gold);
}

.space-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--warm);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(15, 76, 69, 0.02);
}

.space-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--green);
  margin: 0;
  font-weight: 600;
}

.space-info p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Section 8: Amenities Section */
.amenities-section {
  background: var(--warm); /* Ivory background */
}

.amenities-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--green);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.25rem;
  transition: all 0.3s;
}

.text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--green);
  padding-left: 0.25rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.amenity-grid article {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 76, 69, 0.02);
  transition: all 0.3s;
}

.amenity-grid article:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 76, 69, 0.05);
}

.amenity-grid article h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.amenity-grid article h3::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

.amenity-grid p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Section 9: Food Assistance Section (NEW) */
.food-assistance-section {
  background: var(--green); /* Dark luxury green background */
  color: #fff;
  border-top: 1px solid rgba(200, 164, 93, 0.25);
  border-bottom: 1px solid rgba(200, 164, 93, 0.25);
}

.food-assistance-section h2, 
.food-assistance-section h3 {
  color: #fff;
}

.food-assistance-section .section-kicker {
  color: var(--gold);
}

.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.food-copy p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.food-copy p:first-child {
  font-size: 1.2rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.food-copy h3 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin-top: 2rem;
}

.food-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(200, 164, 93, 0.2);
}

.food-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Section 10: Location Advantage */
.location-section {
  background: #ffffff; /* White background */
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.location-card {
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm);
  box-shadow: 0 10px 40px rgba(15, 76, 69, 0.02);
}

.location-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.nearby-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.8rem 0;
}

.nearby-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--line);
}

.nearby-list span::before {
  content: '✦';
  color: var(--gold);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.location-actions .btn {
  flex: 1 1 auto;
  min-width: 170px;
}

.map-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 450px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Section 11: Reviews (Testimonials) Section */
.reviews-section {
  background: var(--green);
  color: #fff;
  border-top: 1px solid rgba(200, 164, 93, 0.2);
  border-bottom: 1px solid rgba(200, 164, 93, 0.2);
}

.reviews-section h2 {
  color: #fff;
}

.reviews-section .section-kicker {
  display: inline-block;
  color: #f4d98c;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.review-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.05);
}

.review-track::-webkit-scrollbar {
  height: 5px;
}

.review-track::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 999px;
}

.review-track article {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 164, 93, 0.15);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
}

.review-track article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.review-track p {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 2rem;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-track strong {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.review-track span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* Section 12: FAQ Section */
.faq-section {
  background: var(--warm); /* Ivory */
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 76, 69, 0.01);
  transition: all 0.3s ease;
}

details[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* Section 13: Final Booking CTA Section */
.booking-cta-section {
  background: #ffffff; /* White background */
}

.booking-cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #072a26 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 76, 69, 0.25);
  border: 1px solid rgba(200, 164, 93, 0.3);
}

.booking-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2 1-2 2s1 2 2 2h4c3 0 6-3 6-6v-4c0-1 1-2 2-2s2-1 2-2-1-2-2-2zM6 12c2 0 3-1 4-2V6c0-1 1-2 2-2h4c1 0 2-1 2-2S17 0 16 0h-4C9 0 6 3 6 6v4c0 1-1 2-2 2S0 13 0 14s1 2 2 2z' fill='%23c8a45d' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.7;
}

.booking-cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.booking-cta-content h2 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.booking-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-cta-content h3 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

.booking-cta-content .btn.primary {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 10px 30px rgba(200, 164, 93, 0.35);
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  min-height: 56px;
  border-radius: 8px;
}

.booking-cta-content .btn.primary:hover {
  background: #ffffff;
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

.booking-cta-subtext {
  display: block;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section 14: Footer & Tagline */
/* Gallery Section Styling */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filters button {
  background: transparent;
  border: 1px solid rgba(15, 76, 69, 0.15);
  color: var(--green);
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-filters button:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.gallery-filters button.active {
  background: var(--green);
  border-color: var(--green);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(15, 76, 69, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 93, 0.15);
  background: var(--warm);
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(15, 76, 69, 0.02);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 69, 0.82); /* Deep Emerald Overlay */
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

.gallery-view-text {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  transform: translateY(12px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-view-text {
  transform: translateY(0);
}

/* Rebuilt Luxury Footer Section */
.site-footer {
  position: relative;
  padding: 6rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: #0B2D29; /* Deep Emerald background */
  border-top: 1px solid rgba(200, 164, 93, 0.25);
  overflow: hidden;
}

.footer-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23c8a45d' fill-opacity='0.012' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.footer-grid-4col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr 0.9fr;
  gap: 4rem 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
  font-weight: 650;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #FFFFFF;
  letter-spacing: 3px;
  line-height: 1.25;
  display: block;
  text-transform: uppercase;
}

.footer-logo-text .gold-text {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 0.15rem;
}

.footer-credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-credit-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list li {
  position: relative;
}

.footer-contact-list strong {
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact-list a {
  color: inherit;
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(200, 164, 93, 0.15);
  margin: 4rem 0 1.8rem;
  position: relative;
  z-index: 1;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.footer-bottom-flex p {
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 0;
}

.footer-crafted {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  letter-spacing: 0.02em;
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25D366; /* Official WhatsApp Green */
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: calc(1.5rem + 7px);
  bottom: calc(1.5rem + 70px);
  z-index: 95;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--green);
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(15, 76, 69, 0.1);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(200, 164, 93, 0.3);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Full-Screen Bespoke Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem;
  background: rgba(8, 25, 22, 0.98); /* Deep luxury emerald black */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.lightbox.open {
  display: flex;
}

.lightbox-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  position: relative;
}

.lightbox-counter {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.lightbox-image-container {
  max-width: min(1100px, 88vw);
  max-height: 68vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(200, 164, 93, 0.25);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* Circular Floating Navigation Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}

.lightbox-arrow.prev {
  left: 2rem;
}

.lightbox-arrow.next {
  right: 2rem;
}

.lightbox-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  box-shadow: 0 0 20px rgba(200, 164, 93, 0.4);
}

/* Circular Close Button */
.lightbox-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 20;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(200, 164, 93, 0.4);
}

/* Horizontal Scrollable Thumbnails Strip */
.lightbox-thumbnails-wrapper {
  width: 100%;
  max-width: 800px;
  padding: 1.25rem 0.5rem 0.5rem;
  margin-top: auto;
}

.lightbox-thumbnails {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.25rem 0;
  scrollbar-width: none; /* Firefox */
}

.lightbox-thumbnails::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.lightbox-thumb {
  flex: 0 0 72px;
  height: 50px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  padding: 0;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb:hover {
  opacity: 0.8;
  border-color: rgba(200, 164, 93, 0.4);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(200, 164, 93, 0.3);
}

/* Mobile Navigation Overlay Backdrop */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 10, 0.6); /* dark overlay matching the villa theme */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .luxury-top-bar {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    position: fixed !important;
    top: 0 !important; /* On mobile, top bar is hidden so header stays at top */
    z-index: 200; /* Elevate header above the overlay */
    background: rgba(10, 30, 26, 0.96); /* Ensure high contrast glassmorphism on mobile */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: block;
    z-index: 210; /* Above the site-nav drawer */
    position: relative;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .nav-toggle span {
    background: #FFF !important; /* Always white for premium contrast */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.3s ease, 
                background-color 0.4s ease;
  }

  /* Hamburger to X Transform */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Premium Mobile Navigation Drawer */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100dvh;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 6rem 2.5rem 3rem;
    background: rgba(6, 18, 16, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
  }

  .site-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 0.85rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                color 0.3s ease, 
                padding-left 0.3s ease;
    text-shadow: none;
  }

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

  /* Stagger fade/slide-in transition delays when menu is opened */
  .site-nav.open a:nth-child(1) { transition-delay: 0.1s; }
  .site-nav.open a:nth-child(2) { transition-delay: 0.15s; }
  .site-nav.open a:nth-child(3) { transition-delay: 0.20s; }
  .site-nav.open a:nth-child(4) { transition-delay: 0.25s; }
  .site-nav.open a:nth-child(5) { transition-delay: 0.30s; }

  /* Luxury Link Hover / Tap Effects */
  .site-nav a:hover,
  .site-nav a:active {
    color: var(--gold) !important;
    padding-left: 0.75rem;
    border-bottom-color: rgba(200, 164, 93, 0.4);
  }

  .site-nav a::after {
    display: none; /* Disable desktop hover line */
  }

  .header-cta-pill {
    display: none !important; /* Properly hide reservation pill on mobile */
  }

  .hero,
  .about-grid,
  .food-grid,
  .amenities-layout,
  .location-grid,
  .faq-layout,
  .contact-grid,
  .footer-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 140px; /* Safe padding below sticky header */
    padding-bottom: 4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .booking-card {
    max-width: 440px;
  }

  .stats,
  .rooms-grid,
  .experience-grid,
  .footer-grid-4col,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-room {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .sticky-copy {
    position: static;
  }
  
  .food-visual img {
    height: 300px;
  }

  /* About section responsive styles */
  .about-featured-visual {
    height: 300px;
  }
  .about-showcase-item,
  .about-showcase-item.reverse {
    flex-direction: column;
    gap: 1.5rem;
  }
  .showcase-img-wrapper {
    width: 100%;
    height: 240px;
    flex: 0 0 auto;
  }
  .showcase-info {
    width: 100%;
    text-align: center;
    flex: 0 0 auto;
  }
  
  /* Shared Spaces 980px responsive */
  .space-pane-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .spaces-slider {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .announcement {
    flex-direction: column;
    gap: 0.1rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 120px;
    padding-bottom: 3rem;
  }

  .hero-title-reveal .hero-title-line {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-desc-reveal {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 0.7rem);
    justify-content: center;
    text-align: center;
  }

  .stats,
  .rooms-grid,
  .experience-grid,
  .amenity-grid,
  .footer-grid-4col,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .wide-room {
    grid-column: auto;
  }

  .room-card p {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .intro-photos {
    grid-template-columns: 1fr;
  }

  .intro-photos img:first-child {
    grid-row: auto;
    min-height: 220px;
  }

  /* Shared Spaces mobile responsive */
  .spaces-slider {
    height: 240px;
  }
  .space-info {
    padding: 1.1rem;
  }
  .space-info h3 {
    font-size: 1.6rem;
  }
}
