/* ============================================================
   🌿 FOOTER
============================================================ */

.site-footer{
  position: relative;
  z-index: 30;

  padding: 22px 0 max(16px, env(safe-area-inset-bottom));

  /* ✅ un tout petit peu plus foncé */
  background: linear-gradient(180deg, #160904 0%, #0e0502 100%);
}

.site-footer-wrap{
  width: min(1220px, 92%);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================================
   INSTAGRAM (BANNIÈRE)
============================================================ */

.site-footer-instagram{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  border-radius: 16px;
  margin-bottom: 5px;

  /* ✅ plus de box “encadrée” */
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;

  transition: transform .22s ease, opacity .22s ease;
}

.site-footer-instagram:hover{
  transform: translateY(-1px);
  opacity: 1;
}

.site-footer-instagram img{
  width: clamp(250px, 26vw, 320px);
  height: auto;
  display: block;
  opacity: 0.92;

  transition: opacity .22s ease, transform .22s ease;
}

.site-footer-instagram:hover img{
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================================
   LIENS LÉGAUX
============================================================ */

.site-footer-legal{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  font-family: "Inter", sans-serif;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.70);
}

.site-footer-legal a{
  color: rgba(230,214,158,0.92);
  text-decoration: none;
  font-size: 0.98rem;

  transition: color .22s ease, text-shadow .22s ease;
}

.site-footer-legal a:hover{
  color: rgba(230,214,158,1);
  text-shadow: 0 0 12px rgba(230,214,158,0.26);
}

.site-footer-sep{
  opacity: 0.55;
}

/* ============================================================
   RESPONSIVE FOOTER
============================================================ */

@media (max-width: 980px){
  .site-footer-wrap{
    justify-content: center;
  }

  .site-footer-legal{
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px){
  .site-footer-legal{
    flex-direction: column;
    gap: 10px;
  }

  .site-footer-sep{
    display: none;
  }
}
