:root {
  --brand: #03983c;
  --brand-dark: #026b2b;
  --accent: #ffb703;
  --ink: #17211b;
  --muted: #5f6f65;
  --surface: #ffffff;
  --soft: #f3f7f1;
  --dark: #0b1f13;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.mt-24 { margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 12px 30px rgba(3, 152, 60, .25); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-light { color: var(--brand-dark); background: #fff; }
.btn-outline { color: #fff; border: 1px solid rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(23, 33, 27, .08);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 88px; }
.logo img { width: 196px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--ink); font-weight: 700; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--brand); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--brand-dark); font-weight: 800; }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(3, 35, 18, .42), rgba(3, 35, 18, .42)),
    url('../img/slider1.jpg') center center / cover no-repeat;
}
.hero::after { content: none; }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 120px 0 170px; }
.eyebrow { color: var(--accent); font-size: .86rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin: 16px 0 20px; font-size: clamp(2.7rem, 7vw, 5.6rem); line-height: .98; letter-spacing: -.06em; }
.hero p { max-width: 650px; margin: 0 0 30px; color: rgba(255, 255, 255, .88); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { gap: 12px; margin-top: 34px; }
.badge { padding: 10px 14px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; background: rgba(255, 255, 255, .1); font-weight: 700; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--dark); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .location-box h2, .cta h2 { margin: 8px 0 14px; font-size: 2.08rem; line-height: 1.05; letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: rgba(255, 255, 255, .72); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.about-photo { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo img { width: 100%; aspect-ratio: 3.5 / 4; object-fit: cover; }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.feature-list strong { color: var(--brand-dark); }
.check { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: var(--brand); background: rgba(3, 152, 60, .12); font-weight: 900; }
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery a { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 18px; background: rgba(3, 152, 60, .12); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.07); }
.amenities { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.amenity { padding: 24px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 22px; background: rgba(255, 255, 255, .08); }
.amenity span { display: block; margin-bottom: 10px; font-size: 1.8rem; }
.amenity strong { display: block; margin-bottom: 6px; }
.amenity small { color: rgba(255, 255, 255, .72); }
.location { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: stretch; }
.location-box { padding: 34px; border-radius: var(--radius); color: #fff; background: var(--brand-dark); }
.map { width: 100%; min-height: 420px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 74px);
  border-radius: 32px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 35, 18, .95), rgba(3, 35, 18, .72)),
    url('../img/banner1.jpg') center center / cover no-repeat;
}
.cta h2 { max-width: 760px; margin: 0 0 18px; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.05em; }
.cta p { max-width: 650px; margin: 0 0 28px; color: rgba(255, 255, 255, .78); }
.site-footer { padding: 64px 0 28px; color: #fff; background: #07130c; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
.site-footer h2, .site-footer h3 { margin-top: 0; }
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .6); font-size: .92rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 30; padding: 14px 18px; border-radius: 999px; color: #fff; background: #25d366; box-shadow: 0 16px 40px rgba(0, 0, 0, .22); font-weight: 900; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .main-nav, .header-actions .phone-link { display: none; }
  .main-nav.is-open { position: absolute; top: 88px; left: 16px; right: 16px; display: grid; gap: 14px; padding: 22px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
  .about-grid, .location, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .logo img { width: 160px; }
  .hero { min-height: 680px; }
  .hero-content { padding: 92px 0 120px; }
  .section { padding: 68px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .gallery, .amenities { grid-template-columns: 1fr; }
  .whatsapp-float { right: 16px; left: 16px; justify-content: center; text-align: center; }
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); background: #fff; box-shadow: 0 10px 35px rgba(0,0,0,.08); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { flex: 1; padding: 24px; display: grid; gap: 14px; align-content: space-between; }
.card h3 { margin: 0; font-size: 1.18rem; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); }
.card .btn { width: 100%; }