:root{
  --axel-dark:#1E1B18;
  --axel-dark-hero:#151311;
  --axel-cream:#F7F3EE;
  --axel-sand:#D8C3A5;
  --axel-green:#6E7C63;
  --axel-brown:#5A4032;
  --axel-soft:#EFE7DC;
  --header-height:74px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  margin:0;
  min-width:320px;
  overflow-x:hidden;
  background:#F7F3EE;
  color:#1E1B18;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;}
a,button{-webkit-tap-highlight-color:transparent;}

.skip-link{
  position:fixed;
  z-index:10000;
  left:12px;
  top:12px;
  transform:translateY(-150%);
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font:600 13px/1 'DM Sans',sans-serif;
  text-decoration:none;
}
.skip-link:focus{transform:translateY(0);}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  width:100%;
  background:#1E1B18;
  color:#F7F3EE;
  transition:transform .35s ease;
}
.site-header.is-hidden{transform:translateY(-100%);}
.site-header-inner{
  min-height:var(--header-height);
  padding:0 2vw;
  display:grid;
  grid-template-columns:minmax(210px,1fr) auto minmax(210px,1fr);
  align-items:center;
  gap:24px;
}
.site-title{
  justify-self:start;
  color:#F7F3EE;
  text-decoration:none;
  font-family:'Cormorant Garamond',serif;
  font-size:18px;
  font-weight:600;
  white-space:nowrap;
}
.desktop-nav{display:flex;align-items:center;justify-content:center;gap:24px;}
.desktop-nav a{
  color:rgba(247,243,238,.82);
  text-decoration:none;
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  font-weight:500;
  white-space:nowrap;
  transition:color .25s ease;
}
.desktop-nav a:hover,.desktop-nav a.active{color:#fff;}
.header-actions{justify-self:end;display:flex;align-items:center;gap:14px;}
.header-cta,.mobile-menu-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 20px;
  border-radius:999px;
  background:#F7F3EE;
  color:#1E1B18;
  text-decoration:none;
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
}
.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  padding:10px;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:1px;
  margin:6px 0;
  background:#F7F3EE;
  transform-origin:center;
  transition:transform .25s ease,opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(3.5px) rotate(45deg);}
.menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-3.5px) rotate(-45deg);}
.mobile-menu{
  background:#1E1B18;
  padding:16px 24px 26px;
  border-top:1px solid rgba(255,255,255,.08);
}
.mobile-menu nav{display:grid;}
.mobile-menu nav a{
  padding:13px 0;
  color:rgba(247,243,238,.86);
  text-decoration:none;
  font-family:'DM Sans',sans-serif;
  font-size:16px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.mobile-menu-cta{margin-top:18px;width:100%;}

@media (max-width:1180px){
  .desktop-nav{display:none;}
  .site-header-inner{grid-template-columns:1fr auto;}
  .menu-toggle{display:block;}
  .header-cta{display:none;}
}

/* FOOTER */
.axel-footer-v2{
  position:relative;
  background:#F7F3EE;
  overflow:hidden;
  padding:13px 7vw 40px;
  border-top:1px solid rgba(30,27,24,.08);
}
.axel-footer-light{
  position:absolute;
  width:800px;
  height:800px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(216,195,165,.14) 0%,rgba(216,195,165,0) 70%);
  top:-350px;
  right:-350px;
  pointer-events:none;
}
.axel-footer-top{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:70px;
  padding-bottom:60px;
  border-bottom:1px solid rgba(30,27,24,.07);
}
.axel-footer-brand h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(34px,3.5vw,48px);
  line-height:1.05;
  color:#1E1B18;
  margin:0 0 22px;
  font-weight:600;
  letter-spacing:-.02em;
}
.axel-footer-brand p{
  max-width:420px;
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  line-height:1.95;
  color:#5A4032;
  font-weight:300;
  opacity:.85;
}
.axel-footer-socials{display:flex;gap:10px;margin-top:28px;}
.axel-footer-social{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:white;
  border:1px solid rgba(30,27,24,.08);
  color:#1E1B18!important;
  text-decoration:none!important;
  transition:all .35s ease;
  font-size:13px;
}
.axel-footer-social:hover{transform:translateY(-4px);background:#1E1B18;color:#F7F3EE!important;}
.axel-footer-col h4{
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#6E7C63;
  margin-bottom:22px;
  font-weight:600;
}
.axel-footer-links{display:flex;flex-direction:column;gap:12px;}
.axel-footer-links a{
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  color:rgba(90,64,50,.75)!important;
  text-decoration:none!important;
  transition:all .3s ease;
}
.axel-footer-links a:hover{color:#1E1B18!important;transform:translateX(4px);}
.axel-footer-bottom{
  position:relative;
  z-index:2;
  padding-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.axel-footer-copy{
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  color:rgba(30,27,24,.45);
  line-height:2;
}
.axel-footer-copy strong{color:#1E1B18;font-weight:600;}
.axel-footer-signature{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(110,124,99,.80)!important;
  text-decoration:none!important;
  font-size:12px;
  transition:all .3s ease;
}
.axel-footer-signature:hover{opacity:.6;}
.axel-footer-mini{display:flex;gap:20px;flex-wrap:wrap;}
.axel-footer-mini a{
  font-family:'DM Sans',sans-serif;
  font-size:12px;
  color:rgba(30,27,24,.38)!important;
  text-decoration:none!important;
  transition:all .3s ease;
}
.axel-footer-mini a:hover{color:#1E1B18!important;}

@media screen and (max-width:1100px){
  .axel-footer-top{grid-template-columns:1fr 1fr;}
}
@media screen and (max-width:768px){
  .axel-footer-v2{padding:9px 24px 30px;}
  .axel-footer-top{grid-template-columns:1fr;gap:44px;padding-bottom:44px;}
  .axel-footer-brand h2{font-size:36px;}
  .axel-footer-bottom{flex-direction:column;align-items:flex-start;}
}

/* COOKIE POLICY — codice originale ripulito */
.axel-cookie-v1{
  position:relative;
  padding:100px 7vw;
  overflow:hidden;
}

.axel-cookie-light{
  position:absolute;
  width:600px;
  height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(216,195,165,0.14) 0%, rgba(216,195,165,0) 70%);
  top:-250px;
  right:-250px;
  pointer-events:none;
}

.axel-cookie-wrap{
  position:relative;
  z-index:2;
  max-width:860px;
  margin:0 auto;
}

.axel-cookie-header{
  margin-bottom:70px;
}

.axel-cookie-eyebrow{
  font-family:'DM Sans',sans-serif;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:#6E7C63;
  font-size:11px;
  font-weight:600;
  margin-bottom:16px;
}

.axel-cookie-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(38px,3.8vw,58px);
  color:#1E1B18;
  font-weight:600;
  line-height:1.05;
  margin-bottom:20px;
  letter-spacing:-0.03em;
}

.axel-cookie-title em{
  color:#6E7C63;
  font-style:italic;
}

.axel-cookie-meta{
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  color:rgba(90,64,50,0.55);
  font-weight:300;
}

.axel-cookie-section{
  margin-bottom:56px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(90,64,50,0.08);
}

.axel-cookie-section:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.axel-cookie-section-number{
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:#6E7C63;
  font-weight:600;
  margin-bottom:12px;
}

.axel-cookie-section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;
  color:#1E1B18;
  font-weight:600;
  margin-bottom:20px;
  letter-spacing:-0.02em;
  line-height:1.1;
}

.axel-cookie-section-title em{
  color:#6E7C63;
  font-style:italic;
}

.axel-cookie-text{
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  line-height:2;
  color:#5A4032;
  font-weight:300;
  margin-bottom:18px;
  opacity:0.90;
}

.axel-cookie-text strong{
  color:#1E1B18;
  font-weight:600;
}

.axel-cookie-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.04);
  margin:24px 0;
}

.axel-cookie-table th{
  background:#1E1B18;
  padding:14px 20px;
  text-align:left;
  font-family:'DM Sans',sans-serif;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:#D8C3A5;
  font-weight:600;
}

.axel-cookie-table td{
  padding:16px 20px;
  background:white;
  border-bottom:1px solid rgba(90,64,50,0.06);
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  line-height:1.7;
  color:#5A4032;
  font-weight:300;
  vertical-align:top;
}

.axel-cookie-table tr:last-child td{
  border-bottom:none;
}

.axel-cookie-table td strong{
  color:#1E1B18;
  font-weight:600;
  display:block;
  margin-bottom:3px;
}

.axel-cookie-badge{
  display:inline-flex;
  padding:3px 10px;
  border-radius:100px;
  font-family:'DM Sans',sans-serif;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:0.10em;
  font-weight:600;
}

.axel-cookie-badge.necessario{
  background:rgba(110,124,99,0.12);
  color:#6E7C63;
}

.axel-cookie-badge.terze-parti{
  background:rgba(216,195,165,0.30);
  color:#8B6914;
}

.axel-cookie-badge.analisi{
  background:rgba(90,64,50,0.08);
  color:#5A4032;
}

.axel-cookie-highlight{
  padding:22px 26px;
  border-radius:14px;
  background:#EFE7DC;
  border-left:3px solid #6E7C63;
  margin:24px 0;
}

.axel-cookie-highlight p{
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#5A4032;
  font-weight:300;
  margin:0;
}

.axel-cookie-highlight strong{
  color:#1E1B18;
  font-weight:600;
}

.axel-cookie-contact{
  padding:28px 32px;
  border-radius:18px;
  background:#1E1B18;
  margin-top:24px;
}

.axel-cookie-contact-title{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;
  color:#F7F3EE;
  font-weight:600;
  margin-bottom:12px;
}

.axel-cookie-contact p{
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  line-height:1.85;
  color:rgba(247,243,238,0.70);
  font-weight:300;
  margin:0;
}

.axel-cookie-contact strong{
  color:#D8C3A5;
  font-weight:600;
}

@media screen and (max-width:768px){
.axel-cookie-v1{ padding:80px 24px; }
.axel-cookie-section-title{ font-size:24px; }
.axel-cookie-table{ font-size:12px; }
.axel-cookie-table th,
.axel-cookie-table td{ padding:12px 14px; }
}
