.site-footer{
  background:#000;
  color:#e5e5e5;
  border-top:2px solid #8a611c;
  margin:0;
}

.footer-inner{
  width:100%;
  box-sizing:border-box;
  padding:24px 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.footer-brand h3{
  margin:0 0 6px 0;
  font-size:22px;
  color:#e0b35a;
}

.footer-brand p{
  margin:0;
  font-size:15px;
  color:#d6d6d6;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  text-decoration:none;
  color:#f3f3f3;
  font-size:16px;
  font-weight:600;
}

.footer-links a:hover{
  color:#e0b35a;
}

@media (max-width: 800px){
  .site-footer{
    padding-bottom:76px;
  }

  .footer-inner{
    padding:22px 16px;
  }

  .footer-links{
    display:none;
  }
}
