:root {
  --sand: #FAF6EF;
  --sand-dark: #F1EADA;
  --ink: #24303A;
  --teal: #0F5257;
  --teal-dark: #0B2E33;
  --muted: #5A6B71;
  --whatsapp: #25D366;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.5;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; margin: 0; font-weight: 600; }

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

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, .94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(15, 82, 87, .1);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: var(--teal); line-height: 1; }
.brand-sub { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #8A9AA0; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-size: 15px; font-weight: 500; color: #3C4A52; }
.nav-links a:hover { color: var(--teal); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 14px 28px; font-weight: 600; font-size: 16px; border: none; cursor: pointer; transition: transform .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.28); }
.btn-outline { background: transparent; color: var(--sand); border: 1.5px solid rgba(250,246,239,.55); }

/* Hero */
.hero { position: relative; background: linear-gradient(160deg, var(--teal) 0%, #123F45 55%, var(--teal-dark) 100%); overflow: hidden; }
.hero-inner { max-width: 1180px; margin: 0 auto; padding: 88px 24px 96px; display: flex; gap: 56px; align-items: center; position: relative; flex-wrap: wrap; }
.hero-text { flex: 1.1; min-width: 320px; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(15,82,87,.08); color: var(--teal); border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; }
.hero .pill { background: rgba(255,255,255,.12); color: #E7F3F1; }
.hero h1 { font-size: 48px; line-height: 1.08; color: var(--sand); margin-top: 20px; font-weight: 500; }
.hero p { font-size: 18px; line-height: 1.6; color: #CFE3E0; margin-top: 20px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-family: 'Fraunces', serif; font-size: 26px; color: var(--sand); }
.hero-stats .label { font-size: 13px; color: #9FBAB6; }
.hero-photo { flex: 1; min-width: 320px; height: 420px; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
.section { padding: 96px 24px 40px; max-width: 1180px; margin: 0 auto; }
.section-lead { max-width: 640px; }
.section-lead p { font-size: 16px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.section-lead h2 { font-size: 34px; margin-top: 16px; color: #123F45; }

/* Property cards */
.card { margin-top: 48px; background: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 20px 50px rgba(18,63,69,.08); display: flex; flex-wrap: wrap; }
.card.reverse { flex-wrap: wrap-reverse; }
.card-body { flex: 1; min-width: 320px; padding: 40px; }
.card-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.card-body h3 { font-size: 26px; margin-top: 18px; color: #123F45; }
.card-loc { font-size: 14px; color: #8A9AA0; margin-top: 4px; }
.card-desc { font-size: 15px; line-height: 1.65; color: #45555B; margin-top: 16px; }
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 20px; margin-top: 22px; }
.amenity { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; }
.amenity svg { flex-shrink: 0; margin-top: 2px; }
.card-gallery { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; padding: 4px; }
.card-gallery .wide { grid-column: 1 / 3; min-height: 160px; overflow: hidden; }
.card-gallery div { min-height: 120px; overflow: hidden; }
.card-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* Why book direct */
.why { background: var(--sand-dark); margin-top: 96px; }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; margin-top: 48px; }
.why-card { background: #fff; border-radius: 18px; padding: 32px; }
.why-card h3 { font-size: 19px; margin-top: 18px; color: #123F45; }
.why-card p { font-size: 14.5px; color: var(--muted); margin-top: 10px; line-height: 1.6; }

/* Location */
.location { display: flex; gap: 56px; flex-wrap: wrap; }
.location-text { flex: 1; min-width: 320px; }
.location-text p { font-size: 15.5px; line-height: 1.7; color: #45555B; margin-top: 18px; }
.location-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.map-frame { flex: 1; min-width: 320px; height: 340px; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 30px rgba(18,63,69,.12); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Contact CTA */
.contact { background: linear-gradient(160deg, var(--teal), var(--teal-dark)); padding: 96px 24px; text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 { font-size: 32px; color: var(--sand); }
.contact p { font-size: 16px; color: #CFE3E0; margin-top: 16px; line-height: 1.6; }

/* Footer */
.footer { background: var(--teal-dark); padding: 32px 24px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13.5px; color: #7FA3A0; }
.footer-ig { font-size: 13.5px; color: #CFE3E0; display: flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
  .stack-mobile { flex-direction: column !important; }
  .why-grid { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}
