/* Basic, modern dark theme with simple responsive layout */
:root{
  --bg:#0b0b0b; --card:#141414; --muted:#9aa0a6; --accent:#ff6b00;
  --wrap:1100px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,Arial;color:#e9e9e9;background:var(--bg);-webkit-font-smoothing:antialiased}
.wrap{max-width:var(--wrap);margin:0 auto;padding:24px}
.site-header{border-bottom:1px solid #111;background:linear-gradient(180deg,#0f0f0f, #0b0b0b)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between}
.brand a{color:#fff;text-decoration:none;font-weight:700}
.nav a{color:var(--muted);text-decoration:none;margin-left:18px}
.hero{padding:60px 0;background:linear-gradient(90deg, rgba(255,107,0,0.06), transparent);border-bottom:1px solid #111}
.hero h2{font-size:34px;margin:0 0 12px}
.hero p{margin:0 0 18px;color:var(--muted);max-width:720px}
.cta{display:inline-block;background:var(--accent);color:#111;padding:10px 16px;border-radius:8px;text-decoration:none;font-weight:600}

.services-preview h3,.portfolio-preview h3{margin-top:0}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:18px}
.card{background:var(--card);padding:18px;border-radius:10px;border:1px solid #1e1e1e}
.more{margin-top:12px}
.content h2{margin-top:0}
.site-footer{border-top:1px solid #111;padding:28px 0;margin-top:40px;color:var(--muted);text-align:center}
a{color:var(--accent)}
code{background:#0f0f0f;padding:2px 6px;border-radius:4px;color:var(--muted)}
/* responsive tweaks */
@media(max-width:700px){.wrap{padding:16px}.hero h2{font-size:28px}.nav{display:none}}
form input, form textarea{width:100%;padding:10px;margin:6px 0 12px;border-radius:6px;border:1px solid #222;background:#0b0b0b;color:#e9e9e9}
button{background:var(--accent);color:#111;padding:10px 14px;border-radius:8px;border:0;font-weight:700;cursor:pointer}
