/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --forest:   #2D4A2D;
  --moss:     #4A6741;
  --sage:     #8AAB7E;
  --earth:    #7A5C3C;
  --bark:     #4E3520;
  --cream:    #F7F3ED;
  --linen:    #EDE6D8;
  --white:    #FAFAF8;
  --ink:      #1C1C18;
  --mist:     #C9D4C5;
  --paper:#FFFFFF;
  --line: rgba(31,61,44,.12);

  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;

  --r-sm:     6px;
  --r-md:     14px;
  --r-lg:     28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ──────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  background: transparent;
}

#mainNav.scrolled {
  background: rgb(255 255 255);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: background 0.4s, padding 0.4s;
  height: 90px;
}
nav.scrolled {
  background: rgba(247,243,237,0.96);
  backdrop-filter: blur(8px);
  padding: 0.85rem 3rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--white); letter-spacing: 0.02em; background: #fff; padding: 20px; margin-top: 77px; border-radius: 0 0 10px 10px; }
nav.scrolled .nav-logo { color: var(--forest); }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.88); letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; position: relative;}
nav.scrolled .nav-links a { color: #2e4d3a; }
.nav-links a:hover { color: #2e4d3a; }
.nav-links a::after {  content: ''; position: absolute; left: 0; bottom: -14px; width: 0; height: 4px; background-color: #2e4d3a; transition: width 0.3s ease-out; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sage); color: var(--white) !important;
  padding: 0.55rem 1.3rem; border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--moss) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 30px; height: 4px; border-radius: 2px; background: var(--white); transition: background 0.3s; }
nav.scrolled .hamburger span { background: var(--forest); }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, rgba(20,35,15,0.55) 100%),
    url('../images/mamoksha-top-view.jpg') center/cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(10,25,10,0.58) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 780px;
  animation: fadeUp 1.1s var(--ease-out) both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-family: var(--sans); font-weight: 500;
  border: 1px solid rgba(255,255,255); padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.6rem; background: rgb(255, 255, 255, 0.15);
}
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white); line-height: 1.12; margin-bottom: 1.2rem;
  font-weight: 600; text-shadow: 0px 2px 3px #000000;
}
.hero-content h1 em { font-style: italic; color: var(--mist); }
.hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 2.4rem;
  line-height: 1.7; font-weight: 300; text-shadow: 0px 1px 2px #000000;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--sage); color: var(--white);
  padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; border: 1.5px solid rgba(255,255,255,0.6); cursor: pointer;
  transition: background 0.2s, transform 0.2s; letter-spacing: 0.02em;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; z-index: 2; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.55); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.hero-scroll svg { width: 20px; opacity: 0.7; }

/* ── SECTION COMMON ───────────────────────────────────────── */
.section { padding: 6rem 3rem; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest); color: var(--white); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--moss); font-weight: 500; margin-bottom: 0.75rem;
}
.section-dark .section-tag { color: var(--sage); }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2; margin-bottom: 1rem; font-weight: 600;
}
.section-sub {
  font-size: 1rem; line-height: 1.75; max-width: 560px;
  color: #555; font-weight: 300;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.divider { width: 48px; height: 3px; background: var(--sage); border-radius: 2px; margin: 1.2rem 0; }

/* ── AMENITIES ────────────────────────────────────────────── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.amenity-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid var(--linen); transition: transform 0.25s, box-shadow 0.25s;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,74,45,0.12); }
.amenity-icon { font-size: 2.2rem; width: 80px; height: 80px; background: #fbf3e6; border-radius: 50px; margin: 0 auto 15px auto; }
.amenity-icon img { margin: 0 auto; height: 65px; width: 50px; padding: 15px 0 0 0; }
.amenity-card h3 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--forest); }
.amenity-card p { font-size: 0.875rem; color: #666; line-height: 1.6; }

/* ── ROOMS ────────────────────────────────────────────────── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.room-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,74,45,0.14); }
.room-img {
  height: 230px; object-fit: cover; width: 100%;
  transition: transform 0.5s;
}
.room-card:hover .room-img { transform: scale(1.04); }
.room-img-wrap { overflow: hidden; }
.room-body { padding: 1.6rem; }
.room-tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); font-weight: 500; }
.room-body h3 { font-family: var(--serif); font-size: 1.3rem; margin: 0.35rem 0 0.6rem; color: var(--forest); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.room-pill {
  background: var(--cream); font-size: 0.72rem; padding: 0.25rem 0.7rem;
  border-radius: 50px; color: var(--earth); font-weight: 500;
}
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-price { font-family: var(--serif); font-size: 1.4rem; color: var(--forest); }
.room-price span { font-family: var(--sans); font-size: 0.78rem; color: #888; font-weight: 400; }
.btn-sm {
  background: var(--forest); color: var(--white);
  padding: 0.55rem 1.3rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-sm:hover { background: var(--moss); }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking-wrap {
  background: var(--white); border-radius: var(--r-lg);
  padding: 3rem; box-shadow: 0 8px 48px rgba(0,0,0,0.1);
  max-width: 880px; margin: 3.5rem auto 0;
  position: relative;
}
.booking-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.2rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--earth); margin-bottom: 0.45rem; }
.field input, .field select {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--linen);
  border-radius: var(--r-sm); font-family: var(--sans); font-size: 0.9rem;
  color: var(--ink); background: var(--white); outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus { border-color: var(--sage); }
.field-error { font-size: 0.75rem; color: #C0392B; margin-top: 0.35rem; display: none; }
.field-error.visible { display: block; }
.field input.invalid, .field select.invalid { border-color: #C0392B; }
.booking-summary {
  background: var(--cream); border-radius: var(--r-md); padding: 1.5rem;
  margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.summary-item { text-align: center; }
.summary-item .label { font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.1em; }
.summary-item .value { font-family: var(--serif); font-size: 1.3rem; color: var(--forest); margin-top: 0.2rem; }
.btn-book {
  background: var(--forest); color: var(--white); padding: 0.9rem 2.8rem;
  border-radius: 50px; font-size: 0.95rem; font-weight: 500; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.2s; white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem;
}
.btn-book:hover:not(:disabled) { background: var(--moss); transform: translateY(-2px); }
.btn-book:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* ── FORM-LEVEL ALERT (server errors) ───────────────────── */
.form-alert {
  display: none;
  background: #FBEAEA; border: 1px solid #E0A8A4; color: #8C2E25;
  border-radius: var(--r-sm); padding: 0.85rem 1.1rem; font-size: 0.85rem;
  margin-top: 1.2rem; line-height: 1.5;
}
.form-alert.visible { display: block; }

/* ── BOOKING SUCCESS STATE ───────────────────────────────── */
.booking-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: fadeUp 0.6s var(--ease-out) both;
}
.booking-success.visible { display: block; }
.booking-form-body { transition: opacity 0.3s; }
.booking-form-body.fading { opacity: 0; pointer-events: none; }

.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--moss));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 2rem;
  box-shadow: 0 8px 24px rgba(74,103,65,0.3);
}
.success-title {
  font-family: var(--serif); font-size: 1.8rem; color: var(--forest);
  margin-bottom: 0.6rem; font-weight: 600;
}
.success-sub {
  font-size: 0.95rem; color: #666; line-height: 1.7; max-width: 420px; margin: 0 auto 1.8rem;
}
.success-details {
  background: var(--cream); border-radius: var(--r-md); padding: 1.4rem 1.8rem;
  display: inline-flex; flex-direction: column; gap: 0.55rem;
  text-align: left; min-width: 310px; margin-bottom: 2rem;
}
.success-row {
  display: flex; justify-content: space-between; gap: 2rem;
  font-size: 1rem;
}
.success-row .sk { color: #888; font-weight: 400; }
.success-row .sv { color: var(--forest); font-weight: 500; font-family: var(--serif); }
.btn-new-booking {
  background: transparent; color: var(--moss); border: 1.5px solid var(--sage);
  padding: 0.7rem 1.8rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.btn-new-booking:hover { background: var(--sage); color: var(--white); }

/* Spinner */
.spinner {
  width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff; border-radius: 50%;
  animation: spin 0.7s linear infinite; display: none;
}
.btn-book.loading .spinner { display: inline-block; }
.btn-book.loading .btn-label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  columns: 3; gap: 1rem; margin-top: 3.5rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r-md);
  overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.45s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(30,50,25,0); display: flex;
  align-items: center; justify-content: center; transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(30,50,25,0.4); }
.gallery-overlay svg { opacity: 0; transition: opacity 0.3s; width: 36px; color: white; }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(5,10,5,0); align-items: center; justify-content: center;
  flex-direction: column; padding: 0;
  transition: background 0.3s ease;
}
.lightbox.open { display: flex; background: rgba(5,10,5,0.9); }

.lb-main {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; flex: 1; min-height: 0; padding: 0 5rem;
}
.lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
#lbImg {
  max-height: 88vh; max-width: 88vw;
  border-radius: var(--r-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#lbImg.transitioning { opacity: 0; transform: scale(0.96); }

.lb-topbar {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem 0.5rem 1.5rem; flex-shrink: 0;
}
.lb-title-area { display: flex; align-items: center; gap: 1rem; }
.lb-caption { color: rgba(255,255,255,0.88); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }
.lb-counter { color: rgba(255,255,255,0.42); font-size: 0.8rem; letter-spacing: 0.06em; }
.lb-close {
  width: 40px; height: 40px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.10); color: white; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; flex-shrink: 0;
}
.lb-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  color: white; width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s; z-index: 2;
  backdrop-filter: blur(6px);
}
.lb-nav:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.08); }
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
.lb-nav svg { width: 30px; height: 30px; stroke: white; stroke-width: 2.5; fill: none; }

.lb-thumbs {
  display: flex; gap: 0.5rem; padding: 0.75rem 1rem 1rem;
  overflow-x: auto; max-width: 100%; flex-shrink: 0; justify-content: center;
  scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb {
  width: 58px; height: 44px; border-radius: 6px; object-fit: cover;
  cursor: pointer; opacity: 0.4; border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s; flex-shrink: 0;
}
.lb-thumb:hover { opacity: 0.72; transform: scale(1.06); }
.lb-thumb.active { opacity: 1; border-color: var(--sage); transform: scale(1.1); }

/* ── ACTIVITIES ───────────────────────────────────────────── */
.activities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.activity-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; height: 320px;
  cursor: pointer;
}
.activity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.activity-card:hover img { transform: scale(1.08); }
.activity-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,40,15,0.85) 0%, rgba(20,40,15,0.1) 55%);
}
.activity-text { position: absolute; bottom: 1.6rem; left: 1.6rem; right: 1.6rem; }
.activity-text h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--white); }
.activity-text p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.3rem; line-height: 1.5; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md); padding: 2rem;
}
.stars { color: #C9A94E; font-size: 0.9rem; margin-bottom: 1rem; }
.testi-card p { font-size: 0.95rem; color: rgba(255,255,255,0.82); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--sage);
}
.testi-name { font-weight: 500; font-size: 0.88rem; color: var(--white); }
.testi-loc { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── ATTRACTIONS MARQUEE ──────────────────────────────────── */
.attractions-marquee-wrap {
  margin-top: 3.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.attractions-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 70s linear infinite;
  background: #fff;
}
.attractions-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.attraction-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; height: 320px; width: 340px;
  flex-shrink: 0; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.attraction-card:hover { transform: translateY(-7px) scale(1.015); box-shadow: 0 20px 52px rgba(45,74,45,0.22); }
.attraction-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.attraction-card:hover img { transform: scale(1.08); }
.attraction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,10,0.82) 0%, rgba(10,25,10,0.15) 55%, transparent 100%);
  transition: background 0.35s;
}
.attraction-card:hover .attraction-overlay {
  background: linear-gradient(to top, rgba(10,25,10,0.90) 0%, rgba(10,25,10,0.25) 60%, transparent 100%);
}
.attraction-km {
  position: absolute; top: 0.9rem; right: 0.9rem;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  letter-spacing: 0.05em;
}
.attraction-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.6rem;
}
.attraction-text h4 {
  font-family: var(--serif); font-size: 1.2rem;
  color: #fff; margin-bottom: 0.4rem; font-weight: 600;
  line-height: 1.25;
}
.attraction-text p {
  font-size: 0.8rem; color: rgba(255,255,255,0.78);
  line-height: 1.55; margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .attractions-track { animation: none; }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  margin-top: 3rem;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r-lg);
}
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem; width: 200px; height: 200px;
  object-fit: cover; border-radius: var(--r-md);
  border: 6px solid var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  position: relative;
}
.about-img-collage .col-main {
  grid-column: 1 / -1;
  height: 280px; object-fit: cover;
  border-radius: var(--r-lg); width: 100%;
}
.about-img-collage .col-sm {
  height: 180px; object-fit: cover;
  border-radius: var(--r-md); width: 100%;
}
.about-img-collage .col-sm-tall {
  height: 180px; object-fit: cover;
  border-radius: var(--r-md); width: 100%;
  position: relative;
}
.about-img-badge {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: rgba(45,74,45,0.82); backdrop-filter: blur(4px);
  color: #fff; font-size: 0.72rem; font-weight: 500;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  letter-spacing: 0.06em;
}
.about-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.badge {
  background: var(--cream); border: 1px solid var(--mist);
  font-size: 0.78rem; padding: 0.4rem 0.9rem; border-radius: 50px;
  color: var(--forest); font-weight: 500;
}
.hosts { display: flex; gap: 1.2rem; margin-top: 2rem; flex-wrap: wrap; }
.host { display: flex; align-items: center; gap: 0.7rem; }
.host img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sage); }
.host-name { font-weight: 500; font-size: 0.9rem; color: var(--forest); }
.host-role { font-size: 0.75rem; color: #888; }


/* ============ BEST TIME TO VISIT ============ */
  .seasons-section{
    padding:100px 0;
    background:var(--cream);
  }

  .seasons-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:0;
    border:1px solid var(--line);
    border-radius:4px;
    overflow:hidden;
	margin-top: 3.5rem;
  }

  .season{
    padding:42px 36px;
    border-right:1px solid var(--line);
    background:var(--paper);
  }

  .season:last-child{ border-right:none; }

  .season .months{
    font-family:'Cormorant Garamond', serif;
    font-style:italic;
    font-size:20px;
    color:var(--moss);
    margin-bottom:12px;
  }

  .season h4{
	font-family: 'Playfair Display', serif;
    font-size:22px;
    margin-bottom:12px;
  }

  .season p{
    font-size:15px;
    line-height:1.7;
    color:#5b5b56;
    margin:0;
  }

  @media (max-width: 900px){
    .seasons-grid{ grid-template-columns:1fr; }
    .season{ border-right:none; border-bottom:1px solid var(--line); }
    .season:last-child{ border-bottom:none; }
  }


/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem;
}
.contact-info h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--forest); }
.contact-item { display: flex; gap: 0.9rem; margin-bottom: 1.4rem; align-items: flex-start; }
.contact-item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item p { font-size: 0.9rem; line-height: 1.6; color: #444; }
.contact-item a { color: var(--moss); }
.social-links { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%; background: var(--forest); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover { background: var(--moss); transform: translateY(-2px); }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: white; padding: 0.75rem 1.6rem;
  border-radius: 50px; font-weight: 500; font-size: 0.9rem; margin-top: 1.5rem;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #1db954; }
.map-embed {
  border-radius: var(--r-lg); overflow: hidden; height: 420px;
  background: var(--linen); display: flex; align-items: center; justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--linen);
  border-radius: var(--r-sm); font-family: var(--sans); font-size: 0.9rem;
  outline: none; background: var(--cream); color: var(--ink); transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sage); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { align-self: flex-start; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #2e4d3a; color: rgba(255,255,255,0.8); padding: 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--serif); font-size: 1.3rem; color: var(--white); }
footer p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.90rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  background: #25D366; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; fill: white; }

/* ── MOBILE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem; flex-direction: column; gap: 2.2rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--forest) !important; font-size: 1rem; }
  .hamburger { display: flex; }
  .section { padding: 4rem 1.5rem; }
  .gallery-grid { columns: 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { width: 130px; height: 130px; right: -0.5rem; bottom: -0.5rem; }
  .about-img-collage .col-main { height: 200px; }
  .about-img-collage .col-sm, .about-img-collage .col-sm-tall { height: 130px; }
  .rooms-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .gallery-grid { columns: 1; }
  .activities-grid { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── SCROLL REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children inside grids: each card animates slightly after the previous */
.amenities-grid .amenity-card,
.rooms-grid .room-card,
.testimonials-grid .testi-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.amenities-grid.visible .amenity-card,
.rooms-grid.visible .room-card,
.testimonials-grid.visible .testi-card {
  opacity: 1;
  transform: translateY(0);
}
.amenities-grid .amenity-card:nth-child(1)  { transition-delay: 0.03s; }
.amenities-grid .amenity-card:nth-child(2)  { transition-delay: 0.08s; }
.amenities-grid .amenity-card:nth-child(3)  { transition-delay: 0.13s; }
.amenities-grid .amenity-card:nth-child(4)  { transition-delay: 0.18s; }
.amenities-grid .amenity-card:nth-child(5)  { transition-delay: 0.23s; }
.amenities-grid .amenity-card:nth-child(6)  { transition-delay: 0.28s; }
.amenities-grid .amenity-card:nth-child(7)  { transition-delay: 0.33s; }
.amenities-grid .amenity-card:nth-child(8)  { transition-delay: 0.38s; }

.rooms-grid .room-card:nth-child(1) { transition-delay: 0.05s; }
.rooms-grid .room-card:nth-child(2) { transition-delay: 0.16s; }
.rooms-grid .room-card:nth-child(3) { transition-delay: 0.27s; }

.testimonials-grid .testi-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-grid .testi-card:nth-child(2) { transition-delay: 0.16s; }
.testimonials-grid .testi-card:nth-child(3) { transition-delay: 0.27s; }

/* Gallery items: light stagger */
.gallery-grid.visible .gallery-item {
  animation: galleryPop 0.7s var(--ease-out) both;
}
.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.03s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.13s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.18s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.23s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.28s; }
.gallery-grid .gallery-item:nth-child(7) { animation-delay: 0.33s; }
.gallery-grid .gallery-item:nth-child(8) { animation-delay: 0.38s; }
.gallery-grid .gallery-item:nth-child(9) { animation-delay: 0.43s; }
.gallery-grid .gallery-item:nth-child(10) { animation-delay: 0.48s; }
@keyframes galleryPop {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── PAGE LOAD ANIMATION ──────────────────────────────────── */
body { opacity: 0; }
body.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.nav-logo, .hamburger {
  opacity: 0;
  animation: navFadeIn 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .amenities-grid .amenity-card,
  .rooms-grid .room-card,
  .testimonials-grid .testi-card,
  .gallery-grid .gallery-item {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
  body { opacity: 1; }
  .nav-logo, .hamburger { opacity: 1; animation: none; }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) { 
	.nav-links li:nth-child(5), .nav-links li:nth-child(6) { display: none; }
}
@media screen and (min-width: 820px) and (max-width: 1180px) and (orientation: landscape) { 
   .nav-links li:nth-child(6) { display: none; }
}
@media screen and (max-width: 820px) { 
	#mainNav .nav-logo { margin-top: 58px; -webkit-transition: all 100ms ease-in-out; -moz-transition: all 100ms ease-in-out; -ms-transition: all 100ms ease-in-out; -o-transition: all 100ms ease-in-out; transition: all 100ms ease-in-out;  }
	#mainNav .nav-logo img { width: 140px; }
	#mainNav.scrolled .nav-logo { background: none; padding: 0px; margin: 0px; }
	#mainNav.scrolled .nav-logo img { width: 100px; }
}