/* ======================
   FOOTER — Modern Industrial (per .site-footer)
   + Cookie-safe spacing
====================== */

/* Cookie banner safe space (global) */
:root { --cookie-h: 0px; }
body { padding-bottom: var(--cookie-h); }

.site-footer{
  background: #0b0f17;
  color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Link */
.site-footer a{
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  text-underline-offset: 3px;
}
.site-footer a:hover{
  color: #fff;
  text-decoration: underline;
}
.site-footer a:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Griglia principale */
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 26px;
}

/* Colonne */
.footer-col h4{
  margin: 0 0 12px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: #fff;
}

.footer-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-col li{
  margin: 0;
}

/* Brand */
.footer-brand{
  display: grid;
  gap: 10px;
}

.footer-logo{
  width: 140px;
  height: auto;
  filter: brightness(1.05);
}

.footer-tagline{
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

/* Contatti */
.footer-line{
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.footer-line a{
  color: rgba(255,255,255,0.82);
}

/* Social pill */
.footer-social{
  margin-top: 12px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  text-decoration: none; /* evita underline sul pill */
}
.social-link:focus-visible{
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 3px;
}

.social-link svg{
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.9);
}

.social-link span{
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
}

/* Barra inferiore */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 20px;
  display: grid;
  gap: 6px;
}

.footer-bottom-inner p{
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
}

.footer-legal{
  color: rgba(255,255,255,0.58);
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .footer-inner{
    grid-template-columns: 1fr;
    padding: 34px 16px;
  }

  .footer-logo{
    width: 130px;
  }

  .social-link{
    width: fit-content;
  }
}