.site-footer {
  background-color: var(--color-surface-2);
  padding: 60px var(--container-pad);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.site-footer__logo img {
  max-height: 64px;
  width: auto;
}

.site-footer__nav .footer-menu {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__nav a {
  font-family: var(--font-body);
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: var(--color-yellow);
}

.site-footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.site-footer__disclaimer p {
  font-family: var(--font-body);
  font-size: 12px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
  opacity: 0.85;
}

.site-footer__logos {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  transition: opacity 0.15s ease;
}

.site-footer__logo-item:hover {
  opacity: 0.8;
}

.site-footer__logo-item img {
  max-height: 28px;
  width: auto;
}

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

@media (max-width: 600px) {
  .site-footer {
    padding: 40px var(--container-pad);
  }
  .site-footer__nav .footer-menu {
    gap: 16px;
    align-items: center;
  }
}
