.site-footer{
  background:#451600;
  background:linear-gradient(to bottom,#ffffff 0,#451600 1cm,#451600 100%);
  color:#fff;
  text-align:center;
  padding:40px 20px;
  font-family:inherit;
}

.footer-inner{
  max-width:1200px;
  margin:auto;
}
.copyright, .credits {
    font-family:'Caviar2',sans-serif;
}
.footer-logo{
  width:160px;
  max-width:50%;
  height:auto;
  margin-bottom:24px;
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:32px;
  margin:0;
  padding:0 0 24px 0;
  list-style:none;
}

.footer-social img{
  width:44px;
  height:44px;
  transition:transform .3s ease,filter .3s ease;
}

.footer-social a:hover img{
  transform:scale(1.2) rotate(6deg);
  filter:brightness(1.2);
}

.credits-link{
  font-family:'Caviar2',sans-serif;
  color: #b1aeae;         
  text-decoration:none;   
  transition:opacity .25s ease;
}
.credits-link:hover,
.credits-link:focus{
  opacity:.75;        
  text-decoration:underline;
}


.footer-address a {
  font-family: 'Caviar2', sans-serif;
  color: #b1aeae;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-address a:hover,
.footer-address a:focus {
  opacity: 0.75;
  text-decoration: underline;
}


@media (max-width:480px){
  .footer-logo{width:120px;}
  .footer-social{gap:20px;}
  .footer-social img{width:28px;height:28px;}
  .copyright,.credits, .footer-address{font-size:.75rem;}
}