:root {
  --bg: #f3f3f3;
  --text: #2c2c2c;
  --muted: #747474;
  --card: rgba(255,255,255,.72);
  --line: rgba(44,44,44,.12);
  --accent: #b4b4b4;
  --shadow: 0 16px 40px rgba(0,0,0,.12);
  --radius: 18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(900px 500px at 20% 10%, rgba(180,180,180,.22), transparent 60%),
              radial-gradient(800px 500px at 90% 40%, rgba(116,116,116,.18), transparent 55%),
              var(--bg);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}
/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(243,243,243,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brand img{width:44px; height:44px; object-fit:contain}
.brand .t1{font-weight:800; letter-spacing:.2px}
.brand .t2{font-size:13px; color:var(--muted); margin-top:-2px}
.navlinks{display:flex; gap:14px; flex-wrap:wrap; justify-content:center}
.navlinks a{padding:8px 10px; border-radius:999px; color:var(--muted); transition:.2s}
.navlinks a:hover{background:rgba(44,44,44,.06); color:var(--text)}
.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:999px; border:1px solid var(--line);
  background:rgba(255,255,255,.68);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
  font-weight:700;
}
.btn:hover{transform:translateY(-1px); background:white; border-color:rgba(44,44,44,.22)}
.btn.primary{background:var(--text); color:var(--bg); border-color:transparent}
.btn.primary:hover{background:#111}
.badge{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid var(--line); color:var(--muted)}
/* Hero */
.hero{padding:34px 0 10px}
.heroGrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:22px; align-items:stretch}
.heroCard{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.55);
}
.heroMedia{position:relative; height:360px; background:#000}
.heroMedia img{width:100%; height:100%; object-fit:cover; display:block}
.heroOverlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,.45));
}
.heroText{
  position:absolute; inset:0; display:flex; flex-direction:column; justify-content:flex-end;
  padding:22px;
}
.kicker{display:inline-flex; align-items:center; gap:10px; margin-bottom:10px}
.kicker span{color:rgba(255,255,255,.86); font-weight:700; font-size:13px; letter-spacing:.6px; text-transform:uppercase}
.h1{color:white; font-size:40px; line-height:1.08; margin:0 0 10px; font-weight:900; letter-spacing:-.6px}
.lead{color:rgba(255,255,255,.86); margin:0 0 14px; font-size:16px; max-width:56ch}
.heroBtns{display:flex; gap:10px; flex-wrap:wrap}
.heroBtns .btn{box-shadow:none}
.panel{padding:18px}
.panel h2{margin:0 0 10px; font-size:18px}
.panel p{margin:0 0 12px; color:var(--muted)}
.featureList{display:grid; gap:10px; margin-top:12px}
.feature{display:flex; gap:10px; align-items:flex-start; padding:12px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.62)}
.dot{width:10px; height:10px; border-radius:999px; margin-top:6px; background:var(--text)}
/* Sections */
.section{padding:34px 0}
.sectionHeader{display:flex; justify-content:space-between; align-items:end; gap:16px; margin-bottom:14px}
.sectionHeader h3{margin:0; font-size:24px; letter-spacing:-.2px}
.sectionHeader p{margin:0; color:var(--muted)}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.72);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{transform:translateY(-2px); box-shadow:0 18px 44px rgba(0,0,0,.12)}
.card img{width:100%; height:200px; object-fit:cover; display:block; background:#000}
.card .cbody{padding:14px}
.card .ctitle{font-weight:900; margin:0 0 6px}
.card .ctext{margin:0; color:var(--muted); font-size:14px}
/* Gallery */
.gallery{display:grid; grid-template-columns: repeat(4, 1fr); gap:10px}
.gimg{position:relative; border-radius:14px; overflow:hidden; border:1px solid var(--line); background:#000; cursor:pointer}
.gimg img{width:100%; height:160px; object-fit:cover; display:block; transition:transform .25s ease}
.gimg:hover img{transform:scale(1.04)}
.gimg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(0,0,0,.28));
}
.gcap{position:absolute; left:10px; bottom:8px; right:10px; color:rgba(255,255,255,.88); font-size:12px; font-weight:700}
/* Video + Map */
.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.embed{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.72);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}
.embed iframe{width:100%; height:340px; border:0}
/* Contact */
.contactCard{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
}
.form{
  padding:16px;
}
.field{display:flex; flex-direction:column; gap:6px; margin-bottom:10px}
label{font-size:13px; font-weight:800}
input, textarea{
  padding:12px 12px; border-radius:14px; border:1px solid var(--line);
  background:rgba(255,255,255,.85); outline:none;
}
textarea{min-height:120px; resize:vertical}
.small{font-size:13px; color:var(--muted)}
.contactInfo{padding:16px; border-left:1px solid var(--line); background:rgba(255,255,255,.55)}
.infoItem{margin-bottom:10px}
.infoItem b{display:block}
/* Floating WhatsApp */
.whats{
  position:fixed; right:18px; bottom:18px; z-index:60;
}
.whats a{
  width:54px; height:54px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:#0b0b0b; color:#fff;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  transition:transform .15s ease;
}
.whats a:hover{transform:translateY(-2px)}
/* Modal */
.modal{position:fixed; inset:0; background:rgba(0,0,0,.72); display:none; place-items:center; padding:18px; z-index:100}
.modal.open{display:grid}
.modalBox{width:min(980px, 100%); background:#0a0a0a; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.12)}
.modalBar{display:flex; justify-content:space-between; align-items:center; padding:10px 12px; color:rgba(255,255,255,.86); border-bottom:1px solid rgba(255,255,255,.12)}
.modalBar button{background:transparent; border:0; color:#fff; font-size:18px; cursor:pointer}
.modalImg{width:100%; height:min(70vh, 680px); object-fit:contain; background:#000; display:block}
/* Footer */
.footer{padding:26px 0 40px; color:var(--muted)}
.footerGrid{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:center}
/* Responsive */
@media (max-width: 940px){
  .heroGrid{grid-template-columns:1fr}
  .heroMedia{height:320px}
  .grid3{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .contactCard{grid-template-columns:1fr}
  .contactInfo{border-left:0; border-top:1px solid var(--line)}
  .h1{font-size:34px}
}
.fade-in{
  opacity:0; transform:translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible{opacity:1; transform:none}