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

:root {
  --sand:    #f5f0e8;
  --sand2:   #ede7d9;
  --teal:    #1a7a6e;
  --teal2:   #15695e;
  --teal-lt: #e6f4f2;
  --coral:   #e8634a;
  --dark:    #1c1c1e;
  --mid:     #555;
  --light:   #888;
  --white:   #fff;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--teal); }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
select, input, textarea { font-family: inherit; font-size: 0.95rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; border: none; cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,122,110,0.35); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-nav { background: var(--teal); color: #fff; padding: 10px 22px; font-size: 0.88rem; }
.btn-whatsapp { background: #25D366; color: #fff; gap: 8px; }
.btn-whatsapp:hover { background: #1db855; transform: translateY(-1px); }
.full-width { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px; transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}
.nav-inner { max-width: 1160px; margin: 0 auto; height: 70px; display: flex; align-items: center; gap: 32px; }
.logo { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; transition: color 0.3s; }
.logo span { color: var(--coral); }
.nav.scrolled .logo { color: var(--dark); }
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover { color: var(--teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: background 0.3s; }
.nav.scrolled .hamburger span { background: var(--dark); }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
  background: #fff; padding: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 8px; font-size: 1rem; font-weight: 500; color: var(--dark); border-bottom: 1px solid #f0f0f0; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%); }

.hero-content {
  position: relative; z-index: 2; max-width: 700px;
  padding: 0 40px; margin-top: -40px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.85rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-content h1 { color: #fff; margin-bottom: 16px; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-pills {
  position: absolute; bottom: 100px; left: 40px; z-index: 2;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.pill {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.82rem; font-weight: 500;
  padding: 7px 16px; border-radius: 50px;
}

.slide-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s, transform 0.3s;
}
.dot.active { background: #fff; transform: scale(1.3); }

/* ===== QUICK FACTS ===== */
.quick-facts { background: var(--teal); padding: 0; }
.facts-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 24px; gap: 8px; flex-wrap: wrap;
}
.fact { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 130px; justify-content: center; }
.fact-icon { font-size: 1.5rem; }
.fact strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.fact span { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.fact-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-sub { color: var(--mid); max-width: 520px; margin: 14px auto 0; }

/* ===== ABOUT SPACE ===== */
.about-space { background: var(--sand); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text .eyebrow { text-align: left; }
.about-text h2 { margin: 10px 0 20px; }
.about-text p { color: var(--mid); margin-bottom: 14px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.highlight-item { display: flex; gap: 10px; align-items: flex-start; }
.highlight-item span { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.highlight-item p { font-size: 0.88rem; color: var(--mid); margin: 0; }

.about-imgs { position: relative; height: 480px; }
.img-main {
  position: absolute; left: 0; top: 0; width: 68%; height: 80%;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.img-small {
  position: absolute; width: 40%; height: 44%;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 4px solid var(--sand);
}
.img-top { right: 0; top: 0; }
.img-bot { right: 0; bottom: 0; }

/* ===== AMENITIES ===== */
.amenities { background: #fff; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.amenity-card {
  background: var(--sand); border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.amenity-card h4 { margin-bottom: 8px; }
.amenity-card p { font-size: 0.88rem; color: var(--mid); }

/* ===== STAYS SECTION ===== */
.stays-section { background: var(--sand); }
.stays-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stay-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); transition: transform 0.2s; }
.stay-card:hover { transform: translateY(-6px); }
.stay-img { height: 220px; background-size: cover; background-position: center; }
.stay-body { padding: 22px; }
.stay-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; color: var(--teal); background: var(--teal-lt); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.stay-body h3 { margin-bottom: 8px; }
.stay-body p { font-size: 0.88rem; color: var(--mid); }

/* ===== LOCATION ===== */
.location { background: #fff; }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-text .eyebrow { text-align: left; }
.location-text h2 { margin: 10px 0 18px; }
.location-text > p { color: var(--mid); margin-bottom: 28px; }
.location-list { display: flex; flex-direction: column; gap: 14px; }
.loc-item { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--sand); border-radius: 10px; }
.loc-item span { font-size: 1.4rem; }
.loc-item strong { display: block; font-size: 0.92rem; font-weight: 600; }
.loc-item > div span { font-size: 0.82rem; color: var(--light); }
.map-wrap { position: relative; }
.map-pin-card {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; border-radius: 10px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.map-pin-card strong { display: block; font-size: 0.88rem; }
.map-pin-card > div span { font-size: 0.78rem; color: var(--light); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--sand); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px; gap: 8px; margin-top: 40px;
}
.gallery-item {
  background-size: cover; background-position: center;
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-item:hover { opacity: 0.88; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; border-radius: 14px; }

/* ===== REVIEWS ===== */
.reviews { background: #fff; }
.overall-rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 12px; }
.big-star { font-size: 1.6rem; }
.overall-rating strong { font-size: 2rem; font-weight: 800; }
.overall-rating span { color: var(--mid); font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--sand); border-radius: var(--radius);
  padding: 28px 24px; border: 2px solid transparent; transition: border-color 0.2s;
}
.featured-review { background: var(--teal); color: #fff; }
.featured-review p { color: rgba(255,255,255,0.9); }
.review-stars { font-size: 0.9rem; margin-bottom: 14px; }
.review-card > p { font-size: 0.92rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer span { font-size: 0.78rem; color: var(--light); }
.featured-review .reviewer span { color: rgba(255,255,255,0.65); }
.featured-review .reviewer strong { color: #fff; }

/* ===== BOOK ===== */
.book-section { background: var(--sand); }
.book-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.book-info .eyebrow { text-align: left; }
.book-info h2 { margin: 10px 0 16px; }
.book-info > p { color: var(--mid); margin-bottom: 28px; }
.pricing-box { background: #fff; border-radius: var(--radius); padding: 24px; margin-bottom: 28px; box-shadow: var(--shadow); }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.price-row:last-of-type { border-bottom: none; }
.price-row span { font-size: 0.9rem; color: var(--mid); }
.price-row strong { font-size: 1rem; color: var(--dark); }
.price-note { font-size: 0.78rem; color: var(--light); margin-top: 10px; }
.contact-mini { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.contact-mini p { font-size: 0.88rem; color: var(--mid); }
.contact-mini strong { color: var(--dark); }

.book-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.book-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid #e0e0e0; border-radius: 10px;
  background: #fafafa; outline: none; transition: border-color 0.2s;
  color: var(--dark); resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: #fff; }
.radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer; }
.form-success { display: none; margin-top: 14px; background: #e6f4f2; color: var(--teal); border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; font-weight: 500; }
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; }
.logo-light { color: #fff; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s; }
.social-links a:hover { background: var(--teal); }
.footer-links h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== AVAILABILITY / CALENDAR ===== */
.availability-section { background: var(--sand); }
.calendar-wrap { margin-top: 8px; }
.calendar-placeholder {
  background: #fff; border-radius: var(--radius); padding: 64px 32px;
  text-align: center; border: 2px dashed #d8d0c4;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.cal-icon { font-size: 3rem; }
.calendar-placeholder h3 { font-size: 1.3rem; }
.calendar-placeholder p { color: var(--mid); max-width: 480px; font-size: 0.92rem; }

.form-note { font-size: 0.78rem; color: var(--light); text-align: center; margin-top: 10px; }

/* ===== LAUNCH BADGE ===== */
.launch-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff8e6; border: 1.5px solid #f5c842;
  border-radius: 50px; padding: 10px 18px; margin: 18px 0 10px;
}
.launch-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #f5c842; animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.launch-badge strong { font-size: 0.92rem; color: #7a5a00; }
.launch-text { font-size: 0.9rem; color: var(--mid); margin-bottom: 24px; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .about-inner, .location-inner, .book-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { display: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .stays-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 260px; }
  .gallery-item { height: 180px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .facts-row { gap: 16px; }
  .fact-divider { display: none; }
}

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

  /* NAV */
  .nav { padding: 0 16px; }
  .logo { font-size: 1.2rem; }

  /* HERO — fix all overlaps */
  .hero { min-height: 100svh; }
  .hero-content {
    padding: 90px 20px 20px;
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
  }
  .hero-tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    white-space: normal;
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .hero-content h1 { font-size: 2.2rem; margin-bottom: 12px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .hero-pills {
    position: relative;
    left: auto; bottom: auto;
    padding: 16px 20px 0;
    z-index: 2;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .pill { font-size: 0.78rem; }
  .slide-dots { bottom: 16px; }

  /* QUICK FACTS */
  .facts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
  .fact { justify-content: flex-start; }

  /* ABOUT */
  .about-text { padding: 0 4px; }
  .about-highlights { grid-template-columns: 1fr; }

  /* AMENITIES */
  .amenities-grid { grid-template-columns: 1fr; }

  /* FORM */
  .form-row { grid-template-columns: 1fr; }
  .book-form { padding: 24px 16px; }
  .book-inner { gap: 24px; }

  /* GALLERY */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; height: 240px; }
  .gallery-item { height: 180px; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; }
  .footer { padding: 48px 0 0; }

  /* LOCATION */
  .map-wrap iframe { height: 280px; }

  /* CALENDAR */
  .calendar-placeholder { padding: 40px 20px; }
}
