:root{
  --bg:#0b1220;
  --bg2:#0f1a33;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --line:rgba(255,255,255,.12);
  --accent:#58d3ff;
  --accent2:#7cffb6;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, rgba(88,211,255,.18), transparent 60%),
              radial-gradient(900px 600px at 80% 10%, rgba(124,255,182,.12), transparent 60%),
              var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  border-bottom:1px solid var(--line);
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
}

.brand{display:flex; align-items:center; gap:10px}
.brand__dot{
  width:12px; height:12px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(88,211,255,.10);
}
.brand__text{letter-spacing:.2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{padding:10px 10px; border-radius:12px; color:var(--muted)}
.nav a:hover{background:var(--card); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#07101f;
  font-weight:700;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 30px rgba(88,211,255,.12);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn--ghost:hover{background:var(--card)}
.btn--small{padding:10px 12px; border-radius:12px; font-weight:700}

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background:transparent; color:var(--text);
}
.burger span{display:block; height:2px; background:var(--text); margin:6px 10px; opacity:.9}

.drawer{
  position:fixed; inset:0;
  background: rgba(0,0,0,.45);
  display:none;
  z-index:60;
}
.drawer__panel{
  position:absolute; right:0; top:0; height:100%; width:min(360px, 88vw);
  background: rgba(15,26,51,.92);
  backdrop-filter: blur(10px);
  border-left:1px solid var(--line);
  padding:18px;
  display:flex; flex-direction:column; gap:10px;
}
.drawer__link{
  padding:14px 14px; border-radius:14px;
  background: var(--card);
  border:1px solid var(--line);
}

.hero{position:relative; min-height:84vh; display:flex; align-items:stretch}
.hero__bg{
  position:absolute; inset:0;
  background-image:url("assets/hero.jpg");
  background-size:cover;
  background-position:center;
  filter:saturate(1.08) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.25), rgba(11,18,32,.95) 68%);
}
.hero__content{position:relative; padding:60px 20px 36px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid var(--line);
  color: var(--text);
  width:fit-content;
}
h1{font-size: clamp(34px, 5vw, 54px); margin:14px 0 10px; line-height:1.05}
.lead{font-size:18px; color:var(--muted); max-width:56ch}
.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.hero__cards{display:grid; gap:12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top:26px}
.card{
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 14px;
  box-shadow: var(--shadow);
}
.card__title{color:var(--muted); font-size:13px}
.card__value{font-weight:900; font-size:18px; margin-top:4px}
.card__sub{color:var(--muted); font-size:13px; margin-top:4px}

.section{padding:68px 0}
.section--alt{background: linear-gradient(180deg, transparent, rgba(255,255,255,.03), transparent)}
.section__head{display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom:20px}
.section__head p{color:var(--muted); margin:0}
h2{margin:0; font-size:28px}

.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, minmax(0, 1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0, 1fr))}

.feature{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0; color:var(--muted)}

.pricebox{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}
.pricebox__row{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}
.pricebox__label{font-weight:800}
.pricebox__hint{color:var(--muted); font-size:12px}
.price{font-size:22px; font-weight:900; color:var(--text)}
.pricebox__footer{
  display:flex; gap:12px; align-items:center;
  padding:14px 18px;
}
.muted{color:var(--muted)}
.small{font-size:13px}

.mapcard{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}
.mapcard__actions{display:flex; gap:10px; padding:12px}
.mapcard iframe{width:100%; height:360px; border:0}

.infocard{
  background: var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.list{list-style:none; padding:0; margin:14px 0; display:grid; gap:10px}
.list li{display:flex; justify-content:space-between; gap:14px; padding:12px; background: var(--card2); border:1px solid var(--line); border-radius:14px}
.list span{color:var(--muted)}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap}

.gallery{
  display:grid; gap:12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.shot{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--card);
}
.shot img{width:100%; height:260px; object-fit:cover; display:block}

.footer{
  border-top:1px solid var(--line);
  padding:22px 0 0;
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center; gap:18px;
  padding:0 20px 18px;
}
.footer__brand{font-size:18px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.footer__links a:hover{color:var(--text)}
.footer__bottom{padding:14px 0; border-top:1px solid var(--line)}

@media (max-width: 900px){
  .nav{display:none}
  .burger{display:inline-block}
  .hero__cards{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .grid--2{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .shot img{height:240px}
}

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  padding:14px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color:#07101f;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.wa-float:hover{transform: translateY(-1px)}

.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-weight:800;
  font-size:12px;
  margin-top:6px;
  width: fit-content;
}

.notice{
  margin-top:14px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
}
.notice h3{margin:0 0 6px}
.notice p{margin:0; color:var(--muted)}
.admin-only{ display:none; }
.admin-on .admin-only{ display:flex; }
