/* ========== Basic Reset ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --brand: #f97316;    /* orange */
  --bg: #050506;       /* deep dark */
  --card: #0f1720;
  --muted: #9aa3ab;
}
html,body { height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: #f3f4f6;
  -webkit-font-smoothing:antialiased;
}

/* ========== Layout Helpers ========== */
.container { max-width:1200px; margin:0 auto; padding:24px; }
.center { text-align:center; }

/* ========== Header ========== */
.site-header { background: rgba(0,0,0,0.6); position: sticky; top:0; z-index:40; border-bottom:1px solid rgba(255,255,255,0.02); }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.logo img { height:56px; display:block; }

/* nav */
.nav { display:flex; gap:18px; align-items:center; }
.nav a { color: #e6edf0; text-decoration:none; font-weight:600; padding:8px 10px; border-radius:6px; }
.nav a:hover { color: var(--brand); background: rgba(255,255,255,0.02); }
.nav a.active { color: var(--brand); }

/* mobile toggle */
.mobile-toggle{ display:none; background:transparent; border:0; color:#fff; font-size:20px; }

/* ========== HERO ========== */
.hero { display:flex; gap:32px; align-items:center; padding:48px 0; justify-content:space-between; }
.hero-left { flex:1; max-width:62%; }
.hero-left h1 { font-size:36px; line-height:1.02; color:var(--brand); margin-bottom:14px; }
.lead{ color:#d3d9dd; font-size:18px; margin-bottom:20px; }
.hero-cta { display:flex; gap:12px; margin-top:8px; }

/* CTA */
.btn{ display:inline-block; padding:12px 18px; border-radius:10px; text-decoration:none; font-weight:700; }
.btn.primary{ background:var(--brand); color:#081014; box-shadow: 0 6px 18px rgba(249,115,22,0.18); }
.btn.ghost{ border:1px solid rgba(255,255,255,0.06); color:#fff; background:transparent; }

/* right box */
.cta-box { width:320px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:22px; border-radius:12px; text-align:center; border:1px solid rgba(255,255,255,0.03); }
.cta-box h3{ margin-bottom:8px; color:#fff; font-size:18px; }
.cta-box .phone{ font-weight:700; color: #fff; margin:6px 0; font-size:16px; }
.cta-box .small{ color:var(--muted); margin-top:10px; font-size:13px; }

/* ========== Services preview ========== */
.services-preview { padding:56px 0; background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.06)); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; margin-top:18px; }
.service-card{ background:var(--card); border-radius:12px; padding:12px; text-align:center; border:1px solid rgba(255,255,255,0.02); }
.service-card img{ width:100%; height:140px; object-fit:cover; border-radius:8px; margin-bottom:10px; }

/* ========== Gallery preview & full ========== */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px; margin-top:18px; }
.gallery-grid img { width:100%; height:160px; object-fit:cover; border-radius:8px; transition: transform .25s ease; }
.gallery-grid img:hover { transform: scale(1.04); }

/* ========== Content / sections ========== */
.content{ padding:48px 0; }
.content h1{ font-size:28px; margin-bottom:14px; color:var(--brand); }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:18px; }
.services-list{ display:grid; gap:18px; }

/* service item */
.service-item{ background:var(--card); padding:16px; border-radius:10px; border:1px solid rgba(255,255,255,0.02); }

/* contact form */
.contact-form label{ display:block; font-weight:600; margin-top:10px; color:#e6edf0; }
.contact-form input, .contact-form textarea{ width:100%; padding:10px; margin-top:8px; border-radius:8px; background:#0b1115; color:#fff; border:1px solid rgba(255,255,255,0.03); }
.form-status{ margin-top:10px; }

/* Footer */
.site-footer{ border-top:1px solid rgba(255,255,255,0.02); padding:18px 0; margin-top:36px; background:transparent; }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:12px; }

/* responsive */
@media (max-width: 900px){
  .hero { flex-direction:column; gap:24px; }
  .hero-left { max-width:100%; text-align:center; }
  .cta-box { width:100%; }
  .nav{ display:none; }
  .mobile-toggle{ display:inline-block; }
  .container{ padding:16px; }
  .two-col{ grid-template-columns:1fr; }
}