
.site-footer{
  margin-top:26px;
  background:#4d3d31;
  color:#fff;
}

.site-footer__top{padding:44px 0 32px}

.site-footer__brand{display:flex; justify-content:center; margin-bottom:18px}
.site-footer__logo{width:74px; height:74px; object-fit:contain; display:block}

.site-footer__text{
  max-width:720px;
  margin:0 auto 18px;
  text-align:center;
  font-weight:500;
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,.9);
}

.site-footer__nav{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  font-size:12px;
}
.site-footer__nav-link{color:#fff; text-decoration:none; font-weight:500}
.site-footer__nav-link:hover{ text-decoration:underline }
.site-footer__sep{color:rgba(255,255,255,.6)}

.site-footer__bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding:18px 0;
}
.site-footer__bottom-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.site-footer__copy{
  font-weight:500;
  font-size:12px;
  color:rgba(255,255,255,.9);
}
.site-footer__copy-brand{
  display:block;
  margin-top:2px;
  color:#EFBD50;
  font-weight:500;
}

.site-footer__dev{
  font-size:12px;
  color:rgba(255,255,255,.85);
  font-weight:500;
  text-align:center;
}
.site-footer__dev-link{color:#EFBD50; text-decoration:none; font-weight:500}
.site-footer__dev-link:hover,
.site-footer__dev-link:focus{text-decoration:underline; outline:none}

.site-footer__social{display:flex; align-items:center; gap:10px; justify-content:flex-end}
.social{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#fff;
  color:#2b1f18;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.social:hover,
.social:focus{filter:brightness(.92); outline:none}

@media (max-width: 520px){
  .site-footer__bottom-inner{grid-template-columns:1fr; justify-items:center}
  .site-footer__copy{text-align:center}
  .site-footer__social{justify-content:center}
}

