/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f2f2f3;
  --grey-200: #e4e4e6;
  --grey-300: #d1d1d5;
  --grey-400: #a8a8ae;
  --grey-500: #7d7d84;
  --grey-600: #5a5a61;
  --grey-700: #3f3f45;
  --grey-800: #27272b;
  --grey-900: #18181a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(24, 24, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(24, 24, 26, 0.14);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--grey-900);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grey-900);
  color: var(--white);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-600);
}

.nav a:hover { color: var(--grey-900); }

.nav-cta {
  background: var(--grey-900);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--grey-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--grey-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:active { transform: scale(0.97); }

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.22); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.icon-wa { width: 20px; height: 20px; flex-shrink: 0; }

.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,24,26,0.15) 0%, rgba(24,24,26,0.55) 65%, rgba(24,24,26,0.85) 100%);
}

.hero-content {
  position: relative;
  padding-bottom: 64px;
  padding-top: 140px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-200);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--grey-100);
  margin: 0 0 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; font-weight: 800; }
.stat span { font-size: 0.85rem; color: var(--grey-300); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey-500);
  margin: 0 0 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: var(--grey-900);
}

.gallery-section { background: var(--grey-50); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}

.gallery-item {
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-200);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.item-1 { grid-column: span 2; grid-row: span 2; }
.item-2 { grid-column: span 2; }
.item-3 { grid-column: span 2; }
.item-4 { grid-column: span 2; }
.item-5 { grid-column: span 1; }
.item-6 { grid-column: span 1; }
.item-7 { grid-column: span 2; }

/* ---------- Description ---------- */
.description-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.description-text p {
  color: var(--grey-600);
  font-size: 1.02rem;
  margin: 0 0 20px;
}

.amenities-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.amenities-card h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--grey-900);
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.amenities-list li {
  position: relative;
  padding-left: 26px;
  color: var(--grey-700);
  font-size: 0.95rem;
}

.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-900);
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--grey-200);
  padding-top: 16px;
  margin-top: 4px;
}

.price-box + .price-box {
  border-top: none;
  padding-top: 8px;
}

.price-label { font-size: 0.85rem; color: var(--grey-500); font-weight: 600; }
.price-value { font-size: 1.6rem; font-weight: 800; color: var(--grey-900); }

/* ---------- Location ---------- */
.location-section { background: var(--grey-50); }

.location-text { color: var(--grey-600); margin: -20px 0 28px; }

.map-link {
  color: var(--grey-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-link:hover { color: var(--grey-600); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-200);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--grey-900);
  color: var(--white);
  text-align: center;
}

.contact-inner { max-width: 620px; }

.contact-section .section-title { color: var(--white); margin-bottom: 14px; }

.contact-section p { color: var(--grey-300); margin: 0 0 32px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-500);
}

.footer-inner p { margin: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .description-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 130px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none !important;
  }

  .nav-toggle { display: flex; }

  .hero { min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); }
  .hero-content { padding-top: 32px; padding-bottom: 20px; }
  .eyebrow { margin-bottom: 8px; }
  .hero h1 { margin-bottom: 8px; }
  .hero-sub { margin-bottom: 14px; }
  .hero-stats { gap: 14px; margin-bottom: 14px; padding-bottom: 14px; }
  .hero-actions { gap: 10px; }

  .section { padding: 64px 0; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .item-1 { grid-column: span 2; grid-row: span 1; }
  .item-2, .item-3, .item-4, .item-5, .item-6 { grid-column: span 1; }
  .item-7 { grid-column: span 2; }

  .lightbox-nav { width: 40px; height: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
