:root{
  --bg: #f6fbff;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#516072;
  --border: rgba(15, 23, 42, .10);
  --shadow: 0 18px 50px rgba(2, 6, 23, .10);
  --shadow2: 0 10px 24px rgba(2, 6, 23, .08);
  --brand:#14b8c6;
  --brand2:#0ea5b7;
  --sun:#fde68a;
  --r12:12px;
  --r16:16px;
  --r20:20px;
  --r24:24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, system-ui, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(20,184,198,.16), transparent 60%),
    radial-gradient(700px 420px at 85% 10%, rgba(253,230,138,.18), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1180px, 92vw); margin:0 auto; }

/* Header */
.header{
  position:static;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
  flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 280px;
}
.logo-badge{
  width:72px;
  height:72px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r16);
  box-shadow: var(--shadow2);
  display:flex; align-items:center; justify-content:center;
  padding:8px;
}
.logo-badge img{ width:100%; height:100%; object-fit:contain; display:block; }
.brand-text{ display:flex; flex-direction:column; gap:2px; }
.brand-title{
  font-weight:900;
  letter-spacing:-.5px;
  font-size:26px;
  line-height:1.05;
}
.brand-sub{
  font-size:12px;
  color:var(--muted);
  font-weight:800;
}
.header-right{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  justify-content:flex-end;
}
.pills{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  font-weight:900;
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}
.icon-inline{
  font-size: 0.98rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pill span{ color:var(--muted); font-weight:900; }
.pill.contact-mail{ border-color: rgba(59,130,246,.28); background: rgba(59,130,246,.08); }
.pill.contact-wa{ border-color: rgba(34,197,94,.30); background: rgba(34,197,94,.10); }

.lang{
  display:inline-flex; gap:6px;
  padding:6px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  box-shadow: 0 8px 18px rgba(2,6,23,.06);
}
.lang button{
  border:0; cursor:pointer;
  padding:9px 12px;
  border-radius:999px;
  background:#eef2f7;
  font-weight:900;
}
.lang button.active{ background:var(--brand); color:#fff; }

/* Hero */
.hero{ padding:34px 0 8px; text-align:center; }
.hero h1{
  margin:0;
  font-size:38px;
  letter-spacing:-.7px;
}
.hero p{
  margin:10px auto 0;
  max-width:78ch;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}

/* Cards */
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:22px;
  padding:22px 0 44px;
}
@media (max-width: 920px){
  .grid{ grid-template-columns:1fr; }
  .brand{ min-width:auto; }
  .brand-title{ font-size:22px; }
  .hero h1{ font-size:30px; }
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--r24);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.media{
  position:relative;
  aspect-ratio: 16 / 10;
  background:#e2e8f0;
}
.media img{ width:100%; height:100%; object-fit:cover; display:block; }
.badge{
  position:absolute; top:14px; left:14px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  box-shadow: 0 10px 24px rgba(2,6,23,.12);
}
.body{ padding:18px 18px 20px; }
.body h2{ margin:0; font-size:28px; letter-spacing:-.5px; }
.body p{ margin:10px 0 0; color:var(--muted); line-height:1.6; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-weight:900;
}
.actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
}
.btn.primary{ background:var(--brand); color:#fff; }
.btn.primary:hover{ background:var(--brand2); }
.btn.ghost{ background:#fff; border:1px solid var(--border); color:var(--text); }
.btn.ghost:hover{ border-color: rgba(15,23,42,.18); }
.btn.contact-mail{ border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.08); }
.btn.contact-mail:hover{ border-color: rgba(59,130,246,.55); background: rgba(59,130,246,.13); }
.btn.contact-wa{ border-color: rgba(34,197,94,.36); background: rgba(34,197,94,.10); }
.btn.contact-wa:hover{ border-color: rgba(34,197,94,.58); background: rgba(34,197,94,.16); }

/* Sections */
.section{ padding:28px 0; }
.section.alt{
  background: rgba(255,255,255,.70);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section h2{ margin:0 0 12px; letter-spacing:-.4px; }
.lead{ margin:0; color:var(--muted); line-height:1.7; max-width:88ch; }
.detail-title{ margin:0; font-size:40px; letter-spacing:-.7px; }
.detail-intro{ margin-top:10px; }
.amenities-list{ padding-left:18px; }

.subnav{
  position:sticky; top:84px; z-index:70;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px) saturate(180%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.subnav-inner{
  display:flex; gap:10px; overflow:auto;
  padding:10px 0;
}
.subnav a{
  white-space:nowrap;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-weight:900;
}
.subnav a:hover{ color:var(--text); border-color: rgba(15,23,42,.18); }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 920px){
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .subnav{ top:132px; }
}
.thumb{
  border:0; padding:0; cursor:pointer;
  border-radius:var(--r16);
  overflow:hidden;
  background:#e2e8f0;
  box-shadow: 0 10px 22px rgba(2,6,23,.08);
}
.thumb img{ width:100%; height:200px; object-fit:cover; display:block; }
@media (max-width: 920px){ .thumb img{ height:160px; } }

.kv{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}
@media (max-width: 920px){ .kv{ grid-template-columns:1fr; } }
.box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r20);
  padding:14px;
  color:var(--muted);
  line-height:1.7;
}
.box strong{ color:var(--text); }

.map-wrap{
  border-radius:var(--r20);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
  background:#fff;
}
.map-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

/* Footer */
.footer{
  background: rgba(255,255,255,.85);
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-weight:900;
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
}
.footer a{ color:var(--muted); }
.sep{ opacity:.45; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200;
  background: rgba(2,6,23,.74);
  display:none; align-items:center; justify-content:center;
  padding:20px;
}
.lightbox.open{ display:flex; }
.lightbox-inner{
  width:min(1100px, 96vw);
  background:#000;
  border-radius:var(--r20);
  overflow:hidden;
  box-shadow: var(--shadow);
  position:relative;
}
.lightbox img{ width:100%; height:auto; display:block; }
.lb-close{
  position:absolute; top:10px; right:10px;
  border:0; cursor:pointer;
  background: rgba(255,255,255,.92);
  border-radius:999px;
  padding:10px 12px;
  font-weight:900;
}



/* Mobile polish */
@media (max-width: 720px){
  .header-inner{ padding:10px 0; gap:10px; }
  .brand{ gap:10px; min-width: 0; }
  .brand-title{ font-size:20px; }
  .brand-sub{ display:none; }

  .logo-badge{ width:64px; height:64px; padding:10px; }

  .pills{
    flex-wrap:nowrap;
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    gap:8px;
    max-width: 100%;
  }
  .pill{
    padding:10px 12px;
    font-size:14px;
    white-space:nowrap;
  }
  .pill span{ display:none; }

  .lang{ padding:5px; gap:6px; }
  .lang button{ padding:9px 11px; }

  .hero{ padding:18px 0 6px; }
  .hero h1{ font-size:26px; }
  .hero p{ font-size:15px; }

  .grid{ padding:14px 0 28px; gap:14px; }
  .body h2{ font-size:24px; }
  .chip{ padding:7px 9px; font-size:13px; }
}
