:root{
  --sand:#E8DCCB;
  --ocean:#0F4C5C;
  --deep-ocean:#082B33;
  --palm:#5C7A58;
  --white:#FAFAF8;
  --gold:#C8A96B;

  --bg: var(--white);
  --panel: rgba(255,255,255,.68);
  --panel2: rgba(255,255,255,.82);
  --text: rgba(8,43,51,.92);
  --muted: rgba(8,43,51,.68);
  --line: rgba(15,76,92,.14);
  --brand: var(--ocean);
  --brand2: var(--deep-ocean);
  --warn: var(--gold);

  --shadow: 0 18px 50px rgba(8,43,51,.16);
  --radius:18px;
  --radius2:12px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(15,76,92,.12), transparent 55%),
    radial-gradient(1100px 700px at 100% 10%, rgba(92,122,88,.10), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, rgba(232,220,203,.55) 55%, var(--white) 100%);
  color:var(--text);
  line-height:1.5;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
button{font:inherit}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#000; border:1px solid var(--line); border-radius:10px; z-index:999;
}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.section{padding:44px 0}
.section.tight{padding:28px 0}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  color:rgba(8,43,51,.60);
}

.lux-shadow{
  box-shadow: 0 16px 40px rgba(8,43,51,.14);
}

.topbar{
  position:sticky; top:0; z-index:100;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(250,250,248,.10);
  border-bottom:1px solid rgba(15,76,92,.10);
  transition: background .25s ease, border-color .25s ease;
}
.topbar.is-scrolled{
  background:rgba(250,250,248,.86);
  border-bottom:1px solid rgba(15,76,92,.18);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--ocean), var(--gold));
  box-shadow: 0 14px 30px rgba(8,43,51,.18);
}
.brand-title{font-weight:650; letter-spacing:.2px; line-height:1.1}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex; gap:14px; align-items:center;
}
.nav a{
  font-size:14px;
  color:rgba(8,43,51,.82);
  padding:10px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(15,76,92,.06)}
.nav a[aria-current="page"]{
  background:rgba(200,169,107,.18);
  outline:1px solid rgba(200,169,107,.30);
}

.menu-btn{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  padding:9px 10px;
  border-radius:12px;
}

.mobile-nav{
  display:none;
  padding:0 0 12px;
}
.mobile-nav a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  border:1px solid var(--line);
  margin-top:10px;
  background:rgba(255,255,255,.04);
}
.mobile-nav a:hover{background:rgba(255,255,255,.07)}

.hero{
  padding:26px 0 12px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}

.hero-card{
  border-radius:24px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(250,250,248,.78), rgba(250,250,248,.62));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  position:relative;
}
.hero-media{
  transition: transform .9s ease, filter .9s ease;
}
.hero-card:hover .hero-media{
  transform: scale(1.02);
  filter:saturate(1.03);
}
.hero-media{
  aspect-ratio: 16/10;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65)),
    url("../images/hero.svg");
  background-size:cover;
  background-position:center;
}
.hero-content{
  padding:18px 18px 16px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px;
  color:rgba(8,43,51,.78);
  padding:8px 10px;
  border-radius:999px;
  background:rgba(250,250,248,.70);
  border:1px solid rgba(15,76,92,.16);
}
.badge-dot{
  width:8px; height:8px; border-radius:999px;
  background:linear-gradient(135deg, var(--gold), var(--ocean));
}
.h1{
  margin:12px 0 10px;
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size:clamp(28px, 4.2vw, 44px);
  line-height:1.05;
  letter-spacing:-.4px;
}
.lead{color:var(--muted); font-size:16px; margin:0 0 14px}

.cta-row{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(250,250,248,.55);
  color:var(--text);
  font-weight:650;
  font-size:14px;
}
.btn:hover{background:rgba(15,76,92,.06)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(15,76,92,.92), rgba(8,43,51,.92));
  border-color: rgba(8,43,51,.18);
  color: var(--white);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.whatsapp{
  background: linear-gradient(135deg, rgba(34,197,94,.9), rgba(16,185,129,.85));
  border-color: rgba(255,255,255,.18);
  color:#04110A;
}

.btn-book{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(200,169,107,.75);
  background:rgba(250,250,248,.42);
  color: rgba(8,43,51,.90);
  font-weight:600;
  font-size:14px;
}
.btn-book:hover{background:rgba(200,169,107,.12)}

.icon{
  width:18px; height:18px; display:inline-block;
}

.side-panel{
  border-radius:24px;
  background:rgba(250,250,248,.62);
  border:1px solid var(--line);
  overflow:hidden;
}
.side-panel-inner{padding:16px}
.side-title{font-weight:720; letter-spacing:.2px; margin:0 0 10px}
.kv{
  display:grid; grid-template-columns: 1fr auto;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.10);
}
.kv:first-of-type{border-top:none}
.k{color:var(--muted); font-size:13px}
.v{font-weight:650; font-size:13px}
.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.pill{
  font-size:12px; color:rgba(8,43,51,.78);
  padding:8px 10px; border-radius:999px;
  background:rgba(232,220,203,.40);
  border:1px solid rgba(200,169,107,.30);
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(250,250,248,.78);
  overflow:hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-pad{padding:16px}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.card-media{
  aspect-ratio: 16/11;
  background:rgba(255,255,255,.07);
  border-bottom:1px solid var(--line);
  background-size:cover;
  background-position:center;
  transition: transform .6s ease;
}
.card:hover .card-media{transform: scale(1.03)}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.list li{margin:6px 0}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.shot{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  position:relative;
}
.shot img{
  transition: transform .55s ease;
}
.shot:hover img{transform: scale(1.03)}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(8,43,51,.78);
  backdrop-filter: blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:1000;
}
.lightbox.open{display:flex}
.lightbox-inner{
  max-width:min(1100px, 96vw);
  max-height:86vh;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(250,250,248,.18);
  background:rgba(250,250,248,.06);
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
}
.lightbox-img{
  width:100%;
  height:86vh;
  object-fit:contain;
  background:rgba(0,0,0,.22);
}
.lightbox-bar{
  position:absolute;
  top:16px;
  right:16px;
  display:flex;
  gap:10px;
}
.lightbox-btn{
  border:1px solid rgba(250,250,248,.22);
  background:rgba(250,250,248,.10);
  color:rgba(250,250,248,.92);
  padding:10px 12px;
  border-radius:999px;
}
.lightbox-btn:hover{background:rgba(250,250,248,.16)}
.shot img{width:100%; height:100%; object-fit:cover}
.shot span{
  position:absolute; left:10px; bottom:10px;
  font-size:12px;
  padding:6px 9px;
  border-radius:999px;
  background:rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.18);
}
.shot.w6{grid-column: span 6}
.shot.w4{grid-column: span 4}
.shot.w8{grid-column: span 8}

.faq details{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  padding:12px 14px;
  margin-top:10px;
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); margin:10px 0 0}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:rgba(250,250,248,.78);
  font-size:13px;
  background: var(--deep-ocean);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.fine{
  opacity:.85;
}
.foot-links{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end;
}
.foot-links a{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.foot-links a:hover{background:rgba(255,255,255,.06)}

.floating-wa{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:120;
  border-radius:999px;
  padding:12px 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

.form{
  display:grid;
  gap:10px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-size:13px; color:rgba(255,255,255,.82)}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.20);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 0 3px rgba(56,189,248,.18);
}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.hint{font-size:12px; color:var(--muted)}

.map{
  width:100%;
  border:0;
  border-radius:18px;
  overflow:hidden;
  min-height:320px;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; gap:14px}
  .grid-3{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .foot-links{justify-content:flex-start}
}

@media (max-width: 820px){
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .mobile-nav[hidden]{display:none}
  .mobile-nav{display:block}
  .shot.w6,.shot.w4,.shot.w8{grid-column: span 12}
  .form-row{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
}

