.site-footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(132, 97, 63, 0.24);
  background: #eee5dd;
  color: #514c47;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-footer__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 20px clamp(22px, 5vw, 64px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
  flex-wrap: wrap;
}

.site-footer a {
  color: #514c47;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration-color: #b89566;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #8e6c42;
}

.site-footer__bottom {
  margin: 0;
}

.site-footer__bottom p {
  margin: 0;
  color: #766f68;
  font-size: 0.72rem;
  font-weight: 650;
}

.site-footer__back-to-top {
  padding-left: 18px;
  border-left: 1px solid rgba(132, 97, 63, 0.24);
}

@media (max-width: 680px) {
  .site-footer__inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__bottom {
    gap: 18px;
  }

  .site-footer__links {
    gap: 14px 20px;
  }

  .site-footer__back-to-top {
    padding-left: 0;
    border-left: 0;
  }
}

@media print {
  .site-footer {
    display: none;
  }
}
