/*
Theme Name: Villa NAVAHO
Theme URI: https://navaho-bali.com
Author: Villa Navaho
Author URI: https://navaho-bali.com
Description: A design-led luxury theme for Villa Navaho — a private pool & wellness villa in Bumbak, Bali
Version: 2.1
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 {
  /* The theme is dark clay now — let native controls follow suit */
  color-scheme: light;

  /* ── LIGHT CLAY THEME ───────────────────────────────────
     Warm paper ground, dark clay ink. Terracotta is the accent:
     it carries the bands, the CTAs and the footer, and those
     carry cream text. Three surface levels, deliberately
     distinct — paper, then card, then the fillable field.   */
  --ground:         #f2e6dc;   /* page ground: warm clay paper         */
  --surface:        #fffbf8;   /* cards + feature blocks, a step up    */
  --surface-hi:     #ffffff;   /* inputs and fields — the lightest     */
  --brand:          #b0583c;   /* the terracotta                       */

  --primary:        #874531;   /* accent text + solid fills            */
  --primary-hover:  #6d3727;   /* deeper accent                        */
  --primary-light:  #d9946f;   /* the terracotta, on dark bands        */
  --primary-pale:   #f7ebe2;   /* soft tint for alternating sections   */
  --clay-deep:      #b0583c;   /* terracotta band top (footer, header) */
  --clay-deepest:   #6f3826;   /* terracotta band base                 */
  --clay-deep-rgb:  176,88,60;/* same as --clay-deep, for rgba()      */
  --secondary:      #f2e6dc;   /* legacy alias: the page ground        */
  --accent1:        #6f7a52;   /* sage                                 */
  --accent1-hover:  #59633f;   /* deeper sage                          */
  --accent1-light:  #8b9669;   /* light sage                           */
  --accent1-pale:   #ecefe0;   /* pale sage ground for chips           */
  --accent2:        #5e7c88;   /* dusty Mediterranean sky-blue         */

  /* Ink — dark clay on paper */
  --sand:   #e4d2c6;          /* lines and borders                     */
  --stone:  #d6bcae;          /* quieter lines                         */
  --mid:    #7b5a4a;          /* muted text                            */
  --char:   #4a3126;          /* secondary text                        */
  --dark:   #2b1710;          /* primary text                          */

  /* Legacy aliases kept for footer compatibility */
  --cream:             #fbf5f1;
  --terracotta:        #874531;
  --terracotta-hover:  #6d3727;
  --terracotta-light:  #b0583c;
  --terracotta-pale:   #f7ebe2;
  --cactus:            #6f7a52;
  --cactus-hover:      #59633f;
  --cactus-light:      #8b9669;
  --cactus-pale:       #ecefe0;

  /* Typography — Raleway throughout. One family, so hierarchy comes
     from weight and tracking rather than a second typeface.
     --font-serif kept as a var name so existing rules still resolve.  */
  --font-display: 'Raleway', system-ui, sans-serif;
  --font-serif:   'Raleway', system-ui, sans-serif;
  --font-sans:    'Raleway', 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-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;   /* geometric display reads best slightly tight */
}
h2 { font-weight: 400; }

/* Logo-echo display: all-caps, geometric, for eyebrow-style brand moments */
.display-mark {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

/* ── Ritual spine: indexed section eyebrow ─────────────── */
.eyebrow--indexed {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.eyebrow--indexed.eyebrow--center { justify-content: center; }

.eyebrow-index {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
/* hairline rule trailing the numeral — the spine thread */
.eyebrow-index::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* ── Editorial line-by-line heading reveal ─────────────── */
/* Each line <span> is a block that wipes up via clip-path +   */
/* a small translate. Coexists with the .t-en/.t-id toggle.    */
.line-reveal > span {
  display: block;
  --lr-delay: 0ms;
  transform: translateY(0.5em);
  clip-path: inset(0 0 100% 0);
  transition: transform 1s var(--ease), clip-path 1s var(--ease);
  transition-delay: var(--lr-delay);
  will-change: transform, clip-path;
}
.line-reveal.visible > span,
.reveal.visible.line-reveal > span {
  transform: translateY(0);
  clip-path: inset(-2% 0 -10% 0);   /* slight bleed so descenders/italics aren't clipped */
}
/* stagger lines (counts both languages; inactive ones are display:none so timing stays tight) */
.line-reveal > span:nth-of-type(1) { --lr-delay: 0ms; }
.line-reveal > span:nth-of-type(2) { --lr-delay: 110ms; }
.line-reveal > span:nth-of-type(3) { --lr-delay: 0ms; }   /* id line 1 */
.line-reveal > span:nth-of-type(4) { --lr-delay: 110ms; } /* id line 2 */

/* =========================================================
   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.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.45);
  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: 9px;
  color: rgba(255,255,255,0.85);
  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(var(--clay-deep-rgb), 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(var(--clay-deep-rgb), 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: 22px;          /* single-line wordmark — tighter than the old stacked mark */
  width: auto;
  color: #fff;
  transition: color 0.4s var(--ease);
}

/* Base for the inline brand wordmark (recolours via currentColor) */
.brand-wordmark { display: block; width: auto; }
.brand-logo-img { display: block; width: auto; }

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

/* Pages without a dark hero: dark nav chrome until the rust bar fades in on scroll */
body.nav-on-light .site-nav:not(.scrolled) .logo-svg { color: var(--dark); }
/* The wordmark is a black PNG flipped white by filter; keep its natural black here */
body.nav-on-light .site-nav:not(.scrolled) img.brand-wordmark.logo-svg { filter: none; }
body.nav-on-light .site-nav:not(.scrolled) .nav-toggle span { background: var(--dark); }
body.nav-on-light .site-nav:not(.scrolled) .nav-toggle:hover { background: rgba(42,17,8,0.08); }
body.nav-on-light .site-nav:not(.scrolled) .lang-toggle {
  background: rgba(42,17,8,0.06);
  border-color: rgba(42,17,8,0.18);
}
body.nav-on-light .site-nav:not(.scrolled) .lang-btn { color: var(--mid); }
body.nav-on-light .site-nav:not(.scrolled) .lang-btn.active {
  background: var(--primary);
  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: linear-gradient(160deg, var(--clay-deep) 0%, #6f3826 100%);
  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(179,102,63,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;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero { height: 100svh; min-height: 560px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Terracotta fallback shown until video/image loads */
  background: linear-gradient(135deg, #b0583c 0%, #874531 40%, #d6805c 65%, #8f4428 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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: 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;
}

/* Inline brand wordmark in hero */
.hero-logo-svg {
  width: clamp(170px, 24vw, 300px);
  height: auto;
  color: #fff;
  opacity: 0;
  animation: heroFadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* Hero location line beneath the wordmark */
.hero-sub {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-indent: 0.42em;        /* optical centring for the tracking */
  opacity: 0;
  animation: heroFadeUp 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s 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,
.avail-field .avail-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(179,102,63,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(179,102,63,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(179,102,63,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(179,102,63,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;
}

/* Six cards, three across, two rows — the block keeps its flush hairline gaps */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

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

/* Only the four outer corners of the block are rounded */
.feature-card:nth-child(1) { border-radius: var(--radius-md) 0 0 0; }
.feature-card:nth-child(3) { border-radius: 0 var(--radius-md) 0 0; }
.feature-card:nth-child(4) { border-radius: 0 0 0 var(--radius-md); }
.feature-card:nth-child(6) { border-radius: 0 0 var(--radius-md) 0; }

.feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* The terracotta photography runs hot — pull it back so the band sits quiet */
  filter: brightness(0.88) saturate(0.9);
  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:nth-child(6) .feature-bg { background-color: #8f4428; background-image: linear-gradient(160deg, #c98a68 0%, #8f4428 100%); }

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

/* Deep enough at the base to carry the longer descriptions on hover */
.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,12,10,0.88) 0%, rgba(15,12,10,0.34) 52%, transparent 100%);
}

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

/* 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, #b0583c 0%, #874531 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);
}

/* Touch screens have no hover; keep the caption band on so titles aren't lost */
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    transform: none;
    background: linear-gradient(to top, rgba(15,12,10,0.82) 0%, rgba(15,12,10,0.05) 45%, transparent 100%);
  }
}

.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 {
  /* Clay base #b0583c, lifted top-right and grounded at the base */
  background:
    radial-gradient(80% 100% at 85% 20%, rgba(251,243,236,0.26) 0%, rgba(251,243,236,0) 60%),
    linear-gradient(158deg, #b0583c 0%, #b0583c 42%, #96482f 76%, #713424 100%);
  padding: var(--space-2xl) 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 sits on clay: whole eyebrow (label, numeral, hairline) reads white */
.location-text .eyebrow,
.location-text .eyebrow-index { color: #fff; }

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

/* Live Google Maps preview */
.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Google's default map tiles run cool; nudge them toward the clay palette */
  filter: saturate(0.9) contrast(1.02);
}

.map-open-link {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  box-shadow: 0 4px 14px rgba(42,17,8,0.28);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.map-open-link:hover,
.map-open-link:focus-visible {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.map-open-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

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

/* Desktop: compact 250px review strip */
@media (min-width: 769px) {
  .testimonial {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-sm) 0;
  }
  .testimonial .testimonial-header h2 { display: none; }
  .testimonial-header { margin-bottom: 6px; }
  .testimonial blockquote {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 40ch;
    margin-bottom: 10px;
    font-style: italic;
  }
  .testi-stars { margin-bottom: 6px; }
  .testi-stars .star { font-size: 0.85rem; }
  .testimonial-author { font-size: 0.66rem; }
  .testi-controls { margin-top: 8px; }
}

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

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

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

/* Mobile: back to a single review */
@media (max-width: 768px) {
  .testi-slide { flex-basis: 100%; }
  .testi-slide.active ~ .testi-slide.active { display: none; }
}

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

/* Two reviews visible at once, rotating as a moving window */
.testi-track {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  align-items: stretch;
}

.testi-slide {
  display: none;
  opacity: 0;
  flex: 0 0 calc(50% - var(--space-lg) / 2);
  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);
}

/* FAQ accordion lives in this column — rates own the pricing story */
.booking-faq {
  margin-top: var(--space-md);
}

.booking-faq h3,
.booking-faq h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.booking-faq .faq-item:first-child {
  border-top: 1px solid var(--sand);
}

.booking-faq .faq-question {
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
}

.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;
  color-scheme: light; /* keep the native date-picker matching the clay theme */
}

.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(179,102,63,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 {
  /* Warmer, less black — a deep clay-brown with a soft top gradient for depth */
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(251,245,241,0.14) 0%, rgba(251,245,241,0) 55%),
    linear-gradient(180deg, var(--clay-deep) 0%, #96482f 52%, #6a3122 100%);
  padding: var(--space-xl) 0 var(--space-md);
  color: rgba(247,238,228,0.62);
}

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

/* Footer logo */
.footer-logo {
  display: inline-block;
  color: #f4e9dd;
  margin-bottom: var(--space-sm);
}
.footer-logo-img {
  max-height: 56px;
  width: auto;
  display: block;
}
.footer-logo-svg {
  width: 168px;
  height: auto;
  display: block;
}

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

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

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 34ch;
  margin-bottom: var(--space-md);
  color: rgba(247,238,228,0.58);
}

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

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247,238,228,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,238,228,0.6);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
              background 0.3s var(--ease), transform 0.3s var(--ease);
}

.social-link:hover {
  border-color: var(--primary-light);
  background: rgba(201,164,142,0.12);
  color: #fbf4ec;
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

/* WhatsApp social icon → clay/brown brand on hover */
.social-link--wa:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

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

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(247,238,228,0.58);
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}

.footer-col ul li a:hover {
  color: #fbf4ec;
  padding-left: 4px;
}

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

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

.footer-bottom-links a {
  color: rgba(247,238,228,0.4);
  transition: color 0.25s var(--ease);
}

.footer-bottom-links a:hover { color: rgba(247,238,228,0.75); }

/* =========================================================
   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: linear-gradient(160deg, var(--primary) 0%, var(--clay-deep) 100%);
  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
   ========================================================= */
/* Unified luxury motion — calm, cinematic, transform + opacity only */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease),
              transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Cinematic image entrances — slight scale settle, no parallax */
.intro-img-inner,
.feature-bg,
.vp-photo {
  transition: transform 1.4s var(--ease);
}
.reveal .intro-img-inner,
.gallery-item img {
  transition: transform 1.4s var(--ease), opacity 1.1s var(--ease);
}

/* 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) {
  /* 6 cards stay 3 across, two clean rows — same corners as desktop */
  .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; }

  /* Dates sit on the hero, open, no sheet to summon first */
  .avail-bar-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-sm);
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    z-index: 10;
    padding: 0 16px calc(env(safe-area-inset-bottom));
    visibility: visible;
    background: none;
    box-shadow: none;
  }

  .avail-sheet-head { display: none; }

  .avail-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 6px;
    border-radius: var(--radius-lg);
  }

  .avail-divider { display: block; width: 1px; height: auto; margin: 0.5rem 0; align-self: stretch; background: rgba(43,23,16,0.14); }
  .avail-field--promo { display: none; }
  .avail-field { flex: 1 1 0; min-width: 0; padding: 0.7rem 0.8rem; }
  .avail-label { font-size: 0.62rem; margin-bottom: 3px; }
  .dp-field-btn, .dp-val { font-size: 0.95rem; }
  .avail-field--promo input { font-size: 0.95rem; padding: 4px 0; border: none; background: transparent; }

  .avail-btn {
    flex: 1 0 100%;
    width: 100%;
    margin: 6px 0 0;
    border-radius: calc(var(--radius-lg) - 6px);
    padding: 0.9rem;
    justify-content: center;
    font-size: 0.8rem;
  }

  /* The summon button and its backdrop are no longer needed */
  .avail-trigger,
  .avail-backdrop { display: none !important; }

  /* Calendar opens above the bar, sized to the screen */
  .dp-calendar {
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateY(8px);
    bottom: calc(100% + 8px);
  }
  .dp-calendar.dp-open { transform: translateY(0); }

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

  /* 2-up rows; the 5th card spans the full row so nothing is left hanging */
  /* Two across, three rows */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .feature-card { grid-column: auto; }
  .feature-card:nth-child(1) { border-radius: var(--radius-sm) 0 0 0; }
  .feature-card:nth-child(2) { border-radius: 0 var(--radius-sm) 0 0; }
  .feature-card:nth-child(3),
  .feature-card:nth-child(4) { border-radius: 0; }
  .feature-card:nth-child(5) { border-radius: 0 0 0 var(--radius-sm); }
  .feature-card:nth-child(6) { 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; }
  /* Datepicker: full screen width, opening upward over the hero.
     It used to open downward for the old bottom sheet; the bar sits
     at the foot of the hero now, so down pushes it off the section. */
  .dp-calendar {
    left: 16px;
    right: 16px;
    width: auto;
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateY(8px);
  }
  .dp-calendar.dp-open {
    transform: 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(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 6px 18px;
}
.vp-hero-content h1 { border-radius: 22px; padding: 10px 26px; }
.vp-hero-content .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
  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-text p sets --char later in the sheet; extra specificity keeps dark sections readable */
.vp-section--dark .vp-text 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);
    max-width: 100%;
    box-sizing: border-box;
  }
  .vp-hero-content h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }
  .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 — light, editorial, two-package ready
   ========================================================= */
.rates-section {
  /* Soft warm paper, not flat cream — gives the section air */
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(242,232,225,0.7) 0%, rgba(242,232,225,0) 70%),
    #f7f2ec;
}

.rates-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.rates-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin: var(--space-xs) 0 0;
}

.rates-lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--mid);
  margin-top: var(--space-sm);
}

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

/* ── Package cards ─────────────────────────────────────── */
.rate-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.rate-pkg {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(42,17,8,0.03);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.rate-pkg--featured {
  border-color: var(--primary-light);
  box-shadow: 0 18px 50px -28px rgba(179,102,63,0.45);
}

.rate-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -30px rgba(179,102,63,0.5);
}

.rate-pkg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.rate-pkg-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
}

.rate-pkg-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  white-space: nowrap;
}

.rate-pkg-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 8px;
}

/* Original rate, struck through */
.rate-pkg-was {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--mid);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.rate-pkg-amount {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--primary-hover);
}

.rate-pkg-per {
  font-size: 0.85rem;
  color: var(--mid);
}

/* Discount badge under the price */
.rate-pkg-save {
  display: inline-block;
  align-self: flex-start; /* don't stretch in the flex-column card */
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-pale);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.rate-pkg-note {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--mid);
  margin-bottom: var(--space-md);
}

.rate-pkg-list {
  list-style: none;
  padding: var(--space-md) 0 0;
  margin: 0 0 var(--space-md);
  border-top: 1px solid var(--primary-pale);
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.rate-pkg-list li {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--char);
  padding-left: 22px;
  position: relative;
}

.rate-pkg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-light);
}

.rate-pkg-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.rate-pkg-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }
.rate-pkg-cta:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ── Side: add-ons + booking ───────────────────────────── */
.rate-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rate-side-block {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: var(--space-md) clamp(1.2rem, 2.5vw, 1.8rem);
}

.rate-side-block--quiet {
  background: transparent;
  border-style: solid;
  border-color: var(--primary-pale);
}

.rate-side-block h3,
.rate-side-block h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 var(--space-sm);
}

.rate-addons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rate-addons li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--primary-pale);
}
.rate-addons li:last-child { border-bottom: none; }

.ra-name {
  font-size: 0.86rem;
  color: var(--char);
}

.ra-meta {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

.rate-terms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.rate-terms li {
  font-size: 0.82rem;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

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

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

@media (max-width: 560px) {
  .rate-packages { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ ACCORDION (booking section)
   ========================================================= */
.faq-list {
  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: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

/* Padding sits on the collapsing element — a fixed padding would hold the
   0fr row open by ~42px and leak a clipped line of the answer */
.faq-answer > p {
  overflow: hidden;
  padding: 0;
  transition: padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer.open > p {
  padding: 0.6rem 0 var(--space-md);
}

.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: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(179,102,63,0.36), 0 2px 6px rgba(42,17,8,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
  color: #fff;
}

/* Held back by JS while the hero booking bar owns the bottom-right corner */
.whatsapp-float.wa-held {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.whatsapp-float:hover {
  transform: scale(1.06) translateY(-1px);
  background: var(--primary-hover);
  box-shadow: 0 10px 30px rgba(179,102,63,0.45), 0 3px 8px rgba(42,17,8,0.22);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

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

/* No-JS fallback: if JS never runs, reveal elements stay visible */
.no-js .reveal {
  opacity: 1;
  transform: none;
}
.no-js .line-reveal > span {
  transform: none;
  clip-path: none;
}

/* =========================================================
   RESPONSIVE REFINEMENTS — redesigned sections
   (location · rates · footer · small-phone polish)
   ========================================================= */

/* ── Tablet & below ───────────────────────────────────── */
@media (max-width: 900px) {
  /* Location: dial back the very large vertical padding */
  .location { padding: var(--space-xl) 0; }
  .location-grid { gap: var(--space-md); }
  .location-text p { max-width: none; }
  .location-map { aspect-ratio: 16/10; }

  /* Rates: side column sits below the packages, give it breathing room */
  .rate-side { flex-direction: row; flex-wrap: wrap; gap: var(--space-md); }
  .rate-side-block { flex: 1 1 280px; }
}

/* ── Phone ────────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Slightly tighter gutters so content isn't cramped at the edges */
  .container { padding: 0 1.25rem; }

  /* Hero wordmark + scaling */
  .hero-logo-svg { width: clamp(170px, 56vw, 240px); }

  /* Stats strip: 2×2 grid reads better than 4-across on a phone */
  .stats-strip { flex-wrap: wrap; }
  .stats-strip .stat-item {
    flex: 1 1 46%;
    border-right: none !important;
    border-bottom: 1px solid var(--sand);
    padding: var(--space-sm) 4px;
  }
  .stats-strip .stat-item:nth-child(odd)  { border-right: 1px solid var(--sand) !important; }
  .stats-strip .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Location */
  .location { padding: var(--space-lg) 0; }
  .location-text h2 {
    font-size: clamp(1.5rem, 6.4vw, 2rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  .location-tags { gap: 6px; }
  .location-tag { font-size: 0.66rem; padding: 0.35rem 0.75rem; }

  /* Rates: single column, comfortable sizing */
  .rates-header { margin-bottom: var(--space-lg); }
  .rate-packages { grid-template-columns: 1fr; }
  .rate-side { flex-direction: column; }
  .rate-side-block { flex: 1 1 auto; }
  .rate-pkg { padding: 1.6rem 1.4rem; border-radius: var(--radius-md); }
  .rate-pkg-name { font-size: 1.3rem; }
  .rate-pkg-amount { font-size: 2.1rem; }
  .rate-addons li { padding: 10px 0; }

  /* Footer: center the brand block, balance the logo */
  .footer-logo-svg { width: 150px; }
  .footer-tagline { max-width: none; }
}

/* ── Very small phones ────────────────────────────────── */
@media (max-width: 380px) {
  .rate-pkg-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .rate-addons li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .ra-meta { font-size: 0.66rem; }
  .hero-logo-svg { width: 62vw; }
}

/* Honour reduced-motion: disable reveal transforms for those who ask */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .intro-img-inner,
  .feature-bg,
  .vp-photo,
  .gallery-item img {
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .line-reveal > span { transform: none !important; clip-path: none !important; transition: none !important; }
  .whatsapp-float,
  .rate-pkg { transition: none !important; }
}


/* =========================================================
   BRAND PNG WORDMARK — VILLA NAVAHO
   Source art is black on transparent; every placement sits
   on a dark surface, so flip it white here.
   ========================================================= */
img.brand-wordmark {
  filter: brightness(0) invert(1);
}
img.brand-wordmark.logo-svg {
  height: 40px; /* stacked mark needs more room than the old single line */
}
.drawer-logo img.brand-wordmark { height: 52px; }

/* =========================================================
   SKIP LINK — first tab stop, visible only on focus
   ========================================================= */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 600;
  padding: 10px 18px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Shared focus ring for everything interactive */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* =========================================================
   AVAILABILITY BAR — missing-date attention state
   ========================================================= */
@keyframes dpNudge {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(4px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(2px); }
}
.dp-field.dp-missing { animation: dpNudge 0.45s var(--ease); }
.dp-field.dp-missing .dp-field-btn .dp-val { color: var(--primary); }
@media (prefers-reduced-motion: reduce) {
  .dp-field.dp-missing { animation: none; }
}

/* =========================================================
   LEGAL PAGES — privacy / terms / cookies
   ========================================================= */
.legal-hero {
  background: var(--secondary);
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-lg);
}
.legal-back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: var(--space-md);
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.legal-back svg { width: 14px; height: 14px; }
.legal-back:hover,
.legal-back:focus-visible { color: var(--primary); gap: 10px; }

.legal-hero .eyebrow { color: var(--primary); }
.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--dark);
  margin-top: var(--space-xs);
}
.legal-body { padding: var(--space-xl) 0 var(--space-2xl); }
.legal-container { max-width: 68ch; }
.legal-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--char);
  margin-bottom: var(--space-lg);
}
.legal-body h2 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: var(--space-lg) 0 var(--space-xs);
  letter-spacing: 0.01em;
}
.legal-body p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 0.9em;
}
.legal-updated {
  margin-top: var(--space-xl);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
}

/* =========================================================
   404 PAGE
   ========================================================= */
.error-hero { height: 86vh; align-items: center; }
/* Rust eyebrow disappears against the photo backdrop */
.error-hero .eyebrow { color: rgba(240,232,220,0.9); }
.error-hero-content {
  width: 100%;
  text-align: center;
  padding-bottom: 0;
}
.error-lead {
  max-width: 46ch;
  margin: var(--space-sm) auto 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
}
.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =========================================================
   MOBILE PACING PASS
   Each home section fills one phone screen; content is cut
   down to fit rather than letting sections sprawl.
   ========================================================= */
@media (max-width: 768px) {

  /* Trimmed vertical rhythm on phones — sections size to content, not the viewport */
  .intro,
  .features,
  .gallery,
  .location,
  .rates-section,
  .booking,
  .testimonial {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  /* Ritual: six compact cards, two per row */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .feature-card {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
  }
  .feature-card:last-child {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
  .feature-name { font-size: 1rem; }
  .feature-desc { display: none; }
  .feature-icon { width: 26px; height: 26px; }

  /* Gallery: 2 x 3 grid of small tiles */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item {
    aspect-ratio: 4 / 5;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-overlay { padding: 0.7rem; }
  .gal-title { font-size: 0.82rem; }
  .gal-desc, .gal-cat { display: none; }

  /* Reviews: tighter quote block */
  .testimonial-header { margin-bottom: var(--space-sm); }
  .testi-slide blockquote { font-size: 1.02rem; line-height: 1.6; }
  .testi-controls { margin-top: var(--space-sm); }

  /* Booking: pull the paddings in */
  .booking-inner { gap: var(--space-md); }
  .booking-info h2 { margin-bottom: var(--space-sm); }
  .booking-form-card { padding: var(--space-md); }
  .booking-faq { margin-top: var(--space-sm); }

  /* Footer nav: brand on its own row, then three columns side by side */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col a, .footer-col li { font-size: 0.74rem; }
  .footer-col h4 { font-size: 0.62rem; }
}

/* =========================================================
   STAFF — chef + concierge, a compact 180px strip
   ========================================================= */
.staff {
  background: var(--secondary);
  padding: var(--space-md) 0;
}

.staff .container { width: 100%; }

.staff-head {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

.staff-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 980px;
  margin: 0 auto;
}

.staff-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 1px 2px rgba(42,17,8,0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.staff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -18px rgba(42,17,8,0.4);
}

.staff-photo {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--primary-pale);
}

.staff-role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.staff-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--mid);
  margin: 0;
}

@media (max-width: 768px) {
  /* Two stacked rows fit the 180px strip on phones */
  .staff { min-height: 0; padding: var(--space-md) 0; }
  .staff-cards { grid-template-columns: 1fr; gap: 10px; }
  .staff-card { padding: 10px 12px; gap: 12px; }
  .staff-photo { width: 54px; height: 54px; }
  .staff-role { font-size: 0.62rem; margin-bottom: 3px; }
  .staff-desc { font-size: 0.76rem; line-height: 1.45; }
}

/* Footer contact row sits above the bottom rule */
.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: var(--space-md) 0;
}

.footer-contact-row a {
  font-size: 0.86rem;
  color: rgba(247,238,228,0.85);
  transition: color 0.25s var(--ease);
}

.footer-contact-row a:hover,
.footer-contact-row a:focus-visible {
  color: #fff;
}

@media (max-width: 480px) {
  .footer-contact-row { flex-direction: column; gap: 8px; }
}

/* Parent group credit, above the copyright rule */
.footer-group {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,238,228,0.55);
  padding-bottom: var(--space-md);
}

/* =========================================================
   LANGUAGE-SWITCH LOADING SCREEN
   ========================================================= */
.lang-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: linear-gradient(160deg, var(--primary) 0%, var(--clay-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.lang-loader.show {
  opacity: 1;
  visibility: visible;
}

.lang-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.lang-loader-logo {
  width: clamp(150px, 40vw, 220px);
  height: auto;
  filter: brightness(0) invert(1); /* black source art flipped white */
  opacity: 0.96;
}

.lang-loader-dots {
  display: inline-flex;
  gap: 7px;
}

.lang-loader-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  animation: langDot 1s infinite ease-in-out both;
}

.lang-loader-dots span:nth-child(1) { animation-delay: -0.32s; }
.lang-loader-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes langDot {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1;   }
}

/* =========================================================
   BREADCRUMBS — slim trail under the hero
   ========================================================= */
.breadcrumbs {
  background: var(--secondary);
  border-bottom: 1px solid rgba(42,17,8,0.06);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 14px 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs a,
.breadcrumbs .crumb-current {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--mid);
  transition: color 0.25s var(--ease);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: var(--primary); }

.breadcrumbs .crumb-current { color: var(--primary); }

.breadcrumbs .crumb-sep {
  color: var(--stone);
  font-size: 0.7rem;
}

/* =========================================================
   FOOTER — all text white for legibility on the clay
   ========================================================= */
.footer-brand-sub,
.footer-tagline,
.footer-col h4,
.footer-col ul li a,
.footer-contact-row a,
.footer-group,
.footer-bottom,
.footer-bottom-links a {
  color: #fff;
}

/* Slight step-down only where hierarchy needs it, still clearly white */
.footer-tagline,
.footer-brand-sub { color: rgba(255,255,255,0.82); }

.footer-col ul li a,
.footer-contact-row a,
.footer-bottom-links a { color: rgba(255,255,255,0.88); }

.footer-col ul li a:hover,
.footer-col ul li a:focus-visible,
.footer-contact-row a:hover,
.footer-contact-row a:focus-visible,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible { color: #fff; }

/* =========================================================
   AVAILABILITY POPUP (mobile only)
   ========================================================= */
/* Trigger + sheet chrome are desktop-hidden; the inline bar shows there */
.avail-trigger,
.avail-sheet-head,
.avail-backdrop { display: none; }

@media (max-width: 768px) {
  .avail-trigger {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 8px 26px rgba(179,102,63,0.4), 0 2px 6px rgba(42,17,8,0.2);
    transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  }
  .avail-trigger:hover,
  .avail-trigger:focus-visible { background: var(--primary-hover); }
  .avail-trigger:active { transform: translateX(-50%) scale(0.98); }
  .avail-trigger svg { width: 15px; height: 15px; }

  /* Backdrop behind the sheet */
  .avail-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1150;
    background: rgba(20,10,5,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  body.avail-open .avail-backdrop { opacity: 1; visibility: visible; }

  /* Sheet header belongs to the old popup flow — dates are inline now */
  .avail-sheet-head { display: none; }
  .avail-sheet-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--dark);
  }
  .avail-sheet-close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--char);
    border: none;
    cursor: pointer;
  }
  .avail-sheet-close svg { width: 13px; height: 13px; }

  /* Inside the sheet the calendar becomes a centered overlay so it's never
     clipped off the bottom of the screen */
  body.avail-open .dp-calendar {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 50%;
    bottom: auto;
    width: auto;
    transform: translateY(-46%);
    z-index: 1300;
  }
  body.avail-open .dp-calendar.dp-open {
    transform: translateY(-50%);
  }
}


/* =========================================================
   THE WELLNESS MENU — add-on dialog + its triggers
   A printed spa-menu in a dialog: name, leader dots, a mark
   on the right. Selection rides along with the enquiry.
   ========================================================= */

/* ── Triggers ──────────────────────────────────────────── */
.om-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: none;
  border: 1px solid var(--primary);
  border-radius: 2px;
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.om-trigger svg { width: 15px; height: 15px; flex: none; }
.om-trigger:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.om-trigger:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.om-trigger:active { transform: translateY(0); }

/* Inside the add-ons box: a quiet full-width row under the list */
.om-trigger--quiet {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
  border-color: var(--sand);
  border-style: dashed;
  color: var(--primary);
}
.om-trigger--quiet:hover { border-style: solid; border-color: var(--primary); }

/* Inside the booking form */
.om-trigger--block { width: 100%; justify-content: center; }

/* ── Chips in the booking form ─────────────────────────── */
.booking-extras { margin: var(--space-sm) 0 var(--space-xs); }

.be-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.be-chips:not(:empty) { margin-top: 10px; }

.be-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 6px 11px;
  background: var(--accent1-pale);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--accent1-hover);
}
.be-chips button {
  display: inline-flex;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity .2s;
}
.be-chips button svg { width: 9px; height: 9px; }
.be-chips button:hover { opacity: 1; }
.be-chips button:focus-visible { outline: 2px solid var(--accent1); outline-offset: 2px; border-radius: 2px; }

/* ── Dialog shell ──────────────────────────────────────── */
.om-scrim {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(36, 26, 21, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
body.om-open .om-scrim { opacity: 1; }

/* display:flex below would beat the UA [hidden] rule, so opt out explicitly */
.om[hidden],
.om-scrim[hidden] { display: none; }

.om {
  position: fixed;
  inset: 0;
  z-index: 901;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-sm);
  pointer-events: none;
}
body.om-open .om { pointer-events: auto; }

.om-panel {
  display: flex;
  flex-direction: column;
  width: min(880px, 100%);
  max-height: min(760px, 88vh);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity .32s var(--ease), transform .42s var(--ease-spring);
}
body.om-open .om-panel { opacity: 1; transform: translateY(0) scale(1); }

/* ── Head ──────────────────────────────────────────────── */
.om-head {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2.2rem) var(--space-sm);
  border-bottom: 1px solid var(--primary-pale);
}
.om-head-text { flex: 1; min-width: 0; }

.om-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.om-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--dark);
}
.om-lead {
  margin-top: 10px;
  max-width: 52ch;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--mid);
}

.om-close {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--primary-pale);
  border: 0;
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.om-close svg { width: 12px; height: 12px; }
.om-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
.om-close:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ── Tabs ──────────────────────────────────────────────── */
.om-tabs {
  display: flex;
  gap: 2px;
  padding: 0 clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--primary-pale);
  overflow-x: auto;
  scrollbar-width: none;
}
.om-tabs::-webkit-scrollbar { display: none; }

.om-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 14px 16px;
  background: none;
  border: 0;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--mid);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.om-tab::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 2px;
  background: var(--primary);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity .25s var(--ease), transform .3s var(--ease);
}
.om-tab:hover { color: var(--char); }
.om-tab.active { color: var(--primary); }
.om-tab.active::after { opacity: 1; transform: scaleX(1); }
.om-tab:focus-visible { outline: 2px solid var(--primary); outline-offset: -4px; }

.om-tab-n {
  display: inline-grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary-pale);
  font-size: 0.6rem;
  letter-spacing: 0;
  color: var(--primary);
}
.om-tab.active .om-tab-n { background: var(--primary); color: #fff; }

/* ── Body ──────────────────────────────────────────────── */
.om-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xs) clamp(1.4rem, 3vw, 2.2rem) var(--space-sm);
  -webkit-overflow-scrolling: touch;
}

.om-cat { display: none; }
.om-cat.active { display: block; }

.om-list { list-style: none; padding: 0; margin: 0; }
.om-list > li + li { border-top: 1px solid var(--primary-pale); }

/* The row reads like a printed menu line: name, leader, mark */
.om-row {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: opacity .2s var(--ease);
}
.om-row:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; border-radius: var(--radius-sm); }

.om-row-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.om-name {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--dark);
  transition: color .2s var(--ease);
}
.om-row:hover .om-name { color: var(--primary); }

.om-leader {
  flex: 1;
  height: 1px;
  min-width: 20px;
  background-image: linear-gradient(to right, var(--stone) 0 2px, transparent 2px 6px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: 0.75;
}

.om-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .3s var(--ease-spring);
}
.om-mark svg { width: 12px; height: 12px; }
.om-row:hover .om-mark { border-color: var(--primary); }

.om-desc {
  display: block;
  margin-top: 7px;
  max-width: 68ch;
  padding-right: 36px;
  font-size: 0.79rem;
  line-height: 1.7;
  color: var(--mid);
}
.om-desc em { font-style: italic; }

/* Selected: sage, so it never reads as the clay accent used everywhere else */
.om-row[aria-pressed="true"] .om-mark {
  background: var(--accent1);
  border-color: var(--accent1);
  color: #fff;
  transform: scale(1.06);
}
.om-row[aria-pressed="true"] .om-name { color: var(--accent1-hover); }
.om-row[aria-pressed="true"] .om-leader { opacity: 0.35; }

/* ── Foot ──────────────────────────────────────────────── */
.om-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) clamp(1.4rem, 3vw, 2.2rem);
  border-top: 1px solid var(--primary-pale);
  background: var(--primary-pale);
}
.om-count {
  font-size: 0.75rem;
  color: var(--mid);
}
.om-count strong { color: var(--primary); font-weight: 600; }

.om-foot-actions { display: flex; align-items: center; gap: 14px; }

.om-clear {
  padding: 0;
  background: none;
  border: 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color .2s;
}
.om-clear:hover { color: var(--char); }
.om-clear:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

.om-apply {
  padding: 13px 30px;
  background: var(--primary);
  border: 0;
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.om-apply:hover { background: var(--primary-hover); transform: translateY(-2px); }
.om-apply:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.om-apply:active { transform: translateY(0); }

/* ── Experiences page: the category band ───────────────── */
.exp-menu {
  background: var(--secondary);
  padding: var(--space-xl) 0;
}
.exp-menu-inner { text-align: center; }
.exp-menu-lead {
  max-width: 56ch;
  margin: var(--space-xs) auto 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--mid);
}

.exp-menu-cats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  padding: 0;
  margin: var(--space-md) 0 0;
}

.exp-menu-cat {
  display: block;
  width: 100%;
  height: 100%;
  padding: var(--space-md) var(--space-sm);
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .25s var(--ease);
}
.exp-menu-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.exp-menu-cat:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.exp-menu-cat:active { transform: translateY(-1px); }

.emc-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--primary-light);
}
.emc-t {
  display: block;
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--dark);
}
.emc-s {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--mid);
}

/* A trigger that has to sit inline with body copy */
.vp-text-link--btn {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 860px) {
  .exp-menu-cats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Full-height sheet on phones — the list is long */
  .om { padding: 0; }
  .om-panel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(24px);
  }
  body.om-open .om-panel { transform: translateY(0); }
  .om-lead { display: none; }
  .om-name { font-size: 0.95rem; }
  .om-desc { font-size: 0.76rem; padding-right: 0; }
  .om-foot { flex-direction: column; align-items: stretch; gap: 10px; }
  .om-count { text-align: center; }
  .om-foot-actions { flex-direction: column-reverse; align-items: stretch; gap: 8px; }
  .om-apply { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .om-scrim,
  .om-panel,
  .om-mark,
  .om-tab::after,
  .exp-menu-cat,
  .om-trigger,
  .om-apply { transition: none !important; }
  .om-panel { transform: none !important; }
  .om-close:hover { transform: none; }
  .om-trigger:hover,
  .om-apply:hover,
  .exp-menu-cat:hover { transform: none; }
}






/* =========================================================
   LIGHT CLAY — surfaces, fields, and the terracotta bands
   Three levels, kept visibly apart:
     paper  #f2e6dc  → the page
     card   #fffbf8  → features, panels, anything raised
     field  #ffffff  → inputs, the lightest thing on screen
   ========================================================= */

/* ── Cards and feature blocks ──────────────────────────── */
.booking-form-card,
.rate-side-block,
.staff-card,
.exp-special-card,
.exp-menu-cat,
.om-panel,
.dp-calendar,
.page-section:nth-child(odd) {
  background: var(--surface);
  border: 1px solid var(--sand);
  box-shadow: 0 1px 2px rgba(43,19,8,.04), 0 10px 28px rgba(43,19,8,.07);
}
.rate-side-block--quiet {
  background: var(--primary-pale);
  border-color: var(--stone);
  box-shadow: none;
}
.om-panel { box-shadow: 0 30px 80px rgba(43,19,8,.26); }

/* Alternating tints so sections read as separate blocks */
.features      { background: var(--primary-pale); }
.testimonial   { background: var(--primary-pale); }
.vp-section--pale { background: var(--primary-pale); }
.vp-bedrooms-section { background: var(--primary-pale); }
.exp-text      { background: var(--surface); }
.exp-moment--reverse .exp-text { background: var(--primary-pale); }
.exp-menu      { background: var(--primary-pale); }
.rates-section {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(255,250,247,.85) 0%, rgba(255,250,247,0) 70%),
    var(--ground);
}

/* ── Fillable fields: the lightest surface on the page ─── */
.form-field input,
.form-field select {
  background: var(--surface-hi);
  border: 1.5px solid var(--stone);
  color: var(--dark);
  box-shadow: inset 0 1px 2px rgba(43,19,8,.05);
}
.form-field input:focus,
.form-field select:focus {
  background: var(--surface-hi);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(208,126,86,.22);
}
.form-field input::placeholder { color: var(--mid); opacity: .65; }
.form-field select option { background: var(--surface-hi); color: var(--dark); }
.form-field label { color: var(--char); }

.avail-bar {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--sand);
  box-shadow: 0 18px 50px rgba(43,19,8,.18);
}
.avail-field { background: transparent; }
.avail-field:hover { background: var(--primary-pale); }
.avail-field .avail-label { color: var(--mid); }
.avail-field input,
.avail-field select { background: transparent; color: var(--dark); }
.avail-divider { background: var(--sand); }
.avail-trigger { background: rgba(255,255,255,.96); border-color: var(--sand); color: var(--dark); }
.avail-sheet-head { border-color: var(--sand); }
.avail-sheet-title { color: var(--dark); }
.avail-sheet-close { background: var(--primary-pale); color: var(--primary); }
.dp-field-btn { color: var(--mid); }
.dp-field-btn.has-date { color: var(--dark); }

.dp-calendar { box-shadow: 0 24px 64px rgba(43,19,8,.20); }
.dp-month-label { color: var(--dark); }
.dp-nav-btn { border-color: var(--sand); color: var(--primary); }
.dp-nav-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--cream); }
.dp-cell > span { color: var(--char); }
.dp-cell:not(.dp-past):not(.empty):not(.dp-sel):hover::before { background: var(--primary-pale); }
.dp-cell.dp-sel::before { background: var(--primary); }
.dp-cell.dp-sel > span { color: var(--cream); }
.dp-cell.dp-range::after,
.dp-cell.dp-hover-range::after { background: var(--primary-pale); }
.dp-cell.dp-range > span { color: var(--primary); }
.dp-cell.dp-hover-end::before { background: rgba(208,126,86,.25); }
.dp-cell.dp-hover-end > span { color: var(--dark); }
.dp-cell.dp-past > span { color: rgba(43,19,8,.28); }

/* ── Terracotta bands: light text belongs here ─────────── */
.vp-section--dark {
  background: linear-gradient(158deg, var(--clay-deep) 0%, #b0583c 38%, #6f3826 100%);
  color: var(--cream);
}
.vp-section--dark .vp-heading { color: var(--cream); }
.vp-section--dark .vp-text p { color: rgba(253,247,242,.86); }
.vp-section--dark .vp-features-list li { color: rgba(253,247,242,.82); }
.vp-section--dark .vp-label,
.vp-section--dark .vp-features-list li::before { color: #f0c9b2; }

.vp-cta {
  background: linear-gradient(158deg, var(--clay-deep) 0%, #b0583c 38%, #6f3826 100%);
  color: var(--cream);
}
.vp-cta p { color: var(--cream); }

.rate-pkg.rate-pkg--featured {
  background: linear-gradient(163deg, var(--brand) 0%, var(--brand) 34%, #8a4229 100%);
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(154,81,48,.28);
}
.rate-pkg.rate-pkg--featured .rate-pkg-name,
.rate-pkg.rate-pkg--featured .rate-pkg-amount,
.rate-pkg.rate-pkg--featured .rate-pkg-list li { color: var(--cream); }
.rate-pkg.rate-pkg--featured .rate-pkg-note,
.rate-pkg.rate-pkg--featured .rate-pkg-per,
.rate-pkg.rate-pkg--featured .rate-pkg-was { color: rgba(253,247,242,.8); }
.rate-pkg.rate-pkg.rate-pkg--featured .rate-pkg-list li::before { color: #f0c9b2; }
.rate-pkg.rate-pkg--featured .rate-pkg-tag { background: rgba(253,247,242,.2); color: var(--cream); }
.rate-pkg.rate-pkg--featured .rate-pkg-save { background: rgba(43,19,8,.24); color: var(--cream); }
.rate-pkg.rate-pkg--featured .rate-pkg-cta { background: var(--cream); color: var(--primary); }
.rate-pkg.rate-pkg--featured .rate-pkg-cta:hover { background: #fff; }

/* Plain rate cards stay on paper */
.rate-pkg { background: var(--surface); border: 1px solid var(--sand); }

/* ── Buttons: terracotta fill, cream label ─────────────── */
.btn-primary,
.form-submit,
.avail-btn,
.rate-pkg-cta,
.om-apply,
.nav-book-btn {
  background: var(--primary);
  color: var(--cream);
}
.btn-primary:hover,
.form-submit:hover,
.avail-btn:hover,
.rate-pkg-cta:hover,
.om-apply:hover,
.nav-book-btn:hover {
  background: var(--primary-hover);
  color: var(--cream);
}
.lang-btn { color: rgba(255,255,255,.85); }
.lang-btn.active,
.site-nav.scrolled .lang-btn.active { background: var(--cream); color: var(--primary); }

.om-trigger { border-color: var(--primary); color: var(--primary); }
.om-trigger:hover { background: var(--primary); color: var(--cream); }
.om-trigger--quiet { border-color: var(--stone); }
.om-trigger--quiet:hover { border-color: var(--primary); }

/* ── The wellness menu ─────────────────────────────────── */
.om-head, .om-tabs, .om-foot { border-color: var(--sand); }
.om-foot { background: var(--primary-pale); }
.om-close { background: var(--primary-pale); color: var(--primary); }
.om-close:hover { background: var(--primary); color: var(--cream); }
.om-tab-n { background: var(--primary-pale); color: var(--primary); }
.om-tab.active .om-tab-n { background: var(--primary); color: var(--cream); }
.om-list > li + li { border-color: var(--sand); }
.om-leader { background-image: linear-gradient(to right, var(--stone) 0 2px, transparent 2px 6px); opacity: .9; }
.om-mark { border-color: var(--stone); }
.om-row:hover .om-mark { border-color: var(--primary); }
.om-row[aria-pressed="true"] .om-mark { background: var(--accent1); border-color: var(--accent1); color: #fff; }
.om-row[aria-pressed="true"] .om-name { color: var(--accent1-hover); }
.be-chips li { background: var(--accent1-pale); color: var(--accent1-hover); }
.om-scrim { background: rgba(43,19,8,.5); }

/* ── Odds and ends ─────────────────────────────────────── */
.feature-card, .gallery-item { background: var(--stone); }
.map-embed { background: var(--surface); }
.location-tag { border-color: rgba(255,255,255,.55); }
.faq-question { color: var(--dark); }
.faq-item { border-color: var(--sand); }
.testi-dot { background: var(--stone); }
.testi-dot.active { background: var(--primary); }
.testi-arrow { border-color: var(--sand); color: var(--primary); }
.testi-arrow:hover { background: var(--primary); color: var(--cream); }
.breadcrumbs { border-color: var(--sand); }
.form-divider { color: var(--mid); }
.form-alt-btn { border-color: var(--stone) !important; color: var(--dark) !important; background: var(--surface-hi); }
.form-alt-btn:hover { border-color: var(--primary) !important; color: var(--primary) !important; }
.skip-link { background: var(--primary); color: var(--cream); }
.emc-n { color: var(--brand); }
.emc-t { color: var(--dark); }
.exp-menu-cat:hover { border-color: var(--brand); box-shadow: 0 14px 36px rgba(43,19,8,.13); }

@media (max-width: 768px) {
  /* The wrapper only positions; the glass card is .avail-bar itself.
     Painting the wrapper put a full-width white strip behind it. */
  .avail-bar-wrap { background: none; box-shadow: none; }
}

/* Screen-reader-only text — carries the page's real h1 behind the logo */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot — off-screen, never shown, never announced */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}


/* =========================================================
   GLASS — frosted controls over photography and clay bands
   Translucent white + blur, a bright top edge, a soft drop.
   Anything that floats over an image gets this; solid fills
   are reserved for the primary actions.
   ========================================================= */

/* Language toggle */
.lang-toggle {
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 6px 20px rgba(43,23,16,0.16), inset 0 1px 0 rgba(255,255,255,0.42);
}
.site-nav.scrolled .lang-toggle {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.36);
}
.lang-btn { color: rgba(255,255,255,0.88); }
.lang-btn:hover { color: #fff; }
.lang-btn.active,
.site-nav.scrolled .lang-btn.active {
  background: rgba(255,255,255,0.94);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(43,23,16,0.2);
}

/* Hamburger */
.nav-toggle {
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 6px 20px rgba(43,23,16,0.16), inset 0 1px 0 rgba(255,255,255,0.42);
}
.nav-toggle:hover,
.site-nav.scrolled .nav-toggle:hover { background: rgba(255,255,255,0.28); }
.nav-toggle span,
.site-nav.scrolled .nav-toggle span { background: #fff; }

/* Book Now reads as the light action up here */
.nav-book-btn,
.site-nav.scrolled .nav-book-btn {
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(43,23,16,0.18);
}
.nav-book-btn:hover,
.site-nav.scrolled .nav-book-btn:hover { background: #fff; color: var(--primary-hover); }

/* The scrolled bar itself */
.site-nav.scrolled {
  background: rgba(176,88,60,0.78);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 4px 24px rgba(43,23,16,0.22);
}

/* Availability bar floats over the hero photo */
.avail-bar {
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: 0 20px 54px rgba(43,23,16,0.24), inset 0 1px 0 rgba(255,255,255,0.65);
}
.avail-trigger {
  background: rgba(255,255,255,0.62);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.58);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(43,23,16,0.2);
}
.avail-field:hover { background: rgba(255,255,255,0.34); }
.avail-divider { background: rgba(43,23,16,0.16); }

/* Glass pills on the terracotta bands */
.location-tag {
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.42);
  color: #fff;
}
.map-open-link {
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(43,23,16,0.24);
}
.map-open-link:hover { background: #fff; }

.rate-pkg.rate-pkg--featured .rate-pkg-tag,
.rate-pkg.rate-pkg--featured .rate-pkg-save {
  background: rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.34);
  color: var(--cream);
}

/* Light secondary actions */
.om-close {
  background: rgba(255,255,255,0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sand);
  color: var(--primary);
}
.om-close:hover { background: var(--primary); border-color: var(--primary); color: var(--cream); }
.form-alt-btn { background: rgba(255,255,255,0.75) !important; }
.whatsapp-float {
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.34);
}

/* No blur support: fall back to a solid enough surface to stay readable */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .avail-bar,
  .avail-trigger { background: rgba(255,255,255,0.94); }
  .lang-toggle,
  .nav-toggle { background: rgba(255,255,255,0.26); }
  .site-nav.scrolled { background: rgba(176,88,60,0.97); }
}

/* ── Book Now in the drawer: a raised glass pill ────────────
   The other menu items are big quiet text. This one is the
   only action in there, so it lifts off the surface.       */
.drawer-nav .book-item {
  margin-top: 1.6rem;
  padding: 1.8rem 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.drawer-nav .book-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  padding: 1.05rem 2.6rem;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.30),
    0 3px 10px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transition:
    transform 0.35s var(--ease-spring),
    background 0.25s var(--ease),
    box-shadow 0.3s var(--ease);
}

.drawer-nav .book-item a:hover {
  background: #fff;
  color: var(--primary-hover);
  padding-left: 2.6rem;
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.36),
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,1);
}
.drawer-nav .book-item a:active { transform: translateY(-1px); }
.drawer-nav .book-item a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .drawer-nav .book-item a { background: rgba(255,255,255,0.96); }
}

@media (prefers-reduced-motion: reduce) {
  .drawer-nav .book-item a { transition: background 0.2s; }
  .drawer-nav .book-item a:hover { transform: none; }
}

/* ── Reserve: the light action ──────────────────────────────
   It appears on paper, on the terracotta CTA bands and over the
   404 photo, so it carries its own rim and lift rather than
   relying on the surface behind it.                          */
.btn-primary {
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--sand);
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(43,23,16,.10), 0 10px 26px rgba(43,23,16,.14);
}
.btn-primary:hover {
  background: #fff;
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(43,23,16,.12), 0 16px 36px rgba(43,23,16,.18);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .btn-primary { background: #fff; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:hover { transform: none; }
}

/* =========================================================
   MENU AS A SIDEBAR
   Was a full-screen takeover. Now a panel on the right with
   the page still visible behind a scrim.
   ========================================================= */
.drawer-overlay {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(43,23,16,0.45);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.nav-drawer {
  inset: 0 0 0 auto;              /* pin right, full height */
  width: min(420px, 88vw);
  box-shadow: -18px 0 54px rgba(43,23,16,.34);
  opacity: 1;                     /* it slides now, it does not fade */
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), visibility .5s;
}
.nav-drawer.open { transform: translateX(0); }

/* Type was sized for a full-screen takeover — too big for a 420px panel */
.drawer-header { padding: 1.4rem 1.75rem; }
.drawer-logo .logo-svg { height: 30px; }

.drawer-nav { padding: 1.5rem 0 0; }
.drawer-nav a,
.drawer-nav button {
  padding: 0.85rem 1.75rem;
  font-size: clamp(1.25rem, 3.4vw, 1.5rem);
  font-weight: 400;
}
.drawer-nav a:hover,
.drawer-nav button:hover { padding-left: 2.15rem; }
.drawer-nav .arrow-icon { width: 17px; height: 17px; margin-left: 1rem; }

.sub-menu a { padding-left: 2.6rem; font-size: 0.95rem; }
.drawer-nav .sub-menu a:hover { padding-left: 2.95rem; }

.drawer-nav .book-item { padding: 1.4rem 1.75rem 0; margin-top: 1.2rem; }
.drawer-nav .book-item a { padding: 0.95rem 1.9rem; font-size: 0.78rem; }
.drawer-nav .book-item a:hover { padding-left: 1.9rem; }

.drawer-footer { padding: 1.25rem 1.75rem; }

@media (max-width: 480px) {
  .nav-drawer { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer,
  .drawer-overlay { transition: none !important; }
}

/* ── Amenity cards on phones ─────────────────────────────────
   Names set naturally now; this just tightens the block so the
   icon and label read as one unit at the foot of the card.   */
@media (max-width: 768px) {
  .feature-name {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 0;
    text-wrap: balance;
  }
  .feature-body { padding: 0.9rem 0.95rem; }
  .feature-icon { width: 22px; height: 22px; margin-bottom: 7px; }
}
