/* ============================================
   BYA — Institut de beauté
   FOOTER
   ============================================ */

.site-footer {
  background: var(--espresso);
  color: var(--sand);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(201, 168, 130, 0.18);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand .logo-badge {
  width: 56px;
  height: 56px;
}

.footer-brand p {
  color: var(--sand);
  max-width: 260px;
}

.site-footer h3 {
  color: var(--ivory);
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 0.78rem;
  color: var(--taupe);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
