.site-footer {
  padding: 42px clamp(20px, 4vw, 64px) calc(42px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(21, 22, 21, 0.12);
  background: #151615;
  color: #ffffff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 6vw, 72px);
  width: min(100%, 1360px);
  margin: 0 auto;
}

.site-footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer-logo {
  width: clamp(128px, 14vw, 168px);
  max-height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer-copy {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.site-footer-social-link {
  min-height: 40px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer-social-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer-heading {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer-link {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
}

.site-footer-link:hover,
.site-footer-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  width: min(100%, 1360px);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 34px;
  }

  .site-footer-inner,
  .site-footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer-nav {
    gap: 22px;
  }

  .site-footer-column {
    gap: 6px;
  }

  .site-footer-link {
    min-height: 40px;
  }
}
