/* ═══════════════════════════════════════════════════════
   Footer — fond salmon/coral fidèle au mockup
════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--footer-bg);   /* #F5B5AA — salmon */
  margin-top: 3.5rem;
  padding-top: 2.5rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

/* ── Colonne brand ─────────────────────────────────── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .65rem;
  text-decoration: none;
}
.footer-logo img { height: 36px; width: auto; }
.footer-logo-text {
  font-family: var(--font-corps);
  font-size: .82rem;
  font-weight: 800;
  color: #1A1A1A;
  text-transform: uppercase;
  line-height: 1.15;
}
.footer-desc {
  font-size: .83rem;
  color: #5A3A35;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Réseaux sociaux */
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  color: #5A3A35;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--blanc);
  color: var(--vert-logo);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ── Titres colonnes ─────────────────────────────── */
.footer-col__title {
  font-family: var(--font-corps);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #1A1A1A;
  margin-bottom: .9rem;
}

/* ── Listes nav footer ───────────────────────────── */
.footer-nav-list { display: flex; flex-direction: column; gap: .38rem; }
.footer-nav-list a {
  font-size: .84rem;
  color: #5A3A35;
  transition: color var(--transition);
}
.footer-nav-list a:hover { color: #1A1A1A; }

/* ── Newsletter ──────────────────────────────────── */
.footer-newsletter-text {
  font-size: .84rem;
  color: #5A3A35;
  margin-bottom: .75rem;
  line-height: 1.5;
}
.newsletter-input-wrap { display: flex; gap: .4rem; }
.newsletter-input-wrap input {
  flex: 1;
  padding: .52rem .8rem;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: var(--radius-btn);
  font-size: .84rem;
  outline: none;
  background: rgba(255,255,255,.75);
  color: #333;
  transition: all var(--transition);
}
.newsletter-input-wrap input:focus {
  background: var(--blanc);
  border-color: var(--vert-logo);
}
.newsletter-input-wrap input::placeholder { color: #aaa; }

/* ── Bas du footer ───────────────────────────────── */
.site-footer__bottom {
  background: var(--footer-bottom);
  padding-block: .9rem;
  margin-top: .5rem;
}
.site-footer__bottom p {
  font-size: .76rem;
  color: #5A3A35;
  text-align: center;
}

/* ── Responsive footer ──────────────────────────── */
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .footer-col--brand { grid-column: auto; }
}
