/* ============================================================
   FOOTER — Entr'actes Sàrl
   ============================================================ */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--color-border);
  padding: 4rem var(--section-pad-x) 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .brand-name { font-size: 1.5rem; }
.footer-brand p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 1.2rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col a,
.footer-col li {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.8rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.footer-bottom .credits a {
  color: var(--color-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-bottom .credits a:hover { color: var(--color-accent); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
