/* ===== CRYSTAL JUNGLE VILLA - STYLES ===== */

:root {
  /* Warm, elegant color palette */
  --bg: #fdfbf7;
  --bg-warm: #f8f4ed;
  --bg-dark: #1a1a1a;
  --card: #ffffff;
  --ink: #2c2c2c;
  --ink-light: #5a5a5a;
  --muted: #8a8a8a;
  --accent: #5c8a6e;
  --accent-dark: #4a7259;
  --accent-light: #e8f0eb;
  --gold: #c9a66b;
  --gold-light: #f5f0e3;
  --line: #e8e4dc;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --max: 1200px;
  --pad: 24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Touch-friendly tap targets */
@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .nav__link { min-height: 44px; display: flex; align-items: center; }
  .lang-btn { min-height: 44px; min-width: 44px; }
  .amenity-tag { min-height: 44px; }
  .footer__links a { display: block; padding: 8px 0; }
  .social-links a { min-width: 48px; min-height: 48px; }
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 0 var(--line), var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* allow items to wrap on narrow screens instead of overlapping */
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  /* allow the logo block to shrink on small widths */
  min-width: 0;
  flex: 1 1 auto;
}

.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.5px;
  /* prevent the brand from pushing/overlapping controls on narrow screens */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  /* keep controls (Contact/Book/Language) together and off the logo */
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: var(--accent-light);
}

.nav__cta {
  background: var(--accent);
  color: white !important;
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--accent-dark);
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  /* push language selector to the far right of the header */
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1; /* ensure centering isn't affected by inherited line-height */
}

.lang-btn:hover {
  color: var(--ink);
  background: var(--accent-light);
}

.lang-btn.active {
  color: var(--accent);
  background: var(--accent-light);
  border-color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  /* keep button text case as authored */
  text-transform: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--accent);
  color: white;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.btn--dark {
  background: var(--bg-dark);
  color: white;
}

.btn--dark:hover {
  background: #2a2a2a;
}

.airbnb-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ===== HERO - IMMERSIVE FULL SCREEN ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Ensure the hero's only in-flow child (.hero__content) is centered in the flex row */
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Ensure the secondary (outline) CTA is readable on top of the hero image */
.hero .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn--outline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
}

.hero .btn--outline:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Fallback paint so hero never looks blank while image loads */
  background: #0f1412;
}

.hero__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* Remove aspect-ratio here: it can interfere with an absolutely-positioned, height:100% image in some engines */
  /* aspect-ratio: 16 / 9; */
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Mobile: show more of the hero photo (less "zoomed-in" crop) */
@media (max-width: 600px) {
  .hero__background img {
    /* Keep cover, but shift framing slightly up so the house is more visible */
    object-position: 50% 18%;
    /* Reduce animated zoom on mobile; it can crop the house too aggressively */
    animation: heroZoomMobile 20s ease-in-out infinite alternate;
  }
}

@keyframes heroZoomMobile {
  /*
    Mobile note:
    Some browsers can show thin "letterbox" gaps on the sides/bottom when the hero image
    is scaled below 1.0 (sub-pixel rounding). Keep the motion subtle but ensure full coverage.
  */
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(45, 90, 71, 0.3) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px var(--pad) 100px;
  text-align: center;
  color: white;
  animation: heroContentFadeIn 1.2s ease-out 0.5s forwards;
  opacity: 0;
}

/* Some hero inner groups are flex-based; center them explicitly so the whole hero reads centered */
.hero__cta,
.hero__stats,
.hero__scroll {
  justify-content: center;
  text-align: center;
}

.hero__cta {
  margin-left: auto;
  margin-right: auto;
}

.hero__stats {
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 500;
  line-height: 1.05;
  color: white;
  margin-bottom: 14px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero__brand {
    font-size: clamp(34px, 10vw, 52px);
    margin-bottom: 10px;
  }
  .hero__title {
    font-size: 12px;
    letter-spacing: 1.6px;
    margin-bottom: 18px;
  }

  .hero__subcta {
    margin-top: 14px;
    margin-bottom: 18px;
    font-size: 13px;
  }
  .cta-banner__sub {
    margin-top: 12px;
    font-size: 13px;
  }
}

/* Mobile: ensure hero content is truly centered as a block (not left-stuck) */
@media (max-width: 600px) {
  .hero {
    /* Use a column flex context and center the content block on the cross-axis */
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero__content{
    /* Ensure it's treated as a centered block, not a full-width flex item */
    display: block;
    width: 100%;
    max-width: 520px;

    /* Center the box itself */
    margin: 0 auto;

    /* Keep comfortable padding without shifting the box left */
    padding-left: 16px;
    padding-right: 16px;

    text-align: center;
  }

  .hero__cta,
  .hero__stats,
  .hero__scroll {
    justify-content: center;
  }
}

.hero__subcta {
  /* Place the "Prefer details first..." line naturally below CTAs */
  margin-top: 16px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.hero__subcta a,
.hero__subcta-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}

.hero__subcta a:hover,
.hero__subcta-link:hover {
  text-decoration-thickness: 2px;
}

.cta-banner__sub {
  text-align: center;
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--ink-light);
}

.cta-banner__sub a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}

.cta-banner__sub a:hover {
  text-decoration-thickness: 2px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 48px 0;
}

.section--warm {
  background: var(--bg-warm);
}

.section--dark {
  background: var(--bg-dark);
  color: white;
}

.section--dark .section__title {
  color: white;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.7);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section__desc {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ===== FEATURES GRID ===== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature__icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.feature__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== EXPERIENCE GRID ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.experience-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(45, 90, 71, 0.9) 0%,
    rgba(45, 90, 71, 0.4) 50%,
    transparent 100%
  );
}

.experience-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-card:hover img {
  transform: scale(1.1);
}

.experience-card--large {
  grid-row: span 2;
}

.experience-card--large img {
  height: 100%;
  min-height: 400px;
}

.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.experience-card:hover .experience-card__content {
  transform: translateY(0);
}

.experience-card__content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.experience-card__content p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.experience-card:hover .experience-card__content p {
  opacity: 0.9;
  transform: translateY(0);
}

/* --- Image captions (SEO + UX) --- */
.experience-card__caption {
  display: block;
  margin: 10px 14px 0;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(22, 24, 28, 0.72);
}

/* Experience cards often use dark overlays; ensure readability where needed */
.experience-card--large .experience-card__caption {
  color: rgba(22, 24, 28, 0.72);
}

/* Gallery shot captions: subtle under-image text */
.shot__caption {
  display: block;
  margin-top: 8px;
  padding: 0 2px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(22, 24, 28, 0.72);
}

/* Prevent captions from affecting the grid sizing when shots are in a dense layout */
.shot {
  display: flex;
  flex-direction: column;
}

.shot img {
  display: block;
}

@media (max-width: 640px) {
  .experience-card__caption,
  .shot__caption {
    font-size: 11px;
  }
}

/* ===== DREAMY QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 72px 0;
  background: var(--bg-dark);
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-section__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--pad);
}

.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: white;
  line-height: 1.5;
  margin-bottom: 32px;
}

.quote-section__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-section__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.quote-section__info {
  text-align: left;
}

.quote-section__name {
  font-weight: 600;
  color: white;
  font-size: 15px;
}

.quote-section__role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ===== FLOATING DECORATIVE ELEMENTS ===== */
.floating-leaf {
  position: absolute;
  font-size: 40px;
  opacity: 0.1;
  animation: floatLeaf 15s ease-in-out infinite;
  pointer-events: none;
}

.floating-leaf:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-leaf:nth-child(2) { top: 60%; right: 15%; animation-delay: -5s; }
.floating-leaf:nth-child(3) { bottom: 20%; left: 20%; animation-delay: -10s; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

/* ===== AMENITY STRIP ===== */
.amenity-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0;
  padding: 28px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s ease;
}

.amenity-tag:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 26px;
}

/* Keep links readable inside green CTA banners (guides + any other pages).
   Global .inline-link sets a dark accent color and :visited can become green;
   inside .cta-banner we want consistent high-contrast white. */
.cta-banner a.inline-link,
.cta-banner a.inline-link:visited {
  color: #fff;
}

.cta-banner a.inline-link:hover,
.cta-banner a.inline-link:focus-visible {
  color: rgba(255, 255, 255, 0.92);
}

.cta-banner__content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
}

.cta-banner__content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.cta-banner .btn {
  background: white;
  color: var(--accent);
  flex-shrink: 0;
}

.cta-banner .btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.cta-banner__sub {
  text-align: center;
  margin: 14px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--ink-light);
}

.cta-banner__sub a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}

.cta-banner__sub a:hover {
  text-decoration-thickness: 2px;
}

/* ===== CONTACT UI IN HEADER (chips + dropdown + mobile button) ===== */
.social-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

.nav__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 600;
}

.nav__dropdown a:hover {
  background: var(--accent-light);
}

/* Open on hover + keyboard focus */
.nav__contact:hover .nav__dropdown,
.nav__contact:focus-within .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown: support JS toggling via .is-open as well as hover/focus */
.nav__dropdown.is-open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Ensure hidden attribute always wins (safety) */
[hidden]{display:none !important;}

/* icon-only chips (WhatsApp / email) */
.nav__contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav__contact-chip:hover {
  transform: translateY(-1px);
  background: var(--accent-light);
  border-color: rgba(92, 138, 110, 0.35);
}

.mobile-contact__btn {
  display: none; /* desktop default */
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-weight: 650;
}

.mobile-contact__btn:hover {
  background: var(--accent-light);
}

/* Mobile: hide the chips + dropdown button, show the single "Contact" button */
@media (max-width: 768px) {
  .nav__contact,
  .nav__contact-chip { display: none !important; }
  .mobile-contact__btn { display: inline-flex !important; }
}

@media (max-width: 600px) {
  /* ===== Global anti-overflow (prevents page shifting/side-scroll) ===== */
  html, body { width: 100%; overflow-x: hidden; }
  .wrap, .nav, .nav__inner, main, section { max-width: 100%; }

  /* ===== Mobile header: keep it compact ===== */
  .nav__inner { padding: 10px var(--pad); gap: 8px; }
  .logo__img { width: 38px; height: 38px; }
  .logo__text { font-size: 18px; }

  /* Show only: Brand + Book Now + Language selector */
  .nav__menu { gap: 8px; justify-content: flex-end; }
  .nav__menu > .nav__link:not(.nav__cta) { display: none !important; }
  .nav__contact,
  .nav__contact-chip,
  .mobile-contact__btn { display: none !important; }

  .nav__cta {
    display: inline-flex !important;
    padding: 10px 14px;
    margin-left: 0;
    white-space: nowrap;
  }

  .lang-selector {
    display: inline-flex;
    /* keep the selector at the far-right on mobile too */
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
  }

  /* ===== CTA banner: button below text (like /guides) ===== */
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 28px 18px;
  }

  .cta-banner__content { width: 100%; }

  .cta-banner .btn {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }

  /* ===== About the property: stack cards vertically on mobile ===== */
  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .experience-card--large { grid-row: auto; }

  /* Slightly tighter vertical rhythm on mobile */
  .amenity-strip{margin:18px 0;padding:20px;}
  .quote-section{padding:48px 0;}
}

/* Mobile WhatsApp header button (white circular icon beside Book CTA) */
.nav__wa-mobile {
  display: none; /* default hidden on desktop */
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.nav__wa-mobile .social-icon { width: 20px; height: 20px; display: block; }

@media (max-width: 600px) {
  .nav__wa-mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08) !important;
  }
  .nav__wa-mobile .social-icon { width: 20px !important; height: 20px !important; }
}

/* ===== HOMEPAGE: GALLERY ZONES ===== */
.gallery-zone{margin-top:18px;}
.gallery-zone__title{font-family:var(--font-display);font-size:20px;font-weight:600;margin:0 0 14px;color:var(--ink);}

/* Mosaic gallery: keep the older wow-factor layout */
.gallery{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(12,minmax(0,1fr));
}

/* Default shot sizing */
.shot{margin:0;}
.shot img{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:cover;
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease;
}
.shot img:hover{transform:translateY(-2px) scale(1.01);box-shadow:var(--shadow-lg);}

/* Mosaic placements */
.shot--a{grid-column:span 7;}
.shot--b{grid-column:span 5;}
.shot--c{grid-column:span 4;}
.shot--d{grid-column:span 4;}
.shot--e{grid-column:span 4;}

@media (max-width: 900px){
  .shot--a,.shot--b,.shot--c,.shot--d,.shot--e{grid-column:span 12;}
  .shot img{max-height:520px;}
}

/* ===== HOMEPAGE: WHY YOU'LL LOVE IT (HIGHLIGHTS) ===== */
.highlights-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.35);
  margin:0 0 26px;
}
.highlights-media img{width:100%;height:auto;display:block;object-fit:cover;}
.highlights-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events:none;
}
.highlights-media__caption{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  color:var(--ink);
  border:1px solid rgba(18,24,20,0.15);
  backdrop-filter:blur(10px);
  font-weight:700;
  letter-spacing:.02em;
}

.highlights-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
@media (max-width: 900px){
  .highlights-grid{grid-template-columns:1fr;}
}

.highlight{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow);
}
.highlight__icon{font-size:26px;margin-bottom:12px;}
.highlight__title{font-family:var(--font-display);font-size:20px;font-weight:600;margin:0 0 8px;color:var(--ink);}
.highlight__text{margin:0;color:var(--ink-light);line-height:1.75;}

/* ===== HOMEPAGE: ACCORDION (Things to do) ===== */
.accordion{display:grid;gap:14px;}
.accordion__item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.accordion__summary{
  list-style:none;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:8px 14px;
  align-items:center;
  padding:18px 18px;
  cursor:pointer;
}
.accordion__summary::-webkit-details-marker{display:none;}
.accordion__icon{font-size:20px;}
.accordion__title{font-weight:700;color:var(--ink);}
.accordion__meta{grid-column:2;color:var(--muted);font-size:13px;margin-top:2px;}
.accordion__content{padding:0 18px 18px 52px;}
.accordion__text{margin:0 0 10px;color:var(--ink-light);}
.accordion__list{margin:0 0 10px;padding-left:18px;color:var(--ink-light);}
.accordion__note{margin:0 0 10px;color:var(--muted);font-size:13px;}
.accordion__links{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px;}

.pill-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--accent-light);
  color:var(--ink);
  font-weight:700;
  font-size:13px;
  white-space:nowrap;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.pill-link:hover{transform:translateY(-1px);border-color:rgba(92,138,110,.55);}

/* ===== HOMEPAGE: EXPLORE AREA (Location shortcuts) ===== */
.explore-area{
  margin-top:28px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow);
}
.explore-area__title{font-family:var(--font-display);font-size:22px;font-weight:600;margin:0 0 6px;}
.explore-area__desc{margin:0 0 16px;color:var(--muted);}
.explore-area__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
@media (max-width: 720px){.explore-area__grid{grid-template-columns:1fr;}}

.explore-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff, #fbfaf6);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.explore-card:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:rgba(92,138,110,.55);}
.explore-card__icon{font-size:22px;}
.explore-card__content{min-width:0;}
.explore-card__title{font-weight:800;color:var(--ink);}
.explore-card__text{color:var(--muted);font-size:13px;margin-top:2px;}
.explore-card__arrow{margin-left:auto;color:var(--muted);font-weight:900;}

/* Map wrapper (iframe) */
.location-map{
  margin-top:18px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.location-map iframe{width:100%;height:420px;border:0;display:block;}
@media (max-width: 720px){.location-map iframe{height:360px;}}

.map-cta{display:flex;justify-content:center;margin-top:18px;}

/* ===== HOMEPAGE: LOCAL GUIDES CARDS ===== */
.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
@media (max-width: 980px){.cards{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.cards{grid-template-columns:1fr;}}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.card__body{padding:18px;display:flex;flex-direction:column;gap:10px;min-height:170px;}
.card__title{margin:0;font-size:16px;line-height:1.25;letter-spacing:-.01em;}
.card__title a{text-decoration:none;}
.card__title a:hover{text-decoration:underline;}
.card__text{margin:0;color:var(--ink-light);line-height:1.55;}
.card .pill-link{margin-top:auto;align-self:flex-start;}

.inline-link{color:var(--accent-dark);text-decoration:underline;text-underline-offset:3px;font-weight:600;}
.inline-link:hover{text-decoration-thickness:2px;}

/* ===== FAQ (details accordion look) ===== */
.faq{display:grid;gap:12px;}
.faq details{background:var(--card);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow);overflow:hidden;}
.faq__q{list-style:none;cursor:pointer;padding:18px 18px;font-weight:800;color:var(--ink);position:relative;}
.faq__q::-webkit-details-marker{display:none;}
.faq__q::after{content:"+";position:absolute;right:18px;top:50%;transform:translateY(-50%);color:var(--muted);font-weight:900;}
.faq details[open] .faq__q::after{content:"–";}
.faq__a{padding:0 18px 18px;color:var(--ink-light);line-height:1.75;}

/* ===== Small mobile fixes for below-the-fold sections ===== */
@media (max-width: 600px){
  .section{padding:32px 0;}
  .section__header{margin-bottom:18px;}
}

/* ===== FOOTER ===== */
footer[role="contentinfo"]{background:var(--bg-dark);color:rgba(255,255,255,.86);padding:64px 0 34px;}
footer[role="contentinfo"] a{color:rgba(255,255,255,.86);}
footer[role="contentinfo"] a:hover{color:#fff;}

.footer__grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:34px;align-items:start;}
@media (max-width: 900px){.footer__grid{grid-template-columns:1fr;gap:26px;}}

.footer__brand{max-width:520px;}
.footer__logo{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.footer__logo img{width:44px;height:44px;border-radius:50%;border:2px solid rgba(255,255,255,.18);object-fit:cover;}
.footer__logo span{font-family:var(--font-display);font-size:22px;font-weight:600;color:#fff;letter-spacing:.3px;}
.footer__text{color:rgba(255,255,255,.75);line-height:1.75;}

.footer__col h4{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.7);margin:8px 0 12px;}
.footer__links{list-style:none;display:grid;gap:8px;margin:0;padding:0;}
.footer__links a{display:inline-flex;align-items:center;gap:8px;padding:6px 0;color:rgba(255,255,255,.82);}
.footer__links a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px;}

.footer__bottom{margin-top:34px;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;}
.footer__copy{color:rgba(255,255,255,.65);font-size:13px;}

.social-links{display:flex;align-items:center;gap:10px;}
.social-links a{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.06);color:#fff;transition:transform .15s ease, background .15s ease, border-color .15s ease;}
.social-links a:hover{transform:translateY(-1px);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.28);}

/* WhatsApp floating action button (sticky) */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.12s ease;
}
.whatsapp-float:hover{ transform: scale(1.05); }

/* Generic inline WhatsApp button style (ES-style chip by default)
   - Default: neutral white chip with border (matches ES header/footer chips)
   - Bright WhatsApp green is reserved for floating button (.whatsapp-float)
     or an explicit modifier (.whatsapp-btn--brand) if we want a filled style.
*/
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.95); /* white chip like ES */
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
}

.whatsapp-btn .social-icon { width:18px; height:18px; }

/* Optional explicit brand variant if we need a filled WhatsApp green button somewhere */
.whatsapp-btn--brand {
  background: #25D366;
  color: white;
  border: none;
}

/* Keep whatsapp-float as bright circular green FAB */
.whatsapp-float { background-color: #25D366; color: white; }

/* ===== CONTACT MODAL (WhatsApp builder) ===== */
.modal[aria-hidden="true"]{display:none;}
.modal.is-open{display:block;}
.modal{position:fixed;inset:0;z-index:300;}
.modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(6px);}
.modal__panel{position:relative;z-index=1;max-width:720px;margin:90px auto 0;background:var(--card);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:22px;}
@media (max-width: 720px){.modal__panel{margin:76px 14px 0;padding:18px;}}

.modal__close{position:absolute;top:10px;right:12px;border:0;background:transparent;font-size:28px;line-height:1;color:var(--muted);cursor:pointer;padding:8px;border-radius:10px;}
.modal__close:hover{background:var(--accent-light);color:var(--ink);}

.modal__title{font-family:var(--font-display);font-size:26px;font-weight:600;margin:6px 36px 6px 0;color:var(--ink);}
.modal__desc{margin:0 0 14px;color:var(--ink-light);}

.modal__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
@media (max-width: 720px){.modal__grid{grid-template-columns:1fr;}}

.field__label{display:block;font-size:12px;font-weight:700;letter-spacing:.02em;color:var(--muted);margin-bottom:6px;}
.field__input,.field__textarea{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px 12px;font:inherit;background:#fff;}
.field__input:focus,.field__textarea:focus{outline:none;border-color:rgba(92,138,110,.65);box-shadow:0 0 0 4px rgba(92,138,110,.18);}

.modal__actions{display:flex;align-items:center;gap:12px;margin-top:14px;flex-wrap:wrap;}
@media (max-width: 520px){.modal__actions .btn{width:100%;}}

.modal__fineprint{margin-top:10px;color=var(--muted);font-size:12px;}

body.modal-open{overflow:hidden;}

/* ===== MOBILE CONTACT SHEET ===== */
.contact-sheet[aria-hidden="true"]{display:none;}
.contact-sheet.is-open{display:block;}
.contact-sheet{position:fixed;inset:0;z-index:310;}
.contact-sheet__overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);}
.contact-sheet__panel{position:absolute;left:0;right:0;bottom:0;background:var(--card);border-radius:18px 18px 0 0;border:1px solid var(--line);box-shadow:var(--shadow-lg);padding:14px 14px 18px;}
.contact-sheet__handle{width:54px;height:5px;border-radius:999px;background:rgba(0,0,0,.15);margin:6px auto 10px;}
.contact-sheet__title{font-family:var(--font-display);font-size:22px;font-weight:600;margin:0 0 4px;color:var(--ink);text-align:center;}
.contact-sheet__desc{margin:0 auto 12px;max-width:520px;color:var(--ink-light);text-align:center;}
.contact-sheet__actions{display:grid;gap:10px;}
.contact-sheet__action{display:flex;align-items:center;gap:12px;padding:12px;border-radius:14px;border:1px solid var(--line);background:linear-gradient(180deg,#fff, #fbfaf6);}
.contact-sheet__action:hover{border-color:rgba(92,138,110,.55);background:var(--accent-light);}
.contact-sheet__action-title{font-weight:800;color:var(--ink);}
.contact-sheet__action-sub{color:var(--muted);font-size:13px;}
.contact-sheet__foot{display:flex;justify-content:center;margin-top:12px;}
.contact-sheet__close{border:1px solid var(--line);background:#fff;border-radius:999px;padding:10px 16px;font-weight:800;cursor:pointer;}
.contact-sheet__close:hover{background:var(--accent-light);border-color:rgba(92,138,110,.55);}

/* ===== LIGHTBOX (Gallery viewer) ===== */
.lightbox[aria-hidden="true"]{display:none;}
.lightbox.is-open{display:block;}
.lightbox{position:fixed;inset:0;z-index:320;}
.lightbox__overlay{position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(6px);}
.lightbox__panel{position:relative;z-index:1;max-width:1100px;margin:60px auto 0;background:rgba(14,18,16,.92);border:1px solid rgba(255,255,255,.12);border-radius:18px;box-shadow:var(--shadow-lg);overflow:hidden;}
@media (max-width: 980px){.lightbox__panel{margin:46px 12px 0;}}

.lightbox__topbar{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px;color:rgba(255,255,255,.85);}
.lightbox__counter{font-size:13px;font-weight:700;}
.lightbox__close{border:0;background:transparent;color:rgba(255,255,255,.85);font-size:26px;cursor:pointer;padding:6px 10px;border-radius:10px;}
.lightbox__close:hover{background:rgba(255,255,255,.1);color:#fff;}

.lightbox__stage{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:10px 12px 16px;}
.lightbox__nav{border:0;background:rgba(255,255,255,.1);color:#fff;border-radius:12px;padding:10px 12px;cursor:pointer;}
.lightbox__nav:hover{background:rgba(255,255,255,.16);}
.lightbox__media{display:flex;align-items:center;justify-content:center;min-height:420px;}
.lightbox__img{max-width:100%;max-height:72vh;object-fit:contain;}
.lightbox__caption{padding:10px 14px 14px;color:rgba(255,255,255,.76);font-size:13px;line-height:1.5;}

@media (max-width: 720px){
  .lightbox__stage{grid-template-columns:1fr;}
  .lightbox__nav{display:none;}
  .lightbox__media{min-height:280px;}
}

/* Sticky CTA: support icon-only primary button on very small screens
   HTML for the sticky CTA buttons includes a .btn__icon (svg) and .btn__text
   We hide the text and collapse to a circular icon button on mobile. */
.sticky-cta .btn__icon { display: none; }
.sticky-cta .btn__text { display: inline; }

@media (max-width: 600px) {
  .sticky-cta .btn__text { display: none; }
  .sticky-cta .btn__icon { display: inline-flex; width: 18px; height: 18px; }

  /* Make the primary button a compact circular icon */
  .sticky-cta .btn--primary {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide the outline (secondary) action on very small screens (keeps layout compact) */
  .sticky-cta__actions .btn--outline { display: none; }
}
