:root {
  --green-dark: #10321f;
  --green: #1f5f3f;
  --green-mid: #2c7a52;
  --gold: #c8a04d;
  --cream: #f8f5ee;
  --text: #22281f;
  --text-light: #f8f5ee;
  --muted: #5b6459;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(16, 50, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

p { line-height: 1.65; color: var(--muted); }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: none;
}

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

.btn-whatsapp {
  background: #25d366;
  color: #08351d;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #21bd5a; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--text-light); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 50, 31, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--green-dark);
  font-size: 0.85rem;
  line-height: 1.2;
  margin-right: auto;
}
.brand strong { font-size: 1rem; }
.brand-icon { width: 32px; height: 32px; }

.nav {
  display: flex;
  gap: 1.75rem;
}
.nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a:hover { color: var(--green); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background:
    linear-gradient(rgba(16,50,31,0.55), rgba(16,50,31,0.75)),
    linear-gradient(135deg, #1f5f3f 0%, #10321f 60%, #0b2417 100%);
  overflow: hidden;
}

.hero-content { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  max-width: 20ch;
  color: var(--text-light);
}

.hero-sub {
  max-width: 44ch;
  font-size: 1.1rem;
  color: rgba(248, 245, 238, 0.85);
  margin: 1rem 0 2rem;
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.stat span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(248, 245, 238, 0.7);
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section-alt { background: #f0ece0; }
.section-dark {
  background: var(--green-dark);
  color: var(--text-light);
}
.section-dark p { color: rgba(248, 245, 238, 0.75); }
.section-dark h2 { color: var(--text-light); }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  margin: 0 0 0.5rem;
}
.section-dark .kicker { color: var(--gold); }
.kicker.center { text-align: center; }
h2.center { text-align: center; max-width: 32ch; margin: 0 auto 3rem; }

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.section-grid.reverse .section-copy { order: 2; }
.section-grid.reverse .section-media { order: 1; }

.section-copy h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }

.section-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #cfe3d4, #9dc2a8);
  box-shadow: var(--shadow);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #e4e0d2, #e4e0d2 10px, #ded9c8 10px, #ded9c8 20px);
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
.check-list-light li { color: var(--text-light); }
.check-list-light li::before { color: var(--gold); }

/* ---------- Amenidades ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: left;
}
.amenity-icon { font-size: 1.8rem; }
.amenity-card h3 { font-size: 1.05rem; margin: 0.75rem 0 0.4rem; font-family: "Inter"; font-weight: 600; }
.amenity-card p { margin: 0; font-size: 0.92rem; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-final h2 { color: var(--text-light); font-size: clamp(1.9rem, 4vw, 2.6rem); }
.cta-final p { color: rgba(248, 245, 238, 0.85); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(248, 245, 238, 0.7);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.brand-footer { color: var(--text-light); font-weight: 600; font-size: 0.95rem; }
.brand-footer .brand-icon { width: 26px; height: 26px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 60;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .section-grid { grid-template-columns: 1fr; }
  .section-grid.reverse .section-copy,
  .section-grid.reverse .section-media { order: initial; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(16,50,31,0.08);
    display: none;
  }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .amenities-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 1.5rem; }
}
