/* Footer site — navigation + mentions légales */
.site-footer{
  border-top:1px solid var(--border);
  background:var(--ig-bg);
  color:var(--muted);
  font-size:.8125rem;
}
.site-footer-inner{
  max-width:935px;
  margin:0 auto;
  padding:2rem 1.25rem 1.25rem;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:1.5rem 2rem;
  align-items:start;
}
.site-footer-brand .logo-footer{margin-bottom:.5rem}
.site-footer-tagline{
  font-size:.75rem;line-height:1.45;max-width:220px;margin:0;color:var(--muted);
}
.site-footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:.35rem 1.25rem;
  justify-content:center;
  align-self:center;
}
.site-footer-nav a{
  color:var(--text);
  font-weight:500;
  text-decoration:none;
  font-size:.8125rem;
}
.site-footer-nav a:hover{color:var(--ig-blue)}
.site-footer-social-wrap{
  display:flex;
  justify-content:flex-end;
  align-self:center;
}
.site-footer-legal{
  max-width:935px;
  margin:0 auto;
  padding:0 1.25rem 1.25rem;
  border-top:1px solid var(--border);
}
.site-footer-legal-links{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem 1.25rem;
  padding:1rem 0 .75rem;
  justify-content:center;
}
.site-footer-legal-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:.75rem;
  font-weight:500;
}
.site-footer-legal-links a:hover{color:var(--ig-blue)}
.site-footer-company{
  text-align:center;
  font-size:.6875rem;
  line-height:1.55;
  color:var(--muted);
  margin:0 0 .75rem;
}
.site-footer-company strong{color:var(--text);font-weight:600}
.site-footer-bottom{
  max-width:935px;
  margin:0 auto;
  padding:.75rem 1.25rem 1.5rem;
  text-align:center;
  font-size:.6875rem;
  color:var(--muted);
  border-top:1px solid var(--border);
}

@media(max-width:768px){
  .site-footer-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:1.25rem;
  }
  .site-footer-tagline{max-width:none;margin:0 auto}
  .site-footer-nav{justify-content:center}
  .site-footer-social-wrap{justify-content:center}
  .site-footer-legal-links{flex-direction:column;align-items:center;gap:.5rem}
}
