.site-footer {
  background: var(--onyx-bg-alt);
  padding: 64px 24px 48px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.site-footer__logo {
  max-height: 52px;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.site-footer__menu a {
  font-family: var(--font-michroma);
  font-size: 15px;
  color: #fff;
  transition: color 0.2s ease;
}
.site-footer__menu a:hover {
  color: var(--onyx-gold);
}

.site-footer__disclaimer {
  max-width: 640px;
}
.site-footer__disclaimer-title {
  font-family: var(--font-lato);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer__disclaimer-text {
  font-family: var(--font-lato);
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
  opacity: 0.9;
}

.site-footer__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__logo-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.site-footer__logo-link img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
}
a.site-footer__logo-link:hover {
  opacity: 0.75;
}

.site-footer__copyright {
  font-family: var(--font-lato);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 16px 32px;
  }
  .site-footer__menu {
    gap: 16px 20px;
  }
  .site-footer__menu a {
    font-size: 13px;
  }
}
