/* ===== Base ===== */
:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#0c1119;
  --text:#e8eef6;
  --muted:#a8b3c2;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --accent:#ffffff;
  --accent2:#cfd6e0;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  line-height:1.5;
}

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

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

/* ===== Topbar ===== */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,20,.66);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:46px; height:46px; border-radius:14px;
  background:#fff; padding:6px; box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.brand__name{font-weight:800; letter-spacing:.14em; font-size:12px; opacity:.9}
.nav{display:flex; align-items:center; gap:16px}
.nav a{
  font-weight:600; font-size:14px; color:var(--accent2);
  padding:10px 10px; border-radius:14px;
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navbtn{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:14px;
  width:46px; height:46px;
  cursor:pointer;
}
.navbtn__lines{
  display:block; width:18px; height:2px; background:var(--text);
  margin:0 auto; position:relative;
}
.navbtn__lines:before,.navbtn__lines:after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--text);
}
.navbtn__lines:before{top:-6px}
.navbtn__lines:after{top:6px}

/* ===== Buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.18)}
.btn--primary{
  background:#ffffff;
  color:#0b0f14;
  border-color:rgba(255,255,255,.0);
}
.btn--primary:hover{background:#f3f6fb}
.btn--ghost{background:rgba(255,255,255,.04)}
.btn--sm{padding:10px 12px; border-radius:14px; font-size:13px}

/* ===== Hero ===== */
.hero{position:relative; padding:34px 0 28px}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(11,15,20,.72), rgba(11,15,20,.92)),
    url("assets/img/01.jpg") center/cover no-repeat;
  filter:saturate(1.1) contrast(1.05);
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.hero__card{
  border:1px solid var(--line);
  background: rgba(15,22,32,.72);
  border-radius: var(--radius2);
  padding:24px;
  box-shadow: var(--shadow);
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  font-weight:800; font-size:12px; letter-spacing:.08em;
  color:rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 12px;
  border-radius:999px;
  margin:0 0 14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{margin:0 0 18px; color:var(--accent2); font-size:16px}
.hero__cta{display:flex; flex-wrap:wrap; gap:12px; margin: 4px 0 18px}
.hero__highlights{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding:12px 12px;
}
.kpi__t{display:block; font-weight:800; font-size:13px}
.kpi__s{display:block; color:var(--muted); font-size:12px; margin-top:2px}
.hero__media{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}
.hero__media img{width:100%; height:100%; object-fit:cover}
.hero__strip{position:relative; margin-top:18px}
.strip{
  display:flex; flex-wrap:wrap; gap:10px;
  padding:12px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.strip__item{
  padding:10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.10);
  font-weight:700;
  color:rgba(255,255,255,.9);
  font-size:13px;
}

/* ===== Sections ===== */
.section{padding:56px 0}
.section--alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing:-.02em;
}
.section__head p{margin:0; color:var(--muted)}
.grid{display:grid; gap:14px}
.cards{grid-template-columns: repeat(3, minmax(0, 1fr))}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.card h3{margin:0 0 8px; font-size:17px}
.card p{margin:0; color:var(--muted)}
.card--pad{padding:22px}
.note{
  margin-top:16px;
  border-radius: 18px;
  padding:16px 18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.9);
}
.link{color:#fff; text-decoration:underline; text-underline-offset:3px}

/* ===== Gallery ===== */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.gitem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
  position:relative;
}
.gitem img{width:100%; height:100%; object-fit:cover; transition: transform .25s ease}
.gitem:hover img{transform: scale(1.04)}
.gallery .gitem:nth-child(1){grid-column: span 6; aspect-ratio: 16/10}
.gallery .gitem:nth-child(2){grid-column: span 6; aspect-ratio: 16/10}
.gallery .gitem:nth-child(3),
.gallery .gitem:nth-child(4),
.gallery .gitem:nth-child(5){grid-column: span 4; aspect-ratio: 4/3}
.gallery .gitem:nth-child(6){grid-column: span 4; aspect-ratio: 4/3}
.gallery .gitem:nth-child(7){grid-column: span 4; aspect-ratio: 4/3}
.gallery .gitem:nth-child(8),
.gallery .gitem:nth-child(9){grid-column: span 6; aspect-ratio: 16/10}

/* ===== Video / Map ratio ===== */
.ratio{position:relative; width:100%; padding-top:56.25%; border-radius: 20px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.ratio iframe{position:absolute; inset:0; width:100%; height:100%; border:0}
.ratio--map{padding-top:62%}

/* ===== Social / Contact ===== */
.social{grid-template-columns: 1.2fr .8fr}
.embed{border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.12); padding:10px}
.list{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.list li{display:flex; gap:10px; align-items:flex-start; color:rgba(255,255,255,.92)}
.list li span{width:22px; opacity:.95}
.mini{margin-top:14px; border-radius: 18px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.mini img{aspect-ratio: 16/10; object-fit:cover}

.contact{grid-template-columns: 1.05fr .95fr; align-items:start}
.form{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius2);
  padding:22px;
}
label{display:grid; gap:8px; margin-bottom:12px; font-weight:700; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(255,255,255,.28)}
.frow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.factions{display:flex; flex-wrap:wrap; gap:12px; margin-top:10px}
.small{margin:10px 0 0; font-size:12px}
.muted{color:var(--muted)}
.ctaBox{display:flex; flex-wrap:wrap; gap:12px; margin-top:14px}

/* ===== Footer ===== */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
  background: rgba(0,0,0,.16);
}
.footer__inner{display:flex; gap:18px; align-items:center; justify-content:space-between; flex-wrap:wrap}
.footer__left{display:flex; gap:14px; align-items:center}
.footer__logo{
  width:64px; height:64px; border-radius: 18px; background:#fff; padding:10px;
  border:1px solid rgba(255,255,255,.14)
}

/* ===== WhatsApp floating ===== */
.wapp{
  position:fixed;
  right:18px; bottom:18px;
  width:58px; height:58px;
  border-radius: 20px;
  background:#25D366;
  display:grid; place-items:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.20);
  z-index:60;
}
.wapp span{
  font-weight:900; font-size:10px; color:#05260f;
  padding:0 8px; text-transform:uppercase; letter-spacing:.08em;
}

/* ===== Lightbox ===== */
.lightbox{
  position:fixed; inset:0; z-index:80;
  display:none;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  padding:18px;
}
.lightbox.is-open{display:grid; place-items:center}
.lightbox__img{
  max-width:min(1100px, 95vw);
  max-height: 78vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:fixed; top:16px; right:16px;
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff; cursor:pointer; font-size:18px; font-weight:900;
}
.lightbox__nav{
  position:fixed; top:50%; transform: translateY(-50%);
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff; cursor:pointer; font-size:28px; font-weight:900;
}
.lightbox__nav--prev{left:16px}
.lightbox__nav--next{right:16px}
.lightbox__cap{
  margin-top:12px;
  color: rgba(255,255,255,.92);
  font-weight:700;
  text-align:center;
  max-width:min(900px, 92vw);
}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .hero__inner{grid-template-columns: 1fr}
  .hero__media{min-height: 240px}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .social, .contact{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .navbtn{display:inline-flex; align-items:center; justify-content:center}
  .nav{
    position:fixed; left:14px; right:14px; top:68px;
    display:none; flex-direction:column; gap:8px;
    padding:12px;
    background: rgba(11,15,20,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{width:100%}
  .brand__name{display:none}
  .hero__highlights{grid-template-columns: 1fr}
  .gallery{gap:8px}
  .gallery .gitem{grid-column: span 12 !important}
  .frow{grid-template-columns: 1fr}
}
