/* Gusto360 v1 – stile leggero, neutrale, elegante */
:root{
  --bg:#fff8ef;
  --text:#222;
  --olive:#9a8c5f;
  --wine:#b84a4a;
  --muted:#666;
  --card:#ffffff;
  --shadow:0 10px 24px rgba(0,0,0,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.55}

.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  /*background:rgba(255,248,239,.9);*/
  backdrop-filter:saturate(1.2) blur(8px);
  /*border-bottom:1px solid #eee;*/
}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.logo img{height:36px}
.main-nav a{margin-left:16px;text-decoration:none;color:var(--text);font-weight:600}
.main-nav a:hover{color:var(--wine)}

.hero{background-size:cover;background-position:center;border-bottom-left-radius:28px;border-bottom-right-radius:28px;box-shadow:var(--shadow)}
.hero-inner{padding:80px 0 100px}
.hero h1{font-size:48px;margin:0 0 8px}
.lead{font-size:20px;color:var(--muted);margin:0 0 24px}
.cta-row{display:flex;gap:12px}
.btn{display:inline-block;padding:12px 18px;border-radius:999px;background:var(--wine);color:#fff;text-decoration:none;border:0;font-weight:700}
.btn.ghost{background:#fff;color:var(--wine);border:2px solid var(--wine)}

.section{padding:40px 0}
.neutral{background:#fff;border:1px solid #eee;border-radius:var(--radius);box-shadow:var(--shadow);padding:28px;margin:24px 0}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);padding:20px}
.card.link{display:flex;align-items:center;justify-content:center;text-decoration:none;color:var(--text);min-height:120px;border:1px solid #eee}
.card .more{font-weight:700;color:var(--wine);text-decoration:none}

article{
  padding: 0 15px;
}

.cards-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.post-list .post{background:#fff;border:1px solid #eee;border-radius:var(--radius);box-shadow:var(--shadow);padding:18px;margin-bottom:16px}
.post .meta{color:var(--muted);font-size:14px}

.site-footer{margin-top:40px;border-top:1px solid #eee;background:#fff}
.site-footer .wrap{padding:22px 20px}
.site-footer p{margin:6px 0}
.site-footer .network a{color:var(--olive);text-decoration:none}

.contact-form{background:#fff;border:1px solid #eee;border-radius:var(--radius);box-shadow:var(--shadow);padding:20px}
.contact-form .row{margin-bottom:14px}
.contact-form .row.two{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-form label{display:block;font-size:14px;color:var(--muted);margin-bottom:6px}
.contact-form input,.contact-form textarea{width:100%;padding:12px;border-radius:12px;border:1px solid #ddd;outline:0}
.notice{padding:14px;border-radius:12px;margin:12px 0}
.notice.success{background:#e9fbef;border:1px solid #bde6c8}
.notice.error{background:#fff3f3;border:1px solid #f3c5c5}

@media (max-width:860px){
  .grid-3{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
  .hero-inner{padding:64px 0 80px}
  .hero h1{font-size:38px}
}
.sr-only{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;height:1px;width:1px;overflow:hidden}
