/* ============================================================
   ETERNAL KODAIKANAL — Design System
   Typography: Cormorant Garamond (display) + Inter (body/UI)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --ivory:        #F7F5F0;
  --cream:        #EAE5DC;
  --cream-dark:   #E2DBD0;
  --charcoal:     #1A1A18;
  --charcoal-soft:#2D2D2A;
  --forest:       #2D3A30;
  --stone:        #66615B;
  --sand:         #C2B4A3;
  --sand-light:   #D4C9BC;
  --white:        #ffffff;
  --overlay-dark: rgba(26, 26, 24, 0.6);
  --overlay-mid:  rgba(26, 26, 24, 0.35);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizes */
  --h1:   clamp(3rem, 7vw, 5.5rem);
  --h2:   clamp(2.2rem, 5vw, 3.8rem);
  --h3:   clamp(1.5rem, 3vw, 2.2rem);
  --h4:   clamp(1.2rem, 1.8vw, 1.5rem);
  --body: clamp(0.95rem, 1.2vw, 1rem);
  --body-lg: clamp(1.1rem, 1.5vw, 1.25rem);
  --small:0.8rem;
  --eyebrow: 0.75rem;

  /* Spacing */
  --section-pad-y: clamp(5rem, 10vw, 9rem);
  --container-max: 1320px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
  --gap-xl: 4rem;
  --gap-lg: 2.5rem;
  --gap-md: 1.5rem;
  --gap-sm: 0.75rem;

  /* Transitions */
  --ease-editorial: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: var(--ease-editorial);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.3s;
  --dur-mid:  0.6s;
  --dur-slow: 1.2s;

  /* Borders */
  --border-sand: 1px solid var(--sand);
  --radius-sm: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p {
  font-size: var(--body);
  color: var(--stone);
  line-height: 1.75;
  max-width: 60ch;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.eyebrow--light { color: rgba(255,255,255,0.65); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ---------- Section ---------- */
.section { padding-block: var(--section-pad-y); }
.section--dark  { background: var(--charcoal); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--dark .eyebrow { color: var(--sand); }

.section--cream { background: var(--cream); }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest p { color: rgba(255,255,255,0.7); }
.section--forest .eyebrow { color: var(--sand); }

/* ---------- CTA Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1em 2.5em; border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease-smooth);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.btn--primary:hover {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-soft);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #128C7E;
  color: var(--white);
  border: 1px solid #25D366;
}
.btn--whatsapp:hover {
  background: #1eb858;
  border-color: #1eb858;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--ghost-sand {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--sand);
}
.btn--ghost-sand:hover {
  background: var(--sand);
  color: var(--charcoal);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* WhatsApp icon */
.icon-wa::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- HEADER ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-mid) var(--ease-smooth),
              backdrop-filter var(--dur-mid) var(--ease-smooth),
              box-shadow var(--dur-mid) var(--ease-smooth);
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled {
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}
.site-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--dur-fast) var(--ease-smooth);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--dur-fast) var(--ease-smooth);
}
#site-header.scrolled .logo-name { color: var(--charcoal); }
#site-header.scrolled .logo-sub  { color: var(--stone); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--dur-fast) var(--ease-smooth);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: currentColor;
  transition: right var(--dur-fast) var(--ease-smooth);
}
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
#site-header.scrolled .site-nav a { color: var(--charcoal); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.header-actions .btn {
  padding: 0.6em 1.3em;
  font-size: 0.72rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 32px;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all var(--dur-fast) var(--ease-smooth);
  transform-origin: center;
}
#site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* Make the Call button dark when header is scrolled */
#site-header.scrolled:not(.nav-open) .btn--outline-light {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
#site-header.scrolled:not(.nav-open) .btn--outline-light:hover {
  background: var(--charcoal);
  color: var(--white);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-smooth);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

/* When mobile menu is open, override header colors so logo and X remain white on charcoal */
#site-header.nav-open {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
#site-header.nav-open .logo-name,
#site-header.nav-open .logo-sub {
  color: var(--white) !important;
}
#site-header.nav-open .nav-toggle span {
  background: var(--white) !important;
}

.mobile-nav > a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color var(--dur-fast);
  text-decoration: none;
}
.mobile-nav > a:hover { color: var(--sand); }

/* Make sure the buttons in the mobile nav don't get massive padding/margins */
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.mobile-nav-ctas .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}
.mobile-nav-close {
  display: none;
}

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

.hero-media {
  overflow: hidden;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,19,17,0.75) 0%,
    rgba(20,19,17,0.35) 45%,
    rgba(20,19,17,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 8vh, 6rem);
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  color: var(--white);
  max-width: 14ch;
  font-size: var(--h1);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero p {
  color: rgba(255,255,255,0.8);
  max-width: 46ch;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 0;
}
.hero .btn-group { margin-top: 2rem; }

/* Sub-hero bar */
.hero-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(20,19,17,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-bar-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 60px;
  overflow-x: auto;
}
.hero-bar-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-bar-stat span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
}

/* ---------- INTRO SECTION ---------- */
.intro-section {
  text-align: center;
  padding-block: var(--section-pad-y);
}
.intro-section .eyebrow { margin-bottom: 1.2rem; }
.intro-section h2 {
  max-width: 18ch;
  margin-inline: auto;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.intro-section p {
  max-width: 52ch;
  margin-inline: auto;
}
.intro-divider {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin: 2.5rem auto;
}

/* ---------- WHY ETERNAL / SPLIT SECTION ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
}

.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }

.split-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.split-image:hover img { transform: scale(1.03); }

/* Experience split sections: image always matches the text panel height */
@media (min-width: 901px) {
  .split-image--exp {
    aspect-ratio: unset;
    min-height: 460px;
  }
  .split-image--exp img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  background: var(--ivory);
}
.split-content.bg-cream { background: var(--cream); }
.split-content.bg-dark  { background: var(--charcoal); color: var(--white); }
.split-content.bg-dark h2,
.split-content.bg-dark h3 { color: var(--white); }
.split-content.bg-dark p, .destination-section p, .bg-dark p { color: rgba(255,255,255,0.75) !important; }
.split-content.bg-dark .feature-item { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.2); }
.split-content.bg-dark .eyebrow { color: var(--sand); }

.split-content h2 {
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 16ch;
}
.split-content h3 {
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 20ch;
}
.split-content p { margin-bottom: 1.25rem; }

/* Feature Strip */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: var(--border-sand);
  margin-top: 2.5rem;
  padding-top: 2rem;
}
.feature-item {
  padding: 0.6rem 1.2rem 0.6rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border-right: 1px solid var(--sand-light);
  margin-right: 1.2rem;
}
.feature-item:last-child { border-right: none; }

/* ---------- ACCOMMODATION / GALLERY SECTION ---------- */
.accom-section { padding-block: var(--section-pad-y); }
.accom-header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  align-items: start;
  gap: 1.5rem;
}

.accom-grid .img-block {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.accom-grid .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.accom-grid .img-block:hover img { transform: scale(1.03); }

.img-block--large  { grid-column: span 7; aspect-ratio: 4 / 3; }
.img-block--medium { grid-column: span 5; aspect-ratio: 3 / 4; }
.img-block--half   { grid-column: span 6; aspect-ratio: 3 / 2; }
.img-block--third  { grid-column: span 4; aspect-ratio: 1 / 1; }
.img-block--tall   { grid-column: span 5; grid-row: span 2; aspect-ratio: 4 / 5; }
.img-block--wide   { grid-column: span 7; aspect-ratio: 16 / 9; }

.img-block-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(20,19,17,0.65));
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.img-block:hover .img-block-caption { opacity: 1; }

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonial-section { background: var(--cream); padding-block: var(--section-pad-y); }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 800px; margin: 0 auto; }
.testimonial-featured blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); font-style: italic; font-weight: 300; line-height: 1.3; color: var(--charcoal); border: none; padding: 0; margin-bottom: 1.5rem; text-align: center; }
.testimonial-featured .stars { color: #B38E5D; font-size: 1.2rem; margin-bottom: 1rem; text-align: center; letter-spacing: 0.1em; }
.testimonial-meta { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.testimonial-meta .guest-name { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); }
.testimonial-meta .guest-source { font-size: 0.75rem; color: var(--stone); letter-spacing: 0.05em; }
.read-review-link { display: inline-block; margin-top: 0.8rem; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--charcoal); border-bottom: 1px solid var(--charcoal); padding-bottom: 2px; transition: color 0.3s; }
.read-review-link:hover { color: var(--stone); border-color: var(--stone); }
.testimonial-supporting { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1rem; border-top: var(--border-sand); padding-top: 3rem; }
.supp-review blockquote { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--charcoal); border: none; padding: 0; margin-bottom: 1.2rem; font-style: italic; }
.supp-review .stars { color: #B38E5D; font-size: 0.9rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
@media (max-width: 768px) { .testimonial-supporting { grid-template-columns: 1fr; gap: 3rem; } }

/* ---------- AMENITIES EDITORIAL GRID ---------- */
.amenities-editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: var(--border-sand); padding-top: 3rem; }
.amenity-ed-item { display: flex; flex-direction: column; gap: 0.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--sand-light); }
.amenity-ed-item:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 0; }
.amenity-ed-name { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); display: flex; align-items: center; gap: 0.5rem; }
.amenity-ed-name::before { content: ""; display: block; width: 12px; height: 1px; background: var(--stone); }
.amenity-ed-desc { font-size: 0.85rem; color: var(--stone); line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .amenities-editorial-grid { grid-template-columns: repeat(2, 1fr); } .amenity-ed-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--sand-light); padding-bottom: 2rem; } .amenity-ed-item:last-child { border-bottom: none; padding-bottom: 0; } }
@media (max-width: 600px) { .amenities-editorial-grid { grid-template-columns: 1fr; } }

/* ---------- EXPERIENCE SECTION ---------- */
.experience-section { padding-block: var(--section-pad-y); }
.experience-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.exp-card-img {
  position: absolute;
  inset: 0;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.exp-card:hover .exp-card-img img { transform: scale(1.03); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,19,17,0.8) 0%, rgba(20,19,17,0.1) 50%);
}
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
}
.exp-card-content .eyebrow { color: var(--sand); margin-bottom: 0.5rem; }
.exp-card-content h3 { color: var(--white); font-size: clamp(1.3rem, 2vw, 1.7rem); }
.exp-card-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  max-width: 100%;
  margin-top: 0.6rem;
}

/* Placeholder for missing images */
.exp-placeholder {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--stone);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- DESTINATION SECTION ---------- */
.destination-section {
  padding-block: var(--section-pad-y);
  background: var(--charcoal);
  color: var(--white);
}
.destination-header {
  margin-bottom: 3.5rem;
}
.destination-header h2 { color: var(--white); font-weight: 300; max-width: 18ch; }
.destination-places {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.place-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background var(--dur-fast);
}
.place-item:hover { background: rgba(255,255,255,0.05); }
.place-item h3, .place-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.place-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  max-width: 100%;
  line-height: 1.5;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding-block: var(--section-pad-y);
  background: var(--cream);
  text-align: center;
}
.testimonials-section h2 {
  font-weight: 300;
  font-style: italic;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.testimonials-placeholder {
  border: 1px dashed var(--sand);
  padding: 4rem 2rem;
  color: var(--stone);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 600px;
  margin-inline: auto;
}

/* Testimonial Slider */
.testimonials-slider {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
blockquote::before { content: '\201C'; }
blockquote::after  { content: '\201D'; }
.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-light);
  transition: background var(--dur-fast);
  cursor: pointer;
}
.testimonial-dot.active { background: var(--stone); }

/* ---------- FAQ ACCORDION ---------- */
.faq-section { padding-block: var(--section-pad-y); }
.faq-header {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  text-align: center;
}
.faq-list { 
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: var(--border-sand);
}
.faq-item:first-child { border-top: var(--border-sand); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--charcoal);
  cursor: pointer;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--stone); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--stone);
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 3px; transform: translateY(-50%); }
.faq-icon::after  { width: 1px; height: 14px; left: 50%; top: 3px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-mid) var(--ease-out);
}
.faq-answer-inner {
  padding-bottom: 1.4rem;
}
.faq-answer-inner p {
  max-width: 100%;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- LOCATION SECTION ---------- */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  background: var(--ivory);
}
.location-info h2 { font-weight: 300; margin-bottom: 1.2rem; max-width: 16ch; }
.location-info p { max-width: 100%; }
.location-detail {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.location-line {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: var(--stone);
}
.location-label {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 80px;
}
.location-map {
  position: relative;
  min-height: 500px;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- FINAL CTA SECTION ---------- */
.cta-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-section .hero-media {
  overflow: hidden;
  position: absolute;
  inset: 0;
}
.cta-section .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(20,19,17,0.82) 0%,
    rgba(20,19,17,0.6) 100%
  );
}
.cta-section .container { position: relative; z-index: 2; }
.cta-content {
  max-width: 640px;
}
.cta-content h2 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  margin-bottom: 0;
}
.cta-phone {
  color: var(--sand);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-top: 1.5rem;
}

/* ---------- FOOTER ---------- */
#site-footer {
  background: var(--charcoal-soft);
  color: var(--white);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--gap-lg);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.45); }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 1rem;
  max-width: 28ch;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.footer-contact-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.footer-contact-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 300;
}
.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
}

/* ---------- PAGE HERO (non-home) ---------- */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  max-width: 16ch;
  font-style: italic;
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--dur-slow) var(--ease-editorial);
}
.float-wa:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.float-wa svg { width: 26px; height: 26px; fill: white; }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ---------- UTILITY ---------- */
.text-center  { text-align: center; }
.text-light   { color: rgba(255,255,255,0.75); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.divider-sand {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 2rem;
}

/* Wide section heading utility */
.section-heading-block {
  display: flex;
  flex-direction: column;
}

/* Horizontal rule */
.hr-sand {
  border: none;
  border-top: var(--border-sand);
  margin-block: 0;
}

/* Who villa suits list */
.suits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.suits-tag {
  padding: 0.4em 1em;
  border: var(--border-sand);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border-top: var(--border-sand);
  border-left: var(--border-sand);
}
.amenity-item {
  padding: 1.4rem 1.25rem;
  border-right: var(--border-sand);
  border-bottom: var(--border-sand);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact-card {
  padding: 2.5rem 2rem;
  border: var(--border-sand);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.contact-card h3 {
  font-weight: 300;
  font-style: italic;
}
.contact-card .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
}

/* How enquiry works steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}
.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: var(--border-sand);
  counter-increment: steps;
}
.step-item:first-child { border-top: var(--border-sand); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  min-width: 3rem;
}
.step-text h4 { margin-bottom: 0.4rem; }
.step-text p { max-width: 100%; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .destination-places {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section--reverse { direction: ltr; }
  .split-image { aspect-ratio: 16 / 10; min-height: auto; }
  .exp-grid { grid-template-columns: 1fr; gap: 1rem; }
  .location-section { grid-template-columns: 1fr; }
  .location-map { min-height: 380px; }
  .accom-grid { grid-template-columns: 1fr 1fr; }
  .img-block--large, .img-block--medium, .img-block--tall, .img-block--wide, .img-block--half, .img-block--third {
    grid-column: span 2;
  }
  
  .destination-places { grid-template-columns: repeat(2, 1fr); }
  .destination-places .place-item:nth-child(5) { grid-column: span 2; }

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

@media (max-width: 768px) {
  :root { --section-pad-y: clamp(3.5rem, 8vw, 5.5rem); }
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .accom-grid { grid-template-columns: 1fr; }
  .img-block--large, .img-block--medium, .img-block--tall, .img-block--wide, .img-block--half, .img-block--third {
    grid-column: span 1;
    grid-row: span 1;
  }
  .img-block--large, .img-block--wide { aspect-ratio: 4 / 3; }
  .img-block--medium, .img-block--tall { aspect-ratio: 4 / 5; }
  .img-block--half, .img-block--third { aspect-ratio: 1 / 1; }
  
  .destination-places { grid-template-columns: repeat(2, 1fr); }
  .destination-places .place-item:nth-child(5) { grid-column: span 2; }

}


@media (max-width: 480px) {
  .destination-places { grid-template-columns: 1fr; }
  .destination-places .place-item:nth-child(5) { grid-column: span 1; }

  .feature-strip { flex-direction: column; gap: 0.6rem; }
  .feature-item { border-right: none; padding-right: 0; margin-right: 0; }
  .hero-bar { display: none; }
  .suits-list { gap: 0.4rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* AI Artifact Cropping Utility */
img.ai-crop {
  transform: scale(1.06) !important;
  transform-origin: left top !important;
}
.split-image:hover img.ai-crop,
.img-block:hover img.ai-crop,
.exp-card:hover .exp-card-img img.ai-crop {
  transform: scale(1.09) !important;
}
.bg-ai-crop {
  object-position: left top !important;
}


/* Custom Editorial Grid for Index Page */
.accom-editorial-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.5rem;
  align-items: stretch;
}
.accom-editorial-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .accom-editorial-grid {
    grid-template-columns: 1fr;
  }
  .accom-editorial-subgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .accom-editorial-grid > .img-block:last-child {
    aspect-ratio: 4 / 5;
  }
}

/* Hide play button overlay in iOS Low Power Mode for hero videos */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
