.site-footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 4rem 1.25rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.site-footer a {
  color: rgba(247, 244, 238, 0.75);
}
.site-footer a:hover {
  color: var(--ivory);
}
.site-footer .footer-logo {
  display: inline-flex;
  line-height: 0;
}
.site-footer h2,
.site-footer p.label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.footer-base {
  max-width: 72rem;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  font-size: 12px;
  color: rgba(247, 244, 238, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
