:root{
  --bg:#071410;
  --card:#0b1f19;
  --muted:#b8c7c3;
  --text:#f4fbf9;
  --brand:#2e7d6a;
  --brand2:#0f2d2a;
  --line:rgba(255,255,255,.10);
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% 0%, rgba(46,125,106,.22), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(15,45,42,.35), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}
.btn{
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.9rem 1.1rem; border-radius:999px;
  background:linear-gradient(135deg,var(--brand),#3aa78f);
  color:#071410; font-weight:800; text-decoration:none;
  box-shadow: 0 14px 35px rgba(46,125,106,.25);
  border:1px solid rgba(255,255,255,.12);
}
.btn.secondary{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.badge{
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.35rem .7rem;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-weight:700;
  font-size:.85rem;
}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,20,16,.82), rgba(7,20,16,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:.9rem 0;
}
.brand{
  display:flex; align-items:center; gap:.8rem; text-decoration:none;
}
.brand img{height:44px; width:auto; border-radius:12px; box-shadow: var(--shadow)}
.brand .title{line-height:1.1}
.brand .title strong{display:block; font-size:1.03rem}
.brand .title span{display:block; font-size:.82rem; color:var(--muted); font-weight:600}
.navlinks{display:flex; gap:1rem; align-items:center}
.navlinks a{
  text-decoration:none; color:var(--muted); font-weight:700;
  padding:.5rem .7rem; border-radius:999px;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.burger{display:none; background:transparent; border:0; color:var(--text); font-size:1.2rem}
@media (max-width: 860px){
  .navlinks{display:none}
  .burger{display:inline-flex}
  .mobile{
    display:none;
    padding: .7rem 0 1rem;
  }
  .mobile a{
    display:block;
    padding:.85rem 1rem;
    border-radius:14px;
    text-decoration:none;
    color:var(--muted);
    border:1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    margin:.5rem 0;
    font-weight:800;
  }
  .mobile a:hover{color:var(--text)}
  .mobile.show{display:block}
}

.hero{
  padding: 3.2rem 0 2.2rem;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items:center;
}
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr; gap:1.2rem}
  .hero{padding:2.2rem 0 1.3rem}
}
.h1{
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  margin:.65rem 0 1rem;
  letter-spacing:-.02em;
}
.lead{color:var(--muted); font-size:1.06rem; line-height:1.7; margin:0 0 1.4rem}
.heroActions{display:flex; gap:.8rem; flex-wrap:wrap}
.kpis{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:.8rem;
  margin-top:1.6rem;
}
@media (max-width: 560px){ .kpis{grid-template-columns:1fr} }
.kpi{
  padding:1rem;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.kpi strong{display:block; font-size:1.25rem}
.kpi span{color:var(--muted); font-weight:650; font-size:.9rem}

.heroCard{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.heroCard .cover{
  aspect-ratio: 16/10;
  background:#0a1713;
  position:relative;
}
.heroCard .cover img{
  width:100%; height:100%; object-fit:cover;
  filter: contrast(1.05) saturate(1.05);
}
.heroCard .cover:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 20%, rgba(7,20,16,.85));
}
.heroCard .overlay{
  position:absolute; inset:auto 0 0 0;
  padding:1.1rem 1.1rem 1.05rem;
}
.heroCard .overlay .small{color:rgba(255,255,255,.85); font-weight:750; font-size:.92rem}
.heroCard .overlay .big{font-size:1.4rem; font-weight:900; margin:.25rem 0 0}

section{padding: 3.1rem 0}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:1rem; margin-bottom: 1.1rem;
}
.sectionTitle h2{
  margin:0;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  letter-spacing:-.01em;
}
.sectionTitle p{margin:0; color:var(--muted); max-width:60ch; line-height:1.6}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:1rem}
@media (max-width: 980px){ .grid3{grid-template-columns:1fr} }

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding: 1.15rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.card h3{margin:.1rem 0 .45rem; font-size:1.15rem}
.card p{margin:0; color:var(--muted); line-height:1.7}

.props{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
}
@media (max-width: 980px){ .props{grid-template-columns:1fr} }
.prop{
  overflow:hidden;
  padding:0;
}
.prop .img{
  aspect-ratio: 4/3;
  background:#06110d;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.prop .img img{width:100%; height:100%; object-fit:cover}
.prop .body{padding:1.05rem}
.meta{display:flex; flex-wrap:wrap; gap:.5rem; margin:.5rem 0 .8rem}
.meta .pill{
  font-size:.82rem; color:var(--muted); font-weight:750;
  padding:.33rem .6rem;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:.8rem;
}
.gallery a{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  position:relative;
}
.gallery img{width:100%; height:100%; object-fit:cover; display:block; transform: scale(1.01); transition: transform .35s ease}
.gallery a:hover img{transform: scale(1.06)}
.g1{grid-column: span 7; aspect-ratio: 16/9}
.g2{grid-column: span 5; aspect-ratio: 16/9}
.g3,.g4,.g5{grid-column: span 4; aspect-ratio: 1/1}
@media (max-width: 980px){
  .g1,.g2,.g3,.g4,.g5{grid-column: span 12}
  .g1,.g2{aspect-ratio: 16/10}
  .g3,.g4,.g5{aspect-ratio: 16/12}
}

.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center; justify-content:center;
  padding: 5vh 5vw;
  z-index:1000;
}
.lightbox.show{display:flex}
.lightbox img{
  max-width: 1200px;
  width:100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
  background:#000;
}
.lightbox .close{
  position:absolute; top:18px; right:18px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:.6rem .85rem;
  border-radius:999px;
  font-weight:900;
  cursor:pointer;
}
.embedGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}
@media (max-width: 980px){ .embedGrid{grid-template-columns:1fr} }
.iframeWrap{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.iframeWrap iframe{width:100%; height:420px; border:0}
.note{
  margin-top:.8rem;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.6;
}
.video{
  aspect-ratio: 16/9;
  width:100%;
  border:0;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1rem;
}
@media (max-width: 980px){ .contactGrid{grid-template-columns:1fr} }
input, textarea{
  width:100%;
  padding:.9rem 1rem;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
textarea{min-height: 140px; resize: vertical}
label{display:block; font-weight:850; margin:.6rem 0 .4rem}
.formCard{padding:1.15rem}
small{color:var(--muted)}
.map{
  width:100%;
  height: 420px;
  border:0;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  display:flex;
  flex-direction:column;
  gap:.65rem;
}
.fab a{
  width:54px; height:54px;
  border-radius:999px;
  display:grid; place-items:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,28,22,.92);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.fab a svg{width:26px; height:26px}
footer{
  padding:2.2rem 0 2.6rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}
footer .foot{
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.show{opacity:1; transform: translateY(0)}
