.site-footer {
  display: block;
  position: relative;
  background: #070909;
  color: #f1eee6;
  border-top: 1px solid rgba(241, 238, 230, .17);
  padding: clamp(64px, 8vw, 105px) clamp(20px, 4vw, 62px) 28px;
  font-family: Manrope, "DM Sans", sans-serif;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: clamp(38px, 8vw, 120px);
  padding-bottom: clamp(58px, 8vw, 100px);
}

.site-footer__brand img { display: none; }
.site-footer__brand p { max-width: 380px; color: rgba(241, 238, 230, .58); font-size: 13px; line-height: 1.75; }
.site-footer__label { display: block; margin-bottom: 22px; color: #c4a36d; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.site-footer__links, .site-footer__contact { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__links { gap: 12px; }
.site-footer__contact { gap: 11px; }
.site-footer a { color: inherit; text-decoration: none; }

.site-footer__links a,
.site-footer__contact a { color: rgba(241, 238, 230, .64); font-size: 12px; transition: color .3s, transform .3s; }
.site-footer__links a:hover,
.site-footer__contact a:hover { color: #f1eee6; transform: translateX(3px); }
.site-footer__contact strong { margin-bottom: 8px; font: 400 clamp(23px, 2.5vw, 34px)/1.1 "Playfair Display", serif; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(241, 238, 230, .13);
  color: rgba(241, 238, 230, .38);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a:focus-visible { outline: 1px solid #c4a36d; outline-offset: 4px; }

@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 9px; }
}

@media (max-width: 440px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
}
