.ate-footer{
  width:100%;
  background:#ffffff;
  box-sizing:border-box;
}

.ate-footer *{
  box-sizing:border-box;
}

/* MAIN FOOTER */
.ate-footer-main{
  width:100%;
  background:#ffffff;
  padding:70px 20px 24px;
}

.ate-footer-wrap{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.35fr .85fr 1fr 1.25fr;
  gap:48px;
  align-items:flex-start;
}

/* BRAND */
.ate-footer-brand{
  width:100%;
}

.ate-footer-logo{
  display:inline-flex;
  margin-bottom:22px;
}

.ate-footer-logo img{
  width:115px;
  max-width:115px;
  height:auto;
  display:block;
}

.ate-footer-brand p{
  margin:0 0 24px;
  color:#1E293B;
  font-family:'Inter', sans-serif;
  font-size:15px;
  line-height:1.7;
  font-weight:500;
}

/* SOCIAL */
.ate-footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.ate-footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  border:2px solid #D89216;
  color:#2C061F;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.25s ease;
  flex:0 0 38px;
}

.ate-footer-social a:hover{
  background:#D89216;
  color:#ffffff;
  transform:translateY(-2px);
}

.ate-footer-social svg{
  width:22px;
  height:22px;
  display:block;
}

/* COLUMNS */
.ate-footer-col{
  width:100%;
}

.ate-footer-col h3{
  margin:0 0 22px;
  color:#2C061F;
  font-family:'Cinzel', serif;
  font-size:17px;
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
}

.ate-footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.ate-footer-col li{
  margin:0;
  padding:0;
}

.ate-footer-col a{
  color:#1E293B;
  font-family:'Inter', sans-serif;
  font-size:15px;
  line-height:1.4;
  font-weight:500;
  text-decoration:none;
  transition:.25s ease;
}

.ate-footer-col a:hover{
  color:#D89216;
  padding-left:4px;
}

/* CONTACT */
.ate-footer-contact a{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
}

.ate-footer-contact a:hover{
  padding-left:0;
}

.ate-footer-contact svg{
  width:18px;
  min-width:18px;
  height:18px;
  color:#D89216;
  margin-top:2px;
}

/* BOTTOM */
.ate-footer-bottom{
  max-width:1200px;
  width:100%;
  margin:48px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(44,6,31,.13);
  text-align:center;
}

.ate-footer-bottom p{
  margin:0;
  color:#1E293B;
  font-family:'Inter', sans-serif;
  font-size:14px;
  font-weight:500;
}

.ate-footer-home-link{
  color:inherit;
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.ate-footer-home-link:hover{
  color:#D89216;
}

/* TABLET */
@media(max-width:1024px){
  .ate-footer-wrap{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

/* MOBILE */
@media(max-width:700px){
  .ate-footer-main{
    padding:55px 16px 22px;
  }

  .ate-footer-wrap{
    grid-template-columns:1fr;
    gap:34px;
  }

  .ate-footer-logo img{
    width:100px;
    max-width:100px;
  }
}