
:root{
  --bg:#0f0f10; --muted:#b6bcc7; --text:#f2f4f8; --brand:#ff3b30;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:#101214}
a{color:inherit;text-decoration:none}

.hero{
  min-height:64vh;
  background: radial-gradient(1200px 600px at 50% -10%, #1b1f28 0%, #0f1116 60%, #0b0d11 100%);
  display:grid;place-items:center;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero-inner{ text-align:center; padding:4rem 1rem 3rem; }
.logos{
  display:flex; gap:2.2rem; justify-content:center; align-items:center;
  margin-bottom:1.25rem; flex-wrap:wrap;
}
.logo{height:96px; width:auto; filter:drop-shadow(0 6px 24px rgba(0,0,0,.35));}
.logo.grilleo{height:112px}
.logo.rvm{height:112px;border-radius:10px}

h1{font-size: clamp(2rem, 4.5vw, 4rem); margin:.25rem 0 .25rem; letter-spacing:.5px; font-weight:800}
.hero p{color:var(--muted); margin:0 0 1.25rem; font-size:clamp(1rem, 1.5vw, 1.25rem)}

.cta{display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap}
.btn{padding:.85rem 1rem;border:1px solid rgba(255,255,255,.2);border-radius:.9rem;color:var(--text);opacity:.95}
.btn:hover{border-color:rgba(255,255,255,.35); transform:translateY(-1px)}
.btn.primary{background:var(--brand);border-color:transparent;color:white}

.container{max-width:1180px;margin:0 auto;padding:2rem 1rem 4rem}
.projects h2{font-size:clamp(1.4rem,2.2vw,2rem);margin:0 0 1rem}
.grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:16px;
}
.grid figure{margin:0;background:#0f1217;border:1px solid rgba(255,255,255,.06);border-radius:14px;overflow:hidden}
.grid img{width:100%;height:240px;object-fit:cover;display:block}
.grid figcaption{padding:.75rem 1rem;color:var(--muted);font-size:.95rem}

.foot{border-top:1px solid rgba(255,255,255,.06);color:#8b93a2;padding:1.25rem;text-align:center}
