/* ============================================================
   KACHA VILLA — Editorial Luxury Tropical
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* warm tropical palette */
  --sand:        #F5EFE3;
  --sand-deep:   #ECE3D0;
  --shell:       #FBF7EE;
  --ink:         #1B1814;
  --ink-soft:    #4A423A;
  --muted:       #847A6E;
  --line:        #D9CFB9;
  --palm:        #2D4A3A;
  --palm-deep:   #1F3528;
  --gold:        #B89968;
  --coral:       #C26849;
  --white:       #FFFFFF;

  /* type */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(27,24,20,0.04), 0 2px 8px rgba(27,24,20,0.06);
  --shadow:    0 4px 12px rgba(27,24,20,0.08), 0 12px 32px rgba(27,24,20,0.10);
  --shadow-lg: 0 12px 40px rgba(27,24,20,0.14), 0 24px 80px rgba(27,24,20,0.18);
}

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

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

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* subtle warm paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184,153,104,0.04), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(45,74,58,0.03), transparent 50%);
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--palm); color: var(--shell); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); letter-spacing: -0.015em; }
h4 { font-size: 1.25rem; letter-spacing: -0.01em; font-variation-settings: "opsz" 36; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.italic-display { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

p { color: var(--ink-soft); }
p.lede {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }
.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.divider-leaf {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; margin: 0 auto;
  color: var(--gold); opacity: 0.7;
}
.divider-leaf::before, .divider-leaf::after {
  content: ''; width: 60px; height: 1px; background: currentColor;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(217,207,185,0.5);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--shell);
  font-variation-settings: "opsz" 144;
  display: flex; align-items: center; gap: 0.55rem;
  transition: color 0.4s ease;
}
.brand-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #FFFFFF;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
  flex-shrink: 0;
  /* slight optical adjustment so the K sits visually centered */
  padding-bottom: 1px;
}
.nav.scrolled .brand { color: var(--ink); }

.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--shell);
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
}

.nav-cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-wa {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.nav-wa:hover {
  background: #1BA851;
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

.nav-cta {
  padding: 0.65rem 1.4rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shell);
  transition: all 0.3s ease;
}
.nav.scrolled .nav-cta {
  background: var(--ink);
  color: var(--shell);
  border-color: var(--ink);
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
  color: var(--shell);
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.scrolled .nav-toggle { color: var(--ink); }

/* Mobile-only nav items: hidden by default at every screen size — only revealed inside the open mobile menu */
.nav-mobile-only { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Nav header itself stays above the menu overlay */
  .nav { z-index: 110; }

  /* Mobile menu overlay — properly above the hero now */
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--sand);
    padding: 6rem 1.75rem 2.5rem;
    z-index: 100;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-mobile-open .nav-links li {
    width: 100%;
  }
  .nav-mobile-open .nav-links a {
    color: var(--ink);
    font-size: 1.6rem;
    font-family: var(--display);
    font-weight: 400;
    font-variation-settings: "opsz" 72;
  }

  /* Inside the mobile menu, conversion CTAs */
  .nav-mobile-open .nav-mobile-only { display: block; }
  .nav-mobile-open .nav-mobile-cta {
    margin-top: 0.5rem;
  }
  .nav-mobile-open .nav-mobile-cta:first-of-type {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .nav-mobile-open .nav-mobile-cta .btn {
    width: 100%;
    font-family: var(--body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  /* Burger morphs into an X when open */
  .nav-toggle span { transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease; transform-origin: center; }
  .nav-mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Burger forces ink color when menu is open (over sand bg) */
  .nav-mobile-open .nav-toggle { color: var(--ink); }
  .nav-mobile-open .brand { color: var(--ink); }

  /* CRITICAL: lift the header elements above the menu overlay so the X (and brand, WhatsApp) stay visible */
  .nav-mobile-open .brand,
  .nav-mobile-open .nav-cta-group,
  .nav-mobile-open .nav-toggle {
    position: relative;
    z-index: 101;
  }

  /* Keep WhatsApp icon visible in header — quick lead capture */
  .nav-wa { width: 36px; height: 36px; }

  /* When menu is open, lock body scroll */
  body.mobile-menu-open { overflow: hidden; }
}

/* Very narrow phones: tighten the brand so everything fits */
@media (max-width: 380px) {
  .brand { font-size: 1.2rem; gap: 0.4rem; }
  .brand-mark { width: 30px; height: 30px; font-size: 16px; }
  .nav-wa { width: 34px; height: 34px; }
  .nav-inner { gap: 0.6rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ink);
  color: var(--shell);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--palm);
  border-color: var(--palm);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(45,74,58,0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--ink); border-color: var(--ink); color: var(--shell);
  transform: translateY(-1px);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--shell);
  border: 1px solid rgba(251,247,238,0.6);
}
.btn-outline-light:hover { background: var(--shell); color: var(--ink); border-color: var(--shell); }

/* WhatsApp button — instantly recognizable */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
}
.btn-whatsapp:hover {
  background: #1BA851;
  border-color: #1BA851;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.28);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* Small reply-time promise under primary WhatsApp button */
.primary-wa-sub {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* WhatsApp CTA — mobile vs desktop split.
   Mobile (touch device, click opens WhatsApp app instantly): show button.
   Desktop (mouse / no native WhatsApp): show QR code so user can scan with phone. */
.wa-cta-desktop { display: none; }
.btn.wa-cta-mobile { display: inline-flex; }

@media (min-width: 800px) {
  .btn.wa-cta-mobile { display: none; }
  .wa-cta-desktop { display: flex; }
}

.wa-qr-block {
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.wa-qr-titlebar {
  background: var(--sand-deep);
  border: 1px solid rgba(184,153,104,0.28);
  border-radius: 5px;
  padding: 0.55rem 1rem;
  text-align: center;
}
.wa-qr-card {
  background: var(--shell);
  border: 1px solid rgba(184,153,104,0.25);
  border-radius: 5px;
  padding: 1rem 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.wa-qr-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
  margin: 0;
  letter-spacing: 0;
}
.wa-qr-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.wa-qr-frame {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-qr-frame img {
  width: 100%;
  height: 100%;
  display: block;
}
.wa-qr-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.35;
}
.wa-qr-caption strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
  font-variation-settings: "opsz" 36;
}
.wa-qr-caption span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.wa-qr-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.wa-qr-link svg {
  color: #25D366;
  flex-shrink: 0;
}
.wa-qr-link:hover {
  color: var(--ink);
}

/* CTA-section variant: same QR block but sits on dark bg, slightly tighter */
.cta-qr-block {
  background: var(--shell);
  max-width: 360px;
  flex: 0 0 auto;
}
.cta-section .cta-actions {
  align-items: center;
}

/* Floating contact stack — small QR card sits above the WA + envelope circles on desktop */
.floating-qr {
  display: none;
  background: var(--shell);
  border: 1px solid rgba(184,153,104,0.35);
  border-radius: 8px;
  padding: 0.7rem 0.7rem 0.65rem;
  box-shadow: 0 8px 24px rgba(27,24,20,0.14);
  width: 152px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
@media (min-width: 800px) {
  .floating-qr.wa-cta-desktop { display: flex; }
}
.floating-qr-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.floating-qr-title svg {
  color: #25D366;
  flex-shrink: 0;
}
.floating-qr img {
  width: 124px;
  height: 124px;
  display: block;
  background: #FFFFFF;
  padding: 4px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.floating-qr-caption {
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-weight: 700;
}

/* Outline variant of WhatsApp — for lighter sections */
.btn-whatsapp-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-whatsapp-outline:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}
.btn-whatsapp-outline svg { flex-shrink: 0; color: #25D366; transition: color 0.3s; }
.btn-whatsapp-outline:hover svg { color: #FFFFFF; }

/* CTA pair — two action buttons side by side */
.cta-pair {
  display: inline-flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}
.cta-pair.cta-pair-block { display: flex; }
.cta-pair.cta-pair-block .btn { flex: 1; min-width: 0; }
@media (max-width: 480px) {
  .cta-pair { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-pair .btn { width: 100%; }
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.15rem 2.25rem; font-size: 0.85rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/01.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  /* gradient overlay: darker on the left where text sits, lighter on the right
     so the photo really comes through. plus a subtle bottom darken for anchor. */
  background:
    linear-gradient(
      105deg,
      rgba(10, 12, 20, 0.78) 0%,
      rgba(10, 12, 20, 0.62) 35%,
      rgba(10, 12, 20, 0.32) 65%,
      rgba(10, 12, 20, 0.42) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0.25) 100%
    );
}

.hero-grain {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.hero-text { padding-top: clamp(1.5rem, 4vh, 3.25rem); }

.hero-text { color: var(--shell); }
.hero-text .eyebrow { color: var(--gold); }
.hero-text .eyebrow::before { background: var(--gold); }

.hero-text h1 {
  color: var(--shell);
  font-weight: 500;
  margin: 1.5rem 0 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.hero-text h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-text .lede {
  color: rgba(251,247,238,0.92);
  max-width: 32ch;
  font-weight: 300;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.hero-meta {
  margin-top: 2rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 0;
}
.hero-meta-item .label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,247,238,0.7); display: block; margin-bottom: 0.35rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero-meta-item .value {
  font-family: var(--display); font-size: 1.1rem; color: var(--shell);
  font-variation-settings: "opsz" 36;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* Hero quote — guest message above the stats, builds trust above the fold */
.hero-quote {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,153,104,0.4);
  max-width: 36ch;
}
.hero-quote-text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  color: var(--shell);
  margin: 0 0 0.55rem;
  line-height: 1.4;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero-quote-attr {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,247,238,0.7);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.hero-quote-attr svg {
  color: #25D366;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-text { padding-top: 0; }
}

/* Phone-specific hero tightening */
@media (max-width: 540px) {
  .hero { padding-top: 5.5rem; padding-bottom: 2.5rem; }
  .hero-text h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .hero-text .lede { font-size: 1rem; }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  .hero-meta-item .value { font-size: 1rem; }
}

/* ============================================================
   FORM CARD (Hero + Modal)
   ============================================================ */
.form-card {
  background: var(--shell);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(184,153,104,0.25);
  pointer-events: none;
}

.form-card .form-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* Urgency banner — pulsing green "live" dot + Available Now + scarcity line.
   Replaces the static "Check Availability" eyebrow at the top of the hero form. */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: 6px;
  margin-bottom: 1.1rem;
}
.live-dot {
  width: 9px;
  height: 9px;
  background: #25D366;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
}
.urgency-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.urgency-text strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a8e44;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.urgency-text span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 0.2rem;
}
.form-card h3 {
  font-size: 1.65rem;
  margin: 0.4rem 0 0.4rem;
  font-variation-settings: "opsz" 72;
}
.form-card .form-sub {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-group { margin-bottom: 0.95rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--palm);
}
.form-group input::placeholder { color: #B5AC9F; font-weight: 300; }
.form-group input[type="date"] {
  font-family: var(--body);
  color: var(--ink);
}

.form-card .btn { margin-top: 0.75rem; }

.form-fineprint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.form-divider {
  display: flex; align-items: center; gap: 0.85rem;
  margin: 1.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}

.whatsapp-direct {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem;
  background: #25D366;
  color: #FFF;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.whatsapp-direct:hover { background: #1BA851; transform: translateY(-1px); }

/* ============================================================
   EDITORIAL GALLERY — the showcase moment under the hero
   ============================================================ */
.editorial-gallery {
  background: var(--ink);
  color: var(--shell);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.editorial-gallery::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184,153,104,0.10), transparent 55%);
  pointer-events: none;
}
.editorial-gallery .container { position: relative; z-index: 2; }

.editorial-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.editorial-head .eyebrow { color: var(--gold); }
.editorial-head h2 {
  color: var(--shell);
  margin-top: 1rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.editorial-head h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.editorial-head .lede { color: rgba(251,247,238,0.78); font-weight: 300; }
@media (max-width: 800px) {
  .editorial-head { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* The asymmetric magazine-spread grid */
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.5rem, 1.2vw, 1rem);
  /* clamp the overall grid height so the layout stays cinematic */
  height: min(75vh, 720px);
}
.editorial-grid .panel {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: #0a0a0a;
  border-radius: 2px;
}
.editorial-grid .panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.editorial-grid .panel:hover img { transform: scale(1.04); }
.editorial-grid .panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.editorial-grid .panel:hover::after { opacity: 1; }
.editorial-grid .panel .panel-caption {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1rem;
  color: var(--shell);
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 36;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.editorial-grid .panel:hover .panel-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Layout assignments */
.editorial-grid .panel-a { grid-column: 1; grid-row: 1 / span 2; }
.editorial-grid .panel-b { grid-column: 2; grid-row: 1; }
.editorial-grid .panel-c { grid-column: 3; grid-row: 1; }
.editorial-grid .panel-d { grid-column: 2 / span 2; grid-row: 2; }

@media (max-width: 800px) {
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
    height: auto;
  }
  .editorial-grid .panel-a { grid-column: 1 / span 2; grid-row: 1; }
  .editorial-grid .panel-b { grid-column: 1; grid-row: 2; }
  .editorial-grid .panel-c { grid-column: 2; grid-row: 2; }
  .editorial-grid .panel-d { grid-column: 1 / span 2; grid-row: 3; }
}

.editorial-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251,247,238,0.12);
}
.editorial-foot .photo-count {
  color: rgba(251,247,238,0.6);
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-style: italic;
  font-size: 0.95rem;
}
.editorial-foot .photo-count strong {
  color: var(--gold);
  font-style: normal;
  font-family: var(--body);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 0.4rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 12, 0.96);
  animation: fade 0.3s ease;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: rise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--shell);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  cursor: pointer;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  transform: scale(1.05);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .lightbox-close { top: 1rem; right: 1rem; width: 42px; height: 42px; }
  .lightbox-prev { left: 0.75rem; width: 42px; height: 42px; }
  .lightbox-next { right: 0.75rem; width: 42px; height: 42px; }
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-section {
  padding: clamp(0, 0vw, 0) 0 clamp(4rem, 8vw, 7rem);
  background: var(--ink);
  color: var(--shell);
  position: relative;
}
.carousel-section .container { position: relative; z-index: 2; }

.carousel-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
}
.carousel-head h2 {
  max-width: 14ch;
  color: var(--shell);
  font-weight: 300;
}
.carousel-head h2 em { color: var(--gold); font-style: italic; }
.carousel-head .eyebrow { color: var(--gold); }
.carousel-head p { color: rgba(251,247,238,0.7); }

.carousel { position: relative; }

.carousel-viewport {
  overflow: hidden;
  border-radius: 2px;
  background: #0a0a0a;
}
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0.18, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  cursor: zoom-in;
}
.carousel-slide img,
.carousel-slide picture {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Floor plan slide — show the entire layout, not cropped.
   Light shell background blends with the floor plan's white and reads as
   a deliberate "tour the layout" moment between the photographic slides. */
.carousel-slide.floor-plan {
  background: var(--shell);
}
.carousel-slide.floor-plan img {
  object-fit: contain;
  padding: clamp(0.75rem, 2vw, 1.75rem);
  box-sizing: border-box;
}

/* Speed-test slide — composite is 16:9 with a navy background baked in.
   Use contain (not cover) so on mobile (4:5) both gauges stay visible.
   Background colour matches the composite for an edge-to-edge look. */
.carousel-slide.speed-test {
  background: #141527;
}
.carousel-slide.speed-test img {
  object-fit: contain;
}
.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--shell);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-variation-settings: "opsz" 36;
}

.carousel-controls {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.75rem;
  justify-content: space-between;
}
.carousel-arrows { display: flex; gap: 0.5rem; }
.carousel-arrows { display: none; } /* Legacy — arrows now overlay the viewport */

/* Overlay arrows on the photo's left/right edges. Distinct from the round
   coloured floating CTAs (green WhatsApp, gold Enquire) — these are subtle
   neutral controls that read as "next/previous", not as call-to-action buttons. */
.carousel-viewport { position: relative; }

.carousel-btn.carousel-btn-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 12, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  z-index: 4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.carousel-btn.carousel-btn-overlay[data-dir="prev"] { left: 1rem; }
.carousel-btn.carousel-btn-overlay[data-dir="next"] { right: 1rem; }

.carousel-btn.carousel-btn-overlay:hover {
  background: rgba(15, 12, 10, 0.78);
  border-color: rgba(255, 255, 255, 0.28);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.06);
}
.carousel-btn.carousel-btn-overlay:active {
  transform: translateY(-50%) scale(0.96);
}
.carousel-btn.carousel-btn-overlay:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.carousel-btn.carousel-btn-overlay:disabled:hover {
  background: rgba(15, 12, 10, 0.55);
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .carousel-btn.carousel-btn-overlay { width: 42px; height: 42px; }
  .carousel-btn.carousel-btn-overlay[data-dir="prev"] { left: 0.5rem; }
  .carousel-btn.carousel-btn-overlay[data-dir="next"] { right: 0.5rem; }
}

.carousel-btn {
  width: 50px; height: 50px;
  border: 1px solid rgba(251,247,238,0.4);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  color: var(--shell);
  background: transparent;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn:disabled:hover { background: transparent; color: var(--shell); }

.carousel-dots {
  display: flex; gap: 0.5rem; align-items: center;
  flex-wrap: wrap;
  max-width: 50vw;
  justify-content: center;
}
.carousel-dot {
  width: 24px; height: 2px;
  background: rgba(251,247,238,0.25);
  transition: background 0.3s ease, width 0.3s ease;
  border: none; padding: 0;
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); width: 40px; }

.carousel-counter {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(251,247,238,0.5);
  letter-spacing: 0.05em;
}
.carousel-counter .current { color: var(--shell); font-size: 1.4rem; }

@media (max-width: 600px) {
  .carousel-head { flex-direction: column; align-items: flex-start; }
  .carousel-slide { aspect-ratio: 4 / 5; }
  .carousel-dots { display: none; }
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features-section { background: var(--shell); }

.features-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (max-width: 800px) { .features-intro { grid-template-columns: 1fr; gap: 1.5rem; } }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 2.25rem 1.85rem;
  background: var(--shell);
  transition: background 0.4s ease;
  position: relative;
}
.feature:hover { background: var(--sand); }
.feature .icon {
  width: 36px; height: 36px;
  margin-bottom: 1.5rem;
  color: var(--palm);
}
.feature h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-variation-settings: "opsz" 36;
}
.feature p { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }

.feature-filler { background: var(--shell); }
@media (max-width: 540px) { .feature-filler { display: none; } }

/* ============================================================
   SPLIT CONTENT (image + text side-by-side)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
}

.split-image {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--shell);
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
}

.split-text h2 { margin: 1rem 0 1.5rem; }
.split-text p { margin-bottom: 1.25rem; font-size: 1.02rem; line-height: 1.75; }

/* ============================================================
   AMENITIES — detailed list with categories
   ============================================================ */
.amenities-section { background: var(--sand); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
@media (max-width: 800px) { .amenities-grid { grid-template-columns: 1fr; gap: 2.25rem; } }

.amenity-cat h4 {
  font-size: 1.35rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  font-variation-settings: "opsz" 72;
}
.amenity-cat h4 .num {
  font-size: 0.7rem;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-style: normal;
}
.amenity-cat ul { list-style: none; }
.amenity-cat li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.65rem;
  line-height: 1.55;
}
.amenity-cat li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.6rem;
}

/* ============================================================
   TESTIMONIALS — real WhatsApp messages from recent guests
   ============================================================ */
.testimonials-section {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 220px;
  background: radial-gradient(ellipse at top, rgba(184,153,104,0.10), transparent 70%);
  pointer-events: none;
}
.testimonials-section .container { position: relative; z-index: 2; }

.testimonials-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.testimonials-head h2 {
  margin: 1rem 0 1.25rem;
}
.testimonials-head .lede {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.testimonial {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.4s ease;
}
.testimonial:hover { transform: translateY(-2px); }
.testimonial::before { content: none; }

.testimonial-screenshot {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(27, 24, 20, 0.08);
  transition: box-shadow 0.4s ease;
  cursor: zoom-in;
  background: var(--shell);
}
.testimonial:hover .testimonial-screenshot {
  box-shadow: 0 14px 40px rgba(27, 24, 20, 0.14);
}
.testimonial-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial figcaption {
  padding: 1.25rem 0.25rem 0;
  text-align: center;
}

.testimonial-name {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem;
}

.testimonial-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.testimonial-meta svg {
  color: #25D366;
  flex-shrink: 0;
}

/* ============================================================
   HOST — meet-the-owner section, between testimonials and pricing
   ============================================================ */
.host-section {
  background: var(--shell);
}
.host {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.host-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
}
.host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.host-photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(184,153,104,0.25);
  border-radius: 4px;
  pointer-events: none;
}
.host-text h2 {
  margin: 1rem 0 1.25rem;
}
.host-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.host-text p:last-child {
  margin-bottom: 0;
}
.host-availability-note {
  margin-top: 1.5rem !important;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(184, 153, 104, 0.05);
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
}
.host-availability-note em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 800px) {
  .host { grid-template-columns: 1fr; gap: 1.75rem; }
  .host-photo { max-width: 200px; margin: 0 auto; }
}

.pricing-section { background: var(--ink); color: var(--shell); }
.pricing-section .eyebrow { color: var(--gold); }
.pricing-section h2 { color: var(--shell); }
.pricing-section .lede { color: rgba(251,247,238,0.75); }
.pricing-scarcity-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(251,247,238,0.7);
  letter-spacing: 0.005em;
}
.pricing-scarcity-note em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
}

.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: rgba(251,247,238,0.04);
  border: 1px solid rgba(251,247,238,0.15);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s ease;
}
.price-card:hover { background: rgba(251,247,238,0.07); border-color: rgba(184,153,104,0.4); }

.price-card.featured {
  background: var(--shell);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.price-card.featured h3 { color: var(--ink); }
.price-card.featured .price-amount { color: var(--ink); }
.price-card.featured .price-amount .currency { color: var(--ink-soft); }
.price-card.featured .price-period { color: var(--muted); }
.price-card.featured ul li { color: var(--ink-soft); }
.price-card.featured ul li::before { background: var(--gold); }

.price-tag {
  position: absolute;
  top: -0.65rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}

.price-card .season-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.price-card h3 {
  font-size: 1.5rem;
  color: var(--shell);
  font-variation-settings: "opsz" 72;
}
.price-card .season-window {
  font-size: 0.85rem;
  color: rgba(251,247,238,0.6);
  margin: 0.4rem 0 1.85rem;
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "opsz" 24;
}
.price-card.featured .season-window { color: var(--muted); }

.price-amount {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--shell);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  display: flex; align-items: baseline; gap: 0.35rem;
}
.price-amount .currency {
  font-size: 0.9rem;
  font-family: var(--body);
  color: rgba(251,247,238,0.65);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.price-period {
  font-size: 0.8rem;
  color: rgba(251,247,238,0.55);
  margin-bottom: 1.85rem;
  letter-spacing: 0.05em;
}

.price-card ul {
  list-style: none;
  margin: 1.5rem 0 1.85rem;
  border-top: 1px solid rgba(251,247,238,0.12);
  padding-top: 1.5rem;
}
.price-card.featured ul { border-color: var(--line); }
.price-card ul li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: rgba(251,247,238,0.78);
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.price-card ul li::before {
  content: '+';
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.pricing-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(251,247,238,0.6);
  max-width: 640px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section { background: var(--shell); }

.distances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .distances { grid-template-columns: 1fr; } }

.distance {
  padding: 1.85rem 1.25rem 1.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 1.25rem; align-items: baseline;
}
.distance .time {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  color: var(--palm);
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 90px;
}
.distance .time .unit {
  font-size: 0.75rem;
  font-family: var(--body);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0.25rem;
}
.distance .place {
  flex: 1;
}
.distance .place .name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.distance .place .desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   GUEST PROFILES (Who this is for)
   ============================================================ */
.profiles-section { background: var(--palm); color: var(--shell); }
.profiles-section .eyebrow { color: var(--gold); }
.profiles-section h2 { color: var(--shell); }

.profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 760px) { .profiles { grid-template-columns: 1fr; } }

.profile {
  background: rgba(251,247,238,0.05);
  padding: 2.25rem 2rem;
  border-radius: 4px;
  border-left: 2px solid var(--gold);
  transition: background 0.3s ease;
}
.profile:hover { background: rgba(251,247,238,0.09); }
.profile h4 {
  color: var(--shell);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  font-variation-settings: "opsz" 72;
}
.profile h4 em { color: var(--gold); font-style: italic; font-weight: 300; }
.profile p { color: rgba(251,247,238,0.78); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--sand); }

.faq-list {
  max-width: 880px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--palm); }
.faq-q .toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.4s ease, background 0.3s ease;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: transform 0.3s ease;
}
.faq-q .toggle::before {
  width: 10px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-q .toggle::after {
  width: 1px; height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-q .toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.open .faq-q .toggle { background: var(--ink); }
.faq-item.open .faq-q .toggle::before { background: var(--shell); }
.faq-item.open .faq-q .toggle::after { background: var(--shell); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 0 1.85rem;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
  background: var(--ink);
  color: var(--shell);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,153,104,0.18), transparent 60%);
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .eyebrow { color: var(--gold); }
.cta-section h2 {
  color: var(--shell);
  margin: 1.25rem auto 1.5rem;
  max-width: 18ch;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section .lede {
  max-width: 540px; margin: 0 auto 2.5rem;
  color: rgba(251,247,238,0.78);
  font-weight: 300;
}
.cta-actions { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   P.S. SECTION — long-form story, last-ditch conversion piece.
   Editorial letter feel: warmer bg, big "P.S." drop-cap on the left,
   narrow comfortable column for the body on the right.
   ============================================================ */
.ps-section {
  background: var(--sand);
  padding: clamp(4.5rem, 9vh, 7.5rem) 0;
  color: var(--ink);
}
.ps-container {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.ps-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.95;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.02em;
  user-select: none;
  flex-shrink: 0;
}
.ps-content {
  min-width: 0;
  max-width: 620px;
}
.ps-section h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.ps-section h2 em {
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.ps-body {
  margin-top: clamp(2rem, 4vh, 3rem);
}
.ps-body p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.ps-body p em {
  font-style: italic;
  color: var(--ink);
}
.ps-lead {
  font-size: 1.12rem !important;
  color: var(--ink) !important;
  font-weight: 400;
}
.ps-signoff {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 2.25rem !important;
  margin-bottom: 0 !important;
  font-variation-settings: "opsz" 36;
  font-weight: 400;
}
@media (max-width: 700px) {
  .ps-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .ps-mark {
    font-size: clamp(3rem, 13vw, 4.5rem);
    line-height: 1;
  }
  .ps-body p { font-size: 0.98rem; line-height: 1.72; }
  .ps-lead { font-size: 1.05rem !important; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--palm-deep);
  color: rgba(251,247,238,0.7);
  padding: 4rem 0 2rem;
}
.footer .brand { color: var(--shell); margin-bottom: 1.25rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,247,238,0.1);
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col-brand { grid-column: 1 / -1; }
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(251,247,238,0.7);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: rgba(251,247,238,0.65); font-size: 0.92rem; max-width: 32ch; }

.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: rgba(251,247,238,0.5);
  flex-wrap: wrap; gap: 1rem;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fade 0.35s ease;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  animation: rise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  z-index: 2;
  transition: background 0.3s ease, transform 0.3s ease;
}
.modal-close:hover { background: var(--ink); color: var(--shell); transform: rotate(90deg); }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body.modal-open { overflow: hidden; }

/* ============================================================
   STANDARD PAGE (about, contact, privacy, terms)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 12rem) 0 clamp(2.5rem, 6vw, 5rem);
  background: var(--palm-deep);
  color: var(--shell);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,153,104,0.18), transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(45,74,58,0.4), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 880px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  color: var(--shell);
  margin: 1.5rem 0 1rem;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: rgba(251,247,238,0.8);
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.65;
}

.page-body {
  background: var(--shell);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.page-body .container { max-width: 800px; }
.page-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
}
.page-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.page-body ul, .page-body ol {
  margin: 1rem 0 1.5rem 1.25rem;
  color: var(--ink-soft);
}
.page-body li { padding: 0.25rem 0; line-height: 1.7; }
.page-body strong { color: var(--ink); font-weight: 600; }
.page-body a { color: var(--palm); text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: var(--coral); }

.page-body .updated {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

/* contact specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { margin-bottom: 0.5rem; }
.contact-info .lede { margin-bottom: 2.25rem; }

.contact-method {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.contact-method .value {
  font-family: var(--display);
  font-variation-settings: "opsz" 36;
  font-size: 1.25rem;
  color: var(--ink);
  display: block;
  transition: color 0.3s ease;
}
.contact-method a.value:hover { color: var(--coral); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   FLOATING CTA — sticky bottom-right action pair
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 95;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.floating-icons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  cursor: pointer;
  box-shadow:
    0 6px 20px rgba(0,0,0,0.18),
    0 14px 44px rgba(0,0,0,0.10);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}
.floating-btn:hover { transform: scale(1.07); }

.floating-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}
.floating-whatsapp:hover {
  background: #1BA851;
  box-shadow:
    0 8px 22px rgba(37,211,102,0.35),
    0 16px 48px rgba(37,211,102,0.18);
}

.floating-enquire {
  background: var(--ink);
  color: var(--shell);
}
.floating-enquire:hover {
  background: var(--gold);
  color: var(--ink);
  box-shadow:
    0 8px 22px rgba(184,153,104,0.35),
    0 16px 48px rgba(184,153,104,0.18);
}

.floating-label {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(27,24,20,0.94);
  color: var(--shell);
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-btn:hover .floating-label {
  opacity: 1;
  transform: translateX(0);
}

/* Hide floating CTA when modal or lightbox is open */
body.modal-open .floating-cta { opacity: 0; pointer-events: none; }

@media (max-width: 600px) {
  .floating-cta { bottom: 1rem; right: 1rem; gap: 0.6rem; }
  .floating-btn { width: 52px; height: 52px; }
  .floating-label { display: none; }
}

/* ============================================================
   PRICING CARD — small WhatsApp link under each card's CTA
   ============================================================ */
.price-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.4rem 0;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(251,247,238,0.6);
  transition: color 0.3s ease;
}
.price-card-wa:hover { color: #25D366; }
.price-card-wa svg { color: #25D366; flex-shrink: 0; }
.price-card.featured .price-card-wa { color: var(--muted); }
.price-card.featured .price-card-wa:hover { color: #1BA851; }

/* ============================================================
   FORM CARD — give the inline WhatsApp the WhatsApp icon
   prominence and consistency with rest of the site
   ============================================================ */
.whatsapp-direct svg { flex-shrink: 0; }
