:root{
  --bg:#0b0b0b;
  --bg2:#111;
  --fg:#f4f4f4;
  --muted:#b8b8b8;
  --gold:#d4af37;
  --gold2:#c79d2a;
  --shadow:0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Arial,sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
}

a{color:inherit}
.wrap{width:min(1120px,92vw);margin:0 auto}

.topbar{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  background:linear-gradient(to bottom, rgba(0,0,0,.60), rgba(0,0,0,0));
  border-bottom:1px solid rgba(255,255,255,0);
  transition:.25s ease;
}
.topbar.is-solid{
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar__in{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 10px;
}
.right{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand__text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brand__name{
  font-size:20px;
  font-weight:900;
  color:var(--gold);
  line-height:1.1;
  letter-spacing:.8px;
}
.brand__tag{
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.72);
  margin-top:4px;
}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  font-weight:800;
  font-size:12px;
  color:rgba(244,244,244,.92);
}
.nav a:hover{color:var(--gold)}
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.35);
  background:rgba(212,175,55,.10);
}

.lang{
  display:flex;
  gap:8px;
  align-items:center;
}
.lang__btn{
  background:transparent;
  border:1px solid rgba(212,175,55,.35);
  color:rgba(244,244,244,.85);
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
}
.lang__btn:hover{
  color:var(--gold);
  border-color:rgba(212,175,55,.75);
}
.lang__btn.is-active{
  background:rgba(212,175,55,.12);
  color:var(--gold);
  border-color:rgba(212,175,55,.85);
}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  margin:5px auto;
  background:var(--gold);
  border-radius:2px;
}

.hero{
  position:relative;
  min-height:100vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:url("images/hero.jpg") center/cover no-repeat;
  transform:scale(1.03);
}
.hero__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 400px at 15% 25%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.50), rgba(0,0,0,.90));
}
.hero__in{
  position:relative;
  padding:120px 0 70px;
}

.pill{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(212,175,55,.28);
  background:rgba(0,0,0,.25);
  font-weight:900;
  font-size:11px;
  letter-spacing:.4px;
  color:rgba(244,244,244,.90);
}
.h1{
  margin:18px 0 10px;
  font-size:clamp(38px,5vw,64px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.sub{
  margin:0 0 22px;
  max-width:62ch;
  color:rgba(244,244,244,.82);
  font-weight:600;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  font-size:12px;
  letter-spacing:.3px;
  border:1px solid rgba(255,255,255,.10);
  transition:.18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn--gold{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#0b0b0b;
  border-color:rgba(212,175,55,.45);
  box-shadow:0 16px 45px rgba(212,175,55,.14);
}
.btn--ghost{
  background:rgba(0,0,0,.25);
  border-color:rgba(255,255,255,.14);
  color:rgba(244,244,244,.92);
}
.btn--full{width:100%}

.stats{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.stat{
  padding:20px;
  border-radius:20px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
}
.stat__n{
  font-size:22px;
  font-weight:1000;
  color:var(--gold);
}
.stat__t{
  font-size:12px;
  font-weight:800;
  color:rgba(244,244,244,.72);
}

.section{
  padding:86px 0;
  background:var(--bg);
}
.section--dark{background:var(--bg2)}
.h2{
  margin:0 0 10px;
  font-size:30px;
  letter-spacing:-.4px;
}
.lead{
  margin:0 0 14px;
  color:rgba(244,244,244,.84);
  font-weight:600;
}
.muted{
  margin:0;
  color:var(--muted);
  font-weight:600;
}

.grid2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
}

.list{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:650;
  color:rgba(244,244,244,.82);
}
.li > span:first-child{
  width:10px;
  height:10px;
  margin-top:7px;
  flex:0 0 10px;
  border-radius:999px;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(212,175,55,.10);
}
.li > span:last-child{
  width:auto;
}

.card{
  border-radius:24px;
  padding:22px;
  background:
    linear-gradient(180deg, rgba(212,175,55,.12), rgba(0,0,0,0) 45%),
    rgba(0,0,0,.20);
  border:1px solid rgba(212,175,55,.22);
  box-shadow:var(--shadow);
}
.card__k{
  font-weight:900;
  font-size:12px;
  color:rgba(244,244,244,.70);
}
.card__h{
  margin:8px 0 10px;
  font-weight:1000;
  font-size:20px;
}
.card__p{
  margin:0;
  color:rgba(244,244,244,.78);
  font-weight:650;
}

.mini2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}
.mini{
  padding:12px;
  border-radius:16px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.08);
}
.mini__t{
  font-size:11px;
  font-weight:900;
  color:rgba(244,244,244,.70);
}
.mini__v{
  font-size:12px;
  font-weight:900;
  color:rgba(244,244,244,.92);
  margin-top:2px;
}

.head{margin-bottom:16px}
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.p{
  text-decoration:none;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  transition:.18s ease;
}
.p:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.30);
  box-shadow:var(--shadow);
}
.p__img{
  height:240px;
  background-size:cover;
  background-position:center;
  position:relative;
  transition:.25s ease;
}
.p:hover .p__img{transform:scale(1.02)}
.p__img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0) 60%);
}
.p__meta{padding:16px}
.p__t{font-weight:1000}
.p__s{
  margin-top:2px;
  font-weight:800;
  font-size:12px;
  color:rgba(244,244,244,.70);
}

.info{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.i{
  padding:12px 14px;
  border-radius:18px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.08);
}
.i__k{
  font-size:11px;
  font-weight:1000;
  color:rgba(244,244,244,.70);
}
.i__v a{
  text-decoration:none;
  font-weight:1000;
}
.i__v a:hover{color:var(--gold)}

.map{
  margin-top:14px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.map iframe{
  width:100%;
  height:260px;
  border:0;
  display:block;
}

.form{
  border-radius:24px;
  padding:18px;
  background:rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.08);
}
.form__h{
  font-weight:1000;
  color:var(--gold);
  margin-bottom:10px;
}
label{
  display:block;
  margin-top:10px;
}
label span{
  display:block;
  font-size:12px;
  font-weight:1000;
  color:rgba(244,244,244,.78);
  margin-bottom:6px;
}
input,textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.25);
  color:var(--fg);
  padding:12px 12px;
  outline:none;
  font-family:inherit;
  font-weight:700;
}
input:focus,textarea:focus{
  border-color:rgba(212,175,55,.35);
  box-shadow:0 0 0 4px rgba(212,175,55,.10);
}
.note{
  margin-top:10px;
  font-size:12px;
  font-weight:700;
  color:rgba(244,244,244,.65);
}

.footer{
  padding:24px 0;
  background:#070707;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer__in{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.fbrand{
  font-weight:1000;
  color:var(--gold);
}
.fmuted{
  font-size:12px;
  font-weight:800;
  color:rgba(244,244,244,.62);
  margin-top:2px;
}
.fright{
  display:flex;
  gap:16px;
}
.fright a{
  text-decoration:none;
  font-weight:900;
  font-size:12px;
  color:rgba(244,244,244,.72);
}
.fright a:hover{color:var(--gold)}

.wapp{
  position:fixed;
  right:18px;
  bottom:18px;
  padding:12px 16px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  font-weight:1000;
  box-shadow:var(--shadow);
}

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:.7s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

.slider{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}
.slider__viewport{overflow:hidden}
.slider__track{
  display:flex;
  width:100%;
  transform:translateX(0);
  transition:.35s ease;
}
.slider__slide{flex:0 0 100%}
.slider__a{
  display:block;
  text-decoration:none;
}
.slider__media{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
.slider__nav{
  position:absolute;
  inset:auto 12px 12px 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  pointer-events:none;
}
.slider__btn{
  pointer-events:auto;
  border:none;
  padding:10px 14px;
  border-radius:14px;
  font-weight:1000;
  background:rgba(0,0,0,.55);
  color:var(--fg);
  border:1px solid rgba(255,255,255,.10);
  cursor:pointer;
}
.slider__btn:hover{
  border-color:rgba(212,175,55,.35);
  color:var(--gold);
}
.slider__dots{
  pointer-events:auto;
  display:flex;
  gap:8px;
  justify-content:center;
  flex:1;
}
.slider__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
  cursor:pointer;
}
.slider__dot.is-active{
  background:var(--gold);
  border-color:rgba(212,175,55,.8);
}

@media (max-width:920px){
  .grid2{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .slider__media{height:260px}
}

@media (max-width:820px){
  .burger{display:block}
  .nav{
    display:none;
    position:fixed;
    inset:72px 14px auto 14px;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border-radius:20px;
    background:rgba(0,0,0,.92);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .brand__name{font-size:15px}
  .brand__tag{font-size:11px}
}