:root{
  --bg:#ffffff;
  --text:#0f1222;
  --muted:#5a6172;
  --line:#e8eaf0;
  --brand:#d4002a;
  --card:#fafbfe;
  --shadow:0 10px 28px rgba(16,18,34,.08);
  --radius:18px;
  --max:1060px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(900px 500px at 12% -10%, rgba(212,0,42,.12), transparent 60%),
              radial-gradient(800px 420px at 98% 10%, rgba(212,0,42,.08), transparent 55%),
              var(--bg);
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
section{padding:56px 0}
h1,h2,h3{letter-spacing:-.2px}
h2{font-size:24px; margin:0 0 14px}
p{margin:0 0 12px; color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
}
.logo{
  width:38px; height:38px;
  border-radius:14px;
  background: var(--brand);
  color:#fff;
  display:grid; place-items:center;
  font-weight:900;
}

.links{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.links a{
  padding:9px 12px;
  border-radius:12px;
  color:var(--muted);
}
.links a:hover{
  background: rgba(15,18,34,.05);
  color:var(--text);
}

.cta{
  padding:10px 14px;
  border-radius:14px;
  background: var(--brand);
  color:#fff;
  font-weight:800;
  box-shadow: 0 12px 26px rgba(212,0,42,.18);
}
.cta:hover{filter:brightness(1.02)}

.btn{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-weight:800;
}
.btn:hover{background: rgba(15,18,34,.04)}
.btn.primary{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
}
.btn.primary:hover{filter:brightness(1.02)}

.card{
  background: rgba(250,251,254,.9);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-hero{
  padding:0;
  border-bottom:1px solid var(--line);
}
.video-hero video{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
  background:#0f1222;
}
.video-wrap{position:relative}
.video-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(15,18,34,.62), rgba(15,18,34,.14));
  display:flex;
  align-items:center;
}
.overlay-inner{
  padding:0;
  transform: translateY(-24px);
}
.overlay-inner h1{
  margin:0 0 8px;
  color:#fff;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height:1.06;
}
.overlay-inner p{
  margin:0 0 14px;
  color: rgba(255,255,255,.85);
  max-width: 62ch;
}
.overlay-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.overlay-actions .btn{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.overlay-actions .btn:hover{background: rgba(255,255,255,.12)}
.overlay-actions .btn.primary{
  background: var(--brand);
  border-color: transparent;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-12{grid-column: span 12}

.service{padding:16px}
.service h3{margin:0 0 8px; font-size:16px}
.svc-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.svc-list li{margin:6px 0}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery a{
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 24px rgba(16,18,34,.06);
  transition: transform .08s ease;
}
.gallery a:active{transform: translateY(1px)}

.contact{padding:18px}
.contact-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.item{
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
}
.item b{display:block; margin-bottom:4px}
.small{font-size:13px; color:var(--muted)}
.map{
  height:220px;
  border-radius:16px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(212,0,42,.12), rgba(15,18,34,.03));
  display:grid; place-items:center;
  color:var(--muted);
  font-weight:800;
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  flex-direction:column;
  text-align:center;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.mobile-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.drawer{display:none; padding:0 0 14px}
.drawer a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
}
.drawer a:hover{background: rgba(15,18,34,.05); color:var(--text)}

.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  font-weight:900;
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.22);
  transform: translateZ(0);
}
.wa-float:hover{filter:brightness(1.02)}
.wa-icon{
  width:42px;
  height:42px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  animation: wa-bounce 1.8s ease-in-out infinite;
}
.wa-text{
  padding-right:4px;
  white-space:nowrap;
}
@keyframes wa-bounce{
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-6px) }
}

@media (max-width: 900px){
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .col-4{grid-column: span 6}
  .links{display:none}
  .mobile-toggle{display:grid; place-items:center}
  .drawer.open{display:block}
  .contact-row{grid-template-columns:1fr}
  .video-hero video{height:420px}
}
@media (max-width: 560px){
  .gallery{grid-template-columns:1fr}
  .col-4,.col-6{grid-column: span 12}
  .video-hero video{height:360px}
}
@media (max-width: 420px){
  .wa-text{display:none}
  .wa-float{padding:12px}
}
.brand-sub{font-size:12px;color:var(--muted);font-weight:700;margin-top:-2px}
.powered{font-size:13px;color:var(--muted);font-weight:700}
.powered:hover{color:var(--text)}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.model-video{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid var(--line);
  background:#0f1222;
  box-shadow: 0 10px 24px rgba(16,18,34,.06);
}
@media (max-width: 900px){
  .gallery{grid-template-columns:repeat(2,1fr)}
  .model-video{height:220px}
}
@media (max-width: 560px){
  .gallery{grid-template-columns:1fr}
  .model-video{height:220px}
}
.subhead{margin:0 0 8px;font-size:16px;letter-spacing:-.2px}
.social{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.social-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-weight:800;
}
.social-link:hover{color:var(--text);background: rgba(15,18,34,.04)}
.social-ico{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(15,18,34,.04);
  color:var(--text);
}
.brand-logo{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--line);
  padding:6px;
}
.social{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.social-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-weight:800;
}
.social-link:hover{color:var(--text);background: rgba(15,18,34,.04)}
.social-ico{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(15,18,34,.04);
  color:var(--text);
}
.powered{
  font-size:13px;
  color:var(--muted);
  font-weight:800;
}
.powered:hover{color:var(--text)}
.social{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.social-link{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--muted);
  font-weight:900;
}
.social-link:hover{color:var(--text);background: rgba(15,18,34,.04)}
.social-ico{
  width:34px;height:34px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(15,18,34,.04);
  color:var(--text);
}
.social-link.instagram .social-ico{
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color:#fff;
}
.social-link.youtube .social-ico{
  background:#FF0000;
  color:#fff;
}
.powered{
  font-size:13px;
  color:var(--muted);
  font-weight:900;
}
.powered:hover{color:var(--text)}
@media (max-width: 900px){
  }
@media (max-width: 900px){
  }
.contact-social{
  justify-content:flex-start;
  margin:12px 0 12px;
}
@media (max-width: 900px){
  .contact-social{justify-content:center}
}
.map{
  width:100%;
  height:240px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#0f1222;
  display:block;
}
.map.wide{
  width: calc(100% + 36px);
  margin: 14px -18px -18px;
  height: 340px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
}
@media (max-width: 900px){
  .map.wide{
    height: 280px;
  }
}
