:root {
  --bg: #f5fbfb;
  --text: #13212b;
  --muted: #5c6f7b;
  --primary: #66b56d;
  --primary-dark: #2f7f58;
  --accent: #1ca0d1;
  --card: #ffffff;
  --line: rgba(19, 33, 43, 0.09);
  --shadow: 0 18px 45px rgba(14, 36, 55, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 88px 0; position: relative; }
.alt { background: linear-gradient(180deg, rgba(102,181,109,0.06), rgba(28,160,209,0.04)); }
.section-tag {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: .84rem;
}
h1, h2, h3, .brand strong {
  font-family: 'Playfair Display', serif;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.05; margin: 0 0 18px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 16px; }
h3 { margin: 0 0 10px; font-size: 1.35rem; }
p { color: var(--muted); line-height: 1.75; margin: 0 0 14px; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 251, 251, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 16px;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1.25rem; }
.brand span { display: block; color: var(--muted); font-size: .94rem; }
.site-nav {
  display: flex; gap: 24px; align-items: center;
}
.site-nav a { font-weight: 600; color: #294250; position: relative; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px;
  background: var(--accent); transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }
.lang-switch { display: flex; gap: 8px; }
.lang-btn, .menu-toggle {
  border: 1px solid var(--line); background: #fff; color: var(--text);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: var(--text); color: #fff; }
.menu-toggle { display: none; }
.hero {
  min-height: calc(100vh - 78px);
  display: grid; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 760px; }
.eyebrow {
  color: rgba(255,255,255,0.86); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700; font-size: .84rem;
}
.hero-text { color: rgba(255,255,255,0.88); max-width: 620px; font-size: 1.08rem; }
.hero-actions, .contact-list { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700;
  border: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.34); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--primary-dark); color: var(--primary-dark); }
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center;
}
.image-stack {
  display: grid; gap: 18px;
}
.image-stack img, .map-card iframe, .video-wrap iframe, .gallery-item img, .social-card img {
  border-radius: var(--radius);
}
.image-stack img {
  width: 100%; height: 300px; object-fit: cover; box-shadow: var(--shadow);
}
.info-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px;
}
.info-cards article, .amenity-card, .social-card, .map-card, .contact-form {
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.info-cards article {
  padding: 22px; border-radius: 20px;
}
.info-cards strong { display: block; font-size: 1.6rem; margin-bottom: 6px; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.amenity-card {
  padding: 28px; border-radius: 22px;
}
.amenity-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(102,181,109,0.18), rgba(28,160,209,0.18));
  font-size: 1.7rem; margin-bottom: 18px;
}
.destination-section .mosaic-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.mosaic-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  padding: 0; border: none; background: transparent; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 240px; object-fit: cover; box-shadow: var(--shadow);
  transition: transform .28s ease;
}
.gallery-item:hover img { transform: scale(1.02); }
.video-wrap iframe, .map-card iframe {
  width: 100%; min-height: 520px; border: 0; box-shadow: var(--shadow);
}
.social-card {
  padding: 28px; border-radius: 24px; display: flex; align-items: center; gap: 18px;
}
.social-card img {
  width: 110px; height: 110px; object-fit: cover;
}
.contact-list a {
  background: #fff; border: 1px solid var(--line); padding: 12px 16px; border-radius: 999px; font-weight: 600;
}
.contact-form {
  border-radius: 24px; padding: 28px; display: grid; gap: 14px;
}
.contact-form input, .contact-form textarea {
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; background: #fff;
}
.site-footer {
  background: #081721; color: rgba(255,255,255,0.82); padding: 28px 0;
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.footer-wrap p { color: rgba(255,255,255,0.82); margin: 0; }
.footer-wrap a { color: #95ecff; }
.floating-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 1002;
}
.whatsapp {
  background: #25d366; color: #fff; border-radius: 999px; min-height: 58px;
  display: inline-flex; align-items: center; padding: 0 22px; font-weight: 800; box-shadow: var(--shadow);
}
.lightbox {
  position: fixed; inset: 0; background: rgba(5, 12, 18, 0.92); display: none;
  align-items: center; justify-content: center; padding: 20px; z-index: 1100;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%); max-height: 85vh; border-radius: 20px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px; border: none; background: #fff; color: #111;
  border-radius: 50%; width: 48px; height: 48px; font-size: 2rem; cursor: pointer;
}
.reveal {
  opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .split, .amenities-grid, .gallery-grid, .info-cards { grid-template-columns: 1fr 1fr; }
  .split { gap: 30px; }
  .site-nav {
    position: absolute; top: 77px; left: 16px; right: 16px; display: none; flex-direction: column;
    background: rgba(255,255,255,0.97); border: 1px solid var(--line); border-radius: 20px; padding: 16px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { min-height: 88vh; }
  .split, .amenities-grid, .gallery-grid, .info-cards { grid-template-columns: 1fr; }
  .destination-section .mosaic-grid { grid-template-columns: 1fr 1fr; }
  .reverse-mobile > :first-child { order: 2; }
  .reverse-mobile > :last-child { order: 1; }
  .nav-wrap { flex-wrap: wrap; padding: 12px 0; }
  .lang-switch { margin-left: auto; }
  .brand { width: calc(100% - 70px); }
  .video-wrap iframe, .map-card iframe { min-height: 360px; }
  .gallery-item img, .image-stack img { height: 220px; }
}
