/* ==========================================================================
   J.A. CHAPES SÀRL — Pied de page
   --------------------------------------------------------------------------
   Colonnes du bas, liens, réseau social et bandeau de copyright.
   ========================================================================== */

/* ==========================================================================
   17. PIED DE PAGE
   ========================================================================== */
.footer {
  padding: 70px 0 36px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__title {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.footer__list { margin: 18px 0 0; padding: 0; list-style: none; }
.footer__list li { margin-bottom: 10px; font-size: 14px; }
.footer__list a:hover { color: var(--orange-soft); }

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer__social:hover { border-color: var(--orange); color: var(--orange-soft); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
