/*
  footer.css — pied de page : capture email, plan du site, mentions.
*/
.site-footer {
  background: var(--color-brown-dark);
  color: #F3E9DD;
}

.site-footer__top {
  padding-block: var(--space-7) var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__grid {
  padding-block: var(--space-7);
  display: grid;
  gap: var(--space-6);
}

.site-footer__brand img {
  height: 46px;
  margin-bottom: var(--space-3);
}

.site-footer__brand p {
  font-size: var(--text-sm);
  color: #D9C7B4;
  max-width: 34ch;
}

.site-footer__socials {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition-fast);
}

.site-footer__socials a:hover {
  background: var(--color-yellow);
  color: var(--color-ink);
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
}

.site-footer__col h3 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__col a {
  text-decoration: none;
  color: #D9C7B4;
  font-size: var(--text-sm);
}

.site-footer__col a:hover {
  color: var(--color-yellow);
  text-decoration: underline;
}

.site-footer__bottom {
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: #D9C7B4;
}

.site-footer__bottom nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.site-footer__bottom a {
  color: #D9C7B4;
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--color-yellow);
}
