:root{
  --bg:#0b0d10;
  --panel:#11151b;
  --text:#e9eef5;
  --muted:#b8c2d0;
  --brand:#f6c343;
  --brand2:#2aa9ff;
  --border:rgba(255,255,255,.08);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(900px 700px at 10% 10%, rgba(42,169,255,.16), transparent 60%),
             radial-gradient(900px 700px at 90% 0%, rgba(246,195,67,.10), transparent 55%),
             var(--bg);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  position:fixed; left:18px; top:18px; width:auto; height:auto; padding:10px 14px;
  background:var(--panel); border:1px solid var(--border); border-radius:12px; z-index:9999;
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(11,13,16,.72);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  min-width:220px;
}
.brand img{
  width:44px; height:44px; border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.brand strong{display:block; font-size:14px; letter-spacing:.2px}
.brand span{display:block; font-size:12px; color:var(--muted)}

.menu{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
  font-size:14px;
}
.menu a[aria-current="page"]{
  color:var(--text);
  border-color:var(--border);
  background:rgba(255,255,255,.04);
}

.ctas{display:flex; gap:10px; align-items:center; min-width:220px; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  font-size:14px;
}
.btn.primary{
  border-color:rgba(246,195,67,.35);
  background:linear-gradient(180deg, rgba(246,195,67,.22), rgba(246,195,67,.08));
}
.btn.small{padding:8px 10px; border-radius:12px; font-weight:800}
.phone{font-weight:900; letter-spacing:.2px}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-size:13px;
}

.hero{padding:46px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background:rgba(17,21,27,.70);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-left{padding:26px}
.kicker{color:var(--brand); font-weight:900; letter-spacing:.6px; text-transform:uppercase; font-size:12px}
h1{margin:10px 0 10px; font-size:40px; line-height:1.08}
.lead{color:var(--muted); font-size:17px; margin:0 0 16px}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}

.hero-right{padding:18px; display:flex; flex-direction:column; gap:12px}
.stat{
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}
.stat strong{display:block; font-size:18px}
.stat span{color:var(--muted); font-size:13px}

.section{padding:22px 0}
.section h2{margin:0 0 10px; font-size:24px}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{padding:16px}
.service h3{margin:6px 0 8px; font-size:18px}
.service p{margin:0; color:var(--muted)}
.service a.inline{display:inline-block; margin-top:10px; font-weight:800}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}

.callout{
  padding:18px;
  border:1px solid rgba(42,169,255,.25);
  background:linear-gradient(180deg, rgba(42,169,255,.12), rgba(255,255,255,.02));
  border-radius:var(--radius);
}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color:var(--muted)}

footer{
  margin-top:26px;
  padding:28px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
}
footer a{color:var(--text); font-weight:800}

/* ===== Pro Photo Sections ===== */
.hero-media{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-media img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display:block;
}

.hero-media .overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.hero-media .overlay strong{display:block; font-size:16px}
.hero-media .overlay span{display:block; color:var(--muted); font-size:13px}

.projects{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.project{
  grid-column: span 4;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.project a{display:block}
.project img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.project .cap{
  padding: 12px 12px 14px;
}

.project .cap strong{
  display:block;
  font-size: 14px;
  margin-bottom: 2px;
}

.project .cap span{
  display:block;
  font-size: 12px;
  color: var(--muted);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.gallery a{
  grid-column: span 3;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  display:block;
}

.gallery img{
  width:100%;
  height: 190px;
  object-fit: cover;
  display:block;
}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .ctas{min-width:auto}
  h1{font-size:34px}
  .grid-3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .brand{min-width:auto}
  .hero-media img{height: 280px;}
  .project{grid-column: span 12;}
  .gallery a{grid-column: span 6;}
}