*{margin:0;padding:0;box-sizing:border-box;font-family:'Montserrat',sans-serif}
:root{
  --bg:#0e0e0e; --bg2:#111; --text:#fff; --muted:#b9b9b9;
  --gold:#d4af37; --line:#2a2a2a;
}
body{background:var(--bg);color:var(--text);}
a{color:inherit}
.container{max-width:1120px;margin:0 auto;}
.hero{
  min-height:100vh;
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.88)),
    url("images/hero.jpg") center/cover no-repeat;
  display:flex;flex-direction:column;
}
.nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:28px 60px;
  position:sticky;top:0;
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
  z-index:50;
}
.logo{font-size:24px;font-weight:800;letter-spacing:2px;color:#fff;text-decoration:none}
.logo.small{font-size:18px;letter-spacing:1px}
.nav ul{list-style:none;display:flex;gap:26px;flex-wrap:wrap;justify-content:flex-end}
.nav a{text-decoration:none;font-weight:700;opacity:.92}
.nav a:hover{opacity:1}

.hero-content{margin:auto;text-align:center;padding:0 24px}
.hero-content h1{font-size:56px;line-height:1.05;margin-bottom:16px;text-shadow:0 10px 30px rgba(0,0,0,.55)}
.hero-content p{font-size:20px;color:var(--muted);margin-bottom:28px}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

.btn{
  display:inline-block;padding:14px 36px;border:2px solid var(--gold);
  color:var(--gold);text-decoration:none;font-weight:800;letter-spacing:.4px;
  transition:.25s;border-radius:10px;
}
.btn:hover{background:var(--gold);color:#000;transform:translateY(-1px)}
.btn.ghost{border-color:rgba(212,175,55,.6);color:#fff}
.btn.ghost:hover{background:rgba(212,175,55,.18);color:#fff}
.btn.small{padding:12px 22px;font-size:14px;border-radius:10px}

.hero-badges{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:18px}
.hero-badges span{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(0,0,0,.25);
  padding:8px 12px;border-radius:999px;font-size:13px;
  color:rgba(255,255,255,.9)
}

.section{padding:92px 60px;text-align:center}
.section.dark{background:var(--bg2)}
.section h2{font-size:40px;margin-bottom:18px}
.lead{max-width:780px;margin:0 auto 46px auto;color:var(--muted);font-size:16px;line-height:1.6}

.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px;text-align:left}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);padding:28px;border-radius:16px;
}
.card h3{font-size:20px;margin-bottom:10px}
.card p{color:var(--muted);line-height:1.6}
.card a{color:#fff}
.mini{margin-top:14px;padding-left:18px;color:rgba(255,255,255,.86)}
.mini li{margin:6px 0}

.pricing{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px}
.price-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);padding:30px;border-radius:18px;position:relative;
}
.price-card.featured{border:2px solid rgba(212,175,55,.85);box-shadow:0 0 0 1px rgba(212,175,55,.12), 0 20px 60px rgba(0,0,0,.55)}
.chip{
  position:absolute;top:14px;right:14px;background:rgba(212,175,55,.18);
  border:1px solid rgba(212,175,55,.55);color:var(--gold);
  padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;
}
.price{font-size:34px;margin:18px 0;color:var(--gold);font-weight:900}
.price-card ul{list-style:none;margin:14px 0 18px 0;text-align:left}
.price-card li{padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06);color:rgba(255,255,255,.9)}
.price-card li:last-child{border-bottom:none}
.note{
  margin-top:26px;max-width:920px;margin-left:auto;margin-right:auto;text-align:left;
  border:1px dashed rgba(255,255,255,.16);background:rgba(0,0,0,.18);
  padding:16px 18px;border-radius:14px;color:var(--muted);
}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;align-items:stretch}
.gallery figure{border:1px solid rgba(255,255,255,.08);border-radius:16px;overflow:hidden;background:rgba(0,0,0,.22)}
.gallery img{width:100%;height:260px;object-fit:cover;display:block}
.gallery figcaption{padding:12px 14px;color:rgba(255,255,255,.88);font-size:14px;border-top:1px solid rgba(255,255,255,.06)}
.gallery--refs .shot{cursor:zoom-in}
.gallery--refs img{transition:transform .25s ease, filter .25s ease}
.gallery--refs .shot:hover img{transform:scale(1.02);filter:contrast(1.05)}

/* CTA */
.cta{
  margin-top:34px;padding:28px;border-radius:18px;
  border:1px solid rgba(212,175,55,.25);
  background:linear-gradient(180deg, rgba(212,175,55,.08), rgba(0,0,0,.18));
}
.cta h3{font-size:24px;margin-bottom:8px}
.cta p{color:var(--muted);margin-bottom:16px}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;background:rgba(0,0,0,.88);
  display:none;align-items:center;justify-content:center;padding:24px;z-index:9999;
}
.lightbox.is-open{display:flex}
.lightbox__img{
  max-width:min(1100px, 96vw);max-height:86vh;width:auto;height:auto;
  border-radius:14px;box-shadow:0 20px 80px rgba(0,0,0,.55);
}
.lightbox__close{
  position:fixed;top:18px;right:18px;width:44px;height:44px;border-radius:12px;
  border:1px solid rgba(255,255,255,.18);background:rgba(20,20,20,.65);
  color:#fff;font-size:28px;line-height:1;cursor:pointer;
}
.lightbox__close:hover{border-color:rgba(212,175,55,.6)}

/* Maps */
.mapframe{
  border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.4);
}

/* Footer */
.footer{background:#000;padding:34px 60px;border-top:1px solid rgba(255,255,255,.06)}
.foot{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;flex-wrap:wrap}
.muted{color:var(--muted);font-size:14px;line-height:1.6}
.footer a{color:#fff;text-decoration:none}
.footer a:hover{text-decoration:underline}

/* WhatsApp Button */
.whatsapp{
  position:fixed;right:20px;bottom:20px;background:#25D366;color:#000;
  padding:14px 22px;border-radius:50px;font-weight:900;text-decoration:none;
  box-shadow:0 12px 35px rgba(0,0,0,.45);z-index:999;
}
.whatsapp:hover{transform:translateY(-2px);}

/* Responsive */
@media (max-width: 720px){
  .nav{padding:18px 18px}
  .section{padding:70px 18px}
  .footer{padding:30px 18px}
  .hero-content h1{font-size:40px}
}


/* Equal height CTA buttons in pricing */
.price-card{
  display:flex;
  flex-direction:column;
}
.price-card ul{
  flex-grow:1;
}
.price-card .btn{
  margin-top:auto;
}


/* Pricing refinements */
.price-card{
  transition:transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 60px rgba(0,0,0,.45);
}
.price-card .price-sub{
  font-size:13px;
  color:rgba(255,255,255,.7);
  margin-bottom:10px;
}

.price-card .chip.gold{
  background:linear-gradient(180deg,#d4af37,#b8962e);
  color:#000;
  font-weight:900;
}

.trustline{
  margin:30px 0 10px;
  text-align:center;
  color:rgba(255,255,255,.75);
  font-size:14px;
}



/* VIP highlight (mobile-safe, no :has) */
.price-card.vip{
  border:2px solid #d4af37;
  transform:translateY(-6px);
}
@media (max-width: 980px){
  .price-card.vip{transform:none;}
}


/* Service note */
.service-note{
  margin:12px auto 26px;
  text-align:center;
  color:rgba(255,255,255,.85);
  font-size:14px;
}
