#footer { background: var(--marine); padding: 80px 24px 32px; }
#footer .footer-inner { max-width: 1180px; margin: 0 auto; }

/* Grille unique : marque + 3 colonnes de liens, un seul rythme, pas de bloc isolé */
#footer .footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border-dark);
}
#footer .footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
#footer .footer-logo { font-family: var(--font-display); font-size: 21px; color: var(--text-cream); }
#footer .footer-logo span { color: var(--gold-light); }
#footer .footer-tagline { font-size: 14px; line-height: 1.5; color: var(--text-sec-dark); max-width: 260px; margin-bottom: 12px; }
#footer .footer-brand-meta { font-size: 12px; color: var(--text-tert); }

#footer .footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--text-cream); margin-bottom: 16px;
}
#footer .footer-col-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
#footer .footer-col-list a, #footer .footer-col-list .footer-link-inert {
  font-size: 14px; color: var(--text-sec-dark); text-decoration: none; width: fit-content;
}
#footer .footer-col-list a:hover { color: var(--gold-light); }
#footer .footer-col-list .footer-link-inert, #footer .footer-contact-value.footer-link-inert { color: var(--text-tert); cursor: default; }

#footer .footer-contact-item { font-size: 14px; margin-bottom: 11px; }
#footer .footer-contact-item .footer-contact-label { display: block; font-size: 11px; color: var(--text-tert); margin-bottom: 2px; }
#footer .footer-contact-value { color: var(--text-sec-dark); }

/* Newsletter : ligne compacte sous la grille, pas un bloc à part avec un grand vide autour */
#footer .footer-newsletter-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px 0; border-bottom: 1px solid var(--border-dark);
}
#footer .footer-newsletter-copy { font-size: 13px; color: var(--text-tert); }
#footer .footer-newsletter-copy strong { color: var(--text-sec-dark); font-weight: 600; }
#footer .footer-newsletter-form { display: flex; gap: 8px; opacity: 0.5; max-width: 100%; }
#footer .footer-newsletter-form input {
  background: rgba(248,244,239,0.05); border: 1px solid var(--border-dark); border-radius: 6px;
  padding: 9px 12px; font-size: 13px; color: var(--text-cream); font-family: var(--font-body);
  width: 220px; max-width: 100%; min-width: 0; box-sizing: border-box;
}
#footer .footer-newsletter-form input::placeholder { color: var(--text-tert); }
#footer .footer-newsletter-form button {
  border: 1px solid var(--border-dark); background: transparent; color: var(--text-sec-dark);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 9px 14px;
  border-radius: 6px; cursor: not-allowed; white-space: nowrap;
}

/* Bande basse */
#footer .footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 14px; padding-top: 24px;
}
#footer .footer-copyright { font-size: 13px; color: var(--text-tert); }
#footer .footer-bottom-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
#footer .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
#footer .footer-legal .footer-link-inert { font-size: 13px; cursor: default; }
#footer .footer-socials { display: flex; gap: 8px; }
#footer .footer-social-icon {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dark); border-radius: 50%; color: var(--text-tert); cursor: default;
}
#footer .footer-social-icon svg { width: 13px; height: 13px; }

@media (max-width: 860px) {
  #footer .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}
@media (max-width: 560px) {
  #footer { padding: 56px 20px 24px; }
  #footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  #footer .footer-bottom, #footer .footer-newsletter-row { flex-direction: column; align-items: flex-start; }
}
