/*
Theme Name: Villa Navaho
Theme URI: https://villanavaho.com
Author: Villa Navaho
Author URI: https://villanavaho.com
Description: A sleek, minimalist luxury theme for Villa Navaho — Private Wellness Retreat in Bali
Version: 2.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Tags: luxury, villa, wellness, minimalist
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  /* Brand Colors */
  --primary:        #995638;
  --primary-hover:  #7d4429;
  --primary-light:  #c9a48e;
  --primary-pale:   #f2e8e1;
  --secondary:      #ebdfca;
  --accent1:        #504931;
  --accent1-hover:  #3a341f;
  --accent1-light:  #8a7d5a;
  --accent1-pale:   #f0ece0;
  --accent2:        #ab9977;

  /* Neutrals */
  --sand:   #ddd0b8;
  --stone:  #c8bca8;
  --mid:    #8a7d6a;
  --char:   #3a3730;
  --dark:   #1c1a18;

  /* Legacy aliases kept for footer compatibility */
  --cream:             #ebdfca;
  --terracotta:        #995638;
  --terracotta-hover:  #7d4429;
  --terracotta-light:  #c9a48e;
  --terracotta-pale:   #f2e8e1;
  --cactus:            #504931;
  --cactus-hover:      #3a341f;
  --cactus-light:      #8a7d5a;
  --cactus-pale:       #f0ece0;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-w:  1280px;
  --nav-h:  72px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(28,26,24,0.06);
  --shadow-md: 0 8px 32px rgba(28,26,24,0.10);
  --shadow-lg: 0 20px 60px rgba(28,26,24,0.14);

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Anchor targets clear the fixed nav */
section[id],
div[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.15s ease;
}

body.lang-switching {
  opacity: 0;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, select, textarea { font-family: inherit; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad { padding: var(--space-xl) 0; }

/* =========================================================
   LANGUAGE TOGGLE
   ========================================================= */
html:not(.lang-id) .t-id { display: none !important; }
html.lang-id .t-en { display: none !important; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.28);
  transition: all 0.3s var(--ease);
}

.site-nav.scrolled .lang-toggle {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.28);
}

.lang-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
}

.lang-btn.active {
  background: #fff;
  color: var(--primary);
}

.site-nav.scrolled .lang-btn {
  color: rgba(255,255,255,0.7);
}

.site-nav.scrolled .lang-btn.active {
  background: #fff;
  color: var(--primary);
}

/* =========================================================
   NAVIGATION — HAMBURGER ALWAYS
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  box-shadow: none;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-nav.scrolled {
  background: rgba(125,68,41,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(109,56,28,0.32);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
  gap: var(--space-md);
}

/* Logo SVG */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.logo-svg {
  height: 44px;
  width: auto;
  color: #fff;
  transition: color 0.4s var(--ease);
}

.site-nav.scrolled .logo-svg { color: #fff; }

/* WordPress custom logo sizing */
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

/* Nav right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 7px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: rgba(255,255,255,0.15); }
.site-nav.scrolled .nav-toggle:hover { background: rgba(255,255,255,0.15); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.site-nav.scrolled .nav-toggle span { background: #fff; }

.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); }

/* Book Now pill in top nav */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.2rem;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.nav-book-btn:hover {
  background: var(--primary-pale);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

/* =========================================================
   FULL-SCREEN NAV
   ========================================================= */

/* Overlay no longer needed — nav IS the full screen */
.drawer-overlay { display: none; }

/* ── Full-screen nav container ─────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  background: #2a1108;
  z-index: 300;
  /* Entry: invisible, then fade in */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

/* Grain texture overlay */
.nav-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

/* ── Header row ─────────────────────────────────────────── */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.drawer-logo { color: #fff; opacity: 0.9; }
.drawer-logo .logo-svg { height: 38px; color: #fff; }

.drawer-close {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, transform 0.4s var(--ease-spring);
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
}

.drawer-close:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  transform: rotate(90deg);
}

.drawer-close svg { width: 14px; height: 14px; }

/* ── Panels container ────────────────────────────────────── */
.drawer-panels {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  z-index: 1;
}

.drawer-panel {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* ── Nav items ──────────────────────────────────────────── */
.drawer-nav {
  list-style: none;
  padding: 2.5rem 0 0;
}

/* Items start hidden, slide from right */
.drawer-nav > li {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0s, transform 0s; /* instant reset when closed */
}

/* When drawer is open: items animate in with stagger */
.nav-drawer.open .drawer-nav > li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.nav-drawer.open .drawer-nav > li:nth-child(1) { transition-delay: 0.12s; }
.nav-drawer.open .drawer-nav > li:nth-child(2) { transition-delay: 0.20s; }
.nav-drawer.open .drawer-nav > li:nth-child(3) { transition-delay: 0.28s; }
.nav-drawer.open .drawer-nav > li:nth-child(4) { transition-delay: 0.36s; }
.nav-drawer.open .drawer-nav > li:nth-child(5) { transition-delay: 0.44s; }

/* ── Accordion sub-menu ──────────────────────────────────── */
.sub-menu {
  list-style: none;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.has-sub.expanded .sub-menu {
  max-height: 400px;
}

.sub-menu li a {
  display: flex;
  align-items: center;
  padding: 0.6rem 3rem 0.6rem 4.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.01em;
  transition: color 0.25s, padding-left 0.35s var(--ease-spring);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.sub-menu li a:hover {
  color: rgba(255,255,255,0.8);
  padding-left: 5.2rem;
}

/* Arrow rotates when expanded */
.has-sub.expanded .arrow-icon {
  transform: rotate(90deg);
  opacity: 0.6;
}

/* Item links / buttons */
.drawer-nav a,
.drawer-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 3rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 0.25s, padding-left 0.35s var(--ease-spring);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.drawer-nav a:hover,
.drawer-nav button:hover {
  color: #fff;
  padding-left: 3.8rem;
}

.drawer-nav .arrow-icon {
  width: 22px;
  height: 22px;
  opacity: 0.25;
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition: opacity 0.25s, transform 0.35s var(--ease-spring);
}

.drawer-nav a:hover .arrow-icon,
.drawer-nav button:hover .arrow-icon {
  opacity: 0.7;
  transform: translateX(8px);
}

/* Book Now — accent treatment */
.drawer-nav .book-item a {
  color: var(--primary-light);
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1.2rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.drawer-nav .book-item a:hover {
  color: #fff;
  background: rgba(153,86,56,0.12);
  padding-left: 3.8rem;
}

/* ── Sub panel ──────────────────────────────────────────── */
.drawer-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.8rem 3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s, padding-left 0.3s var(--ease-spring);
  width: 100%;
}

.drawer-back-btn:hover {
  color: rgba(255,255,255,0.75);
  padding-left: 3.5rem;
}

.drawer-back-btn svg { width: 14px; height: 14px; }

.sub-title {
  padding: 2.5rem 3rem 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ── Footer row ─────────────────────────────────────────── */
.drawer-footer {
  padding: 1.4rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Terracotta fallback shown until video/image loads */
  background: linear-gradient(135deg, #995638 0%, #7d4429 35%, #b87050 60%, #7d4429 100%);
}

/* Dark gradient overlay — sits above video/image */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20,14,10,0.28) 0%,
    rgba(20,14,10,0.08) 45%,
    rgba(20,14,10,0.58) 100%
  );
}

/* Subtle film-grain texture — topmost layer */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

/* Video and image fill the bg container */
.hero-video,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero content — centered logo mark */
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: var(--space-lg);
}

/* Uploaded logo image */
.hero-logo,
.hero-logo .custom-logo-link {
  display: block;
  opacity: 0;
  animation: heroFadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-logo img {
  width: clamp(180px, 28vw, 340px);
  height: auto;
  display: block;
}

/* SVG fallback wordmark */
.hero-logo-svg {
  width: clamp(260px, 38vw, 480px);
  height: auto;
  color: #fff;
  opacity: 0;
  animation: heroFadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

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

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: calc(var(--space-xl) + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}

.hero-scroll svg { width: 16px; height: 16px; opacity: 0.6; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   AVAILABILITY BAR
   ========================================================= */
.avail-bar-wrap {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 880px;
  padding: 0 var(--space-md);
  z-index: 10;
}

.avail-bar {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
}

.avail-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  min-width: 0;
}

.avail-field:hover { background: var(--sand); }

.avail-field label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
  pointer-events: none;
}

.avail-field input,
.avail-field select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.85rem;
  color: var(--char);
  font-weight: 400;
  width: 100%;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.avail-field input::placeholder { color: var(--mid); }

.avail-field--promo {
  flex: 0 0 160px;
}
.avail-field--promo input {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  width: 100%;
}

.avail-divider {
  width: 1px;
  background: var(--stone);
  margin: 0.6rem 0;
  flex-shrink: 0;
}

.avail-btn {
  flex-shrink: 0;
  margin: 0.5rem;
  padding: 0 1.8rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.avail-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(153,86,56,0.35);
}

.avail-btn svg { width: 16px; height: 16px; }

/* ── Datepicker: field button ──────────────────────────── */
.dp-field-btn {
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.01em;
  line-height: 1.2;
  pointer-events: none; /* parent .dp-field handles the click */
}

.dp-field-btn.has-date { color: var(--dark); font-weight: 400; }

/* Highlight active field — clipped to rounded bar corners automatically */
.dp-field.dp-active { background: rgba(153,86,56,0.07); }

/* ── Datepicker: calendar popup ────────────────────────── */
/* Calendar lives in .avail-bar-wrap (position:absolute), so we position relative to it */
.dp-calendar {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 300px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(28,26,24,0.16), 0 4px 16px rgba(28,26,24,0.07);
  border: 1px solid var(--sand);
  padding: 1.25rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
  pointer-events: none;
}

.dp-calendar.dp-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.dp-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dp-month-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
}

.dp-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--sand);
  background: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.dp-nav-btn svg { width: 11px; height: 11px; }
.dp-nav-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Day-of-week headers */
.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.dp-day-hdr {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  padding: 0 0 8px;
}

/* Day cells */
.dp-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  background: transparent;
  padding: 0;
  color: var(--dark);
  user-select: none;
}

/* Layer 0 — range/hover pill strip (::after, behind circle) */
.dp-cell::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 0;
  transition: background 0.12s;
}

/* Layer 1 — selection circle (::before, above strip) */
.dp-cell::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s;
  z-index: 1;
}

/* Layer 2 — number (always on top) */
.dp-cell > span {
  position: relative;
  z-index: 2;
  line-height: 1;
}

/* Hover ghost circle */
.dp-cell:not(.dp-past):not(.empty):not(.dp-sel):hover::before {
  background: rgba(153,86,56,0.12);
}

/* Confirmed selected circle */
.dp-cell.dp-sel::before { background: var(--primary); }
.dp-cell.dp-sel > span  { color: #fff; font-weight: 600; }

/* Hover-preview end circle */
.dp-cell.dp-hover-end::before { background: rgba(153,86,56,0.22); }
.dp-cell.dp-hover-end > span  { color: var(--primary); }

/* ── Range strips via ::after ── */

/* Confirmed range: full-width flat strip */
.dp-cell.dp-range::after      { background: var(--primary-pale); }
.dp-cell.dp-range > span      { color: var(--primary); }

/* Hover-preview range: same strip, slightly lighter */
.dp-cell.dp-hover-range::after { background: var(--primary-pale); opacity: 0.55; }

/* Start cell: right-half strip, pill left end */
.dp-cell.dp-start::after,
.dp-cell.dp-hover-start::after {
  left: 50%;
  right: 0;
  background: var(--primary-pale);
  border-radius: 999px 0 0 999px;
}

/* End cell: left-half strip, pill right end */
.dp-cell.dp-end::after,
.dp-cell.dp-hover-end::after {
  left: 0;
  right: 50%;
  background: var(--primary-pale);
  border-radius: 0 999px 999px 0;
}

/* Single-day: no strip needed */
.dp-cell.dp-start.dp-end::after { display: none; }

/* Past / disabled */
.dp-cell.dp-past  { color: var(--stone); cursor: default; pointer-events: none; }
.dp-cell.dp-past::before,
.dp-cell.dp-past::after { background: transparent !important; }

.dp-cell.empty { pointer-events: none; cursor: default; }

/* =========================================================
   INTRO / ABOUT
   ========================================================= */
.intro {
  background: var(--secondary);
  padding: var(--space-xl) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-text .eyebrow { margin-bottom: var(--space-sm); }

.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: var(--space-md);
  max-width: 16ch;
}

.intro-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: var(--space-md);
}

.intro-text p + p { margin-top: 0; }

.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 2px;
  transition: all 0.3s;
}

.intro-link:hover {
  color: var(--primary-hover);
  border-color: var(--primary);
  gap: 12px;
}

.intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1;
}

.intro-img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.intro-img-inner {
  width: 100%;
  height: 100%;
  background-color: #b89060;
  background-image: linear-gradient(135deg, #b89060 0%, #7a6e50 50%, #9a8060 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.intro-img:hover .intro-img-inner { transform: scale(1.04); }

/* Stats strip */
.stats-strip {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  margin-top: var(--space-xl);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  border-right: 1px solid var(--sand);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* =========================================================
   THE EXPERIENCE — Editorial Layout
   ========================================================= */
.retreat-story {
  background: var(--cream);
}

/* Section header */
.exp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.exp-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin: var(--space-xs) 0 var(--space-sm);
  line-height: 1.1;
}

.exp-lead {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

/* Alternating editorial rows */
.exp-moments {
  display: flex;
  flex-direction: column;
}

.exp-moment {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 340px;
}

.exp-moment--reverse {
  grid-template-columns: 42% 58%;
}

/* Push image to right on reverse rows */
.exp-moment--reverse .exp-visual { order: 2; }
.exp-moment--reverse .exp-text   { order: 1; }

/* Image panel */
.exp-visual {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.exp-visual-inner {
  position: absolute;
  inset: 0;
  background: rgba(20,14,10,0.08);
  transition: opacity 0.5s;
}

.exp-moment:hover .exp-visual-inner { opacity: 0; }

/* Subtle zoom on hover */
.exp-visual {
  transition: none;
}
.exp-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
  z-index: -1;
}

/* Text panel */
.exp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3.5vw, 4rem);
  background: var(--cream);
}

.exp-moment--reverse .exp-text {
  background: #faf7f4;
}

.exp-time {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--primary-light);
}

.exp-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.exp-text p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.75;
  max-width: 42ch;
}

/* Closing CTA */
.story-closing {
  text-align: center;
  border-top: 1px solid var(--sand);
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.story-closing p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--primary);
  font-weight: 300;
}

/* =========================================================
   FEATURES / AMENITIES
   ========================================================= */
.features {
  background: var(--primary-pale);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.features-header .eyebrow { color: var(--primary); }

.features-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: var(--space-xs);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.feature-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
}

.feature-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.feature-card:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}

/* Terracotta gradient fallbacks — overridden by inline background-image when photo is uploaded */
.feature-card:nth-child(1) .feature-bg { background-color: #995638; background-image: linear-gradient(160deg, #c9956a 0%, #995638 100%); }
.feature-card:nth-child(2) .feature-bg { background-color: #b07848; background-image: linear-gradient(160deg, #d4aa80 0%, #b07848 100%); }
.feature-card:nth-child(3) .feature-bg { background-color: #8a5030; background-image: linear-gradient(160deg, #b87c58 0%, #8a5030 100%); }
.feature-card:nth-child(4) .feature-bg { background-color: #a86840; background-image: linear-gradient(160deg, #d4a070 0%, #a86840 100%); }
.feature-card:nth-child(5) .feature-bg { background-color: #985030; background-image: linear-gradient(160deg, #c89068 0%, #985030 100%); }

.feature-card:hover .feature-bg { transform: scale(1.06); opacity: 0.85; }

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.85) 0%, transparent 55%);
}

.feature-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.2rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: #fff;
  color: var(--primary-light);
  opacity: 0.9;
}

.feature-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s;
  opacity: 0;
}

.feature-card:hover .feature-desc { max-height: 80px; opacity: 1; }

/* =========================================================
   GALLERY (new filter + grid)
   ========================================================= */
.gallery {
  background: var(--secondary);
  padding: var(--space-xl) 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: var(--space-xs);
}

/* Filter tabs */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--stone);
  color: var(--mid);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-sans);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Gallery grid — 3 columns */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--sand);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item.hidden { display: none; }

/* Image inside card */
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

/* Fallback gradient when image errors */
.gal-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item.img-error .gal-fallback { opacity: 1; }
.gallery-item.img-error img { opacity: 0; }

.gallery-item:nth-child(6n+1) .gal-fallback { background: linear-gradient(135deg, #995638 0%, #7d4429 100%); }
.gallery-item:nth-child(6n+2) .gal-fallback { background: linear-gradient(135deg, #504931 0%, #3a341f 100%); }
.gallery-item:nth-child(6n+3) .gal-fallback { background: linear-gradient(135deg, #ab9977 0%, #8a7d5a 100%); }
.gallery-item:nth-child(6n+4) .gal-fallback { background: linear-gradient(135deg, #7d4429 0%, #504931 100%); }
.gallery-item:nth-child(6n+5) .gal-fallback { background: linear-gradient(135deg, #3a3730 0%, #1c1a18 100%); }
.gallery-item:nth-child(6n+6) .gal-fallback { background: linear-gradient(135deg, #8a7d6a 0%, #504931 100%); }

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.88) 0%, rgba(15,12,10,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gal-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.gal-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.gal-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* =========================================================
   EXPERIENCE STRIP
   ========================================================= */
.experience {
  background: var(--primary-pale);
  padding: var(--space-lg) 0;
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
  align-items: start;
}

.exp-divider {
  background: var(--primary-light);
  height: 80px;
  align-self: center;
}

.exp-item {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.exp-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.exp-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--char);
}

.exp-desc {
  font-size: 0.82rem;
  color: var(--mid);
  margin-top: 6px;
  line-height: 1.6;
}

/* =========================================================
   LOCATION
   ========================================================= */
.location {
  background: var(--primary-hover);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 120%;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-text .eyebrow { color: var(--primary-light); }

.location-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: var(--space-xs) 0 var(--space-md);
}

.location-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: var(--space-sm);
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-md);
}

.location-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
}

.map-pin {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(153,86,56,0.4);
}

.map-pin::after {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}

.map-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   TESTIMONIAL SLIDER
   ========================================================= */
.testimonial {
  background: var(--sand);
  padding: var(--space-xl) 0;
  text-align: center;
}

.testimonial-header {
  margin-bottom: var(--space-lg);
}

.testimonial-header .eyebrow { margin-bottom: var(--space-xs); }

.testimonial-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
}

.testi-slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.testi-track {
  overflow: hidden;
}

.testi-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.testi-slide.active {
  display: block;
  opacity: 1;
}

.testi-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.star { color: var(--primary); font-size: 1rem; }

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  max-width: 36ch;
  margin: 0 auto var(--space-md);
  line-height: 1.4;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Slider controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-md);
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  cursor: pointer;
  background: none;
  transition: all 0.25s var(--ease);
}

.testi-arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.testi-arrow svg { width: 14px; height: 14px; }

.testi-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* =========================================================
   BOOKING SECTION
   ========================================================= */
.booking {
  background: var(--secondary);
  padding: var(--space-xl) 0;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.booking-info .eyebrow { margin-bottom: var(--space-sm); }

.booking-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.booking-info p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}

.price-per {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.06em;
}

.price-note {
  display: block;
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.booking-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--char);
}

.form-field input,
.form-field select {
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: var(--secondary);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-field.full { grid-column: 1 / -1; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  margin-bottom: 12px;
}

.form-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(153,86,56,0.3);
}

.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg { color: var(--accent1); width: 14px; height: 14px; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  color: var(--stone);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}

.form-alt-btn {
  width: 100%;
  padding: 0.9rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--char);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}

.form-alt-btn:hover {
  border-color: var(--accent1);
  color: var(--accent1);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #2a1108;
  padding: var(--space-lg) 0 var(--space-md);
  color: rgba(255,255,255,0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: var(--space-md);
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-link svg { width: 14px; height: 14px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links { display: flex; gap: var(--space-md); }

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* =========================================================
   PAGE TEMPLATES (Villa / Experiences)
   ========================================================= */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,26,24,0.3) 0%, rgba(28,26,24,0.55) 100%),
              linear-gradient(135deg, #995638 0%, #7d4429 50%, #b07050 100%);
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 var(--space-md);
}

.page-hero-content .eyebrow { color: rgba(255,255,255,0.65); }

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  margin: var(--space-xs) 0 var(--space-sm);
}

.page-hero-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  max-width: 48ch;
  margin: 0 auto;
}

/* Page sections */
.page-section {
  padding: var(--space-xl) 0;
}

.page-section:nth-child(even) {
  background: var(--secondary);
}

.page-section:nth-child(odd) {
  background: #fff;
}

.page-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.page-section-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}

.page-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.page-section-img:hover img { transform: scale(1.04); }

.page-section-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.page-section-text .eyebrow { margin-bottom: var(--space-sm); }

.page-section-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.page-section-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  max-width: 46ch;
}

.page-section-text .intro-link { margin-top: var(--space-sm); }

/* =========================================================
   PAGE LOADER
   ========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.loader-logo-svg,
.loader-logo-img {
  width: clamp(140px, 28vw, 220px);
  height: auto;
  color: rgba(255,255,255,0.75);
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}
.loader-logo-img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@keyframes loaderLogoPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.loader-bar {
  width: clamp(100px, 20vw, 160px);
  height: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--primary-light);
  border-radius: 1px;
  animation: loaderBarFill 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes loaderBarFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* =========================================================
   ANIMATIONS & SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Staggered children inside a reveal group */
.reveal-group > *              { transition-delay: 0s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.22s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.32s; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* Body exit transition (page navigation) */
body.page-exit {
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .intro-grid { gap: var(--space-md); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }

  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }

  .nav-book-btn { display: none; }

  .avail-bar {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden; /* clips child hover backgrounds to rounded corners */
  }

  .avail-divider { width: 100%; height: 1px; margin: 0; }
  .avail-field { padding: 0.9rem 1.2rem; }
  .avail-field--promo { flex: 0 0 auto; }
  .avail-btn { margin: 0.5rem; border-radius: var(--radius-md); padding: 0.9rem; justify-content: center; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-visual { display: none; }

  /* Experience section — stack on tablet/mobile */
  .exp-moment,
  .exp-moment--reverse { grid-template-columns: 1fr; min-height: auto; }
  .exp-visual { order: -1; min-height: 200px; }
  .exp-text   { order: 0; padding: 1.2rem var(--space-md); }
  .exp-text h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
  .exp-text p { font-size: 0.84rem; line-height: 1.6; }
  .exp-time { margin-bottom: 0.5rem; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .feature-card:first-child { border-radius: var(--radius-sm) 0 0 0; }
  .feature-card:last-child  { border-radius: 0 0 var(--radius-sm) 0; }

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

  .experience-inner { grid-template-columns: 1fr; }
  .exp-divider { display: none; }
  .exp-item { padding: var(--space-sm) var(--space-md); }

  .location-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; }

  .stats-strip { flex-wrap: nowrap; }
  .stat-item { flex: 1; padding: var(--space-sm) 4px; border-bottom: none; border-right: 1px solid var(--sand); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--sand); }
  .stat-num { font-size: 1.3rem; margin-bottom: 3px; }
  .stat-lbl { font-size: 0.58rem; letter-spacing: 0.08em; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .page-section-grid { grid-template-columns: 1fr; }
  .page-section-grid.reverse { direction: ltr; }

  .testi-slider { padding: 0 var(--space-sm); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-radius: 0 !important; aspect-ratio: 16/7; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-filters { gap: 6px; }
  .filter-btn { font-size: 0.66rem; padding: 0.38rem 0.85rem; }

  /* Datepicker calendar: fill most of the screen width on small phones */
  .dp-calendar {
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
  }
  .dp-calendar.dp-open {
    transform: translateX(-50%) translateY(0);
  }
}

/* =========================================================
   DRAWER LOGO — custom image override
   ========================================================= */
.drawer-custom-logo {
  display: block;
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white logo on dark drawer */
}

/* =========================================================
   INNER PAGES — vp-* system
   (The Villa page · Experiences page)
   ========================================================= */

/* ── Main wrapper ── */
.vp-main {
  padding-top: 0; /* nav is fixed; hero butts up to top */
}

/* ── Inner-page Hero ── */
.vp-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--dark) center/cover no-repeat;
}
.vp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  z-index: 1;
}
.vp-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-xl) var(--space-xl);
  max-width: 900px;
  color: #fff;
}
.vp-hero-content .eyebrow,
.vp-hero-content h1 {
  display: inline-block;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 18px;
}
.vp-hero-content .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: var(--space-sm);
}
.vp-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin: 0;
}
/* scroll hint arrow */
.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-xl);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ── Section layout ── */
.vp-section {
  padding: var(--space-xl) 0;
}
.vp-section--dark {
  background: var(--dark);
  color: #e8ddd0;
}
.vp-section--dark .vp-label { color: var(--primary-light); }
.vp-section--dark .vp-heading { color: #f0e8dc; }
.vp-section--dark p { color: #c8bca8; }
.vp-section--dark .vp-features-list li { color: #b0a090; }
.vp-section--dark .vp-features-list li::before { color: var(--primary-light); }

.vp-section--pale {
  background: var(--primary-pale);
}

.vp-section-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
  max-width: 1400px;
  margin: 0 auto;
}
.vp-section--reverse .vp-section-inner {
  grid-template-columns: 45% 55%;
}
.vp-section--reverse .vp-media { order: 2; }
.vp-section--reverse .vp-text  { order: 1; }

/* ── Media / Photo grid ── */
.vp-media {
  position: relative;
  overflow: hidden;
}
.vp-photos {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
/* 1 photo */
.vp-photos--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
/* 2 photos: left spans full height, right stacked */
.vp-photos--2 {
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr;
  gap: 3px;
}
/* 3 photos: left spans 2 rows, right stacked */
.vp-photos--3 {
  grid-template-columns: 60% 40%;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.vp-photos--3 .vp-photo:first-child {
  grid-row: 1 / 3;
}
.vp-photo {
  background: var(--dark) center/cover no-repeat;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

/* ── Text block ── */
.vp-text {
  padding: clamp(var(--space-lg), 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vp-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.vp-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--dark);
  margin: 0 0 var(--space-md);
}
.vp-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0 0 var(--space-md);
}
.vp-text p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--char);
  margin: 0 0 var(--space-md);
  max-width: 52ch;
}
.vp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vp-features-list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vp-features-list li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Section header (centered, for bedrooms / special occasions) ── */
.vp-section-header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}
.vp-section-header .vp-heading { margin-bottom: var(--space-sm); }
.vp-section-lead {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  margin: var(--space-sm) 0 0;
}

/* ── Bedrooms section ── */
.vp-bedrooms-section {
  background: #faf8f5;
  padding-bottom: 0;
}
.vp-bedrooms-section > .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-lg);
}
.bedroom-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--sand);
  margin-top: var(--space-lg);
}
.bedroom-tab {
  background: none;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  position: relative;
  transition: color .25s;
}
.bedroom-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.bedroom-tab.active {
  color: var(--primary);
}
.bedroom-tab.active::after {
  transform: scaleX(1);
}
.bedroom-tab:hover { color: var(--primary); }

/* ── Bedroom panels ── */
.bedroom-panel {
  display: none;
}
.bedroom-panel.active {
  display: block;
  animation: bedroomFadeIn .35s ease forwards;
}
@keyframes bedroomFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CTA strip ── */
.vp-cta {
  background: var(--dark);
  padding: var(--space-xl) 0;
  text-align: center;
}
.vp-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.vp-cta p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #f0e8dc;
  margin: 0;
  line-height: 1.3;
}
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s, transform .25s;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ── Special occasions grid ── */
.exp-special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.exp-special-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.exp-special-photo {
  aspect-ratio: 4/3;
  background: var(--dark) center/cover no-repeat;
}
.exp-special-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.exp-special-body h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
}
.exp-special-body p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
  flex: 1;
}
.vp-text-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: var(--space-sm);
  transition: color .2s;
}
.vp-text-link:hover { color: var(--primary-hover); }

/* ── Responsive: inner pages ── */
@media (max-width: 900px) {
  .vp-section-inner {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }
  .vp-section--reverse .vp-media { order: 0; }
  .vp-section--reverse .vp-text  { order: 0; }
  .vp-photos {
    min-height: 300px;
  }
  .vp-photos--2,
  .vp-photos--3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 300px;
  }
  .vp-photos--3 .vp-photo:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .vp-text {
    padding: var(--space-lg) var(--space-md);
  }
  .vp-hero-content {
    padding: var(--space-lg) var(--space-md);
  }
  .exp-special-grid {
    grid-template-columns: 1fr;
  }
  .bedroom-tabs {
    overflow-x: unset;
  }
  .bedroom-tab {
    flex: 1;
    padding: 12px 4px;
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  /* ── Bedrooms: fit tabs + image + text in 100vh on mobile ── */
  .vp-bedrooms-section > .container {
    padding-top: var(--space-md);
    padding-bottom: var(--space-sm);
  }
  .vp-bedrooms-section .vp-section-header {
    margin-bottom: var(--space-sm);
  }
  .vp-bedrooms-section .vp-heading {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
  .vp-bedrooms-section .vp-section-lead {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .vp-bedrooms-section .bedroom-tabs {
    margin-top: var(--space-sm);
  }
  .vp-bedrooms-section .vp-photos {
    min-height: 0;
    height: 28vh;
  }
  .vp-bedrooms-section .vp-photos--3 {
    min-height: 0;
  }
  .vp-bedrooms-section .vp-photo {
    min-height: 0;
  }
  .vp-bedrooms-section .vp-text {
    padding: var(--space-sm) var(--space-md);
  }
  .vp-bedrooms-section .vp-subheading {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .vp-bedrooms-section .vp-text p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: var(--space-sm);
  }
  .vp-bedrooms-section .vp-features-list {
    gap: 5px;
  }
  .vp-bedrooms-section .vp-features-list li {
    font-size: 0.78rem;
  }
}

/* =========================================================
   RATES SECTION
   ========================================================= */
.rates-section {
  background: var(--cream);
}

.rates-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.rates-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin: var(--space-xs) 0 0;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.rate-card--main {
  background: var(--dark);
  color: #e8ddd0;
  border-radius: var(--radius-md);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.rate-card-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: var(--space-sm);
}

.rate-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.rate-per {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.rate-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.rate-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
}

.rate-includes li {
  font-size: 0.88rem;
  color: #c8bca8;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.rate-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-size: 0.8rem;
}

.rate-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease);
}

.rate-cta:hover { background: var(--primary-hover); }

.rate-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rate-aside-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--sand);
}

.rate-aside-item h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 var(--space-sm);
}

.rate-aside-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rate-aside-item ul li {
  font-size: 0.86rem;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}

.rate-aside-item ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary-light);
}

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

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section {
  background: #faf8f5;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  margin: var(--space-xs) 0 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-md);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
