/* ═══════════════════════════════════════════
   AMMATRA NATURES VILLAGE — STYLESHEET
   Luxury Nature · Jim Corbett
═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest-deep:  #061a06;
  --forest-dark:  #0d2e0d;
  --forest-mid:   #1a5c1a;
  --forest-light: #2d8a2d;
  --forest-pale:  #e6f2e6;
  --gold:         #c9a030;
  --gold-light:   #e8c060;
  --gold-pale:    #f7f0de;
  --cream:        #faf7f0;
  --cream-dk:     #f0ebe0;
  --text-dark:    #1a1208;
  --text-mid:     #3a3020;
  --text-light:   #7a7060;
  --white:        #ffffff;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 6px 30px rgba(0,0,0,.14);
  --shadow-lg:    0 16px 60px rgba(0,0,0,.22);
  --trans:        all .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ── */
.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 12px;
}
.section-tag.light { color: rgba(255,255,255,.55); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--forest-mid); }
.section-title.light { color: var(--white); }

.title-rule {
  width: 60px; height: 2px;
  background: var(--forest-mid);
  margin: 16px 0 20px;
}
.title-rule.gold { background: var(--gold); }

.section-header.centered { text-align: center; }
.section-header.centered .title-rule { margin: 16px auto 20px; }
.section-sub {
  max-width: 600px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}
.section-header.centered .section-sub { margin: 0 auto; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(6,26,6,.72);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.modal-backdrop.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--cream);
  border-radius: var(--radius-xl);
  width: min(480px, 92vw);
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.modal-backdrop.active .modal { transform: translateY(0) scale(1); }

.modal-leaf-deco {
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,138,45,.12), transparent 70%);
  pointer-events: none;
}

.modal-close {
  position: absolute; top: 18px; right: 20px;
  font-size: 20px; color: var(--text-light);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.modal-close:hover { background: var(--cream-dk); color: var(--text-dark); }

.modal-tag {
  display: inline-block;
  background: var(--forest-pale);
  color: var(--forest-mid);
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.modal-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

.modal-form .form-group { margin-bottom: 14px; }
.modal-form input {
  width: 100%; padding: 16px 18px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-md);
  font-family: 'Jost', sans-serif; font-size: 14px;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--trans);
  outline: none;
}
.modal-form input:focus { border-color: var(--forest-mid); box-shadow: 0 0 0 3px rgba(45,138,45,.12); }
.modal-form input::placeholder { color: var(--text-light); }
.modal-form input.input-error { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  margin-top: 5px;
  padding-left: 2px;
}
.field-error.visible { display: block; }

.btn-enquire {
  width: 100%; padding: 16px;
  background: var(--forest-mid);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600; letter-spacing: .5px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  transition: var(--trans);
}
.btn-enquire:hover { background: var(--forest-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.navbar.scrolled {
  background: rgba(6,26,6,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 20px 40px;
  transition: padding .4s ease;
}
.navbar.scrolled .nav-inner { padding: 14px 40px; }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--white); flex-shrink: 0;
}
.nav-logo-img { height: 42px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  color: rgba(255,255,255,.85);
  position: relative; padding-bottom: 2px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.btn-brochure {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  border-radius: 6px;
  transition: var(--trans);
}
.btn-brochure:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,160,48,.4); }

.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 500;
  transition: color .25s;
}
.nav-phone:hover { color: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.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); }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(6,26,6,.97);
  padding: 20px 40px 28px;
  gap: 4px;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu a {
  color: rgba(255,255,255,.85); font-size: 15px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-brochure { color: var(--gold) !important; font-weight: 600; }
.mobile-phone { color: rgba(255,255,255,.7) !important; font-size: 13px !important; border: none !important; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(6,26,6,.75) 0%, rgba(6,26,6,.45) 50%, rgba(6,26,6,.3) 100%);
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 280px;
  background: linear-gradient(to top, var(--forest-deep), transparent);
}
.hero-gradient-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 500px;
  background: linear-gradient(to right, rgba(6,26,6,.5), transparent);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; width: 100%; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}

.hero-left { max-width: 620px; }

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 22px;
}
.eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); }

.hero-title {
  display: flex; flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 108px);
  font-weight: 300; line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.title-line { display: block; overflow: hidden; }
.tl1 { animation: slideUp .8s .2s both ease; }
.tl2 { animation: slideUp .8s .35s both ease; font-style: italic; color: rgba(255,255,255,.85); }
.tl3 { animation: slideUp .8s .5s both ease; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 16px; color: rgba(255,255,255,.72);
  line-height: 1.65; margin-bottom: 36px;
  animation: slideUp .8s .65s both ease;
}

.hero-cta-group {
  display: flex; align-items: center; gap: 16px;
  animation: slideUp .8s .8s both ease;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: var(--forest-mid);
  border-radius: 10px;
  transition: var(--trans);
  border: 1px solid rgba(255,255,255,.1);
}
.btn-hero-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,138,45,.4);
}
.btn-icon-wrap {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.btn-text-wrap { display: flex; flex-direction: column; gap: 2px; }
.btn-label-top { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.btn-label-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: .5px; }

.btn-hero-ghost {
  padding: 16px 28px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 10px;
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
  color: var(--white);
  transition: var(--trans);
}
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  animation: slideUp .8s .9s both ease;
}
.stat-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transition: var(--trans);
}
.stat-card:hover { background: rgba(255,255,255,.13); border-color: rgba(201,160,48,.4); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600; line-height: 1;
  color: var(--gold);
}
.stat-lbl { font-size: 11px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,.6); text-transform: uppercase; }

.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fadeIn 1s 1.2s both ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--gold);
  animation: scrollAnim 2s infinite ease;
}
@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
.scroll-hint span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ══════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════ */
.amenities-section {
  background: var(--cream);
  padding: 100px 0 80px;
}
.amenities-section .section-header { margin-bottom: 60px; }

.bento-grid {
  max-width: 1320px; margin: 0 auto 20px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.bento-large { grid-row: span 2; }
.bento-tall   { grid-row: span 2; }
.bento-top-r  { grid-column: 2; grid-row: 1; }
.bento-bot-r  { grid-column: 2; grid-row: 2; }

.bento-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  background: var(--forest-dark);
}
.bento-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.bento-card:hover img { transform: scale(1.05); }

.bento-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(6,26,6,.88) 0%, transparent 100%);
  transform: translateY(60%);
  transition: transform .4s ease;
}
.bento-card:hover .bento-overlay { transform: translateY(0); }
.bento-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--white);
  margin-bottom: 6px;
}
.bento-overlay p { font-size: 12px; color: rgba(255,255,255,.72); line-height: 1.5; }

/* Row 2 of amenities */
.bento-row2 {
  max-width: 1320px; margin: 0 auto 50px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
  height: 300px;
}
.bento-wide, .bento-sm { border-radius: var(--radius-lg); }

/* Pills */
.amenities-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  padding: 0 40px;
  max-width: 1320px; margin: 0 auto;
}
.pill {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid rgba(45,138,45,.2);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 7px;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.pill:hover { background: var(--forest-mid); color: var(--white); border-color: var(--forest-mid); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FIND YOUR PERFECT ESCAPE
══════════════════════════════════════════ */
.escape-section {
  background: var(--cream-dk);
  padding: 100px 0;
}

.escape-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px;
}
.escape-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600; color: var(--text-dark); line-height: 1.1;
  margin-bottom: 8px;
}
.escape-title em { font-style: italic; color: var(--forest-mid); }
.escape-sub { font-size: 14px; color: var(--text-light); }

.escape-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500; letter-spacing: .3px;
  color: var(--text-mid);
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--white);
}
.filter-btn.hidden { display: none; }

.escape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.escape-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-dark);
  box-shadow: var(--shadow-md);
  transition: var(--trans);
  cursor: pointer;
}
.escape-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.escape-card.hidden { display: none; }

.esc-img {
  height: 200px;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.escape-card:hover .esc-img { transform: scale(1.04); }

.esc-info {
  padding: 18px 16px;
  background: var(--white);
}
.esc-tag {
  display: inline-block;
  background: var(--forest-pale);
  color: var(--forest-mid);
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 8px;
}
.esc-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: var(--text-dark);
  margin-bottom: 5px;
}
.esc-info p { font-size: 12px; color: var(--text-light); margin-bottom: 10px; line-height: 1.5; }
.esc-dist {
  font-size: 11px; color: var(--forest-mid);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   LOCATION
══════════════════════════════════════════ */
.location-section {
  background: var(--forest-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.location-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/images/wildlife_elephant.jpg') center/cover;
  opacity: .08;
  pointer-events: none;
}

.location-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.location-details { margin: 24px 0 36px; display: flex; flex-direction: column; gap: 18px; }
.loc-row {
  display: flex; align-items: flex-start; gap: 16px;
}
.loc-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.loc-row div strong { font-size: 15px; font-weight: 600; color: var(--white); display: block; margin-bottom: 2px; }
.loc-row div span { font-size: 13px; color: rgba(255,255,255,.55); }

.loc-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-loc-primary {
  display: flex; align-items: center;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 14px; font-weight: 700;
  border-radius: 8px;
  transition: var(--trans);
}
.btn-loc-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-loc-ghost {
  padding: 14px 26px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 14px; font-weight: 500;
  border-radius: 8px;
  transition: var(--trans);
  font-family: inherit;
}
.btn-loc-ghost:hover { border-color: var(--gold); color: var(--gold); }

.map-wrap {
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.map-label {
  position: absolute; top: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(6,26,6,.9);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 100px;
  border: 1px solid var(--gold);
  font-size: 12px; font-weight: 600; color: var(--gold);
}
.map-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,160,48,.4); }
  50% { box-shadow: 0 0 0 6px rgba(201,160,48,0); }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 40px 50px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo-row { display: flex; align-items: center; gap: 12px; color: var(--gold); margin-bottom: 16px; }
.footer-logo-img { height: 48px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 16px; }
.footer-tel { font-size: 14px; font-weight: 600; color: var(--gold); transition: color .2s; }
.footer-tel:hover { color: var(--gold-light); }

.footer-nav h4, .footer-contact h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; color: var(--white);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 4px; }
.footer-nav a {
  font-size: 13px; color: rgba(255,255,255,.5);
  padding: 6px 0; transition: color .2s;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 16px; }
.btn-footer-enquire {
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  border-radius: 6px;
  transition: var(--trans);
}
.btn-footer-enquire:hover { background: var(--gold); color: var(--forest-deep); }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .3px; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .bento-large { grid-column: 1; grid-row: 1 / span 2; }
  .bento-tall  { grid-column: 2; grid-row: 1; }
  .bento-top-r { grid-column: 2; grid-row: 2; }
  .bento-bot-r { grid-column: 1; grid-row: 3; }
  .escape-grid { grid-template-columns: repeat(2, 1fr); }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { height: 360px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-inner { padding: 16px 20px; }

  .hero { min-height: 620px; }
  .hero-content { flex-direction: column; align-items: flex-start; padding: 0 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
  .stat-card { padding: 14px 16px; }
  .stat-num { font-size: 28px; }

  .bento-grid, .bento-row2 { padding: 0 20px; grid-template-columns: 1fr; height: auto; }
  .bento-large, .bento-tall, .bento-top-r, .bento-bot-r, .bento-wide, .bento-sm {
    height: 260px; grid-column: auto; grid-row: auto;
  }
  .bento-overlay { transform: translateY(0); }

  .escape-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .amenities-section, .escape-section, .location-section { padding: 70px 0; }
  .amenities-pills { padding: 0 20px; }

  .map-wrap { height: 300px; }
  .modal { padding: 32px 24px; }
}

/* Small phones (≤480px): tighter type scale and spacing so nothing
   crowds or clips on narrow screens like an SE/older Android. */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(42px, 13vw, 64px); letter-spacing: -.5px; }
  .hero-tagline { font-size: 14px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .btn-hero-primary, .btn-hero-ghost { padding: 13px 20px; }
  .btn-label-num { font-size: 16px; }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 6px; }
  .stat-card { padding: 12px 14px; }
  .stat-num { font-size: 24px; }
  .stat-lbl { font-size: 10px; }

  .section-title, .escape-title { font-size: clamp(28px, 8vw, 40px); }
  .modal { padding: 26px 20px; }
  .modal-title { font-size: 26px; }
  .modal-sub { font-size: 13px; margin-bottom: 20px; }
  .modal-form input { padding: 13px 14px; font-size: 13px; }

  .bento-large, .bento-tall, .bento-top-r, .bento-bot-r, .bento-wide, .bento-sm { height: 220px; }
  .esc-img { height: 170px; }
  .map-wrap { height: 260px; }

  .wa-float { width: 48px; height: 48px; bottom: 20px; right: 20px; }
  .nav-logo-img { height: 36px; }
}
