.footer {
  background: var(--color-bg-dark);
  margin-top: var(--space-section);
  padding-block: var(--space-section);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}
.footer__links a {
  color: var(--color-text);
  font-weight: var(--fw-500);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-heading); }

.footer__contact { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer__contact-label { color: var(--color-heading); font-weight: var(--fw-600); }
.footer__emails { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; }
.footer__emails a { color: var(--color-text); transition: color var(--transition); }
.footer__emails a:hover { color: var(--color-white); }

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.footer__payments img { height: 32px; width: auto; }

.footer__responsible { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer__age {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-danger);
  color: #fff;
  font-weight: var(--fw-800);
  font-size: 15px;
}
.footer__disclaimer { color: var(--color-text); max-width: 60ch; }
.footer__copy { color: var(--color-text); font-size: var(--fs-small); }

body.no-scroll { overflow: hidden; }
