.site-footer {
  --footer-paper: #f6f1e7;
  --footer-muted: rgba(246, 241, 231, .76);
  background: #1f1a14;
  color: var(--footer-paper);
  padding: clamp(3.5rem, 7vw, 6.2rem) clamp(1.25rem, 5vw, 5rem) 1.4rem;
  text-align: left;
}
.site-footer * { box-sizing: border-box; }
.site-footer__inner { width: min(1280px, 100%); margin: 0 auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr .85fr .85fr; gap: clamp(2.5rem, 6vw, 6rem); }
.site-footer__brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--f-d, Georgia, serif); font-size: 1.55rem; font-weight: 600; }
.site-footer__brand img { width: 28px; height: 28px; }
.site-footer__about { max-width: 38ch; margin: 1.1rem 0 1.5rem; color: var(--footer-muted); line-height: 1.65; font-size: .92rem; }
.site-footer__title { margin: 0 0 1.1rem; color: #d9876c; font: 800 .72rem/1.2 var(--f-b, system-ui, sans-serif); letter-spacing: .16em; text-transform: uppercase; }
.site-footer__links { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.site-footer__links a { color: var(--footer-muted); font-size: .9rem; line-height: 1.45; text-decoration: none; transition: color .2s; }
.site-footer__links a:hover, .site-footer__links a:focus-visible { color: #fff; }
.site-footer__address { display: grid; gap: .7rem; margin: 0; font-style: normal; }
.site-footer__address a, .site-footer__address span { color: var(--footer-muted); font-size: .9rem; line-height: 1.45; text-decoration: none; }
.site-footer__address a:hover, .site-footer__address a:focus-visible { color: #fff; }
.site-footer__all-contacts { display: inline-block; margin-top: 1.15rem; color: #d9876c; font-size: .84rem; font-weight: 700; text-decoration: none; }
.site-footer__all-contacts:hover, .site-footer__all-contacts:focus-visible { color: #fff; }
.site-footer__social { display: flex; align-items: center; gap: .65rem; }
.site-footer__social a, .site-footer__social span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(246, 241, 231, .24); border-radius: 50%; background: rgba(255, 255, 255, .04); transition: transform .2s, border-color .2s, background .2s; }
.site-footer__social a:hover, .site-footer__social a:focus-visible { transform: translateY(-2px); border-color: #d9876c; background: rgba(184, 90, 60, .18); }
.site-footer__social img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.site-footer__social .is-disabled { opacity: .38; cursor: not-allowed; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: clamp(2.8rem, 6vw, 5rem); padding-top: 1.35rem; border-top: 1px solid rgba(246, 241, 231, .15); color: rgba(246, 241, 231, .68); font-size: .74rem; line-height: 1.55; }
.site-footer__bottom span:last-child { padding-right: 4.5rem; text-align: right; }
.site-footer a:focus-visible { outline: 3px solid rgba(217, 135, 108, .45); outline-offset: 4px; }
@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__company { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .site-footer { padding-top: 3rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .site-footer__company { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: .45rem; }
  .site-footer__bottom span:last-child { padding-right: 0; text-align: left; }
}
