:root{
  --bg:#0a1222;
  --panel:#0f203a;
  --panel2:#0b1f3a;
  --text:#e9eef7;
  --muted:#b7c2d6;
  --accent:#b08d57;
  --accent2:#e5c38b;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 20px;
}

*{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";
  background: radial-gradient(900px 600px at 15% 10%, rgba(176,141,87,0.25), transparent 55%),
              radial-gradient(800px 600px at 85% 20%, rgba(28,98,255,0.14), transparent 50%),
              linear-gradient(180deg, #070d18, #0a1222 60%, #070d18);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:14px; top:14px; width:auto; height:auto; padding:10px 14px; background:#000; border-radius:12px; z-index:9999}

.topbar{
  background: rgba(255,255,255,0.04);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
  font-size:14px;
}
.topbar__actions{display:flex; gap:14px; flex-wrap:wrap}
.topbar__link{color:var(--muted)}
.topbar__link:hover{color:var(--text)}
.topbar__item{display:flex; align-items:center; gap:10px; color:var(--muted)}
.dot{width:8px; height:8px; border-radius:999px; background:var(--accent); box-shadow:0 0 0 4px rgba(176,141,87,0.2)}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(10,18,34,0.6);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand__logo{
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.brand__name{font-weight:800; letter-spacing:0.2px}
.brand__tag{font-size:12px; color:var(--muted); margin-top:2px}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.nav a:hover{color:var(--text)}
.nav .btn{margin-left:6px}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  background: rgba(255,255,255,0.06);
  border:1px solid var(--border);
  color:var(--text);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin:4px auto;
  border-radius:999px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#1b1205;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.15);
  box-shadow: 0 14px 40px rgba(176,141,87,0.22);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.03)}
.btn--ghost{
  background: rgba(255,255,255,0.06);
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(255,255,255,0.10)}
.btn--small{padding:10px 14px; border-radius:12px; font-size:14px}

.link{color:var(--accent2); font-weight:700}
.link:hover{filter:brightness(1.05); text-decoration:underline}

.section{
  padding:78px 0;
}
.section--alt{
  background: rgba(255,255,255,0.03);
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.section__head{
  display:flex; flex-direction:column; gap:10px;
  margin-bottom:26px;
}
.section__head h2{margin:0; font-size:34px; letter-spacing:-0.4px}
.section__head p{margin:0; color:var(--muted); max-width:70ch}

.hero{
  padding:70px 0 30px;
  position:relative;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:26px;
  align-items:stretch;
}
.hero__glow{
  position:absolute; inset:-120px -80px auto -80px; height:340px;
  background: radial-gradient(closest-side, rgba(176,141,87,0.18), transparent);
  filter: blur(8px);
  pointer-events:none;
}
.kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color:var(--muted);
  font-weight:700;
  margin:0 0 12px 0;
}
.hero h1{
  margin:0 0 14px 0;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-0.6px;
}
.accent{color:var(--accent2)}
.lead{margin:0 0 18px 0; color:var(--muted); font-size:16px; max-width:60ch}

.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}
.hero__badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.hero__card{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero__cardTop{
  display:flex; justify-content:space-between; align-items:center;
  padding:14px 14px 10px;
  gap:10px;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(176,141,87,0.18);
  border:1px solid rgba(176,141,87,0.35);
  color: var(--accent2);
  font-weight:800;
  font-size:13px;
}
.pill--soft{
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
  color:var(--muted);
  font-weight:700;
}
.hero__media{
  height:220px;
  background: rgba(0,0,0,0.2);
}
.hero__media img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.05);
}
.hero__cardBody{padding:14px 16px 16px}
.hero__cardBody h3{margin:0 0 8px 0; font-size:18px}
.hero__cardBody p{margin:0 0 12px 0; color:var(--muted)}
.hero__miniCtas{display:flex; gap:14px}
.hero__miniCtas .link{font-weight:800}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 50px rgba(0,0,0,0.22);
}
.card h3{margin:0 0 8px 0}
.card p{margin:0; color:var(--muted)}

.twoCol{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:22px;
  align-items:center;
}
.twoCol--tight{grid-template-columns: 1fr 1fr}
.checklist{margin:16px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.checklist li{
  padding-left:28px; position:relative; color:var(--muted); font-weight:600;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  width:20px; height:20px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(176,141,87,0.18);
  border:1px solid rgba(176,141,87,0.35);
  color: var(--accent2);
  font-weight:900;
  font-size:12px;
}
.infoBox{
  margin-top:18px;
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,0.05);
  border:1px solid var(--border);
}
.infoBox__title{font-weight:900; margin-bottom:6px}
.infoBox__text{color:var(--muted)}

.imageStack{
  display:grid; gap:12px;
}
.imageStack img{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  object-fit:cover;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery__item{
  padding:0;
  border:none;
  background: transparent;
  cursor:pointer;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  transition: transform .15s ease, filter .15s ease;
}
.gallery__item:hover{transform: translateY(-2px); filter:brightness(1.03)}
.gallery__item img{width:100%; height:100%; object-fit:cover; aspect-ratio: 1 / 1}

.videoWrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,0.2);
}
.videoWrap iframe{
  width:100%;
  aspect-ratio: 16/9;
  display:block;
}

.muted{color:var(--muted)}
.small{font-size:13px}

.socialEmbed{
  margin:12px 0 14px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
}
.socialEmbed iframe{width:100%; height:520px; display:block}

.quickLinks{display:grid; gap:12px; margin-top:14px}
.quickLink{
  display:flex; gap:12px; align-items:center;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.quickLink:hover{background: rgba(255,255,255,0.07)}
.quickLink__icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(176,141,87,0.18);
  border:1px solid rgba(176,141,87,0.35);
  font-size:20px;
}

.note{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  border:1px dashed rgba(176,141,87,0.45);
  background: rgba(176,141,87,0.10);
  color: var(--muted);
}
.logoLink{
  display:flex; align-items:center; gap:12px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
}
.logoLink img{width:44px; height:44px; border-radius:14px; border:1px solid var(--border)}

.mapGrid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  align-items:stretch;
}
.mapWrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,0.2);
  min-height: 340px;
}
.mapWrap iframe{width:100%; height:100%; min-height:340px; display:block}

.divider{height:1px; background: rgba(255,255,255,0.10); margin:16px 0}

.contactGrid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  align-items:start;
}
.form label{display:flex; flex-direction:column; gap:8px; font-weight:800}
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color:var(--text);
  outline:none;
}
.form input:focus, .form textarea:focus{
  border-color: rgba(229,195,139,0.55);
  box-shadow: 0 0 0 4px rgba(229,195,139,0.12);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.miniFaq{margin-top:14px; padding:12px; border-radius:16px; border:1px solid var(--border); background: rgba(255,255,255,0.04)}
.miniFaq__q{font-weight:900; margin-bottom:6px}
.miniFaq__a{color:var(--muted)}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  flex-wrap:wrap;
}
.footer__brand{display:flex; align-items:center; gap:12px}
.footer__brand img{width:44px; height:44px; border-radius:14px; border:1px solid var(--border)}
.footer__links{display:flex; gap:14px; flex-wrap:wrap}
.footer__copy{max-width:60ch}

.wa-float{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: rgba(16, 185, 129, 0.18);
  border:1px solid rgba(16, 185, 129, 0.40);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  z-index:60;
}
.wa-float:hover{background: rgba(16, 185, 129, 0.26)}
.wa-float__icon{font-size:18px}
.wa-float__text{font-weight:900; color:var(--text)}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:80;
}
.lightbox.open{display:flex}
.lightbox__img{
  max-width:min(1100px, 94vw);
  max-height:80vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  background: rgba(0,0,0,0.2);
}
.lightbox__close{
  position:absolute;
  top:16px; right:16px;
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.16);
  color:var(--text);
  cursor:pointer;
}
.lightbox__hint{
  position:absolute;
  bottom:14px;
  left:50%;
  transform: translateX(-50%);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* reveal animation */
.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid, .twoCol, .mapGrid, .contactGrid{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .socialEmbed iframe{height:520px}
}
@media (max-width: 720px){
  .topbar__inner{flex-direction:column; align-items:flex-start}
  .nav-toggle{display:block}
  .nav{
    position:fixed;
    right:14px; left:14px;
    top:72px;
    border-radius: 18px;
    background: rgba(10,18,34,0.92);
    border:1px solid rgba(255,255,255,0.14);
    padding:14px;
    display:none;
    flex-direction:column;
    gap:12px;
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .hero h1{font-size:36px}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .form__row{grid-template-columns: 1fr}
  .wa-float{right:14px; bottom:14px}
  .wa-float__text{display:none}
}
