:root{
  --bg:#0e0f12;
  --panel:#14161b;
  --text:#f2f4f8;
  --muted:#b8c0cc;
  --brand:#f2a233;
  --brand2:#ffcc4d;
  --stroke:rgba(255,255,255,.08);
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(242,162,51,.18), transparent 60%),
              radial-gradient(900px 500px at 15% 10%, rgba(255,204,77,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{width: min(var(--max), calc(100% - 32px)); margin: 0 auto;}
.section{padding:72px 0}
.grid{display:grid; gap:22px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 18px; border-radius:14px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(242,162,51,.18), rgba(242,162,51,.08));
  box-shadow: var(--shadow);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); transition: .18s ease;}
.btn.secondary{
  background: rgba(255,255,255,.04);
  box-shadow:none;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--stroke);
  border-radius:999px; color:var(--muted);
  background: rgba(255,255,255,.03);
}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(14,15,18,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand .mark{
  width:40px; height:40px; border-radius:12px;
  background: rgba(242,162,51,.12);
  border:1px solid rgba(242,162,51,.35);
  display:grid; place-items:center;
  overflow:hidden;
}
.brand .mark img{width:100%; height:100%; object-fit:cover}
.brand .name{font-weight:800; letter-spacing:.2px}
.brand .tag{font-size:12px; color:var(--muted)}

.navlinks{display:flex; align-items:center; gap:18px}
.navlinks a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.navlinks a:hover{background: rgba(255,255,255,.04); color:var(--text)}
.navlinks a.active{
  color:var(--text);
  background: rgba(242,162,51,.10);
  border:1px solid rgba(242,162,51,.22);
}

.menuBtn{
  display:none;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}

.hero{
  padding: 54px 0 28px;
}
.heroWrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: stretch;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroLeft{padding:28px}
.kicker{color:var(--brand2); font-weight:800; letter-spacing:.5px; font-size:13px}
h1{margin:12px 0 10px; font-size:42px; line-height:1.1}
.sub{color:var(--muted); font-size:16px; max-width: 58ch}
.heroActions{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.heroMeta{margin-top:18px; display:flex; gap:10px; flex-wrap:wrap}
.heroRight{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.heroRight .logoBox{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background: #0c0d10;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  min-height: 240px;
}
.heroRight .logoBox img{max-height: 260px; width:auto}
.quickInfo{padding:16px}
.quickInfo h3{margin:0 0 8px; font-size:16px}
.quickInfo p{margin:0; color:var(--muted); font-size:14px}

.features{
  grid-template-columns: repeat(3, 1fr);
}
.feature{padding:18px}
.feature h3{margin: 10px 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}
.icon{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(242,162,51,.12);
  border:1px solid rgba(242,162,51,.32);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:start;
}
.panel{padding:22px}
.panel h2{margin:0 0 8px; font-size:26px}
.panel p{margin:0; color:var(--muted)}
.list{
  margin: 12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.check{
  flex:0 0 auto;
  width:22px; height:22px;
  border-radius:8px;
  background: rgba(255,204,77,.14);
  border:1px solid rgba(255,204,77,.30);
  display:grid; place-items:center;
  margin-top:2px;
}

.servicesGrid{
  grid-template-columns: repeat(3, 1fr);
}
.service{padding:18px}
.service h3{margin:10px 0 6px; font-size:16px}
.service p{margin:0; color:var(--muted); font-size:14px}

.galleryGrid{
  grid-template-columns: repeat(4, 1fr);
}
.ph{
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border:1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(242,162,51,.18), rgba(255,255,255,.02)),
    rgba(255,255,255,.02);
  display:grid; place-items:center;
  color: rgba(255,255,255,.7);
  font-weight:700;
  overflow:hidden;
}
.ph span{opacity:.85}

.cta{
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta h2{margin:0; font-size:22px}
.cta p{margin:6px 0 0; color:var(--muted)}

.footer{
  padding: 28px 0;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 13px;
}
.footer .row{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.smalllinks{display:flex; gap:14px; flex-wrap:wrap}
.smalllinks a:hover{color:var(--text)}

.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{font-size:13px; color:var(--muted)}
input, textarea, select{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height: 130px; resize: vertical}
.note{
  font-size: 12px;
  color: var(--muted);
}
.mapBox{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
}
.mapBox iframe{width:100%; height: 360px; border:0}

.badgeRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px){
  .heroWrap{grid-template-columns: 1fr}
  h1{font-size:36px}
  .features{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .servicesGrid{grid-template-columns: 1fr}
  .galleryGrid{grid-template-columns: repeat(2, 1fr)}
  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .navlinks.open{
    display:flex;
    position:absolute;
    left:16px; right:16px;
    top:70px;
    flex-direction:column;
    gap:6px;
    padding:12px;
    background: rgba(14,15,18,.96);
    border:1px solid var(--stroke);
    border-radius:16px;
  }
}