/* ================================
   FOOTER — Mobile First
================================ */

.site-footer {
  background: #3A2320; /* Brun artisanal moderne */
  color: #FBEDE6; /* Beige rosé clair */
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* --- Branding --- */
.footer-branding {
  text-align: center;
  margin-top: 20px;
}

.footer-logo {
  width: 80px;
  margin: 0 auto 1rem;
}

.footer-title {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.footer-slogan {
  font-size: 12px;
  opacity: 0.9;
}

/* --- Menu Footer --- */
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-menu-list a {
  color: #FBEDE6;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-menu-list a:hover {
  color: var(--color-primary);
}

/* --- Contact --- */
.footer-contact {
  text-align: center;
}

.footer-contact h4 {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.footer-contact a {
  color: #FBEDE6;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

p {
    font-size: 14px;
}

/* --- Bas de page --- */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-top: 2rem;
}

.footer-bottom a {
  color: #FBEDE6;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

.footer-bottom p {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.site-credit {
    font-size: 0.6rem;
}