.site-footer {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px 42px 34px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.88);
  font-size: 9px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-copy {
  justify-self: start;
  margin: 0;
}

.footer-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.footer-location {
  justify-self: end;
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px 30px;
    text-align: center;
  }

  .footer-copy,
  .footer-links,
  .footer-location {
    justify-self: center;
  }

  .footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }
}