.site-footer{
  background:#3c2517;
  color:#fff;
  position:relative;
  z-index:2;
}

/* =========================
   LISTEN ON
========================= */

.footer-listen{
  background:#efe4d2;
  color:#3b3535;
  padding:70px 0 42px;
  text-align:center;
}

.footer-listen h2{
  font-size:34px;
  font-weight:700;
  margin:0 0 42px;
  letter-spacing:-1px;
}

.footer-listen__links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-listen__links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#3b3535;
  font-size:16px;
  font-weight:800;
  transition:.2s ease;
}

.footer-listen__links a:hover{
  opacity:.65;
  transform:translateY(-1px);
}

.footer-listen__links i{
  font-size:18px;
}

/* =========================
   NEWSLETTER
========================= */

.footer-newsletter{
  background:linear-gradient(to bottom,#efe4d2,#f2c98e);
  color:#3b3535;
  padding:95px 0 100px;
}

.footer-newsletter__inner{
  max-width:720px;
}

.footer-newsletter h2{
  font-size:32px;
  line-height:1.05;
  margin:0 0 26px;
  font-weight:900;
  letter-spacing:0px;
}

.footer-newsletter p{
  font-size:18px;
  line-height:1.45;
  max-width:560px;
  margin:0 0 28px;
}

.footer-signup{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 24px;
  background:#332d2d;
  color:#fff;
  border-radius:5px;
  font-weight:800;
  font-size:13px;
  letter-spacing:1px;
  transition:.2s ease;
}

.footer-signup:hover{
  opacity:.9;
  transform:translateY(-1px);
}

/* =========================
   MAIN FOOTER
========================= */

.footer-main{
  padding:80px 0 45px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:55px;
  margin-bottom:70px;
}

.footer-grid h4{
  font-size:15px;
  margin:0 0 24px;
  font-weight:700;
}

.footer-grid a{
  display:block;
  color:rgba(255,255,255,.82);
  font-size:14px;
  margin-bottom:10px;
  transition:.2s ease;
}

.footer-grid a:hover{
  color:#fff;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{
  display:grid;
  grid-template-columns:220px 1fr auto;
  align-items:center;
  gap:30px;
}

.footer-logo img{
  height:92px;
  width:auto;
  display:block;
}

.footer-socials{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-socials a{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:rgba(255,255,255,.82);
  font-weight:700;
}

.footer-socials a:hover{
  color:#fff;
}

.footer-bottom p{
  margin:0;
  font-size:13px;
  color:rgba(255,255,255,.75);
}


/* =========================
   FOOTER SOCIALS
========================= */

.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-socials a{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.82);
  transition:.2s ease;
}

.footer-socials a:hover{
  color:#fff;
  transform:translateY(-2px);
}

.footer-socials i{
  font-size:16px;
}


/* =========================
   NEWSLETTER FORM
========================= */

.footer-newsletter-form{
  display:flex;
  align-items:center;
  gap:12px;
  max-width:520px;
}

.footer-newsletter-form input{
  flex:1;
  height:52px;
  border:0;
  border-radius:6px;
  background:rgba(255,255,255,.75);
  padding:0 18px;
  font-size:15px;
  color:#332d2d;
  outline:none;
  font-family: 'Montserrat';
}

.footer-newsletter-form input::placeholder{
  color:rgba(51,45,45,.6);
}

.footer-newsletter-form button{
  height:52px;
  padding:0 26px;
  border:0;
  border-radius:6px;
  background:#332d2d;
  color:#fff;
  font-size:13px;
  font-weight: 700;
  font-family: 'Montserrat';
  letter-spacing:1px;
  cursor:pointer;
  transition:.2s ease;
}

.footer-newsletter-form button:hover{
  opacity:.92;
  transform:translateY(-1px);
}

@media(max-width:700px){

  .footer-newsletter-form{
    flex-direction:column;
    align-items:stretch;
  }

  .footer-newsletter-form button{
    width:100%;
  }

}


/* =========================
   MOBILE
========================= */

@media(max-width:1000px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-bottom{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo{
    justify-self:center;
  }

}

@media(max-width:700px){

  .footer-newsletter{
    padding:70px 0;
  }

  .footer-newsletter h2{
    font-size:38px;
  }

  .footer-newsletter p{
    font-size:16px;
  }

  .footer-listen{
    padding:55px 0 32px;
  }

  .footer-listen h2{
    font-size:28px;
  }

  .footer-listen__links{
    gap:16px;
  }

  .footer-listen__links a{
    font-size:14px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

}