*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sand:    #f4efe4;
  --sand-d:  #e5dcc9;
  --bark:    #7a6248;
  --bark-d:  #52412e;
  --palm:    #3d6645;
  --palm-l:  #527d5c;
  --sea:     #4a7c8e;
  --cream:   #faf7f0;
  --text:    #2a1f14;
  --muted:   #7a6e60;
  --white:   #ffffff;
  --r:       14px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(250,247,240,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,98,72,0.14);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bark-d);
  letter-spacing: 0.04em;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-logo em { color: var(--palm); font-style: normal; }
.nav-cta {
  background: var(--palm);
  color: #fff;
  border: none;
  padding: 0.55rem 1.35rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--bark-d); transform: translateY(-1px); }
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--bark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--palm); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.22) 58%, transparent 100%);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 7rem 5rem 5rem;
  max-width: 620px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em { color: #e8c97a; font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  background: var(--palm);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--bark-d); transform: translateY(-2px); }
.btn-secondary {
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: #fff; border-color: #fff; }
.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
}
.direct-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 1rem;
}
.direct-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--palm-l);
  border-radius: 50%;
}

/* SECTION HELPERS */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--palm);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--bark-d);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

/* ABOUT */
.about {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 5rem;
}
.about-images {
  position: relative;
  height: 480px;
}
.about-img-a {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 78%;
  object-fit: cover;
  border-radius: var(--r);
}
.about-img-b {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%; height: 52%;
  object-fit: cover;
  border-radius: var(--r);
  border: 4px solid var(--cream);
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  background: var(--palm);
  color: #fff;
  border-radius: var(--r);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(61,102,69,0.35);
  z-index: 2;
}
.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge span {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* AMENITIES */
.amenities {
  background: var(--cream);
  padding: 6rem 5rem;
}
.amenities-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,31,20,0.08);
}
.amenity-icon {
  width: 44px; height: 44px;
  background: var(--sand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.amenity-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--bark-d); margin-bottom: 0.3rem; }
.amenity-card p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

/* GALLERY */
.gallery { padding: 0 5rem 6rem; background: var(--cream); }
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.8rem;
  border-radius: var(--r);
  overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-strip img:hover { transform: scale(1.03); }
.g-main { grid-row: 1 / 3; }

/* REVIEWS */
.reviews {
  background: var(--sand);
  padding: 6rem 0;
  overflow: hidden;
}
.reviews-intro {
  text-align: center;
  padding: 0 5rem;
  margin-bottom: 3rem;
}
.reviews-intro .section-title { margin-bottom: 0.5rem; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.reviews-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bark-d);
  line-height: 1;
}
.reviews-stars {
  color: #f5a623;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.reviews-count {
  font-size: 0.88rem;
  color: var(--muted);
}
.reviews-track-wrap {
  overflow: hidden;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--sand-d);
  border-radius: var(--r);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.review-card:hover { box-shadow: 0 8px 28px rgba(42,31,20,0.1); }
.review-stars { color: #f5a623; font-size: 1rem; letter-spacing: 0.06em; }
.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--sand-d);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--palm);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.review-name { font-size: 0.88rem; font-weight: 500; color: var(--bark-d); }
.review-meta { font-size: 0.78rem; color: var(--muted); font-weight: 300; margin-top: 0.1rem; }

/* LOCATION */
.location {
  background: var(--cream);
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.location-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--sand-d);
}
.location-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--palm);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.location-point p { font-size: 0.9rem; font-weight: 400; }
.location-point span { font-size: 0.78rem; color: var(--muted); font-weight: 300; }
.map-wrap {
  background: var(--sand-d);
  border-radius: var(--r);
  overflow: hidden;
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* RESERVE */
.reserve {
  background: var(--bark-d);
  color: #fff;
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.reserve .section-label { color: rgba(255,255,255,0.5); }
.reserve .section-title { color: #fff; }
.reserve .section-sub { color: rgba(255,255,255,0.65); }
.reserve-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.reserve-feature { display: flex; align-items: flex-start; gap: 0.8rem; }
.reserve-feature-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.reserve-feature p { font-size: 0.93rem; color: rgba(255,255,255,0.75); font-weight: 300; }
.reserve-feature strong { color: #fff; font-weight: 500; }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 2.2rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,0.45); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--bark-d); color: #fff; }
.form-group textarea { resize: none; height: 90px; }
.btn-form {
  width: 100%;
  background: var(--palm);
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.btn-form:hover { background: var(--palm-l); }
.whatsapp-alt {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.whatsapp-alt a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.footer-logo em { color: var(--palm-l); font-style: normal; }
footer p { font-size: 0.8rem; font-weight: 300; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-top: 0.3rem;
}
.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(255,255,255,0.6); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 250;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.65;
  transition: opacity 0.2s;
  padding: 0.25rem;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-counter {
  position: absolute;
  top: 1.4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.gallery-strip img { cursor: pointer; }

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { align-items: flex-start; }
  .hero::after {
    background: rgba(0,0,0,0.45);
  }
  .hero-text { padding: 5.5rem 1.5rem 3rem; max-width: 100%; }
  .about, .location { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .amenities { padding: 4rem 1.5rem; }
  .amenities-header { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery { padding: 0 1.5rem 4rem; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .g-main { grid-row: 1; grid-column: 1 / 3; }
  .reserve { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .about-images { height: 320px; }

  .reviews { padding: 4rem 0; }
  .reviews-intro { padding: 0 1.5rem; margin-bottom: 2rem; }
  .reviews-track-wrap {
    overflow: hidden;
    padding: 1rem 0;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .reviews-track {
    animation: marquee 55s linear infinite;
  }
  .review-card {
    width: 78vw;
  }
}
