.site-footer {
  background: var(--bg-blue-dark);
  color: var(--bg-white);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand strong {
  font-size: 1.6rem;
  font-weight: 950;
}

.footer-brand p,
.footer-copy {
  margin: 0.35rem 0 0;
  color: rgba(255,255,255,0.8);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  color: var(--bg-white);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--bg-yellow);
}