/* ============================================================
   Verd&Blu — CER di Primiero · Sito responsive
   Design system (direzione A+ : editoriale + colore)
   ============================================================ */
:root{
  --green:#4f9d6f;  --green-d:#3a7c55;  --green-l:#e7f1ea;
  --navy:#16294e;   --navy-d:#0f1d39;   --navy-2:#1d3563;
  --orange:#ef8a2c; --orange-d:#dc7714; --orange-l:#fdeede;
  --ink:#15233f;    --muted:#5d6b80;
  --paper:#fbfbf8;  --paper-2:#f3f4ef;  --paper-3:#eceee6;
  --line:rgba(22,41,78,.12);
  --serif:'Newsreader',Georgia,'Times New Roman',serif;
  --sans:'Hanken Grotesk','Helvetica Neue',Arial,sans-serif;
  --radius:18px;    --radius-lg:24px;
  --shadow:0 12px 36px rgba(22,41,78,.06);
  --shadow-lg:0 30px 80px rgba(22,41,78,.13);
  --wrap:1200px;    --header-h:78px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--sans);color:var(--ink);background:var(--paper);
  line-height:1.6;-webkit-font-smoothing:antialiased;font-size:17px}
h1,h2,h3,h4{margin:0;font-family:var(--serif);font-weight:500;letter-spacing:-.01em;
  line-height:1.06;color:var(--ink)}
p{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:inherit}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 40px}
.eyebrow{font-size:13px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--green-d);margin:0}
.lead{font-size:clamp(18px,1.4vw,21px);line-height:1.6;color:var(--muted)}
.section{padding:clamp(64px,8vw,104px) 0}
.section.alt{background:var(--paper-2)}
.section-head{max-width:720px}
.section-head.center{margin:0 auto;text-align:center}
.section-head h2{font-size:clamp(32px,4vw,46px);font-weight:450;margin-top:14px}
.section-head .lead{margin-top:18px}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:9px;font-weight:600;font-size:16px;
  padding:15px 26px;border-radius:40px;cursor:pointer;border:1.5px solid transparent;
  transition:transform .15s,background .15s,box-shadow .15s,border-color .15s,color .15s;
  white-space:nowrap;line-height:1}
.btn:hover{transform:translateY(-1px)}
.btn-orange{background:var(--orange);color:#fff}
.btn-orange:hover{background:var(--orange-d);box-shadow:0 10px 24px rgba(239,138,44,.3)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-2)}
.btn-ghost{background:transparent;border-color:var(--navy);color:var(--navy)}
.btn-ghost:hover{background:var(--navy);color:#fff}
.btn-link{padding:14px 0;font-weight:600;font-size:16px;color:var(--navy);
  display:inline-flex;gap:7px;align-items:center;white-space:nowrap}
.btn-link:hover{gap:11px;color:var(--orange-d)}
.btn-lg{padding:18px 34px;font-size:17px}

/* ---------- header ---------- */
.site-header{position:sticky;top:0;z-index:100;background:rgba(251,251,248,.9);
  backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);transition:box-shadow .2s}
.site-header.scrolled{box-shadow:0 6px 24px rgba(22,41,78,.07)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:var(--header-h);
  max-width:var(--wrap);margin:0 auto;padding:0 40px}
.brand{display:flex;align-items:center;gap:13px}
.brand>div{transform:translateY(3px)}
.brand img{height:42px;width:auto}
.brand .bw{font-family:var(--serif);font-size:23px;font-weight:600;letter-spacing:-.01em;line-height:1;white-space:nowrap}
.brand .bw .g{color:var(--green-d)} .brand .bw .b{color:var(--navy)}
.brand .bs{font-size:11px;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);margin-top:3px;white-space:nowrap}
.nav-desktop{display:flex;align-items:center;gap:28px;font-size:16px;font-weight:500}
.nav-desktop a{color:var(--ink);opacity:.82;position:relative;padding:4px 0;white-space:nowrap}
.nav-desktop a:hover{opacity:1}
.nav-desktop a.active{opacity:1;color:var(--green-d);font-weight:600}
.nav-desktop a.active::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--green)}
.header-actions{display:flex;align-items:center;gap:14px}
.nav-social{display:flex;gap:8px}
.nav-social a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;
  border-radius:50%;color:var(--navy);border:1px solid var(--line);transition:.15s}
.nav-social a:hover{background:var(--orange);border-color:var(--orange);color:#fff}
.nav-social svg{width:18px;height:18px}
.hamburger{display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:11px;
  background:#fff;cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.hamburger span{display:block;width:20px;height:2px;background:var(--navy);transition:.25s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* mobile drawer */
.nav-mobile{position:fixed;top:var(--header-h);left:0;right:0;bottom:0;background:var(--paper);z-index:99;
  transform:translateX(100%);padding:30px 40px;
  display:flex;flex-direction:column;gap:6px;overflow-y:auto}
.nav-mobile.open{transform:translateX(0)}
.nav-mobile a{font-family:var(--serif);font-size:28px;font-weight:500;padding:14px 0;
  border-bottom:1px solid var(--line);color:var(--ink)}
.nav-mobile a.active{color:var(--green-d)}
.nav-mobile .btn{margin-top:24px;justify-content:center}
.nav-mobile .nav-social{margin-top:22px}
.nav-mobile .nav-social a{width:46px;height:46px}

/* ---------- hero ---------- */
.hero{padding:clamp(48px,6vw,78px) 0 clamp(40px,5vw,64px)}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(36px,5vw,64px);align-items:center}
.hero h1{font-size:clamp(40px,5.4vw,68px);font-weight:450}
.hero .lead{margin:26px 0 34px;max-width:480px}
.hero-cta{display:flex;align-items:center;gap:22px;flex-wrap:wrap}
.hero-img{height:clamp(300px,40vw,460px);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg);position:relative}
.hero-img img{width:100%;height:100%;object-fit:cover}

/* compact page hero (interior pages) */
.page-hero{padding:clamp(48px,6vw,84px) 0 clamp(32px,4vw,52px);border-bottom:1px solid var(--line)}
.page-hero h1{font-size:clamp(36px,5vw,60px);font-weight:450;max-width:880px;margin-top:14px}
.page-hero .lead{margin-top:22px;max-width:680px}
.breadcrumb{font-size:12.5px;font-weight:500;color:var(--muted);margin:0 0 20px;letter-spacing:.02em;line-height:1.5;
  padding-left:21px;
  background:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%235d6b80'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M3%2010.5%2012%203l9%207.5'/%3E%3Cpath%20d='M5%209.7V21h14V9.7'/%3E%3C/svg%3E") left 1px/14px no-repeat}
.breadcrumb a{color:var(--muted);border-bottom:1px solid transparent;padding-bottom:1px;
  transition:color .15s ease,border-color .15s ease}
.breadcrumb a:hover{color:var(--green-d);border-bottom-color:rgba(79,157,111,.45)}

/* ---------- stat bar ---------- */
.statbar{border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  display:grid;grid-template-columns:repeat(4,1fr)}
.statbar .s{padding:34px 28px}
.statbar .s+.s{border-left:1px solid var(--line)}
.statbar .n{font-family:var(--serif);font-size:clamp(34px,3.4vw,46px);line-height:1;color:var(--navy)}
.statbar .s:nth-child(1) .n{color:var(--green-d)}
.statbar .s:nth-child(3) .n{color:var(--orange-d)}
.statbar .l{font-size:14px;color:var(--muted);margin-top:9px}

/* ---------- two column + benefits ---------- */
.two-col{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(40px,5vw,72px)}
.two-col h2{font-size:clamp(30px,3.4vw,42px);font-weight:450;max-width:360px}
.benf{border-top:1px solid var(--line);padding:26px 0;display:grid;grid-template-columns:54px 1fr;gap:20px}
.benf .bn{font-family:var(--serif);font-size:21px}
.benf:nth-child(1) .bn{color:var(--green-d)}
.benf:nth-child(2) .bn{color:var(--orange-d)}
.benf:nth-child(3) .bn{color:var(--navy)}
.benf:nth-child(4) .bn{color:var(--green-d)}
.benf h3{font-family:var(--sans);font-size:20px;font-weight:700;margin-bottom:7px}
.benf p{color:var(--muted);font-size:16px}

/* ---------- steps ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(28px,4vw,46px);margin-top:54px}
.step .c{width:48px;height:48px;border:1.5px solid var(--green-d);border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:20px;color:var(--green-d)}
.step:nth-child(2) .c{border-color:var(--orange-d);color:var(--orange-d)}
.step:nth-child(3) .c{border-color:var(--navy);color:var(--navy)}
.step h3{font-family:var(--sans);font-size:21px;font-weight:700;margin:22px 0 9px}
.step p{color:var(--muted);font-size:16px}

/* ---------- cards / benefit cards ---------- */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.cards-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.card .top{height:7px}
.card:nth-child(3n+1) .top{background:var(--green)}
.card:nth-child(3n+2) .top{background:var(--orange)}
.card:nth-child(3n+3) .top{background:var(--navy)}
.card .bd{padding:32px 30px}
.card h3{font-family:var(--sans);font-size:21px;font-weight:700;margin-bottom:11px}
.card p{color:var(--muted);font-size:16px}

/* ---------- news ---------- */
.news{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:8px}
.ncard{display:block}
.ncard .ni{height:200px;border-radius:var(--radius);overflow:hidden;border-top:4px solid var(--green);margin-bottom:18px}
.news .ncard:nth-child(3n+2) .ni{border-top-color:var(--orange)}
.news .ncard:nth-child(3n+3) .ni{border-top-color:var(--navy)}
.ncard .ni img{width:100%;height:100%;object-fit:cover}
.ncard .nd{font-size:13px;letter-spacing:.07em;text-transform:uppercase;color:var(--green-d);font-weight:600}
.ncard h3{font-family:var(--serif);font-size:23px;font-weight:500;margin:11px 0 0;line-height:1.18;transition:color .15s}
.ncard:hover h3{color:var(--green-d)}
.ncard p{color:var(--muted);font-size:16px;margin-top:9px}

/* ---------- partners ---------- */
.partners{display:flex;gap:20px;flex-wrap:wrap;margin-top:34px;justify-content:center;align-items:center}
.plogo{height:90px;background:#fff;border:1px solid var(--line);border-radius:14px;
  display:flex;align-items:center;justify-content:center;padding:0 22px;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.plogo:hover{border-color:var(--green);box-shadow:0 8px 20px rgba(22,41,78,.08);transform:translateY(-1px)}
.plogo-empty{border-style:dashed;background:transparent}
.plogo-empty img{opacity:.85}
.plogo-empty:hover{border-color:var(--green);background:#fff}
.plogo img{height:58px;width:auto;opacity:.55;transition:opacity .2s ease}
.plogo:hover img{opacity:1}

/* ---------- photo placeholder ---------- */
.ph{position:relative;background:
   repeating-linear-gradient(135deg,rgba(22,41,78,.05) 0 12px,rgba(22,41,78,.085) 12px 24px),var(--paper-2);
   display:flex;align-items:flex-end}
.ph .phtag{font-family:ui-monospace,monospace;font-size:12px;letter-spacing:.04em;color:rgba(22,41,78,.5);
   background:rgba(251,251,248,.82);padding:6px 10px;margin:14px;border-radius:3px}

/* ---------- CTA ---------- */
.cta{text-align:center;padding:clamp(72px,9vw,104px) 0}
.cta.alt{background:var(--paper-2)}
.cta h2{font-size:clamp(34px,4.2vw,52px);font-weight:450;max-width:760px;margin:0 auto 14px}
.cta p{max-width:540px;margin:0 auto 30px}

/* ---------- FAQ ---------- */
.faq{max-width:820px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--line)}
.faq-q{width:100%;text-align:left;background:none;border:0;cursor:pointer;padding:26px 0;
  display:flex;justify-content:space-between;align-items:center;gap:24px;
  font-family:var(--serif);font-size:clamp(20px,2vw,24px);font-weight:500;color:var(--ink)}
.faq-q .ic{flex:0 0 auto;width:30px;height:30px;border-radius:50%;border:1.5px solid var(--green-d);
  color:var(--green-d);display:flex;align-items:center;justify-content:center;font-size:20px;transition:.25s}
.faq-item.open .faq-q .ic{background:var(--green-d);color:#fff;transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a p{color:var(--muted);font-size:17px;padding:0 54px 26px 0}

/* ---------- forms ---------- */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.field{display:flex;flex-direction:column;gap:8px}
.field.full{grid-column:1/-1}
.field label{font-size:14px;font-weight:600;color:var(--ink)}
.field label .req{color:var(--orange-d)}
.field input,.field select,.field textarea{font-family:inherit;font-size:16px;color:var(--ink);
  padding:14px 16px;border:1px solid var(--line);border-radius:12px;background:#fff;transition:border-color .15s,box-shadow .15s}
.field textarea{resize:vertical;min-height:130px}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--green);
  box-shadow:0 0 0 3px rgba(79,157,111,.15)}
.checkrow{display:flex;gap:12px;align-items:flex-start;font-size:14px;color:var(--muted)}
.checkrow input{width:20px;height:20px;margin-top:2px;accent-color:var(--green)}
.form-note{font-size:13px;color:var(--muted)}
.eml{cursor:pointer}
.form-success{background:var(--green-l);border:1px solid var(--green);border-radius:var(--radius);
  padding:28px 30px;display:none}
.form-success.show{display:block}
.form-success h3{font-family:var(--sans);font-weight:700;font-size:20px;color:var(--green-d);margin-bottom:6px}
.form-error{background:var(--orange-l);border:1px solid var(--orange);border-radius:var(--radius);
  padding:24px 28px;margin-top:16px;display:none}
.form-error.show{display:block}
.form-error h3{font-family:var(--sans);font-weight:700;font-size:18px;color:var(--orange-d);margin-bottom:6px}
.form-error p{color:var(--ink);font-size:15px}
.form-error a{color:var(--orange-d);text-decoration:underline}

/* ---------- contact info cards ---------- */
.info-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px 28px;box-shadow:var(--shadow)}
.info-card .k{font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--green-d);font-weight:700;margin-bottom:10px}
.info-card .v{font-size:18px;font-weight:600}
.info-card .v.lg{font-family:var(--serif);font-size:24px;font-weight:500}
.info-card p{color:var(--muted);font-size:15px;margin-top:4px}

/* ---------- numbers / charts ---------- */
.kpi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.kpi{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px 28px;box-shadow:var(--shadow)}
.kpi .n{font-family:var(--serif);font-size:clamp(36px,3.6vw,48px);line-height:1;color:var(--navy)}
.kpi:nth-child(4n+1) .n{color:var(--green-d)}
.kpi:nth-child(4n+3) .n{color:var(--orange-d)}
.kpi .l{font-size:15px;color:var(--muted);margin-top:10px}
.kpi .sub{font-size:13px;color:var(--green-d);font-weight:600;margin-top:6px}
.chart-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:28px}
.panel{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:32px 32px 28px;box-shadow:var(--shadow)}
.panel h3{font-family:var(--sans);font-size:19px;font-weight:700}
.panel .psub{font-size:14px;color:var(--muted);margin:4px 0 26px}
/* bar chart */
.bars{display:flex;align-items:flex-end;gap:clamp(12px,2.5vw,30px);height:240px;margin-top:34px;padding-bottom:32px}
.bar-col{flex:1;height:100%;display:flex;align-items:flex-end;justify-content:center;position:relative}
.bar{width:100%;max-width:56px;border-radius:8px 8px 0 0;background:linear-gradient(180deg,var(--green),var(--green-d));
  height:0;position:relative}
.bar-col:nth-child(even) .bar{background:linear-gradient(180deg,var(--navy-2),var(--navy))}
.bar .bv{position:absolute;left:-20px;right:-20px;top:-26px;text-align:center;
  font-family:var(--serif);font-size:16px;color:var(--ink);font-weight:500}
.bar .bx{position:absolute;left:-20px;right:-20px;bottom:-30px;text-align:center;font-size:13px;color:var(--muted)}
/* donut */
.donut-wrap{display:flex;align-items:center;gap:30px;flex-wrap:wrap}
.donut{--p:0;width:180px;height:180px;border-radius:50%;flex:0 0 auto;
  background:conic-gradient(var(--green) 0,var(--green) var(--a),var(--orange) var(--a),var(--orange) var(--b),var(--navy) var(--b),var(--navy) 100%)}
.donut .hole{width:108px;height:108px;background:#fff;border-radius:50%;margin:36px;
  display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:26px;color:var(--navy)}
.legend{display:flex;flex-direction:column;gap:14px}
.legend .li{display:flex;align-items:center;gap:11px;font-size:15px}
.legend .dot{width:14px;height:14px;border-radius:4px}
.legend .li b{font-family:var(--serif);font-weight:500;margin-left:auto;padding-left:18px}
/* progress lines */
.prog{margin-top:6px}
.prog .row{margin-bottom:22px}
.prog .lab{display:flex;justify-content:space-between;font-size:15px;margin-bottom:8px}
.prog .lab b{font-family:var(--serif);font-weight:500}
.prog .track{height:12px;background:var(--paper-3);border-radius:8px;overflow:hidden}
.prog .fill{height:100%;border-radius:8px;width:0}

/* ---------- footer ---------- */
.site-footer{background:var(--navy-d);color:rgba(255,255,255,.72)}
.site-footer .wrap{padding-top:64px;padding-bottom:38px}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:40px}
.site-footer h4{color:#fff;font-family:var(--sans);font-size:13px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;margin-bottom:18px}
.site-footer .fnav a{display:block;color:rgba(255,255,255,.72);font-size:15px;margin-bottom:11px}
.site-footer .fnav a:hover{color:#fff}
.site-footer .fbrand img{height:50px;margin-bottom:18px}
.site-footer .foot-brand{display:flex;align-items:center;gap:12px;margin-bottom:18px;color:#fff}
.site-footer .foot-brand img{height:46px;margin:0}
.site-footer .fbw{font-family:var(--serif);font-size:25px;font-weight:600;letter-spacing:-.01em;color:#fff}
.site-footer .small{font-size:14px;line-height:1.7}
.site-footer .foot-social{display:flex;gap:12px;margin-top:18px}
.site-footer .foot-social a{display:flex;align-items:center;justify-content:center;width:40px;height:40px;
  border-radius:50%;border:1px solid rgba(255,255,255,.22);color:#fff;transition:.15s}
.site-footer .foot-social a:hover{background:var(--orange);border-color:var(--orange)}
.site-footer .foot-social svg{width:19px;height:19px}
.foot-bar{border-top:1px solid rgba(255,255,255,.12);margin-top:44px;padding-top:24px;
  display:flex;justify-content:space-between;align-items:center;gap:16px;font-size:13px;color:rgba(255,255,255,.5);flex-wrap:wrap}
.foot-bar a:hover{color:#fff}

/* ---------- timeline (chi siamo) ---------- */
.timeline{margin-top:46px}
.tl-item{display:grid;grid-template-columns:130px 1fr;gap:30px}
.tl-item .yr{font-family:var(--serif);font-size:30px;font-weight:500;color:var(--green-d);line-height:1.2}
.tl-item:nth-child(4n+2) .yr{color:var(--orange-d)}
.tl-item:nth-child(4n+3) .yr{color:var(--navy)}
.tl-body{border-left:2px solid var(--line);padding:2px 0 40px 32px;position:relative}
.tl-item:last-child .tl-body{padding-bottom:0}
.tl-body::before{content:"";position:absolute;left:-8px;top:7px;width:14px;height:14px;border-radius:50%;
  background:var(--green);box-shadow:0 0 0 4px var(--paper)}
.tl-item:nth-child(4n+2) .tl-body::before{background:var(--orange)}
.tl-item:nth-child(4n+3) .tl-body::before{background:var(--navy)}
.tl-body h3{font-family:var(--sans);font-size:20px;font-weight:700;margin-bottom:7px}
.tl-body p{color:var(--muted);font-size:16px}
/* comuni chips + map */
.comuni{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.comuni .chip{display:inline-flex;align-items:center;gap:9px;background:#fff;border:1px solid var(--line);
  border-radius:40px;padding:11px 20px;font-weight:600;font-size:15px}
.comuni .chip::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--green)}
.map-ph{height:100%;min-height:340px;border-radius:var(--radius-lg);overflow:hidden;position:relative}
.map-embed{position:absolute;top:0;left:0;width:100%;height:100%;border:0}
.imgfill{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;display:block}
.ncard .ni{position:relative}
/* values list */
.values{list-style:none;padding:0;margin:26px 0 0}
.values li{display:grid;grid-template-columns:30px 1fr;gap:16px;padding:16px 0;border-top:1px solid var(--line);font-size:17px}
.values li .vi{font-family:var(--serif);color:var(--green-d);font-size:19px}

/* contact layout */
.contact-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(36px,5vw,56px);align-items:start}
.contact-info{display:flex;flex-direction:column;gap:18px}

/* ---------- reveal (additive only — never gates visibility) ---------- */
.reveal{opacity:1;transform:none}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .two-col{grid-template-columns:1fr;gap:36px}
  .two-col h2{max-width:none}
  .chart-grid{grid-template-columns:1fr}
  .kpi-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr;gap:40px}
}
@media (max-width:980px){
  :root{--header-h:70px}
  .nav-desktop,.header-actions .nav-social,.header-actions .btn{display:none}
  .hamburger{display:flex}
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .hero-img{order:-1;height:clamp(240px,52vw,360px)}
  .hero .lead{max-width:none}
  .steps{grid-template-columns:1fr;gap:20px;margin-top:36px}
  .step{display:grid;grid-template-columns:48px 1fr;gap:18px;align-items:start}
  .step h3{margin:0 0 6px}
  .cards-3{grid-template-columns:1fr}
  .news{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .wrap,.header-inner{padding:0 22px}
  body{font-size:16px}
  .statbar{grid-template-columns:1fr 1fr}
  .statbar .s+.s{border-left:none}
  .statbar .s:nth-child(2),.statbar .s:nth-child(4){border-left:1px solid var(--line)}
  .statbar .s:nth-child(3),.statbar .s:nth-child(4){border-top:1px solid var(--line)}
  .kpi-grid{grid-template-columns:1fr 1fr;gap:16px}
  .kpi{padding:24px 20px}
  .form-grid{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .news{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr;gap:32px}
  .foot-grid .fbrand{grid-column:1/-1}
  .bars{gap:6px;height:200px}
  .donut-wrap{justify-content:center}
  .hero-cta{gap:14px}
  .hero-cta .btn{flex:1;justify-content:center}
  .tl-item{grid-template-columns:1fr;gap:4px}
  .tl-item .yr{font-size:26px}
  .tl-body{border-left:none;padding-left:0}
  .tl-body::before{display:none}
  .map-ph{min-height:240px}
}
@media (max-width:420px){
  .statbar{grid-template-columns:1fr}
  .statbar .s+.s{border-left:none;border-top:1px solid var(--line)}
  .kpi-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
}


/* ---------- news / article detail ---------- */
.article-wrap{max-width:760px;margin:0 auto}
.article-head{max-width:820px;margin:0 auto}
.article-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
.article-tags .tag{display:inline-flex;align-items:center;gap:8px;background:var(--green-l);
  color:var(--green-d);border-radius:40px;padding:7px 15px;font-size:13px;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;white-space:nowrap}
.article-tags .tag.date{background:var(--paper-2);color:var(--muted)}
.article-head h1{font-size:clamp(32px,4.6vw,54px);font-weight:450;line-height:1.05;margin-top:6px}
.article-head .standfirst{font-size:clamp(19px,1.6vw,23px);line-height:1.6;color:var(--muted);
  margin-top:22px;text-wrap:pretty}
.byline{display:flex;flex-wrap:wrap;align-items:center;gap:14px;margin-top:28px;
  padding-top:22px;border-top:1px solid var(--line);font-size:14.5px;color:var(--muted)}
.byline .who{font-weight:600;color:var(--ink)}
.byline .sep{width:4px;height:4px;border-radius:50%;background:var(--line)}

.figure{margin:0}
.figure .frame{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.figure.lead-figure .frame{height:clamp(280px,48vw,540px)}
.figure.inline .frame{height:clamp(240px,38vw,420px)}
.figure figcaption{font-size:13.5px;color:var(--muted);margin-top:13px;line-height:1.5}

.prose{margin-top:6px}
.prose p{font-size:18px;line-height:1.78;color:#37435d;margin:0 0 22px;text-wrap:pretty}
.prose p.intro{font-size:20px;color:var(--ink)}
.prose p.intro::first-letter{float:left;font-family:var(--serif);font-weight:500;font-size:74px;
  line-height:.78;padding:6px 14px 0 0;color:var(--green-d)}
.prose h2{font-family:var(--serif);font-size:clamp(24px,2.8vw,32px);font-weight:500;margin:46px 0 14px;color:var(--ink)}
.prose ul{margin:0 0 22px;padding-left:22px;color:#37435d;font-size:18px;line-height:1.7}
.prose li{margin-bottom:10px}
.prose li::marker{color:var(--green)}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--green-d);text-decoration:underline;text-underline-offset:2px}

.pullquote{margin:40px 0;padding:6px 0 6px 30px;border-left:3px solid var(--green)}
.pullquote p{font-family:var(--serif);font-size:clamp(23px,2.7vw,30px);line-height:1.38;
  color:var(--navy);font-weight:500;margin:0}
.pullquote cite{display:block;margin-top:14px;font-family:var(--sans);font-size:14px;
  font-weight:600;color:var(--green-d);font-style:normal;letter-spacing:.02em}

.facts{display:grid;grid-template-columns:repeat(3,1fr);background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;margin:38px 0}
.facts .f{padding:28px 26px}
.facts .f+.f{border-left:1px solid var(--line)}
.facts .n{font-family:var(--serif);font-size:clamp(28px,3.1vw,40px);line-height:1;color:var(--green-d)}
.facts .f:nth-child(2) .n{color:var(--orange-d)}
.facts .f:nth-child(3) .n{color:var(--navy)}
.facts .l{font-size:13.5px;color:var(--muted);margin-top:9px;line-height:1.4}

.article-foot{max-width:760px;margin:38px auto 0;padding-top:26px;border-top:1px solid var(--line);
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:18px;align-items:center}
.article-foot .share{display:flex;align-items:center;gap:12px;color:var(--muted);font-size:14px}
.article-foot .share a{width:38px;height:38px;border:1px solid var(--line);border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;color:var(--navy)}
.article-foot .share a:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.article-foot .share svg{width:17px;height:17px}

@media(max-width:640px){
  .article-foot{flex-direction:column;align-items:flex-start}
  .facts{grid-template-columns:1fr}
  .facts .f+.f{border-left:none;border-top:1px solid var(--line)}
  .prose p.intro::first-letter{font-size:60px}
}


/* ---------- components library ---------- */
/* drop cap — works on any <p class="dropcap"> */
.dropcap::first-letter{float:left;font-family:var(--serif);font-weight:500;font-size:74px;
  line-height:.78;padding:6px 14px 0 0;color:var(--green-d)}
@media(max-width:640px){.dropcap::first-letter{font-size:60px}}

/* info callout */
.callout{display:flex;gap:15px;align-items:flex-start;background:var(--green-l);
  border-radius:var(--radius);padding:20px 24px}
.callout>svg{flex:0 0 auto;width:22px;height:22px;color:var(--green-d);margin-top:2px}
.callout p{margin:0;font-size:15.5px;line-height:1.62;color:#37435d}
.callout p+p{margin-top:10px}
.callout strong{color:var(--ink);font-weight:600}
.callout a{color:var(--green-d);text-decoration:underline;text-underline-offset:2px}

/* styled table */
.vb-table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);-webkit-overflow-scrolling:touch;background:#fff}
.vb-table{width:100%;border-collapse:collapse;font-family:var(--sans);font-size:15.5px;
  color:var(--ink);background:#fff;min-width:460px}
.vb-table thead th{text-align:left;font-size:12.5px;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;color:var(--navy);background:var(--paper-2);padding:15px 20px;
  border-bottom:1px solid var(--line);white-space:nowrap}
.vb-table td{padding:15px 20px;border-bottom:1px solid var(--line);color:var(--ink);vertical-align:top}
.vb-table tbody tr:last-child td{border-bottom:none}
.vb-table tbody tr:hover{background:var(--paper)}
.vb-table .num{text-align:right;font-variant-numeric:tabular-nums;white-space:nowrap}

/* file download block */
.filedl{display:flex;align-items:center;gap:18px;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:18px 22px;box-shadow:var(--shadow);text-decoration:none;
  max-width:460px;transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease}
.filedl:hover{border-color:var(--green);box-shadow:0 14px 32px rgba(22,41,78,.1);transform:translateY(-1px)}
.filedl-ic{flex:0 0 auto;width:52px;height:52px;border-radius:13px;background:var(--green-l);
  color:var(--green-d);display:grid;place-items:center}
.filedl-ic svg{width:26px;height:26px}
.filedl-main{flex:1 1 auto;min-width:0}
.filedl-name{display:block;font-family:var(--sans);font-weight:700;font-size:16px;color:var(--ink);line-height:1.3}
.filedl-meta{display:block;font-size:13px;color:var(--muted);margin-top:3px;letter-spacing:.04em;text-transform:uppercase}
.filedl-act{flex:0 0 auto;width:38px;height:38px;border-radius:50%;background:var(--paper-2);
  color:var(--navy);display:grid;place-items:center;transition:background .15s ease,color .15s ease}
.filedl:hover .filedl-act{background:var(--green);color:#fff}
.filedl-act svg{width:19px;height:19px}


/* ---------- components: variants ---------- */
/* file download — type variants (icona + colore) */
.filedl.pdf .filedl-ic{background:#fdece9;color:#cf3b2e}
.filedl.doc .filedl-ic{background:#e9f0fc;color:#2a6fdb}
.filedl.xls .filedl-ic{background:#e7f4ec;color:#1f8a5b}
.filedl.zip .filedl-ic{background:var(--paper-2);color:var(--navy)}

/* callout — variants (info / avviso / errore) */
.callout.info{background:#eaf1fb}
.callout.info>svg{color:#2a6fdb}
.callout.warning{background:var(--orange-l)}
.callout.warning>svg{color:var(--orange-d)}
.callout.error{background:#fdece9}
.callout.error>svg{color:#cf3b2e}


/* ---------- poster / locandina figure ---------- */
.poster-figure{margin:0;display:flex;flex-direction:column;align-items:center;text-align:center}
.poster-figure .poster{display:block;width:100%;max-width:440px;height:auto;border-radius:var(--radius);
  box-shadow:0 18px 48px rgba(22,41,78,.18);border:1px solid var(--line)}
.poster-figure figcaption{font-size:13.5px;color:var(--muted);margin-top:16px;line-height:1.5;max-width:440px}
