.site-footer {
  background: var(--black);
  color: #fff;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
  padding: 8px;
  background: #fff;
  border-radius: var(--radius);
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.footer-title {
  font-weight: 900;
}

.footer-social,
.footer-bottom a {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
