/* =========================================================
   CSS RESET & ROOT VARIABLES
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --forest: #1E2D1F;
  --forest-mid: #2E4A30;
  --forest-light: #4A7C59;
  --maroon: #6B1A1A;
  --maroon-light: #9B2727;
  --gold: #C8A96E;
  --gold-light: #E8D5A3;
  --cream: #F4EEE2;
  --cream-dark: #EBE2D0;
  --warm-white: #FAF7F2;
  --charcoal: #2C2418;
  --text-body: #4A3F33;
  --text-muted: #7A6E62;
  --shadow-deep: 0 20px 60px rgba(30,45,31,0.25);
  --shadow-card: 0 8px 32px rgba(30,45,31,0.12);
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 60px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); background: linear-gradient(180deg, rgba(20,30,18,0.65) 0%, rgba(20,30,18,0.15) 100%);
  overflow: hidden;
}
.navbar.scrolled {
  background: rgba(30,45,31,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  height: 100%;
  max-height: 80px;
  overflow: visible;
  flex-shrink: 0;
}
.nav-logo img.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  display: block;
  align-self: center;
}
.nav-logo:hover img.nav-logo-icon {
  transform: scale(1.06);
  border-color: var(--gold-light);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  align-self: center;
}
.nav-logo-text .brand {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 10px;
  color: #E8D5A3;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
.nav-logo-text .sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(232,213,163,0.75);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.nav-logo-text .sub::before,
.nav-logo-text .sub::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(232,213,163,0.55);
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(244,238,226,0.85); font-weight: 600;
  position: relative; padding-bottom: 4px; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--forest) !important;
  padding: 10px 24px !important; border-radius: 2px;
  letter-spacing: 2px !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 2px; background: var(--gold-light); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(30,45,31,0.98); z-index: 999;
  padding: 0 40px; flex-direction: column; gap: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.35s ease;
  display: flex;
}
.mobile-menu a {
  font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 3px;
  color: var(--gold-light); padding: 14px 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open {
  max-height: 520px;
  padding: 20px 40px 36px;
}
.mobile-menu.open a {
  opacity: 1; transform: translateX(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }

/* =========================================================
   PAGE SYSTEM
========================================================= */
/* .page system removed – .NET uses multi-page routing */
.page { display: block; min-height: 100vh; }
.page.active { display: block; }

/* =========================================================
   NAVBAR
========================================================= */

/* =========================================================
   HOME PAGE – HERO BANNER
========================================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1.05);
  will-change: transform, opacity;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(10,18,10,0.55) 0%,
      rgba(10,18,10,0.45) 30%,
      rgba(20,35,20,0.65) 60%,
      rgba(15,25,15,0.90) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 20;
  padding: 0 80px;
  max-width: 780px;
  animation: heroFadeUp 1.2s 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p {
  font-size: 15px;
  color: rgba(244,238,226,0.9);
  margin-bottom: 40px;
  max-width: 480px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 16px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.4); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(244,238,226,0.5);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 80px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(244,238,226,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 48px; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,238,226,0.6);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.8), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =========================================================
   SECTION STYLES
========================================================= */
.section { padding: 100px 80px; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: inherit;
}
.section-dark .section-header h2 { color: var(--cream); }
.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.8;
}
.section-dark .section-header p { color: rgba(244,238,226,0.7); }

/* =========================================================
   HOME – FEATURES STRIP
========================================================= */
.features-strip {
  background: var(--forest);
  padding: 50px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  padding: 30px 40px;
  border-right: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(200,169,110,0.08); }
.feature-icon {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 12px;
  color: rgba(244,238,226,0.6);
}

/* =========================================================
   HOME – STORY / INTRO
========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative;
}
.story-img-main {
  grid-column: 1 / -1;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-img-sm {
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}
.story-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  position: absolute;
  bottom: 24px;
  left: -30px;
  background: var(--maroon);
  color: var(--cream);
  padding: 20px 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.story-badge .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}
.story-badge .label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,238,226,0.75);
  margin-top: 4px;
}
.story-content { }
.story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 24px;
}
.story-content h2 em { font-style: italic; color: var(--maroon); }
.story-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
}
.story-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

/* =========================================================
   HOME – PACKAGES SECTION (Category-First Design)
========================================================= */

/* ── Category Selector ── */
/* =========================================================
   CATEGORY SELECTOR — NO BACKGROUND IMAGE
========================================================= */
.category-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  height: auto;
  min-height: 300px;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(30,45,31,0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px 32px;
  text-decoration: none;
  user-select: none;
}

/* Hide any leftover <img> tags inside category cards */
.category-card img { display: none !important; }

/* Per-category colour themes */
#cat-villas {
  background: linear-gradient(145deg, #1E2D1F 0%, #2E4A30 55%, #1a3d1c 100%);
  border-color: rgba(200,169,110,0.18);
}
#cat-camping {
  background: linear-gradient(145deg, #2C1A0E 0%, #4A2E10 55%, #3a2008 100%);
  border-color: rgba(200,169,110,0.18);
}
#cat-cabins {
  background: linear-gradient(145deg, #1A1A2E 0%, #2E2E4A 55%, #12122a 100%);
  border-color: rgba(200,169,110,0.18);
}

/* Decorative top-right orb */
.category-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  opacity: 0.08;
  transition: var(--transition);
}
#cat-villas::after  { background: #4A7C59; }
#cat-camping::after { background: #C8A96E; }
#cat-cabins::after  { background: #6B7BAF; }

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
}
#cat-villas:hover   { border-color: rgba(74,124,89,0.7); }
#cat-camping:hover  { border-color: rgba(200,169,110,0.7); }
#cat-cabins:hover   { border-color: rgba(107,123,175,0.7); }

.category-card:hover::after { opacity: 0.16; transform: scale(1.15); }

/* Active state */
.category-card.active {
  transform: translateY(-4px);
}
#cat-villas.active   { border-color: #4A7C59; box-shadow: 0 0 0 3px rgba(74,124,89,0.25), 0 20px 56px rgba(0,0,0,0.28); }
#cat-camping.active  { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,110,0.25), 0 20px 56px rgba(0,0,0,0.28); }
#cat-cabins.active   { border-color: #6B7BAF; box-shadow: 0 0 0 3px rgba(107,123,175,0.25), 0 20px 56px rgba(0,0,0,0.28); }

/* ── Card top section ── */
.category-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.category-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
#cat-villas  .category-icon-wrap { background: rgba(74,124,89,0.25); }
#cat-camping .category-icon-wrap { background: rgba(200,169,110,0.20); }
#cat-cabins  .category-icon-wrap { background: rgba(107,123,175,0.20); }

/* Click nudge badge */
.cat-click-badge {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  white-space: nowrap;
}
.category-card:hover .cat-click-badge,
.category-card.active .cat-click-badge {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}

/* ── Card body ── */
.category-card-body {
  position: static;
  padding: 0;
  z-index: auto;
}

.category-icon { display: none; } /* hidden — icon now in icon-wrap */

.category-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Per-category accent on h3 */
#cat-villas  .category-card-body h3 { color: #8ecfa0; }
#cat-camping .category-card-body h3 { color: var(--gold-light); }
#cat-cabins  .category-card-body h3 { color: #a0aadc; }

.category-card-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Service tags row ── */
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 24px;
}
.cat-tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  color: rgba(255,255,255,0.70);
}
#cat-villas  .cat-tag { background: rgba(74,124,89,0.30); }
#cat-camping .cat-tag { background: rgba(200,169,110,0.22); }
#cat-cabins  .cat-tag { background: rgba(107,123,175,0.22); }

/* ── CTA button at bottom ── */
.category-pill-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
#cat-villas  .category-pill-count { background: rgba(74,124,89,0.28);  color: #8ecfa0; }
#cat-camping .category-pill-count { background: rgba(200,169,110,0.22); color: var(--gold-light); }
#cat-cabins  .category-pill-count { background: rgba(107,123,175,0.22); color: #a0aadc; }

#cat-villas:hover  .category-pill-count,
#cat-villas.active .category-pill-count  { background: #4A7C59; color: #fff; }
#cat-camping:hover  .category-pill-count,
#cat-camping.active .category-pill-count { background: var(--gold); color: var(--forest); }
#cat-cabins:hover  .category-pill-count,
#cat-cabins.active .category-pill-count  { background: #6B7BAF; color: #fff; }

/* Active star indicator */
.category-active-indicator {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--forest);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.category-card.active .category-active-indicator {
  opacity: 1;
  transform: scale(1);
}

/* ── Packages Panel (revealed per category) ── */
.packages-panel {
  display: none;
}
.packages-panel.open {
  display: block;
  animation: panelReveal 0.45s ease both;
}
@keyframes panelReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.packages-panel-inner {
  padding-top: 8px;
}
.packages-panel-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.packages-panel-header .panel-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.packages-panel-header .panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--forest);
}
.panel-divider {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

/* ── Package Cards Grid ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.packages-grid .package-card:nth-child(4) { grid-column: 1; }
.packages-grid .package-card:nth-child(5) { grid-column: 2; }
.package-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  animation: pkgFadeUp 0.5s ease both;
}
@keyframes pkgFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.package-card.featured { border: 2px solid var(--gold); }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--forest);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}
/* ── Villa Slideshow ── */
.villa-slider {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--forest);
  cursor: grab;
}
.villa-slider:active { cursor: grabbing; }

.villa-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
/* Disable transition during swipe drag */
.villa-slider-track.dragging { transition: none; }

.villa-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.villa-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
  transform: scale(1);
}
/* Ken-burns fires only while card is hovered */
.villa-slider.is-playing .villa-slide.active img {
  transform: scale(1.07);
}

/* Dark overlay — lightens on hover */
.villa-slider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    transparent 38%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* "Preview Gallery" button — desktop only */
.vs-hover-hint {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vs-hover-hint span {
  background: rgba(10,18,10,0.58);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 20px;
  border: 1px solid rgba(200,169,110,0.40);
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.vs-hover-hint span:hover {
  background: rgba(200,169,110,0.22);
  border-color: rgba(200,169,110,0.7);
  transform: scale(1.05);
}
.vs-hover-hint span::before { content: '⊞'; font-size: 11px; }
/* Hint always visible — never hide on hover/playing */
/* On touch devices show a smaller tap-to-open button instead */
@media (hover: none) {
  .vs-hover-hint {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px 10px 0 0;
    inset: 0;
  }
  .vs-hover-hint span {
    font-size: 8px;
    letter-spacing: 2px;
    padding: 6px 12px;
  }
}

/* Arrows */
.vs-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(10,18,10,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  /* Desktop: hidden until hover */
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease, transform 0.2s ease;
}
.villa-slider.is-playing .vs-arrow,
.villa-slider:hover .vs-arrow { opacity: 1; }
.vs-arrow:hover {
  background: rgba(200,169,110,0.80);
  transform: translateY(-50%) scale(1.1);
}
.vs-prev { left: 10px; }
.vs-next { right: 10px; }

/* Mobile: arrows always visible */
@media (hover: none) {
  .vs-arrow {
    opacity: 1;
    width: 32px; height: 32px;
    font-size: 13px;
    background: rgba(0,0,0,0.45);
  }
}

/* Dots */
.vs-dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 6px;
  align-items: center;
}
.vs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none; padding: 0;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.vs-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}
@media (hover: none) {
  .vs-dot { width: 7px; height: 7px; }
  .vs-dot.active { width: 24px; }
}

/* Counter badge */
.vs-counter {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
/* Counter always visible on touch */
@media (hover: none) { .vs-counter { opacity: 1 !important; } }

/* Mobile swipe hint — shown once then fades */
.vs-swipe-hint {
  position: absolute;
  bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 6;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 14px;
  white-space: nowrap;
  pointer-events: none;
  animation: swipeHintFade 2.8s ease 1.2s both;
  display: none;
}
@media (hover: none) { .vs-swipe-hint { display: block; } }
@keyframes swipeHintFade {
  0%   { opacity: 0; transform: translateX(-50%) translateY(4px); }
  20%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%  { opacity: 1; }
  100% { opacity: 0; }
}

/* ── Villa Lightbox Gallery ── */
.vlb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 5, 0.97);
  display: none;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  touch-action: pan-y;
}
.vlb-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

/* Top bar */
.vlb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.vlb-title-group { display: flex; flex-direction: column; gap: 3px; }
.vlb-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.vlb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.vlb-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.vlb-close:hover { background: rgba(200,169,110,0.3); transform: rotate(90deg); }

/* Main image area */
.vlb-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.vlb-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.vlb-track.dragging { transition: none; }
.vlb-img-wrap {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.vlb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: vlbImgIn 0.45s ease both;
  display: block;
}
@keyframes vlbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Side arrows */
.vlb-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vlb-arrow:hover { background: rgba(200,169,110,0.5); transform: translateY(-50%) scale(1.08); }
.vlb-prev { left: 16px; }
.vlb-next { right: 16px; }
@media (max-width: 480px) {
  .vlb-arrow { width: 38px; height: 38px; font-size: 15px; }
  .vlb-prev { left: 8px; }
  .vlb-next { right: 8px; }
}

/* Bottom bar */
.vlb-footer {
  flex-shrink: 0;
  padding: 14px 28px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(200,169,110,0.12);
}
.vlb-dots { display: flex; gap: 8px; align-items: center; }
.vlb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: none; padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.vlb-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}
.vlb-count {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  position: absolute;
  right: 28px;
}
@media (max-width: 480px) {
  .vlb-header { padding: 14px 16px 12px; }
  .vlb-name { font-size: 18px; }
  .vlb-footer { padding: 12px 16px 18px; }
  .vlb-count { right: 16px; font-size: 10px; }
  .vlb-img-wrap { padding: 12px 8px; }
}

/* Keep old .package-img for camping cards */
.package-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-img img { transform: scale(1.06); }
.package-body { padding: 30px; }
.package-tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.package-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}
.package-body p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.package-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-features li {
  font-size: 12px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
}
.package-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.package-price .currency { font-size: 18px; color: var(--maroon); font-weight: 600; }
.package-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.package-price .period { font-size: 12px; color: var(--text-muted); padding-bottom: 6px; }
.btn-book {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-book:hover { background: var(--maroon); }
.package-card.featured .btn-book { background: var(--gold); color: var(--forest); }
.package-card.featured .btn-book:hover { background: var(--gold-light); }

/* ── Cabins Coming Soon (Beautiful) ── */
.cabins-coming-soon {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabins-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 40%, #3a2a10 100%);
  z-index: 0;
}
/* Decorative wood-grain lines */
.cabins-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      110deg,
      transparent 0px,
      transparent 28px,
      rgba(200,169,110,0.04) 28px,
      rgba(200,169,110,0.04) 30px
    );
  z-index: 1;
}
.cabins-bg::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  z-index: 1;
}
.cabins-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 60px;
  max-width: 680px;
}
.cabins-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 30px;
  padding: 7px 20px;
  margin-bottom: 28px;
}
.cabins-badge span {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cabins-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: csDotPulse 2s ease-in-out infinite;
}
@keyframes csDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
.cabins-icon-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 28px;
  animation: csIconFloat 4s ease-in-out infinite;
}
@keyframes csIconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.cabins-coming-soon h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.cabins-coming-soon h3 em {
  font-style: italic;
  color: var(--gold-light);
}
.cabins-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,169,110,0.7);
  margin-bottom: 24px;
  font-weight: 500;
}
.cabins-coming-soon p {
  font-size: 14px;
  color: rgba(244,238,226,0.72);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.9;
}
.cabins-features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cabins-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cabins-feat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.cabins-feat span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,238,226,0.55);
  font-weight: 500;
}
.cabins-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 36px;
}
.cabins-notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--forest);
  padding: 15px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 3px;
  border: none;
  box-shadow: 0 8px 28px rgba(200,169,110,0.3);
}
.cabins-notify-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(200,169,110,0.4);
}
.cabins-notify-btn svg { flex-shrink: 0; }

/* Decorative corner ornaments */
.cabins-ornament {
  position: absolute;
  z-index: 2;
  opacity: 0.18;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
}
.cabins-ornament.tl { top: 24px; left: 28px; }
.cabins-ornament.br { bottom: 24px; right: 28px; transform: rotate(180deg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .category-selector { gap: 16px; }
  .category-card { padding: 28px 24px 24px; min-height: 270px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 768px) {
  .category-selector {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .category-card {
    min-height: auto;
    padding: 24px 22px 22px;
    border-radius: 14px;
  }
  .category-card-top { margin-bottom: 18px; }
  .category-icon-wrap { width: 52px; height: 52px; font-size: 24px; border-radius: 12px; }
  .category-card-body h3 { font-size: 17px; }
  .category-card-body p { font-size: 12px; }
  .cat-tags { gap: 6px; margin: 12px 0 16px; }
  .cat-tag { font-size: 8px; padding: 3px 8px; }
  .category-pill-count { font-size: 9px; padding: 10px 18px; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }
  .packages-panel-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .panel-divider { display: none; }
  .packages-panel-header .panel-title { font-size: 24px; }
  .cabins-content { padding: 44px 24px; }
  .cabins-features-row { gap: 18px; }
  .cabins-ornament { font-size: 50px; }
}
@media (max-width: 480px) {
  .category-card { padding: 20px 18px 18px; border-radius: 12px; }
  .category-icon-wrap { width: 46px; height: 46px; font-size: 22px; }
  .category-card-body h3 { font-size: 15px; letter-spacing: 2px; }
  .category-card-body p { font-size: 11px; }
  .cat-tags { margin: 10px 0 14px; }
  .category-pill-count { font-size: 9px; padding: 9px 14px; }
  .cabins-coming-soon { min-height: 380px; }
  .cabins-content { padding: 36px 18px; }
  .cabins-icon-wrap { width: 68px; height: 68px; font-size: 28px; }
  .cabins-features-row { gap: 12px; }
  .cabins-feat-icon { width: 36px; height: 36px; font-size: 14px; }
  .cabins-feat span { font-size: 9px; }
  .cabins-coming-soon h3 { font-size: 30px; }
}

/* =========================================================
   HOME – GALLERY PREVIEW
========================================================= */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,45,31,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-overlay-icon {
  color: #fff;
  font-size: 32px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(30,45,31,0.45); }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* =========================================================
   HOME – TESTIMONIALS
========================================================= */
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow: hidden;
}
.testimonial-card {
  min-width: calc(33.33% - 20px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 4px;
  padding: 40px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(200,169,110,0.08); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}
.author-info .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.author-info .loc {
  font-size: 11px;
  color: rgba(244,238,226,0.5);
  margin-top: 2px;
}

/* =========================================================
   HOME – NATURE STRIP
========================================================= */
.nature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.nature-img {
  height: 100%;
  min-height: 500px;
}
.nature-content {
  background: var(--maroon);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nature-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,3.5vw,52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}
.nature-content p {
  font-size: 14px;
  color: rgba(244,238,226,0.8);
  line-height: 1.9;
  margin-bottom: 36px;
}
.nature-stats {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
.stat-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,238,226,0.6);
  margin-top: 4px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 80px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo img.footer-logo-icon { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,110,0.4); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.footer-logo .name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(244,238,226,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(244,238,226,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,226,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(244,238,226,0.4); }

/* =========================================================
   RESPONSIVE – TABLET (≤ 1024px)
========================================================= */
@media (max-width: 1024px) {
  .navbar { padding: 0 30px; }
  .nav-links { gap: 20px; }
  .section { padding: 80px 40px; }
  .hero-content { padding: 0 40px; }
  .features-strip { padding: 40px; grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { border-bottom: 1px solid rgba(200,169,110,0.2); }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-bottom: none; }
  .story-grid { gap: 40px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }
  .category-selector { gap: 16px; }
  .category-card { min-height: auto; height: auto; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
  .gallery-item.wide { grid-column: span 2; height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nature-content { padding: 60px 40px; }
  footer { padding: 60px 40px 30px; }
}

/* =========================================================
   RESPONSIVE – MOBILE (≤ 768px)
========================================================= */
@media (max-width: 768px) {
  /* ── Mobile branding ── */
  .nav-logo { flex-direction: row !important; align-items: center !important; gap: 8px !important; height: 64px !important; max-height: 64px !important; }
  .nav-logo img.nav-logo-icon { width: 34px !important; height: 34px !important; object-fit: cover !important; border-radius: 50% !important; display: block !important; align-self: center !important; flex-shrink: 0 !important; }
  .nav-logo-text { display: flex !important; flex-direction: column !important; align-items: flex-start !important; justify-content: center !important; gap: 2px !important; line-height: 1 !important; align-self: center !important; }
  .nav-logo-text .brand { font-family: 'Cinzel', serif !important; font-size: 20px !important; letter-spacing: 7px !important; color: #C8A96E !important; font-weight: 600 !important; text-transform: uppercase !important; line-height: 1 !important; text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95); }
  .nav-logo-text .sub { display: flex !important; align-items: center !important; gap: 8px !important; font-family: 'Cinzel', serif !important; font-size: 8px !important; letter-spacing: 3px !important; color: rgba(200,169,110,0.75) !important; font-weight: 400 !important; text-transform: uppercase !important; white-space: nowrap !important; }
  .nav-logo-text .sub::before, .nav-logo-text .sub::after { content: '' !important; display: inline-block !important; width: 22px !important; height: 1px !important; background: rgba(200,169,110,0.6) !important; }
  /* ---- NAVBAR ---- */
  .navbar {
    padding: 0 20px;
    height: 64px;
    background: var(--forest) !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.35);
    overflow: hidden;
  }
  .navbar.scrolled {
    background: var(--forest) !important;
  }
  /* Hide logo image & sub-text on mobile, keep only brand name */
  .nav-links { display: none !important; }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
  }
  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 1px;
    transition: var(--transition);
  }
  /* Hamburger becomes × when open */
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-menu {
    top: 64px;
    background: var(--forest);
    border-top: 1px solid rgba(200,169,110,0.2);
    padding: 0 24px;
  }
  .mobile-menu.open { max-height: 520px; padding: 16px 24px 32px; }
  .mobile-menu a {
    font-size: 13px;
    letter-spacing: 3px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(200,169,110,0.12);
  }
  .mobile-menu a:last-child { border-bottom: none; }

  /* ---- HERO ---- */
  .hero {
    height: 100svh;
    min-height: 100svh;
    padding-top: 64px;
    padding-bottom: 80px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    align-items: center;
    isolation: isolate;
  }
  .hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute !important;
    inset: 0;
    z-index: 1;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1) !important;
  }
  .hero-content {
    position: relative;
    z-index: 10;
  }
  .hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: none !important;
  }
  /* Stronger overlay on mobile to mask busy image text/signs */
  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8,15,8,0.62) 0%,
        rgba(8,15,8,0.55) 25%,
        rgba(12,22,12,0.68) 55%,
        rgba(10,18,10,0.93) 100%
      ) !important;
  }
  .hero-content { padding: 0 24px; max-width: 100%; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.6); }
  .hero p { font-size: 14px; text-shadow: 0 1px 10px rgba(0,0,0,0.6); }
  .hero-btns { flex-wrap: wrap; gap: 12px; }
  .btn-primary, .btn-outline { padding: 14px 28px; font-size: 9px; }
  .hero-dots { right: 24px; bottom: 20px; }
  .hero-scroll { display: none; }

  /* ---- FEATURES STRIP ---- */
  .features-strip {
    padding: 30px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .feature-item { padding: 20px 16px; }
  .feature-item:nth-child(1),
  .feature-item:nth-child(2) { border-bottom: 1px solid rgba(200,169,110,0.2); }
  .feature-item:nth-child(1),
  .feature-item:nth-child(3) { border-right: 1px solid rgba(200,169,110,0.2); }
  .feature-item:nth-child(2),
  .feature-item:nth-child(4) { border-right: none; }
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) { border-bottom: none; }

  /* ---- SECTIONS ---- */
  .section { padding: 60px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(30px, 8vw, 44px); }

  /* ---- STORY ---- */
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-images { order: -1; }
  .story-badge { left: 0; bottom: -16px; }
  .story-img-main { height: 240px; }
  .story-img-sm { height: 160px; }

  /* ---- PACKAGES ---- */
  .packages-grid { grid-template-columns: 1fr; gap: 24px; }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }

  /* ---- GALLERY (collage layout preserved on mobile) ---- */
  .gallery-masonry {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    grid-auto-rows: 150px !important;
    gap: 6px !important;
    overflow: hidden !important;
  }
  .gallery-item { height: 150px !important; overflow: hidden !important; }
  /* G-1 stays tall, spanning 2 rows */
  .gallery-item.tall { grid-row: span 2 !important; height: auto !important; min-height: 300px !important; }
  /* G-3 spans full width */
  .gallery-item.wide { grid-column: span 2 !important; height: 160px !important; }
  /* 5th image (right-tall on desktop) becomes full-width on mobile */
  .gallery-masonry .gallery-item[style] {
    grid-column: 1 / span 2 !important;
    grid-row: auto !important;
    height: 180px !important;
    min-height: 180px !important;
    margin-top: 14px !important;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials-slider { flex-direction: column; gap: 16px; }
  .testimonial-card { min-width: 100%; padding: 28px 20px; }
  .testimonial-card blockquote { font-size: 17px; }

  /* ---- NATURE STRIP ---- */
  .nature-strip { grid-template-columns: 1fr; min-height: auto; }
  .nature-img { min-height: 280px; height: 280px; }
  .nature-content { padding: 50px 24px; }
  .nature-stats { gap: 24px; flex-wrap: wrap; }

  /* ---- FOOTER ---- */
  footer { padding: 50px 20px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* ---- BOOKING MODAL ---- */
  .modal-header { padding: 20px 24px; }
  .modal-header h2 { font-size: 22px; }
  .modal-body { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-package-info { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* ---- FLOATING BUTTONS ---- */
  .float-btn-label { display: none; }
  .floating-socials { bottom: 16px; right: 16px; gap: 10px; }
}

/* =========================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
========================================================= */
@media (max-width: 480px) {
  .navbar { padding: 0 16px; height: 60px; }
  .mobile-menu { top: 60px; }
  .section { padding: 50px 16px; }
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 460px;
    width: 100vw;
  }
  .hero-slides, .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-content { padding: 0 16px; }
  .features-strip { padding: 24px 16px; }
  .feature-item { padding: 16px 12px; gap: 12px; }
  .feature-icon { font-size: 22px; }
  .nature-content { padding: 40px 16px; }
  footer { padding: 40px 16px 24px; }
  .modal-header { padding: 18px 16px; }
  .modal-body { padding: 20px 16px; }
  /* Gallery on very small screens – collage preserved */
  .gallery-masonry {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto !important;
    grid-auto-rows: 120px !important;
    gap: 4px !important;
  }
  .gallery-item { height: 120px !important; overflow: hidden !important; }
  .gallery-item.tall { grid-row: span 2 !important; height: auto !important; min-height: 240px !important; }
  .gallery-item.wide { grid-column: span 2 !important; height: 130px !important; }
  .gallery-masonry .gallery-item[style] {
    grid-column: 1 / span 2 !important;
    grid-row: auto !important;
    height: 150px !important;
    min-height: 150px !important;
    margin-top: 14px !important;
  }
  /* Story images on very small screens */
  .story-img-main { height: 200px; }
  .story-img-sm { height: 140px; }
}

/* =========================================================
   BOOKING MODAL
========================================================= */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  background: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--forest);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header-brand { display: flex; align-items: center; gap: 16px; }
.modal-header-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,238,226,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.35); flex-shrink: 0; }
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
}
.modal-header p { font-size: 12px; color: rgba(244,238,226,0.6); letter-spacing: 1px; margin-top: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,238,226,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-body { padding: 40px; }
.modal-package-info {
  background: var(--cream);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-package-info .pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
}
.modal-package-info .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--maroon);
}
.modal-package-info .pkg-price span { font-size: 13px; color: var(--text-muted); }
.modal-success {
  text-align: center;
  padding: 30px 20px;
  display: none;
}
.modal-success.show { display: block; }
.modal-success-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,169,110,0.4); margin: 0 auto 18px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.18); animation: modalSuccessPop 0.5s ease; }
@keyframes modalSuccessPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
.modal-success .success-icon { font-size: 60px; margin-bottom: 16px; }
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.modal-success p { font-size: 14px; color: var(--text-body); }
.form-divider {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
/* =========================================================
   RESPONSIVE (legacy – kept minimal, overridden above)
========================================================= */
@media(max-width:1100px) and (min-width:769px) {
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }
  .gallery-masonry { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-masonry .gallery-item { height: 240px; }
  .gallery-masonry .gallery-item.tall, .gallery-masonry .gallery-item.wide { grid-column: unset; grid-row: unset; height: 240px; }
  .features-strip { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .navbar { padding: 0 30px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 30px; }
  .hero-content { padding: 0 30px; }
  .hero-dots { right: 30px; }
  .hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1) !important;
  }
  .hero-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
  }
  .story-grid, .nature-strip { grid-template-columns: 1fr; }
  .nature-img { min-height: 300px; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-grid .package-card:nth-child(4),
  .packages-grid .package-card:nth-child(5) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .story-badge { left: 0; }
  .footer { padding: 60px 30px 30px; }
  .modal-body { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
.nav-logo-text .sub   { font-size: 9px; letter-spacing: 4px; color: rgba(232,213,163,0.7); font-weight: 400; text-transform: uppercase; }


@media(max-width: 900px) {
}
/* =========================================================
   SCROLL ANIMATIONS
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Color for forest icon */
.text-gold { color: var(--gold); }
.text-forest { color: var(--forest); }
.text-maroon { color: var(--maroon); }
.mt-10 { margin-top: 10px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* =========================================================
   INSTAGRAM GLIMPSE SECTION
========================================================= */
.ig-glimpse {
  padding: 80px 80px;
  background: var(--cream);
  text-align: center;
}
.ig-glimpse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
}
.ig-glimpse-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.ig-glimpse-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.ig-glimpse-item:hover img { transform: scale(1.06); }
.ig-glimpse-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,45,31,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-glimpse-item:hover .ig-glimpse-overlay { background: rgba(30,45,31,0.38); }
.ig-glimpse-icon {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ig-glimpse-item:hover .ig-glimpse-icon { opacity: 1; transform: scale(1); }
.ig-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.ig-cta-link:hover { color: var(--maroon); border-color: var(--maroon); }

@media (max-width: 768px) {
  .ig-glimpse {
    padding: 60px 20px;
  }
  .ig-glimpse-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
    max-width: 480px;
  }
  .ig-glimpse-item {
    aspect-ratio: 4/3;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .ig-glimpse {
    padding: 50px 16px;
  }
  .ig-glimpse-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }
  .ig-glimpse-item {
    aspect-ratio: 4/3;
  }
}

/* =========================================================
   FLOATING WHATSAPP & INSTAGRAM BUTTONS
========================================================= */
.floating-socials {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  height: 52px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
  max-width: 52px;
  white-space: nowrap;
}
.float-btn:hover { max-width: 240px; box-shadow: 0 10px 36px rgba(0,0,0,0.3); transform: translateY(-2px); }
.float-btn-icon { width: 52px; height: 52px; border-radius: 30px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-btn-label { padding-right: 20px; opacity: 0; transition: opacity 0.2s ease 0.1s; }
.float-btn:hover .float-btn-label { opacity: 1; }
.float-whatsapp { background: #25D366; }
.float-whatsapp .float-btn-icon { background: #1ebe5d; }
.float-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.float-instagram .float-btn-icon { background: rgba(0,0,0,0.15); }
/* =========================================================
   RESPONSIVE OVERHAUL — FULL COVERAGE
   Added: mobile-first improvements across all breakpoints
========================================================= */

/* ── Ensure no horizontal overflow anywhere ── */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ── Fix touch targets ── */
a, button, [onclick] {
  min-height: 44px;
  min-width: 44px;
}
.nav-links a, .footer-col ul li a {
  min-height: unset;
  min-width: unset;
}

/* =========================================================
   LARGE DESKTOP  (1440px+)
========================================================= */
@media (min-width: 1440px) {
  .navbar { padding: 0 80px; }
  .section { padding: 120px 120px; }
  .hero-content { padding: 0 120px; max-width: 900px; }
  .features-strip { padding: 60px 120px; }
  footer { padding: 100px 120px 50px; }
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 80px; }
}

/* =========================================================
   LAPTOP / SMALL DESKTOP  (1100px – 1280px)
========================================================= */
@media (max-width: 1280px) {
  .navbar { padding: 0 48px; }
  .section { padding: 90px 60px; }
  .hero-content { padding: 0 60px; }
  .features-strip { padding: 44px 60px; }
  footer { padding: 80px 60px 36px; }
}

/* =========================================================
   TABLET LANDSCAPE  (900px – 1024px)
========================================================= */
@media (max-width: 1024px) and (min-width: 769px) {
  /* Navbar */
  .navbar { padding: 0 32px; height: 72px; overflow: hidden; }
  .nav-logo { height: 72px !important; max-height: 72px !important; align-items: center !important; }
  .nav-logo img.nav-logo-icon { align-self: center !important; display: block !important; flex-shrink: 0 !important; }
  .nav-logo-text { align-self: center !important; justify-content: center !important; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; letter-spacing: 1.8px; }
  .nav-cta { padding: 9px 18px !important; font-size: 10px !important; }

  /* Hero */
  .hero-content { padding: 0 48px; }
  .hero h1 { font-size: clamp(44px, 6vw, 72px); }

  /* Story */
  .story-grid { gap: 48px; }
  .story-badge { left: -10px; }

  /* Features strip */
  .features-strip { padding: 36px 32px; }

  /* Section */
  .section { padding: 80px 48px; }

  /* Footer */
  footer { padding: 64px 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* =========================================================
   TABLET PORTRAIT  (600px – 900px)
========================================================= */
@media (max-width: 900px) and (min-width: 601px) {
  .hero-content { max-width: 100%; padding: 0 32px; }
  .hero h1 { font-size: clamp(40px, 8.5vw, 64px); }
  .hero p { font-size: 14px; max-width: 100%; }
  .hero-btns { gap: 12px; }

  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-img-main { height: 300px; }
  .story-img-sm { height: 180px; }
  .story-badge { left: 0; bottom: -10px; }

  .nature-strip { grid-template-columns: 1fr; }
  .nature-img { min-height: 320px; height: 320px; }
  .nature-content { padding: 56px 32px; }
}

/* =========================================================
   MOBILE  (≤ 768px) — Additional fine-tuning
========================================================= */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    height: 64px;
    padding: 0 20px;
  }
  .nav-logo-text .brand { font-size: 19px; letter-spacing: 6px; }
  .nav-logo-text .sub { font-size: 7.5px; }

  /* ── Hero ── */
  .hero {
    padding-bottom: 60px;
    align-items: center;
  }
  .hero-content { padding: 0 22px; }
  .hero h1 { font-size: clamp(34px, 9vw, 54px); }
  .hero p { max-width: 100%; font-size: 14px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 4px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-outline {
    padding: 14px 28px;
    font-size: 9px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Sections ── */
  .section { padding: 56px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: clamp(28px, 7.5vw, 44px); }
  .section-header p { font-size: 14px; }

  /* ── Features strip ── */
  .features-strip {
    grid-template-columns: 1fr 1fr;
    padding: 28px 20px;
  }
  .feature-icon { font-size: 24px; }
  .feature-text h4 { font-size: 11px; }
  .feature-text p { font-size: 11px; }

  /* ── Story ── */
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-img-main { height: 260px; }
  .story-img-sm { height: 170px; }
  .story-badge { left: 0; bottom: -12px; }
  .story-badge .number { font-size: 36px; }
  .story-content h2 { font-size: clamp(28px, 7vw, 42px); }

  /* ── Nature strip ── */
  .nature-strip { grid-template-columns: 1fr; }
  .nature-img { min-height: 260px; height: 260px; }
  .nature-content { padding: 48px 20px; }
  .nature-content h2 { font-size: clamp(28px, 7vw, 42px); }
  .nature-stats { flex-wrap: wrap; gap: 20px; }
  .stat-item .num { font-size: 38px; }

  /* ── Testimonials ── */
  .testimonials-slider { flex-direction: column; }
  .testimonial-card { min-width: 100%; padding: 28px 20px; }
  .testimonial-card blockquote { font-size: 16px; }

  /* ── Packages ── */
  .package-body { padding: 24px; }
  .package-body h3 { font-size: 24px; }
  .package-price .amount { font-size: 36px; }

  /* ── Footer ── */
  footer { padding: 50px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-bottom p { font-size: 11px; }

  /* ── Booking Modal ── */
  .modal { border-radius: 4px; }
  .modal-header { padding: 20px 22px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .modal-package-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px;
  }
  .modal-package-info .pkg-name { font-size: 18px; }
  .modal-package-info .pkg-price { font-size: 20px; }

  /* ── Villa lightbox ── */
  .vlb-header { padding: 12px 16px; }
  .vlb-name { font-size: 16px; }
  .vlb-footer { padding: 10px 16px 16px; }

  /* ── Floating buttons ── */
  .floating-socials { bottom: 18px; right: 14px; gap: 10px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn-label { display: none; }
  .float-btn:hover { max-width: 46px; }

  /* ── Gallery masonry (home preview) ── */
  .gallery-masonry { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
  .gallery-item { height: 140px !important; }
  .gallery-item.tall { grid-row: span 2 !important; height: auto !important; min-height: 280px !important; }
  .gallery-item.wide { grid-column: span 2 !important; height: 150px !important; }

  /* ── Instagram glimpse ── */
  .ig-glimpse { padding: 52px 20px; }
  .ig-glimpse-grid { grid-template-columns: 1fr; max-width: 100%; margin-top: 28px; gap: 14px; }
  .ig-glimpse-item { aspect-ratio: 4/3; }
}

/* =========================================================
   SMALL MOBILE  (≤ 480px)
========================================================= */
@media (max-width: 480px) {
  .navbar { height: 60px; padding: 0 16px; }
  .mobile-menu { top: 60px; }
  .nav-logo-text .brand { font-size: 17px; letter-spacing: 5px; }

  .hero { padding-bottom: 48px; }
  .hero-content { padding: 0 16px; }
  .hero h1 { font-size: clamp(30px, 9vw, 46px); }
  .hero-eyebrow { font-size: 8px; gap: 10px; }
  .hero-eyebrow::before { width: 24px; }

  .section { padding: 44px 16px; }
  .section-header h2 { font-size: clamp(26px, 7.5vw, 38px); }

  .features-strip { padding: 24px 16px; }
  .feature-item { padding: 14px 10px; gap: 10px; }

  .story-img-main { height: 200px; }
  .story-img-sm { height: 140px; }
  .story-badge .number { font-size: 30px; }
  .story-badge .label { font-size: 7px; }

  .package-body { padding: 18px; }
  .package-body h3 { font-size: 20px; }
  .package-price .amount { font-size: 30px; }
  .package-features li { font-size: 11px; }

  .nature-content { padding: 40px 16px; }
  .nature-stats { gap: 16px; }
  .stat-item .num { font-size: 32px; }

  footer { padding: 40px 16px 24px; }
  .footer-logo .name { font-size: 14px; }

  .modal-header { padding: 16px 16px; }
  .modal-header h2 { font-size: 18px; }
  .modal-body { padding: 18px 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 13px; padding: 11px 14px; }

  .floating-socials { bottom: 14px; right: 10px; }
  .float-btn { height: 44px; max-width: 44px; }
  .float-btn-icon { width: 44px; height: 44px; }

  .gallery-masonry { grid-template-columns: 1fr 1fr !important; gap: 4px !important; }
  .gallery-item { height: 110px !important; }
  .gallery-item.tall { min-height: 220px !important; }
  .gallery-item.wide { height: 120px !important; }
}

/* =========================================================
   EXTRA SMALL  (≤ 360px)
========================================================= */
@media (max-width: 360px) {
  .navbar { padding: 0 12px; height: 58px; }
  .mobile-menu { top: 58px; }
  .nav-logo-text .brand { font-size: 15px; letter-spacing: 4px; }
  .nav-logo-text .sub { display: none !important; }

  .section { padding: 36px 12px; }
  .hero-content { padding: 0 12px; }
  .hero h1 { font-size: 28px; }
  footer { padding: 36px 12px 20px; }
  .mobile-menu a { font-size: 12px; letter-spacing: 2px; }
}

/* =========================================================
   LANDSCAPE PHONE  (max-height: 500px and max-width: 900px)
========================================================= */
@media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: 60px;
    padding-bottom: 48px;
    align-items: center;
  }
  .hero-content { max-width: 100%; padding: 0 24px; }
  .hero h1 { font-size: clamp(28px, 6vh, 44px); margin-bottom: 16px; }
  .hero p { font-size: 13px; margin-bottom: 24px; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .btn-primary, .btn-outline { width: auto; padding: 11px 22px; font-size: 9px; }
  .hero-scroll { display: none; }
  .hero-dots { bottom: 12px; right: 24px; }

  .mobile-menu { top: 60px; }
  .navbar { height: 60px; }
}

/* =========================================================
   HIGH-RESOLUTION / RETINA SCREENS
========================================================= */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .navbar { -webkit-font-smoothing: antialiased; }
  .nav-logo-text .brand { -webkit-font-smoothing: antialiased; }
}

/* =========================================================
   PRINT STYLES
========================================================= */
@media print {
  .navbar, .mobile-menu, .hamburger,
  .floating-socials, .modal-overlay,
  .vlb-overlay, .hero-dots, .hero-scroll { display: none !important; }
  body { background: white; color: black; }
  .hero { height: auto; min-height: auto; padding: 40px 40px 20px; }
  .hero-slides, .hero-slide, .hero-overlay { display: none !important; }
  .hero-content { position: static; color: black; padding: 0; }
  .section { padding: 30px 40px; break-inside: avoid; }
  a { color: inherit; text-decoration: underline; }
}
