:root{
  --bg-dark:#111418;
  --bg-darker:#07090b;
  --accent:#2c89c8;
  --accent-soft:#1f5f8a;
  --text-main:#f5f7fa;
  --text-muted:#c3c7ce;
  --card-bg:#181c22;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg-darker);
  color:var(--text-main);
}
header{
  background:linear-gradient(90deg,#050608, #151b22);
  padding:18px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:10;
}
.logo{
  font-size:1.2rem;
  font-weight:bold;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.logo span{
  color:var(--accent);
}
nav a{
  color:var(--text-muted);
  margin-left:20px;
  text-decoration:none;
  font-size:0.95rem;
}
nav a:hover{
  color:var(--accent);
}
.hero{
  height:70vh;
  min-height:420px;
  background:url('hero.jpg') center/cover no-repeat fixed;
  position:relative;
 background-position:center 100px; }
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(255,255,255,0.08),transparent),
             linear-gradient(to bottom,rgba(0,0,0,0.45),rgba(0,0,0,0.75));
}
.hero-content{
  position:relative;
  z-index:1;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:0 8vw;
  max-width:900px;
}
.hero-kicker{
  text-transform:uppercase;
  letter-spacing:0.25em;
  font-size:0.75rem;
  color:var(--accent);
  margin-bottom:12px;
}
.hero h1{
  font-size:2.4rem;
  margin:0 0 12px;
}
.hero p{
  max-width:600px;
  font-size:1.1rem;
  font-weight:500;
  letter-spacing:0.02em;
  color:#e6e9ee;
  text-shadow:0 2px 6px rgba(0,0,0,0.6);
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin:24px 0;
  font-size:0.85rem;
}
.hero-meta span{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
}
.btn{
  display:inline-block;
  padding:11px 24px;
  border-radius:999px;
  background:var(--accent);
  color:white;
  text-decoration:none;
  font-weight:bold;
  font-size:0.95rem;
  box-shadow:0 0 0 1px rgba(0,0,0,0.3), 0 12px 30px rgba(0,0,0,0.6);
}
.btn:hover{
  background:var(--accent-soft);
}
.page{
  padding:40px 8vw;
  max-width:1200px;
  margin:0 auto;
}
.page h2{
  font-size:1.6rem;
  margin-bottom:8px;
}
.page-lead{
  color:var(--text-muted);
  margin-bottom:26px;
}
.sections-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.section-card{
  background:var(--card-bg);
  border-radius:14px;
  padding:18px;
  border:1px solid rgba(255,255,255,0.04);
}
.section-card h3{
  margin-top:0;
  font-size:1.1rem;
}
.section-card p{
  font-size:0.9rem;
  color:var(--text-muted);
}
.section-card a{
  font-size:0.85rem;
  text-decoration:none;
  color:var(--accent);
}
.gallery-section{
  padding:20px 8vw 40px;
  max-width:1200px;
  margin:0 auto;
}
.gallery-section h2{
  text-align:center;
  margin-bottom:6px;
}
.gallery-section p.desc{
  text-align:center;
  color:var(--text-muted);
  margin-bottom:24px;
  font-size:0.9rem;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.card{
  background:var(--card-bg);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.06);
}
.card img{
  width:100%;
  display:block;
}
.card-caption{
  padding:10px 12px;
  font-size:0.85rem;
  color:var(--text-muted);
}
.footer{
  background:#050608;
  color:var(--text-muted);
  text-align:center;
  padding:20px;
  font-size:0.8rem;
  margin-top:40px;
}
@media(max-width:768px){
  .hero{
    background-attachment:scroll;
   background-position:center 100px; }
  .hero h1{
    font-size:2rem;
  }
  header{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  nav{
    width:100%;
  }
  nav a{
    margin:0 10px 0 0;
  }
}

/* ------------------------------------
   SEZIONE OFFICINA (nuova)
---------------------------------------*/
.officina-section {
  margin-top: 50px;
  text-align: center;
  padding: 20px 0 10px;
}

.officina-section h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.officina-section .page-lead {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.officina-img-container {
  margin-top: 20px;
}

.officina-img {
  width: 100%;
  max-width: 1100px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.05);
}
