/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(201, 155, 94, 0.18);
  margin-top: var(--space-section);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.footer__inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer__links a {
  color: var(--color-text);
  font-weight: var(--fw-medium);
  transition: color var(--transition-base);
}
.footer__links a:hover { color: var(--color-heading); }

.footer__contact { display: grid; gap: 0.5rem; }
.footer__contact-label { color: var(--color-white); font-weight: var(--fw-semibold); }
.footer__emails { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.25rem; }
.footer__emails a { color: var(--color-heading); }
.footer__emails a:hover { text-decoration: underline; }

.footer__payments { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.footer__payments img { height: 38px; width: auto; }

.footer__legal { display: grid; gap: 0.75rem; justify-items: center; }
.footer__age {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-danger);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 0.9rem;
}
.footer__responsible { color: var(--color-text); max-width: 46ch; }
.footer__copy { color: var(--color-text); font-size: 0.9rem; }

@media (min-width: 768px) {
  .footer__contact { grid-auto-flow: column; align-items: center; }
}
