/* =========================================================
   ALSTON FOOTER
========================================================= */

.alston-footer{
  background: #0a0a0a;
  color: rgba(255,255,255,0.65);
  padding: 100px 64px 40px;
  font-family: 'Inter', -apple-system, sans-serif;
  overflow: hidden;
}

.alston-footer *,
.alston-footer *::before,
.alston-footer *::after{
  box-sizing: border-box;
}

.alston-footer__top{
  max-width: 1440px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.alston-footer__brand{
  min-width: 0;
}

.alston-footer__logo{
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
}

.alston-footer__logo img{
  width: auto;
  max-width: 250px;
  height: auto;
  display: block;
}

.alston-footer__desc{
  max-width: 320px;
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.alston-footer__badges{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}

.alston-footer__badges img{
  width: auto;
  max-width: 110px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.alston-footer__socials{
  display: flex;
  align-items: center;
  gap: 14px;
}

.alston-footer__socials a{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.alston-footer__socials a:hover{
  background: #c9a961;
  border-color: #c9a961;
}

.alston-footer__socials img{
  width: 15px;
  height: 15px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.alston-footer__socials a:hover img{
  filter: brightness(0);
  opacity: 1;
}

.alston-footer__col{
  min-width: 0;
}

.alston-footer__col h4{
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
}

.alston-footer__menu,
.alston-footer__bottom-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

.alston-footer__menu li{
  margin: 0 0 14px;
  padding: 0;
}

.alston-footer__menu a{
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.alston-footer__menu a:hover{
  color: #c9a961;
}

.alston-footer__contact-item{
  margin-bottom: 24px;
}

.alston-footer__contact-item:last-child{
  margin-bottom: 0;
}

.alston-footer__contact-item h5{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.alston-footer__contact-item p,
.alston-footer__contact-item a{
  margin: 0;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
}

.alston-footer__contact-item a:hover{
  color: #c9a961;
}

.alston-footer__bottom{
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,0.45);
}

.alston-footer__bottom p{
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}

.alston-footer__bottom-links{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 28px;
}

.alston-footer__bottom-menu{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.alston-footer__bottom-menu li{
  margin: 0;
  padding: 0;
}

.alston-footer__bottom-menu a,
.alston-footer__bottom-links > a{
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.alston-footer__bottom-menu a:hover,
.alston-footer__bottom-links > a:hover{
  color: #c9a961;
}

/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px){

  .alston-footer{
    padding: 90px 48px 40px;
  }

  .alston-footer__top{
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 42px;
  }

  .alston-footer__logo img{
    max-width: 140px;
  }

  .alston-footer__desc{
    max-width: 300px;
  }
}

/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px){

  .alston-footer{
    padding: 80px 32px 36px;
  }

  .alston-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 48px 40px;
    margin-bottom: 60px;
  }

  .alston-footer__brand{
    grid-column: span 2;
  }

  .alston-footer__desc{
    max-width: 420px;
  }

  .alston-footer__bottom{
    align-items: flex-start;
    flex-direction: column;
  }

  .alston-footer__bottom-links{
    justify-content: flex-start;
    gap: 22px;
  }

  .alston-footer__bottom-menu{
    gap: 22px;
  }
}

/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (min-width: 481px) and (max-width: 767px){

  .alston-footer{
    padding: 70px 24px 32px;
  }

  .alston-footer__top{
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 50px;
  }

  .alston-footer__logo img{
    max-width: 135px;
  }

  .alston-footer__badges{
    gap: 14px;
  }

  .alston-footer__badges img{
    max-width: 100px;
  }

  .alston-footer__bottom{
    align-items: flex-start;
    flex-direction: column;
  }

  .alston-footer__bottom-links{
    justify-content: flex-start;
    gap: 16px;
  }

  .alston-footer__bottom-menu{
    gap: 16px;
  }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (min-width: 320px) and (max-width: 480px){

  .alston-footer{
    padding: 60px 20px 30px;
  }

  .alston-footer__top{
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 44px;
  }

  .alston-footer__logo img{
    max-width: 285px;
  }

  .alston-footer__desc{
    font-size: 13px;
    line-height: 1.7;
  }

  .alston-footer__badges{
    gap: 12px;
    margin-bottom: 28px;
  }

  .alston-footer__badges img{
    max-width: 92px;
    max-height: 48px;
  }

  .alston-footer__socials a{
    width: 38px;
    height: 38px;
  }

  .alston-footer__socials img{
    width: 14px;
    height: 14px;
  }

  .alston-footer__col h4{
    margin-bottom: 18px;
  }

  .alston-footer__menu li{
    margin-bottom: 11px;
  }

  .alston-footer__contact-item p,
  .alston-footer__contact-item a{
    font-size: 17px;
  }

  .alston-footer__bottom{
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .alston-footer__bottom-links,
  .alston-footer__bottom-menu{
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}