.site-footer {
  padding: 0 clamp(18px, 4.4vw, 70px) clamp(28px, 3.4vw, 52px);
  color: #f4f3ef;
  background: var(--background);
}

.footer-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.footer-top {
  position: relative;
  padding: 24px 0;
}

.footer-top::before,
.footer-wordmark::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  border-top: 1px solid rgba(244, 243, 239, 0.13);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.footer-top p,
.footer-bottom p {
  margin: 0;
  color: #777873;
}

.footer-top nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 42px);
}

.footer-top a,
.footer-bottom a {
  color: #a5a49e;
  transition: color 180ms ease;
}

.footer-top a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-wordmark {
  position: relative;
  display: grid;
  min-height: clamp(220px, 28vw, 450px);
  padding: clamp(38px, 5vw, 76px) 0 clamp(32px, 4vw, 58px);
  border-bottom: 1px solid rgba(244, 243, 239, 0.13);
  place-items: center;
}

.footer-wordmark span {
  color: #f4f3ef;
  font-size: clamp(132px, 23vw, 370px);
  font-weight: 300;
  letter-spacing: -0.105em;
  line-height: 0.62;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-0.12em);
  transition: color 300ms ease;
}

.footer-wordmark:hover span {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom p:nth-child(2) {
  color: #575852;
}
