/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: hsl(220,30%,15%);
  background: hsl(40,33%,98%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: hsl(185,60%,30%);
  --primary-dark: hsl(185,60%,22%);
  --amber: #f59e0b;
  --amber-hover: #d97706;
  --wa-green: #25D366;
  --wa-hover: #20bd5a;
  --foreground: hsl(220,30%,15%);
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --serif: 'Playfair Display', Georgia, serif;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: var(--serif); }
h1,h2,h3 { font-family: var(--serif); line-height: 1.15; }

/* ===== ANIMATIONS ===== */
@keyframes kenBurns {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.1) translateX(-1%); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
.nav-logo {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--foreground); white-space: nowrap;
}
.nav-logo span { font-weight: 300; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a, .nav-links button {
  padding: 0.4rem 0.85rem; border-radius: 9999px;
  font-size: 0.85rem; font-weight: 500; color: var(--gray-500);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links button:hover { color: var(--foreground); background: var(--stone-100); }
.nav-links .btn-book {
  background: var(--primary); color: #fff; padding: 0.45rem 1.1rem; border-radius: 9999px;
  font-size: 0.85rem; font-weight: 600; transition: background 0.2s;
}
.nav-links .btn-book:hover { background: var(--primary-dark); }
.hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
  cursor: pointer; background: none; border: none;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--foreground);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 49;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(8px);
  padding: 2rem 1.5rem; flex-direction: column; gap: 0.5rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  display: block; width: 100%; padding: 0.85rem 1rem;
  font-size: 1rem; font-weight: 500; color: var(--foreground);
  border-radius: 0.75rem; text-align: left;
  transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { background: var(--stone-100); }
.mobile-menu .btn-wa {
  margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--wa-green); color: #fff; border-radius: 9999px;
  padding: 0.9rem; font-size: 0.95rem; font-weight: 600;
}

/* ===== HERO ===== */
#hero {
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
  height: 100svh; min-height: 580px;
  padding-bottom: max(4rem, calc(env(safe-area-inset-bottom,0px) + 2rem));
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
  animation: kenBurns 18s ease-out forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 10; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
@media (min-width: 640px) { .hero-content { padding: 0 1.5rem; } }
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.hero-badge svg { color: var(--amber); flex-shrink: 0; }
.hero-h1 {
  color: #fff; font-weight: 700; line-height: 1.08; margin-bottom: 1rem;
  font-size: clamp(2.2rem, 8vw, 5rem);
}
.hero-h1 span { color: var(--amber); }
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: clamp(0.9rem, 2vw, 1.125rem);
  max-width: 36rem; font-weight: 300; line-height: 1.7; margin-bottom: 1.75rem;
}
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }
.btn-book-stay {
  padding: 1rem 1.75rem; background: #fff; color: var(--primary);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, color 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
}
.btn-book-stay:hover { background: var(--amber); color: #fff; }
.btn-wa-hero {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 1.75rem; background: var(--wa-green); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-align: center;
}
.btn-wa-hero:hover { background: var(--wa-hover); }
.scroll-indicator {
  position: absolute; bottom: max(1.5rem, calc(env(safe-area-inset-bottom,0px) + 0.5rem));
  left: 50%; transform: translateX(-50%); z-index: 10;
  color: rgba(255,255,255,0.5); animation: bounce 2s infinite;
  cursor: pointer; background: none; border: none;
}

/* ===== ABOUT ===== */
#about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-images { display: flex; flex-direction: column; gap: 0.75rem; }
.about-images img { width: 100%; object-fit: cover; border-radius: 1rem; }
.about-img1 { height: 13rem; }
@media (min-width: 640px) { .about-img1 { height: 16rem; } }
.about-img2 { height: 10rem; }
@media (min-width: 640px) { .about-img2 { height: 12rem; } }
.stats-bar {
  background: var(--primary); border-radius: 1rem; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.stat-divider { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.2); }
.stat-val { color: #fff; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; text-align: center; }
.stat-lbl { color: rgba(255,255,255,0.7); font-size: 0.7rem; text-align: center; }
.section-tag { color: var(--primary); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 1.5rem; }
.about-text p { color: var(--gray-500); line-height: 1.75; margin-bottom: 1rem; }
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.highlight-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; font-weight: 500; color: hsl(220,30%,15%); }
.highlight-item svg { color: var(--primary); flex-shrink: 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; background: var(--primary); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { background: var(--primary-dark); }

/* ===== ACTIVITIES ===== */
#activities { background: var(--stone-50); }
.section-center { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.activities-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .activities-grid { grid-template-columns: 1fr 1fr; } }
.activity-main {
  position: relative; border-radius: 1rem; overflow: hidden;
  height: 18rem; min-height: 280px;
}
@media (min-width: 768px) { .activity-main { height: auto; min-height: 340px; } }
.activity-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.activity-main:hover img { transform: scale(1.05); }
.activity-main .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.activity-main .caption { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.caption-badge {
  display: inline-block; background: var(--amber); color: #fff;
  font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.75rem;
  border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.caption h3 { font-family: var(--serif); font-size: 1.5rem; color: #fff; }
.caption p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 0.25rem; }
.activity-sub { display: grid; grid-rows: 2; gap: 1rem; }
.activity-thumb { position: relative; border-radius: 1rem; overflow: hidden; height: 10rem; }
@media (min-width: 640px) { .activity-thumb { height: 13rem; } }
.activity-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.activity-thumb:hover img { transform: scale(1.05); }
.activity-thumb .dim { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }
.activity-card {
  background: #fff; border-radius: 1rem; padding: 1.75rem;
  border: 1px solid #f3f4f6; box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.card-icon {
  width: 3rem; height: 3rem; background: rgba(var(--primary-rgb,30,125,140),0.1);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1.25rem;
}
.activity-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.activity-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

/* ===== ROOMS (HOME PREVIEW) ===== */
#rooms { background: #fff; }
.rooms-header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .rooms-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.room-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  background: var(--stone-100); color: var(--gray-500); transition: all 0.2s; white-space: nowrap;
  cursor: pointer; border: none;
}
.tab-btn.active { background: var(--primary); color: #fff; }
.room-panel { display: none; }
.room-panel.active { display: grid; grid-template-columns: 1fr; gap: 2rem; background: var(--stone-50); border-radius: 1.5rem; overflow: hidden; border: 1px solid #f3f4f6; }
@media (min-width: 1024px) { .room-panel.active { grid-template-columns: 1fr 1fr; } }
.room-images { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .room-images { padding: 1.5rem; } }
.room-main-img { position: relative; border-radius: 1rem; overflow: hidden; aspect-ratio: 4/3; background: #e5e7eb; }
.room-main-img img { width: 100%; height: 100%; object-fit: cover; }
.room-tag-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--amber); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.75rem; border-radius: 9999px;
}
.room-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.room-thumb {
  border-radius: 0.75rem; overflow: hidden; aspect-ratio: 1; background: #e5e7eb;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s;
}
.room-thumb.selected { border-color: var(--primary); }
.room-thumb:hover { border-color: #d1d5db; }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-details { padding: 1.5rem 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 640px) { .room-details { padding: 2rem 2rem 2.5rem; } }
.room-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.room-guests { display: flex; align-items: center; gap: 0.5rem; color: var(--amber); font-size: 0.875rem; font-weight: 500; }
.room-price-badge {
  display: flex; align-items: center; gap: 0.25rem;
  background: rgba(30,125,140,0.1); color: var(--primary);
  padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
}
.room-price-badge .night { font-size: 0.75rem; font-weight: 400; opacity: 0.7; }
.room-details h3 { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 1rem; }
.room-details p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.75rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 2rem; }
.amenity-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: hsl(220,30%,20%); }
.amenity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.btn-check {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; background: var(--primary); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; cursor: pointer; border: none; width: 100%;
  justify-content: center;
}
@media (min-width: 640px) { .btn-check { width: auto; } }
.btn-check:hover { background: var(--primary-dark); }
.view-all-rooms {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; background: var(--primary); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.view-all-rooms:hover { background: var(--primary-dark); }

/* ===== GALLERY ===== */
#gallery { background: var(--stone-50); }
.gallery-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .gallery-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.masonry { columns: 2; gap: 1rem; }
@media (min-width: 768px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: 0.75rem; overflow: hidden;
  cursor: pointer; position: relative; display: block;
}
.masonry-item img { width: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .hover-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0); border-radius: 0.75rem;
  transition: background 0.3s;
}
.masonry-item:hover .hover-overlay { background: rgba(0,0,0,0.25); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: 1rem; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== AMENITIES ===== */
#amenities { background: #fff; }
.amenities-header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 768px) { .amenities-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.amenities-header p { color: var(--gray-500); max-width: 24rem; font-size: 0.875rem; line-height: 1.7; }
.amenities-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 2.5rem; }
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4,1fr); } }
.amenity-card { cursor: default; }
.amenity-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: var(--stone-100); display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1rem;
  transition: background 0.3s, color 0.3s;
}
.amenity-card:hover .amenity-icon { background: var(--primary); color: #fff; }
.amenity-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.amenity-card p { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#reviews { background: var(--stone-50); overflow: hidden; }
.reviews-header {
  display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--stone-200);
}
@media (min-width: 768px) { .reviews-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.rating-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: #fff; border: 1px solid var(--stone-200); border-radius: 1rem;
  padding: 0.75rem 1.25rem; box-shadow: 0 1px 8px rgba(0,0,0,0.05); align-self: flex-start;
}
.rating-num { font-size: 1.875rem; font-weight: 700; line-height: 1; }
.rating-sub { font-size: 0.875rem; color: var(--gray-400); }
.rating-sub strong { color: hsl(220,30%,15%); }
.badge-divider { width: 1px; height: 2.5rem; background: var(--stone-200); }
.stars { display: flex; gap: 2px; }
.star { width: 14px; height: 14px; }
.star.filled { color: var(--amber); }
.star.empty { color: #e5e7eb; }
/* Desktop grid */
.reviews-desktop { display: none; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (min-width: 768px) { .reviews-desktop { display: grid; } }
/* Mobile carousel */
.reviews-mobile { display: block; }
@media (min-width: 768px) { .reviews-mobile { display: none; } }
.review-card {
  background: #fff; border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--stone-100); box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 1rem;
}
.review-card.mobile-card { min-height: 260px; }
.quote-icon { color: rgba(30,125,140,0.2); width: 22px; height: 22px; flex-shrink: 0; }
.review-text { color: #4b5563; font-size: 0.875rem; line-height: 1.7; flex: 1; }
.review-footer { padding-top: 0.75rem; border-top: 1px solid var(--stone-100); display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: rgba(30,125,140,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; flex-shrink: 0;
}
.reviewer-name { font-size: 0.875rem; font-weight: 600; }
.reviewer-meta { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.125rem; }
.reviewer-loc { font-size: 0.75rem; color: var(--gray-400); }
.reviewer-date { font-size: 0.75rem; color: var(--gray-400); }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }
.carousel-dots { display: flex; gap: 0.375rem; }
.carousel-dot {
  height: 0.5rem; border-radius: 9999px; background: var(--stone-300,#d1d5db);
  transition: all 0.3s; cursor: pointer; border: none; width: 0.5rem;
}
.carousel-dot.active { width: 1.25rem; background: var(--primary); }
.carousel-btns { display: flex; gap: 0.5rem; }
.carousel-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid var(--stone-200); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #4b5563; cursor: pointer; transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.reviews-cta { text-align: center; color: var(--gray-400); font-size: 0.75rem; margin-top: 2.5rem; }
.reviews-cta a { color: var(--primary); font-weight: 500; }
.reviews-cta a:hover { text-decoration: underline; }

/* ===== BOOKING PLATFORMS ===== */
.booking-platforms { background: var(--stone-50); border-top: 1px solid var(--stone-200); padding: 4rem 0 5rem; }
.platforms-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .platforms-grid { grid-template-columns: repeat(3,1fr); } }
.platform-card {
  background: #fff; border-radius: 1rem; padding: 1.5rem; border: 1px solid #f3f4f6;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 1rem;
  position: relative; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.platform-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.625rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 9999px; display: flex; align-items: center; gap: 0.25rem;
}
.platform-name { display: flex; align-items: center; gap: 0.75rem; }
.platform-name span { font-weight: 700; font-size: 1rem; color: hsl(220,30%,15%); }
.platform-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; flex: 1; }
.platform-cta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; transition: gap 0.2s; }
.platform-card:hover .platform-cta { gap: 0.75rem; }
.platforms-note { text-align: center; color: var(--gray-400); font-size: 0.75rem; margin-top: 2rem; }
.platforms-note a { color: var(--wa-green); font-weight: 500; }

/* ===== CONTACT ===== */
#contact { background: var(--primary); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-tag { color: var(--amber); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.contact-h2 { font-family: var(--serif); color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1.15; margin-bottom: 1.5rem; }
.contact-intro { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.75; margin-bottom: 2.5rem; max-width: 28rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--amber);
}
.contact-item-lbl { color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.125rem; }
.contact-item-val { color: #fff; font-size: 0.875rem; line-height: 1.6; white-space: pre-line; }
.map-embed { border-radius: 1rem; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.2); margin-bottom: 2.5rem; }
.map-embed iframe { display: block; }
.map-footer { background: rgba(255,255,255,0.05); padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.map-footer-left { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.map-footer-left svg { color: var(--amber); flex-shrink: 0; }
.map-directions { display: flex; align-items: center; gap: 0.375rem; color: var(--amber); font-size: 0.75rem; font-weight: 600; text-decoration: none; }
.map-directions:hover { color: #fcd34d; }
.contact-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .contact-btns { flex-direction: row; } }
.btn-wa-contact {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 0.875rem 1.75rem; background: var(--wa-green); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s; text-decoration: none;
}
.btn-wa-contact:hover { background: var(--wa-hover); }
.btn-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; background: rgba(255,255,255,0.1); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s; text-decoration: none;
}
.btn-call:hover { background: rgba(255,255,255,0.2); }

/* Enquiry Form */
.form-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem; padding: 1.75rem 2rem; box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
@media (min-width: 640px) { .form-card { padding: 2.25rem; } }
.form-card .form-tag { color: var(--amber); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.25rem; }
.form-card h3 { font-family: var(--serif); color: #fff; font-size: 1.25rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; color: rgba(255,255,255,0.6); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.375rem; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem; padding: 0.75rem 1rem; color: #fff; font-size: 0.875rem;
  font-family: inherit; transition: border-color 0.2s, background 0.2s;
  color-scheme: dark;
}
.form-input::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus { outline: none; border-color: rgba(245,158,11,0.6); background: rgba(255,255,255,0.15); }
.form-input.error { border-color: rgba(239,68,68,0.6); }
.form-error { color: #f87171; font-size: 0.75rem; margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 0.875rem 1.75rem; background: var(--amber); color: var(--primary);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none;
  transition: background 0.2s; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-submit:hover { background: var(--amber-hover); color: #fff; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 1rem; gap: 1rem;
}
.form-success svg { color: var(--amber); }
.form-success h3 { font-family: var(--serif); color: #fff; font-size: 1.5rem; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.875rem; max-width: 20rem; line-height: 1.7; }
.btn-again {
  margin-top: 0.5rem; padding: 0.625rem 1.5rem; background: var(--amber); color: var(--primary);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; border: none; font-family: inherit;
}
.btn-again:hover { background: var(--amber-hover); color: #fff; }
.form-alert {
  display: flex; align-items: flex-start; gap: 0.625rem; border-radius: 0.75rem; padding: 0.75rem 1rem;
  margin-bottom: 1rem; font-size: 0.875rem;
}
.form-alert.error { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.form-alert.warning { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }
.form-alert.ok { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }

/* ===== FOOTER ===== */
footer { background: hsl(220,30%,7%); color: #6b7280; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 1024px) { .footer-brand { grid-column: 1; } }
.footer-logo { font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 700; margin-bottom: 1rem; display: block; background: none; border: none; cursor: pointer; }
.footer-logo span { font-weight: 300; }
.footer-about { font-size: 0.875rem; line-height: 1.75; color: #6b7280; max-width: 22rem; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; color: #6b7280;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.social-btn:hover { background: var(--primary); color: #fff; }
.footer-h4 { color: #fff; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links li button, .footer-links li a {
  font-size: 0.875rem; color: #6b7280; transition: color 0.2s; background: none; border: none; cursor: pointer;
  font-family: inherit;
}
.footer-links li button:hover, .footer-links li a:hover { color: #fff; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { font-size: 0.875rem; color: #6b7280; line-height: 1.5; }
.footer-contact-list a { color: #6b7280; transition: color 0.2s; }
.footer-contact-list a:hover { color: #fff; }
.footer-wa { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--wa-green); font-weight: 500; font-size: 0.875rem; }
.footer-wa:hover { color: var(--wa-hover); }
.footer-platforms { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-platforms p { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: #4b5563; margin-bottom: 1rem; }
.footer-platform-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-platform-link {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem;
  border-radius: 9999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem; color: #d1d5db; transition: all 0.2s; text-decoration: none;
}
.footer-platform-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; font-size: 0.75rem; color: #4b5563; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: #4b5563; transition: color 0.2s; }
.footer-legal a:hover { color: #9ca3af; }

/* ===== FLOATING WA BUTTON ===== */
.float-wa {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 60;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--wa-green); color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: transform 0.2s, background 0.2s;
}
.float-wa:hover { background: var(--wa-hover); transform: scale(1.1); }

/* ===== ROOMS PAGE SPECIFIC ===== */
.page-hero { position: relative; height: 13rem; overflow: hidden; }
@media (min-width: 640px) { .page-hero { height: 16rem; } }
.page-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.page-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.page-hero-tag { color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }
.page-hero h1 { font-family: var(--serif); color: #fff; font-size: clamp(1.8rem,5vw,3rem); font-weight: 700; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 0.5rem; max-width: 28rem; }
.back-btn {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; align-items: center; gap: 0.375rem;
  color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 500;
  background: rgba(0,0,0,0.3); padding: 0.375rem 0.75rem; border-radius: 9999px;
  text-decoration: none; transition: background 0.2s, color 0.2s; border: none; cursor: pointer;
}
.back-btn:hover { background: rgba(0,0,0,0.5); color: #fff; }
.rooms-intro { margin-bottom: 3.5rem; max-width: 48rem; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.feature-pill {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4b5563;
  background: var(--stone-50); padding: 0.4rem 1rem; border-radius: 9999px; border: 1px solid #f3f4f6;
}
.feature-pill svg { color: var(--primary); flex-shrink: 0; }
.room-section { margin-bottom: 5rem; }
.room-divider { border: none; border-top: 1px dashed #e5e7eb; margin-bottom: 5rem; }
.floor-badge { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.floor-dot {
  width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.floor-dot.teal { background: var(--primary); }
.floor-dot.amber { background: #f59e0b; }
.floor-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.floor-label.teal { color: var(--primary); }
.floor-label.amber { color: #d97706; }
.room-title-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.5rem; }
.room-h2 { font-family: var(--serif); font-size: clamp(1.5rem,3.5vw,2.2rem); }
.room-page-price {
  display: flex; align-items: center; gap: 0.375rem; margin-bottom: 1.5rem;
}
.price-badge {
  display: flex; align-items: center; gap: 0.25rem;
  background: rgba(30,125,140,0.1); color: var(--primary);
  padding: 0.375rem 1rem; border-radius: 9999px;
}
.price-badge .amount { font-size: 1.25rem; font-weight: 700; }
.price-badge .per { font-size: 0.8rem; opacity: 0.7; font-weight: 400; }
.guests-badge { display: flex; align-items: center; gap: 0.375rem; color: #4b5563; font-size: 0.875rem; }
.room-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.8; margin-bottom: 2.5rem; max-width: 42rem; }
.room-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .room-detail-grid { grid-template-columns: 1fr 1fr; } }
.carousel { position: relative; border-radius: 1rem; overflow: hidden; background: #e5e7eb; }
.carousel-track { aspect-ratio: 4/3; position: relative; }
.carousel-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  padding: 0.75rem 1rem;
}
.carousel-caption p { color: #fff; font-size: 0.75rem; }
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(0,0,0,0.4); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.carousel-prev:hover, .carousel-next:hover { background: rgba(0,0,0,0.6); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-dots-track { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.375rem; }
.carousel-dot-small {
  height: 0.375rem; border-radius: 9999px; background: rgba(255,255,255,0.5);
  transition: all 0.3s; cursor: pointer; border: none; width: 0.375rem;
}
.carousel-dot-small.active { width: 1rem; background: #fff; }
.whats-included { background: var(--stone-50); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem; }
.whats-included h3 { font-weight: 600; margin-bottom: 1rem; font-size: 1rem; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.features-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.features-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.features-list.amber li svg { color: #f59e0b; }
.features-list li span { font-size: 0.875rem; color: hsl(220,30%,20%); }
.booking-btns { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .booking-btns { flex-direction: row; } }
.btn-wa-room {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem; background: var(--wa-green); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s; text-align: center;
}
.btn-wa-room:hover { background: var(--wa-hover); }
.btn-call-room {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 0.875rem; background: var(--primary); color: #fff;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-call-room:hover { background: var(--primary-dark); }
.rooms-cta-box { background: var(--stone-50); border-radius: 1rem; padding: 1.5rem 2rem; text-align: center; margin-top: 6rem; }
.rooms-cta-box h3 { font-weight: 600; margin-bottom: 0.5rem; }
.rooms-cta-box p { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.25rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.rooms-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; align-items: stretch; }
@media (min-width: 640px) { .rooms-cta-btns { flex-direction: row; align-items: center; } }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; border: 1px solid #d1d5db; color: hsl(220,30%,15%);
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* Common living rooms intro section */
.common-living { margin-bottom: 3.5rem; }

/* ===== GALLERY PAGE ===== */
.gallery-page-grid { columns: 2; gap: 1rem; }
@media (min-width: 768px) { .gallery-page-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-page-grid { columns: 4; } }

/* ===== UTILITY ===== */
.text-primary { color: var(--primary); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.hidden { display: none !important; }
.pt-nav { padding-top: 68px; }
