/* ── RESET & VARS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --sand: #F5F0E8;
  --sand-deep: #E0D5BF;
  --ocean: #2C4A5A;
  --foam: #FAFAF7;
  --stone: #8A8070;
  --driftwood: #C4A882;
  --text-dark: #1A1410;
  --text-mid: #5A5248;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
* { max-width: 100%; box-sizing: border-box; }
body { font-family: 'Jost', sans-serif; background: var(--foam); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(26,20,16,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo { text-decoration: none; display: block; }
.nav-logo img { height: 32px; filter: brightness(0) invert(1); opacity: 0.92; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 1; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--driftwood); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative; height: 52vh; min-height: 340px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 8s ease-out;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,32,0.75) 0%, rgba(10,22,32,0.35) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 3.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.page-hero-eyebrow {
  font-size: 9px; letter-spacing: 0.32em; color: var(--driftwood);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300; line-height: 1.05; color: white;
}
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.65); }

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.2rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 300; line-height: 1.1; color: var(--ocean);
  margin-bottom: 1.8rem;
}
.section-title em { font-style: italic; }
.body-text {
  font-size: 15px; font-weight: 300; line-height: 1.95; color: var(--text-mid);
}

/* ── SHARED BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 34px;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.25s, transform 0.15s;
}
.btn-sand { background: var(--driftwood); color: white; }
.btn-sand:hover { background: #b89368; transform: translateY(-2px); }
.btn-ocean { background: var(--ocean); color: white; }
.btn-ocean:hover { background: #1a2f3a; transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 13px 32px;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--ocean); color: var(--ocean); background: transparent;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--ocean); color: white; }

/* ── STRIP ── */
.strip {
  background: var(--ocean); padding: 1.2rem 4rem;
  display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.68); font-size: 10px;
  font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase;
}
.strip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--driftwood); flex-shrink: 0; }

/* ── AWARD ── */
.award {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px; border: 1px solid var(--sand-deep); background: white; width: fit-content;
}
.award-star { color: var(--driftwood); font-size: 13px; }
.award-text { font-size: 12px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-mid); }

/* ── NETLIFY FORM ── */
.vc-form {
  display: flex; flex-direction: column; background: white;
  border: 1px solid var(--sand-deep);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; }
.form-field {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--sand-deep);
  border-right: 1px solid var(--sand-deep);
}
.form-field.full { grid-column: 1 / -1; border-right: none; }
.form-field:nth-child(even) { border-right: none; }
.form-field label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--stone); padding: 1rem 1.3rem 0.3rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none; outline: none; background: transparent;
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text-dark); padding: 0.2rem 1.3rem 1rem; resize: none;
}
.form-field select { cursor: pointer; appearance: none; }
.form-field textarea { min-height: 110px; }
.form-submit {
  padding: 1.3rem 2rem; background: var(--ocean); color: white;
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #1a2f3a; }
.form-success {
  display: none; padding: 2.5rem; text-align: center;
  background: white; border: 1px solid var(--sand-deep);
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 2rem; color: var(--driftwood); margin-bottom: 1rem; }
.form-success-title {
  font-family: 'Cormorant Garamond', serif; font-size: 30px;
  font-weight: 300; color: var(--ocean); margin-bottom: 0.5rem;
}
.form-success-text { font-size: 13px; font-weight: 300; color: var(--text-mid); }

/* ── FOOTER ── */
.site-footer {
  background: #0f0d09; padding: 3.5rem 4rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
}
.footer-logo img { height: 28px; opacity: 0.32; filter: brightness(0) invert(1); }
.footer-center { text-align: center; }
.footer-nav { display: flex; gap: 1.8rem; justify-content: center; margin-bottom: 1.2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 10px; letter-spacing: 0.16em; color: rgba(255,255,255,0.28);
  text-decoration: none; text-transform: uppercase; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--driftwood); }
.footer-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.08); margin: 0 auto 1.2rem; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.16); letter-spacing: 0.14em; text-transform: uppercase; }
.footer-right { text-align: right; }
.footer-right a {
  display: block; font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.28); letter-spacing: 0.08em;
  text-decoration: none; line-height: 2.3; transition: color 0.2s;
}
.footer-right a:hover { color: var(--driftwood); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── NAV: hamburger ── */
  .site-nav { padding: 1.1rem 1.4rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,13,9,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.8);
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 201;
    background: none;
    border: none;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: white;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── PAGE HERO ── */
  .page-hero { height: 42vh; min-height: 260px; }
  .page-hero-content { padding: 0 1.5rem 2.5rem; }
  .page-hero-title { font-size: 36px; }

  /* ── STRIP ── */
  .strip { padding: 1rem 1.2rem; gap: 1rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .strip-item { white-space: nowrap; font-size: 9px; }

  /* ── SECTION LABEL + TITLE ── */
  .section-title { font-size: 34px; }

  /* ── SHARED BTN ── */
  .btn { padding: 13px 26px; }

}

/* ── INDEX PAGE ── */
@media (max-width: 768px) {

  /* Hero */
  .hero-content { padding: 0 1.5rem 5rem; max-width: 100%; }
  .hero-title { font-size: clamp(42px, 11vw, 64px); }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-blob { display: none; }
  .hero-ghost { display: none; }

  /* About split */
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .about-content { padding: 3rem 1.5rem; }
  .section-title { font-size: 34px; }

  /* History */
  .history { grid-template-columns: 1fr; gap: 0; padding: 3.5rem 1.5rem; }
  .history-image { order: -1; }
  .history-image img { height: 260px; }

  /* Features grid */
  .features { padding: 3.5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Rooms preview */
  .rooms-preview { padding: 3.5rem 1.5rem; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .rooms-grid-b { grid-template-columns: 1fr; }
  .room-card img { height: 220px; }

  /* Location */
  .location { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem; }
  .location-title { font-size: 36px; }
  .map-box { aspect-ratio: 3/2; }

  /* Pricing teaser */
  .pricing-teaser { padding: 3.5rem 1.5rem; }
  .pricing-cards { grid-template-columns: 1fr; }

  /* Contact teaser */
  .contact-teaser { padding: 3.5rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-title { font-size: 38px; }

  /* Form rows: stack on mobile */
  .form-row { grid-template-columns: 1fr; }
  .form-field { border-right: none !important; }
  .form-field:nth-child(even) { border-right: none; }

}

/* ── VILLA PAGE ── */
@media (max-width: 768px) {
  .rooms-section { padding: 3.5rem 1.5rem; }
  .rooms-intro { margin-bottom: 2.5rem; }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail.reverse { direction: ltr; }
  .room-img { min-height: 260px; }
  .room-img img { height: 260px; }
  .room-info { padding: 2rem 1.5rem; }
  .kitchen { grid-template-columns: 1fr; }
  .kitchen-img { min-height: 260px; }
  .kitchen-img img { height: 260px; }
  .kitchen-content { padding: 3rem 1.5rem; }
  .amenities { padding: 3.5rem 1.5rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .pricing-full { padding: 3.5rem 1.5rem; }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ── GALLERY PAGE ── */
@media (max-width: 768px) {
  .gallery-section { padding: 3rem 1.2rem; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .gallery-masonry.four-col { grid-template-columns: 1fr 1fr; }
  .gallery-masonry.two-col { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item img { min-height: 160px; }
  .gallery-category-label { font-size: 8px; }
  .lightbox-prev { left: 0.5rem; padding: 0.8rem; }
  .lightbox-next { right: 0.5rem; padding: 0.8rem; }
}

/* ── ACTIVITIES PAGE ── */
@media (max-width: 768px) {
  .tabs-inner { padding: 0 1.2rem; }
  .tab-nav { gap: 0; overflow-x: auto; padding-bottom: 0; }
  .tab-btn { padding: 0.9rem 1rem; font-size: 9px; gap: 6px; }
  .tab-icon { font-size: 13px; }
  .cards-grid { grid-template-columns: 1fr; }
  .act-card.featured { grid-column: span 1; }
  .act-tip { margin-top: 1.5rem; }
}

/* ── AVAILABILITY PAGE ── */
@media (max-width: 768px) {
  .avail-section { padding: 3rem 1.5rem 2rem; }
  .avail-intro { grid-template-columns: 1fr; gap: 2rem; }
  .avail-title { font-size: 38px; }
  .cal-wrap { margin-bottom: 3rem; }
  .cal-iframe { height: 500px !important; }
  .avail-pricing { padding: 3rem 1.5rem; }
  .avail-pgrid { grid-template-columns: 1fr; }
}

/* ── PRACTICALITIES PAGE ── */
@media (max-width: 768px) {
  .prac-section { padding: 3.5rem 1.5rem; }
  .prac-grid { grid-template-columns: 1fr; }
  .prac-grid.three-col { grid-template-columns: 1fr; }
  .prac-aside { grid-template-columns: 1fr; }
  .prac-aside-img { min-height: 240px; }
  .prac-aside-content { padding: 2.5rem 1.5rem; }
  .prac-cta { padding: 3rem 1.5rem; }
  .prac-cta-title { font-size: 32px; }
}

/* ── CONTACT PAGE ── */
@media (max-width: 768px) {
  .contact-section { padding: 3.5rem 1.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-title { font-size: 40px; }
}

/* ── FOOTER ── */
@media (max-width: 768px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-right { text-align: center; }
  .footer-nav { gap: 1rem; }
}

/* ── SMALL PHONES (max 420px) ── */
@media (max-width: 420px) {
  .hero-title { font-size: 38px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-masonry.four-col { grid-template-columns: 1fr 1fr; }
  .avail-title { font-size: 32px; }
  .tab-btn { padding: 0.8rem 0.7rem; font-size: 8px; letter-spacing: 0.1em; }
}

/* ── INLINE PADDING OVERRIDES (sections with hardcoded padding in HTML) ── */
@media (max-width: 768px) {
  /* Activities intro block */
  [style*="padding: 5rem 4rem"],
  [style*="padding:5rem 4rem"] { padding: 3rem 1.5rem !important; }

  [style*="padding: 0 4rem"],
  [style*="padding:0 4rem"] { padding: 0 1.5rem !important; }

  [style*="gap: 6rem"],
  [style*="gap:6rem"] { gap: 2rem !important; }

  /* Activity and availability inner grids with inline styles */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA sections */
  .act-cta { padding: 3rem 1.5rem; }
  .act-cta-title { font-size: 34px; }

  /* Pricing cards in villa */
  .avail-pgrid { grid-template-columns: 1fr !important; }

  /* Location section inline max-width containers */
  [style*="max-width: 1000px"] { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
}


/* ── LANGUAGE SELECTOR ── */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 1rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  padding: 2px 0;
  transition: color 0.2s;
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.active { color: var(--driftwood); font-weight: 500; }
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 9px;
  line-height: 1;
  user-select: none;
}

@media (max-width: 768px) {
  .lang-selector {
    margin-right: 0.8rem;
  }
  /* Show lang selector in mobile nav overlay too */
  .nav-links.open + .lang-selector-mobile {
    display: flex;
  }
}


/* ── AERIAL SECTION ── */
.aerial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--ocean);
}
.aerial-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.aerial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.aerial-img-wrap:hover .aerial-img { transform: scale(1.04); }
.aerial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ocean) 100%);
}
.aerial-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aerial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
}
.aerial-title em { font-style: italic; color: var(--driftwood); }
.aerial-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.58);
  margin-bottom: 3rem;
}
.aerial-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.aerial-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.aerial-fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--driftwood);
  line-height: 1;
}
.aerial-fact-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .aerial { grid-template-columns: 1fr; }
  .aerial-img-wrap { min-height: 280px; }
  .aerial-img-overlay { background: linear-gradient(to top, var(--ocean) 0%, transparent 60%); }
  .aerial-content { padding: 3rem 1.5rem; }
  .aerial-title { font-size: 34px; }
  .aerial-facts { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .aerial-fact-num { font-size: 26px; }
}


/* ═══════════════════════════════════════════════════════
   MOBILE-FIRST EXPERIENCE  ≤ 768px
   ═══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── ROOT FIX: prevent any horizontal overflow ── */
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
  * { max-width: 100%; }
  img { max-width: 100%; height: auto; }

  /* ── STICKY BOOK BUTTON ── */
  .mobile-book-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.25);
  }
  .mobile-book-bar a {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem 0.8rem;
    font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: white; text-decoration: none;
    background: var(--ocean); transition: background 0.2s;
  }
  .mobile-book-bar a:first-child { border-right: 1px solid rgba(255,255,255,0.15); background: var(--driftwood); }
  body { padding-bottom: 56px; }

  /* ── HERO ── */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-content { padding: 0 1.4rem 6rem; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); line-height: 1.0; }
  .hero-sub { font-size: 13px; max-width: 100%; margin-bottom: 2rem; }
  .hero-actions { gap: 1rem; }
  .btn-ghost-white { display: none; }
  .scroll-hint { bottom: 4rem; }
  .hero-blob, .hero-ghost { display: none; }

  /* ── STRIP ── */
  .strip {
    padding: 0.8rem 1rem !important;
    gap: 0 !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .strip::-webkit-scrollbar { display: none; }
  .strip-item { padding: 0 1.2rem 0 0; white-space: nowrap; flex-shrink: 0; font-size: 9px; }

  /* ── ABOUT — one short paragraph only, big image ── */
  .about { display: block; }
  .about-image {
    height: 58vw; min-height: 180px; max-height: 240px;
  }
  .about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
  .about-content { padding: 1.8rem 1.4rem 2rem; background: var(--sand); }
  .about-content .section-label { font-size: 9px; margin-bottom: 0.5rem; }
  .about-content .section-title { font-size: 28px; margin-bottom: 0.8rem; }
  /* Show only first paragraph, hide second */
  .about-content .body-text { font-size: 13px; line-height: 1.75; margin-bottom: 0.8rem; }
  .about-content .body-text + .body-text { display: none; }
  .about-content .award { padding: 8px 12px; }
  .about-content .award-text { font-size: 11px; }

  /* ── PHOTO REEL — full width edge-to-edge ── */
  .mobile-photo-reel {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    width: 100%;
  }
  .mobile-photo-reel::-webkit-scrollbar { display: none; }
  .mobile-photo-reel .reel-cell {
    flex: 0 0 88vw;
    width: 88vw;
    height: 56vw;
    min-height: 190px;
    max-height: 260px;
    scroll-snap-align: start;
    overflow: hidden;
    position: relative;
    margin-right: 3px;
  }
  .mobile-photo-reel .reel-cell img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center; display: block;
  }
  .mobile-photo-reel .reel-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.2rem 1rem 0.8rem;
    background: linear-gradient(to top, rgba(10,22,32,0.65) 0%, transparent 100%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 300; font-style: italic; color: white;
  }
  .reel-hint {
    text-align: center; padding: 0.6rem;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--stone); background: white;
  }

  /* ── FACTS GRID ── */
  .mobile-facts {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--sand-deep);
    border-top: 1px solid var(--sand-deep);
    border-bottom: 1px solid var(--sand-deep);
  }
  .mobile-fact { background: white; padding: 1.2rem 0.8rem; text-align: center; }
  .mobile-fact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300; color: var(--ocean); line-height: 1; margin-bottom: 3px;
  }
  .mobile-fact-label { font-size: 9px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

  /* ── AERIAL — image first, short text ── */
  .aerial { display: block; }
  .aerial-img-wrap { height: 52vw; min-height: 170px; max-height: 220px; }
  .aerial-img-overlay { background: linear-gradient(to bottom, transparent 40%, rgba(44,74,90,0.9) 100%); }
  .aerial-content { padding: 1.8rem 1.4rem 2rem; background: var(--ocean); }
  .aerial-title { font-size: 28px; margin-bottom: 0.6rem; }
  /* Hide aerial sub text on mobile — facts say it all */
  .aerial-sub { display: none; }
  .aerial-facts { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .aerial-fact-num { font-size: 24px; }
  .aerial-fact-label { font-size: 9px; }

  /* ── HIDE HEAVY DESKTOP SECTIONS ── */
  .history, .features, .rooms-preview, .location,
  .pricing-teaser, .contact-teaser { display: none !important; }

  /* ── MOBILE PRICING ── */
  .mobile-pricing {
    display: block !important;
    padding: 2rem 1.4rem; background: var(--sand); text-align: center;
  }
  .mobile-pricing-title { font-family: 'Cormorant Garamond',serif; font-size: 30px; font-weight: 300; color: var(--ocean); margin-bottom: 0.3rem; }
  .mobile-pricing-title em { font-style: italic; }
  .mobile-pricing-note { font-size: 12px; font-weight: 300; color: var(--stone); margin-bottom: 1.5rem; line-height: 1.6; }
  .mobile-price-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--sand-deep); border: 1px solid var(--sand-deep); margin-bottom: 1.2rem;
  }
  .mobile-price-card { background: white; padding: 1.2rem 0.6rem; text-align: center; }
  .mobile-price-card.feat { border-top: 3px solid var(--driftwood); }
  .mobile-price-card.full-w { grid-column: 1 / -1; border-top: 1px solid var(--sand-deep); }
  .mobile-price-lbl { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.4rem; display: block; }
  .mobile-price-amt { font-family: 'Cormorant Garamond',serif; font-size: 32px; font-weight: 300; color: var(--ocean); line-height: 1; }
  .mobile-price-card.full-w .mobile-price-amt { font-size: 20px; padding-top: 0.5rem; }
  .mobile-price-unit { font-size: 10px; font-weight: 300; color: var(--stone); display: block; margin-top: 2px; }

  /* ── MOBILE BOOKING FORM ── */
  .mobile-booking {
    display: block !important;
    padding: 2rem 1.4rem; background: var(--foam);
  }
  .mobile-booking-title { font-family: 'Cormorant Garamond',serif; font-size: 30px; font-weight: 300; color: var(--ocean); margin-bottom: 0.3rem; line-height: 1.1; }
  .mobile-booking-title em { font-style: italic; }
  .mobile-booking-sub { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem; }
  .mobile-booking .vc-form .form-row { grid-template-columns: 1fr; }
  .mobile-booking .vc-form .form-field { border-right: none !important; }
  .mobile-booking .vc-form .form-field label { font-size: 8px; padding: 0.8rem 1rem 0.2rem; }
  .mobile-booking .vc-form .form-field input,
  .mobile-booking .vc-form .form-field select,
  .mobile-booking .vc-form .form-field textarea { font-size: 16px; padding: 0.2rem 1rem 0.8rem; }
  /* font-size: 16px prevents iOS auto-zoom on focus */

  /* ── FOOTER ── */
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center; padding: 2rem 1.4rem 1.5rem; gap: 1.2rem;
  }
  .footer-right { text-align: center; }
  .footer-nav { gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
  .footer-nav a { font-size: 9px; }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 769px) {
  .mobile-book-bar,
  .mobile-photo-reel,
  .reel-hint,
  .mobile-facts,
  .mobile-pricing,
  .mobile-booking { display: none !important; }
}


/* ── MOBILE INLINE PADDING OVERRIDES ── */
/* Forces all section containers to safe mobile padding regardless of inline styles */
@media (max-width: 768px) {
  /* Activities page intro */
  div[style*="padding:0 4rem"], div[style*="padding: 0 4rem"] {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }
  div[style*="padding:6rem 4rem"], div[style*="padding: 6rem 4rem"],
  div[style*="padding:5rem 4rem"], div[style*="padding: 5rem 4rem"],
  div[style*="padding:4rem"],      div[style*="padding: 4rem"],
  div[style*="padding:3rem 4rem"], div[style*="padding: 3rem 4rem"] {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }
  /* Any inline max-width container */
  div[style*="max-width:1000px"], div[style*="max-width: 1000px"],
  div[style*="max-width:860px"],  div[style*="max-width: 860px"] {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Gap reductions for inline grid styles */
  div[style*="gap: 6rem"], div[style*="gap:6rem"] { gap: 1.5rem !important; }
  div[style*="gap: 5rem"], div[style*="gap:5rem"] { gap: 1.2rem !important; }
  /* Inline grid columns → single column */
  div[style*="grid-template-columns: 1fr 1fr"], 
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: 2fr 1fr"],
  div[style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Mobile reel hint */
  .reel-hint { background: var(--foam); padding: 0.5rem; }
}

/* ── VERY SMALL PHONES (≤ 390px) ── */
@media (max-width: 390px) {
  .hero-title { font-size: 36px; }
  .mobile-price-amt { font-size: 28px; }
  .mobile-pricing-title, .mobile-booking-title { font-size: 26px; }
  .nav-logo img { height: 26px; }
  .mobile-photo-reel .reel-cell { height: 58vw; flex: 0 0 90vw; width: 90vw; }
}
