:root {
  --bg: #f5f8f4;
  --surface: #ffffff;
  --primary: #1f7a4d;
  --primary-dark: #155234;
  --text: #1d2b21;
  --muted: #597063;
  --border: #d7e4db;
  --shadow: 0 12px 30px rgba(20, 70, 45, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --bg-alt: #f0f4f1;
  --shadow-sm: 0 4px 12px rgba(20, 70, 45, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 70, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcf9 0%, var(--bg) 60%, #ffffff 100%);
  line-height: 1.6;
  scroll-behavior: smooth;
  /* Improve rendering performance */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ─── Site-wide header (hero wrapper) ─────────────────── */
.site-header {
  position: relative;
  overflow: hidden;
}

/* ─── Sticky Navigation Bar ───────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.6rem 0;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  /* Premium Glass Effect */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* needed so mobile .nav-links dropdown positions relative to nav bar */
  isolation: isolate;
}

/* Scrolled state — frosted glass */
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ─── Brand ─────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  height: 2.2rem;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s;
}

.site-nav.scrolled .brand-text {
  color: var(--primary-dark);
}

/* ─── Nav links ──────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1d2b21;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(31, 122, 77, 0.08);
  color: var(--primary);
}

.site-nav.scrolled .nav-links a {
  color: var(--text);
}

.site-nav.scrolled .nav-links a:hover {
  background: #eaf5ee;
  color: var(--primary);
}

/* ─── Nav actions ────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* WhatsApp CTA button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1.5px solid #1d2b21;
  color: #1d2b21;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-wa:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(31, 122, 77, 0.3);
}

.site-nav.scrolled .btn-wa {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.site-nav.scrolled .btn-wa:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.wa-icon-sm {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* ─── Generic buttons (hero etc.) ────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.btn-light {
  background: #fff;
  color: var(--primary-dark);
}

/* ─── Hamburger button ───────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s;
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.25s, transform 0.3s, opacity 0.3s;
}

.site-nav.scrolled .menu-toggle {
  border-color: var(--border);
}

.site-nav.scrolled .menu-toggle span {
  background: var(--text);
}

/* Hamburger → ✕ animation */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO  — Premium Full-Viewport
═══════════════════════════════════════════════ */
.site-header {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  /* safe-area viewport height */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  --slider-pos: 50%;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-day {
  z-index: 2;
}

.hero-night {
  z-index: 3;
  clip-path: inset(0 0 0 var(--slider-pos));
  /* Reveal night on the right side */
}

/* ── Background image ── */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos);
  width: 4px;
  background: rgba(255, 255, 255, 0.45);
  z-index: 25;
  /* Very high to stay above overlays */
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.hero-slider-handle::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-slider-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  right: -20px;
}

.handle-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  /* Solid primary color for visibility */
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.handle-icon::after {
  content: "DRAG";
  position: absolute;
  bottom: -24px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  backdrop-filter: blur(4px);
}

.hero-slider-handle:active .handle-icon {
  transform: scale(0.9) rotate(5deg);
}

.handle-icon svg {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.sun-icon {
  opacity: 1;
}

.moon-icon {
  opacity: 0;
  transform: translateY(10px) rotate(-30deg);
}

.hero-slider-handle.is-night .sun-icon {
  opacity: 0;
  transform: translateY(-10px) rotate(30deg);
}

.hero-slider-handle.is-night .moon-icon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ── Overlay layers (Higher than background images) ── */
.hero-overlay-base {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(to right,
      rgba(2, 12, 6, 0.85) 0%,
      rgba(4, 18, 10, 0.65) 40%,
      rgba(6, 24, 14, 0.35) 100%);
  pointer-events: none;
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(2, 10, 6, 0.5) 0%, transparent 60%),
    linear-gradient(to top, rgba(2, 10, 6, 0.65) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Content layout (Highest) ── */
.hero-content {
  position: relative;
  z-index: 15;
  color: #fff;
  padding: 9rem 0 5rem;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  /* Let clicks pass through to slider unless on buttons */
}

.hero-actions,
.hero-btn,
.hero-badge {
  pointer-events: auto;
  /* Re-enable for interactive items */
}

/* ── Entrance animations ── */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Badge pill ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  width: fit-content;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0);
  }
}

/* ── Headline ── */
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
  font-style: italic;
  color: #86efac;
  /* soft mint green accent */
  font-family: "Playfair Display", serif;
}

/* ── Sub-text ── */
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #fff;
  line-height: 1.75;
  margin: 0 0 2.2rem;
  max-width: 60ch;
  font-weight: 500;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.45), 0 1px 5px rgba(0, 0, 0, 0.3);
  /* Premium subtle backing */
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  width: fit-content;
  margin-left: -1.2rem;
  /* offset padding to maintain alignment */
}

.hero-br {
  display: block;
}

/* ── CTA buttons ── */
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}

.hero-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(31, 122, 77, 0.45);
}

.hero-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 122, 77, 0.5);
}

.hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-btn-ghost:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(31, 122, 77, 0.4);
}

/* ── Stats strip ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1rem 1.6rem;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 2.2rem;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  z-index: 3;
}

.scroll-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1.5px;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4ade80;
  border-radius: 2px;
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% {
    top: -100%;
    opacity: 1;
  }

  80% {
    top: 100%;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}




/* ── Responsive ── */
@media (max-width: 760px) {
  .hero-content {
    padding: 10rem 0 4rem;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-br {
    display: none;
  }

  .hero-stat {
    padding: 0 0.9rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    gap: 0.5rem;
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    row-gap: 0.8rem;
  }

  .hero-stat-divider:nth-child(4) {
    display: none;
  }
}

/* ═══════════════════════════════════════════════ */



/* ── Global typography (used site-wide) ── */
h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h2,
h3 {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.76rem;
  margin: 0 0 0.8rem;
  color: #d6f4e3;
  display: block;
}

.eyebrow.green {
  color: var(--primary);
}

.section {
  padding: 5.2rem 0;
}


.section-alt {
  background: #f7fbf8;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.5rem);
  max-width: 24ch;
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: 0 6px 14px rgba(17, 55, 35, 0.06);
}

.feature-card.has-img {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.feature-card.has-img > div:last-child {
  padding: 1.4rem;
}

.icon-wrap {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f4ec;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.icon-wrap svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.rooms-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.5rem 0 0;
}

/* ── Grid: 4-col desktop ─────────────────────── */
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* ── Card ────────────────────────────────────── */
.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(20, 70, 45, 0.16);
}

.room-card:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ── Thumbnail wrapper ───────────────────────── */
.room-thumb {
  position: relative;
  overflow: hidden;
}

.room-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.room-card:hover .room-thumb img {
  transform: scale(1.07);
}

/* "View Details" overlay on hover */
.room-hover-cta {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 20, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.room-card:hover .room-hover-cta,
.room-card:focus-visible .room-hover-cta {
  opacity: 1;
}

/* ── Badges ──────────────────────────────────── */
.room-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  z-index: 1;
}

.badge-gold {
  background: #b8860b;
}

.badge-emerald {
  background: #0a6640;
}

.badge-blue {
  background: #1565a8;
}

/* ── Card body ───────────────────────────────── */
.room-content {
  padding: 0.95rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.room-content h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.room-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

.room-price {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.room-price small {
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--muted);
}

.room-view-tag {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   ROOM DETAIL MODAL
═══════════════════════════════════════════════ */
.room-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 18, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.room-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.room-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.room-modal-overlay.open .room-modal {
  transform: translateY(0) scale(1);
}



/* Close button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

.modal-close svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--text);
  fill: none;
}

/* ── Modal hero image slider ───────────────────── */
.modal-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--surface-2);
}

.modal-slider-track {
  display: flex;
  width: 100%; /* Flexible based on content */
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.modal-hero-img {
  width: 100%; /* Takes full width of parent slider wrap */
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* CSS animations removed in favor of JS control for dynamic image counts */

/* Slider dots for visuals */
.modal-slider-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 2;
}

.modal-dot {
  width: 0.45rem;
  height: 0.45rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 99px;
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}

.modal-dot.active {
  background: #fff;
  width: 1.3rem;
}

/* Dot animations removed in favor of .active class managed by JS */

/* ── Modal body ──────────────────────────────── */
.modal-body {
  padding: 1.8rem 2rem 2rem;
}

.modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.modal-title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-family: "Playfair Display", serif;
  color: var(--text);
}

.modal-meta {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.modal-meta-item svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
  flex-shrink: 0;
}

.modal-price-box {
  text-align: right;
  flex-shrink: 0;
}

.modal-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
}

.modal-price-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.modal-desc {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.6rem;
}

/* ── Facilities ──────────────────────────────── */
.modal-facilities-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.9rem;
}

.modal-facilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.facility-pill {
  background: #eaf5ee;
  border: 1px solid #c8e8d4;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.facility-pill::before {
  content: "✓";
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 800;
}

/* ── Modal CTA row ───────────────────────────── */
.modal-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.modal-wa-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.modal-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.modal-dismiss {
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.modal-dismiss:hover {
  background: #f0f5f2;
  color: var(--text);
}

/* ─── Responsive tweaks ──────────────────────── */
@media (max-width: 1080px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-facilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-body {
    padding: 1.2rem 1.2rem 1.5rem;
  }

  .modal-hero-slider {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  .room-grid {
    grid-template-columns: 1fr;
  }

  .modal-facilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-top {
    flex-direction: column;
  }

  .modal-price-box {
    text-align: left;
  }

  .modal-hero-slider {
    aspect-ratio: 4/3;
  }
}

/* ═══════════════════════════════════════════════
   VIDEO REELS SECTION — Light Theme · 3-card
═══════════════════════════════════════════════ */
.reels-section {
  background: #f4f8f5;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}

/* ── Section header ── */
.reels-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reels-featured-pill {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.reels-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0f1f15;
  margin: 0 0 0.6rem;
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
}

.reels-title em {
  font-style: normal;
  color: var(--primary);
}

.reels-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── Stage ── */
.reels-stage {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  margin-bottom: 2.5rem;
}

/* ── Individual reel card ── */
.reel-card {
  position: absolute;
  width: 260px;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.55s cubic-bezier(0.34, 1.1, 0.64, 1);
  transform-origin: center center;
  /* Default: hidden */
  opacity: 0;
  transform: translateX(0) scale(0.5);
  pointer-events: none;
  z-index: 0;
}

/* ±2 — always hidden in 3-card layout */
.reel-card[data-pos="-2"],
.reel-card[data-pos="2"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(0.5);
  z-index: 0;
}

/* -1 — left side card */
.reel-card[data-pos="-1"] {
  transform: translateX(-230px) scale(0.8) rotateY(10deg);
  opacity: 0.7;
  z-index: 2;
  pointer-events: auto;
}

/* 0 — active center card */
.reel-card[data-pos="0"],
.reel-card.active {
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  box-shadow:
    0 24px 60px rgba(20, 70, 40, 0.18),
    0 8px 20px rgba(20, 70, 40, 0.1);
}

/* +1 — right side card */
.reel-card[data-pos="1"] {
  transform: translateX(230px) scale(0.8) rotateY(-10deg);
  opacity: 0.7;
  z-index: 2;
  pointer-events: auto;
}

/* ── Card inner ── */
.reel-inner {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.reel-card[data-pos="0"] .reel-poster,
.reel-card.active .reel-poster {
  transform: scale(1.04);
}

/* ── Overlay gradient (keeping dark for text legibility on image) ── */
.reel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
  border-radius: 24px;
}

/* ── Info block ── */
.reel-info {
  position: absolute;
  bottom: 1.4rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 2;
}

.reel-category {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.reel-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.3rem;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
}

.reel-views {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 500;
}

/* ── Play button ── */
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s;
  z-index: 3;
}

.reel-play-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  margin-left: 3px;
}

.reel-card[data-pos="0"]:hover .reel-play-btn,
.reel-card.active:hover .reel-play-btn {
  opacity: 1;
}

.reel-play-btn:hover {
  background: rgba(31, 122, 77, 0.5);
}

/* ── Controls ── */
.reels-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.reel-ctrl-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid #d1e6d9;
  background: #fff;
  color: #3d6b50;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, color 0.2s;
  box-shadow: 0 2px 10px rgba(20, 70, 40, 0.1);
}

.reel-ctrl-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.reel-ctrl-btn:hover {
  background: #eaf5ee;
  border-color: var(--primary);
  transform: scale(1.06);
}

/* Next button — primary green */
.reel-ctrl-next {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  width: 3.4rem;
  height: 3.4rem;
  box-shadow: 0 6px 18px rgba(31, 122, 77, 0.35);
}

.reel-ctrl-next:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

/* ── Dot pagination ── */
.reels-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #c5d9cc;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  padding: 0;
}

.reel-dot.active {
  width: 28px;
  background: var(--primary);
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .reels-stage {
    height: 420px;
  }

  .reel-card {
    width: 200px;
    height: 350px;
  }

  .reel-card[data-pos="-1"] {
    transform: translateX(-155px) scale(0.8) rotateY(8deg);
  }

  .reel-card[data-pos="1"] {
    transform: translateX(155px) scale(0.8) rotateY(-8deg);
  }
}

@media (max-width: 480px) {

  .reel-card[data-pos="-1"],
  .reel-card[data-pos="1"] {
    transform: translateX(0) scale(0.78);
    opacity: 0;
    pointer-events: none;
  }
}

/* ── Video Lightbox Overlay ── */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 15, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 2rem;
}

.video-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.video-overlay-inner {
  position: relative;
  width: 100%;
  max-width: 440px;
  /* Reel vertical format */
  height: min(85vh, 780px);
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(40px);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-overlay.open .video-overlay-inner {
  transform: scale(1) translateY(0);
}

.video-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: background 0.2s;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-close svg {
  width: 1.2rem;
  height: 1.2rem;
}

.video-player-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Advertisement Overlays */
.video-ad-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ad-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 800;
}

.ad-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.ad-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  max-width: 25ch;
}

.ad-cta {
  align-self: flex-start;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(31, 122, 77, 0.4);
}

@media (max-width: 600px) {
  .video-overlay {
    padding: 0;
  }

  .video-overlay-inner {
    max-width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .ad-title {
    font-size: 1.8rem;
  }
}

/* ═══════════════════════════════════════════════ */


.booking {
  padding-top: 4.5rem;
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
}

.booking-wrap p {
  color: var(--muted);
}

.booking-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.booking-card p {
  margin-top: 0;
  font-weight: 700;
  color: var(--text);
}

.wa-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.full {
  width: 100%;
}

.booking-card small {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0b1f14;
  color: #c8ddd0;
  font-size: 0.92rem;
  margin-top: 0;
}

/* Top gradient wave divider */
.footer-wave {
  height: 4px;
  background: linear-gradient(90deg, #1f7a4d 0%, #3aa86e 40%, #155234 100%);
}

/* Main content area */
.footer-main {
  padding: 4rem 0 3rem;
}

/* 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.2fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

/* ----- Brand column ----- */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

.footer-tagline {
  color: #7ea98e;
  line-height: 1.7;
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  max-width: 28ch;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #8cbfa0;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.social-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ----- Reusable column styles ----- */
.footer-heading {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4fa872;
  margin: 0 0 1.1rem;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: #9fc4ad;
  font-size: 0.91rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #d6f4e3;
  padding-left: 4px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-contact svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: #4fa872;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact span,
.footer-contact a {
  color: #9fc4ad;
  line-height: 1.6;
}

.footer-contact a:hover {
  color: #d6f4e3;
}

/* ----- Booking CTA column ----- */
.footer-cta-text {
  color: #7ea98e;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1.2rem;
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.68rem 1.3rem;
  border-radius: 999px;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.footer-wa-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.footer-hours {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: #4fa872;
}

/* ----- Bottom bar ----- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.1rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  color: #4d7260;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #4d7260;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #8cbfa0;
}

.footer-bottom-links span {
  color: #2d4d3a;
}

/* Back to top button */
.back-to-top {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #8cbfa0;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.back-to-top svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .back-to-top {
    align-self: flex-end;
  }
}

/* ===== /FOOTER ===== */

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY SECTION (COLLAGE) ===== */
.gallery-section {
  background: var(--surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  grid-auto-flow: dense; /* Crucial: fills in holes automatically */
  gap: 1.2rem;
  margin-top: 3rem;
}

.photo-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #f0f4f1; /* Placeholder color while loading */
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.photo-wide {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .photo-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .photo-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .photo-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.8rem;
  }
  .photo-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .photo-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .photo-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .photo-item {
    border-radius: var(--radius-md);
  }
  
  /* Ensure no single-column items create massive gaps */
  .photo-item:nth-child(odd):last-child {
    grid-column: span 2;
  }
}

/* ===== VIDEO GALLERY (ADS) ===== */
.video-gallery-section {
  background: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 70, 45, 0.12);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 25px rgba(31, 122, 77, 0.4);
}

.video-card:hover .video-play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-play-overlay svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 4px;
}

.video-card-body {
  padding: 1.5rem;
}

.video-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.video-card-body p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 760px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ===== REVIEWS SECTION ===== */
.reviews-section {
  overflow: hidden;
  background: linear-gradient(160deg, #f0f9f2 0%, #ffffff 60%, #f7fbf9 100%);
}

.reviews-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 0.4rem 0 0;
}

/* Ticker container — clips overflow, adds fade edges */
.reviews-ticker {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1.8rem;
  cursor: grab;
}

.reviews-ticker::before,
.reviews-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  z-index: 2;
  pointer-events: none;
}

.reviews-ticker::before {
  left: 0;
  background: linear-gradient(to right, #f0f9f2, transparent);
}

.reviews-ticker::after {
  right: 0;
  background: linear-gradient(to left, #f7fbf9, transparent);
}

/* The scrolling track — uses CSS animation */
.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: reviewsScroll 36s linear infinite;
  will-change: transform;
}

.reviews-track:hover,
.reviews-ticker:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual review card */
.review-card {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 8px 24px rgba(20, 70, 45, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: -0.15rem;
  left: 1.1rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: #e0f0e8;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 70, 45, 0.14);
}

.review-stars {
  color: #f4a426;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 1.2rem;
  min-height: 4.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #2b4a36;
  flex-shrink: 0;
  border: 2px solid rgba(31, 122, 77, 0.18);
}

.reviewer-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.review-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Rating summary bar */
.reviews-rating-bar {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0 1rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  box-shadow: 0 6px 20px rgba(20, 70, 45, 0.1);
  backdrop-filter: blur(4px);
}

.rating-score {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.rating-stars-large {
  color: #f4a426;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.rating-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ===== /REVIEWS SECTION ===== */

@media (max-width: 760px) {

  /* Collapse links & show hamburger */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 54, 35, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.8rem 1.2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 8.5rem;
    padding-bottom: 5.5rem;
  }

  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    max-width: 90%;
    margin-left: 0;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  }

  .feature-grid,
  .room-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.5rem;
    padding: 1.4rem 1rem;
    width: 100%;
    justify-items: center;
  }

  .hero-stat {
    padding: 0 0.5rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .footer-wrap {
    flex-direction: column;
  }
}