:root{
  --bg:#0f0f10;
  --text:#1b1b1f;
  --muted:#6b6b73;
  --red:#c40000;
  --red2:#9d0000;
  --card:#ffffff;
  --soft:#f6f6f8;
  --line:#e7e7ee;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--soft);
}
a{color:inherit}
.container{width:min(1120px, 92%); margin:0 auto}

.topbar{
  background:linear-gradient(180deg, #111 0%, #0b0b0c 100%);
  color:#fff;
  position:sticky; top:0; z-index:50;
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:saturate(130%) blur(8px);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:14px; text-decoration:none;
}
.brand img{height:44px; width:auto}
.brand .name{display:flex; flex-direction:column; line-height:1.05}
.brand .name strong{letter-spacing:1.4px}
.brand .name span{font-size:12px; color:rgba(255,255,255,.72); letter-spacing:1px}

.nav{
  display:flex; gap:16px; flex-wrap:wrap; align-items:center;
}
.nav a{
  text-decoration:none; padding:10px 12px;
  border-radius:12px;
  color:rgba(255,255,255,.88);
  font-weight:650;
  letter-spacing:.3px;
}
.nav a:hover{background:rgba(255,255,255,.06)}

.cta{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  box-shadow: 0 10px 22px rgba(196,0,0,.22);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.icon{width:18px; height:18px; display:inline-block}

.hero{
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(196,0,0,.35), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, #0b0b0c 0%, #111 55%, #f6f6f8 56%);
  color:#fff;
  padding:56px 0 26px;
}
.hero .grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero .grid{grid-template-columns:1fr}
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: .6px;
}
.hero p{
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
  font-size: 16px;
  line-height:1.6;
}
.hero .badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(255,255,255,.86);
  font-weight:650;
  font-size:13px;
}

.heroCard{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
.heroCard h3{margin:0 0 10px}
.heroCard .mini{
  color:rgba(255,255,255,.8);
  font-size:14px; line-height:1.6;
}
.heroCard .line{height:1px; background:rgba(255,255,255,.12); margin:14px 0}
.heroCard .row{display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  background:rgba(0,0,0,.30);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

.section{padding:34px 0}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
}
.sectionTitle{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:14px;
}
.sectionTitle h2{margin:0; color:#111; letter-spacing:.2px}
.sectionTitle p{margin:0; color:var(--muted)}
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px;
}
@media (max-width: 900px){
  .split{grid-template-columns:1fr}
}
.list{
  margin:0; padding-left:18px; color:#2a2a2f; line-height:1.8
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid3{grid-template-columns:1fr}
}
.tile{
  background: #fff;
  border:1px solid var(--line);
  border-radius: 16px;
  padding:16px;
}
.tile strong{display:block; margin-bottom:6px}
.tile p{margin:0; color:var(--muted); line-height:1.6}

.projects{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;
}
@media (max-width: 900px){
  .projects{grid-template-columns:1fr}
}
.project{
  border-radius:16px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#fff;
}
.project .ph{
  height:140px;
  background:
    linear-gradient(135deg, rgba(196,0,0,.25), rgba(0,0,0,.08)),
    linear-gradient(180deg, #f1f1f6, #ffffff);
}
.project .body{padding:16px}
.project .body h4{margin:0 0 6px}
.project .body p{margin:0; color:var(--muted); line-height:1.6}

.footer{
  background:#0b0b0c;
  color:rgba(255,255,255,.86);
  padding:28px 0;
  margin-top:20px;
}
.footer .cols{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px;
}
@media (max-width: 900px){
  .footer .cols{grid-template-columns:1fr}
}
.footer a{color:#fff; text-decoration:none}
.footer a:hover{text-decoration:underline}
.small{color:rgba(255,255,255,.64); font-size:13px; line-height:1.7}

.socials{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.socialBtn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:700;
}


.hero{position:relative; overflow:hidden}
.hero .bg{
  position:absolute; inset:0;
  background-image:url("../assets/hero_construction.jpg");
  background-size:cover; background-position:center;
  filter:saturate(1.05) contrast(1.05);
  transform:scale(1.02);
}
.hero .overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(196,0,0,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(17,17,17,.85) 55%, rgba(246,246,248,1) 56%);
}
.hero .container{position:relative; z-index:2}
.imgCard{
  border-radius:16px; overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}
.imgCard img{width:100%; height:180px; object-fit:cover; display:block}
.imgCard .body{padding:14px}
.imgCard .body h4{margin:0 0 6px}
.imgCard .body p{margin:0; color:var(--muted); line-height:1.6}
.gallery3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width:900px){
  .gallery3{grid-template-columns:1fr}
  .imgCard img{height:210px}
}
