/* ==========================================================
   FOOTER LANDSCAPE
========================================================== */

.footer-landscape {
  position: relative;

  left: 50%;
  right: 50%;

  width: 100vw;

  margin-left: -50vw;
  margin-right: -50vw;

  overflow: hidden;
  background: var(--color-primary-dark);

  line-height: 0;
}

.footer-landscape img {
  display: block;
  width: 100%;
  height: auto;
  /* opacity: .97; */
}

html,
body {
  overflow-x: hidden;
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
  position: relative;
  background: var(--color-primary-dark);
  color: #fff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: var(--link-underline-thickness);
  text-underline-offset: var(--link-underline-offset);
}

.site-footer__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.site-footer__main {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.site-footer__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: stretch;
}

.footer-logo {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.footer-logo img {
  height: 100%;
  width: auto;
  max-height: 140px;
  object-fit: contain;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
}

.footer-contact__item i {
  width: 18px;
  text-align: center;
  color: #fff;
  opacity: .95;
  margin-top: .22rem;
  flex-shrink: 0;
}

.footer-contact__text {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.footer-contact__item a {
  color: rgba(255,255,255,.9);
}

.footer-contact__item a:hover {
  color: #fff;
}

.footer-contact__text {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.site-footer__social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.site-footer__social a {
  width: 54px;
  height: 54px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  color: #fff;
  font-size: 1.15rem;

  backdrop-filter: blur(8px);

  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.site-footer__social a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px rgba(0,0,0,.12);

  text-decoration: none;
}

/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.site-footer__bottom {
  background: rgba(0,0,0,.16);
  border-top: 1px solid rgba(255,255,255,.06);
}

.site-footer__bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.footer-copy {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.footer-legal .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-legal .menu-item {
  margin: 0;
  padding: 0;
}

.footer-legal a {
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}

.footer-legal a:hover {
  color: #fff;
}

.site-footer__bottom-inner {
  flex-direction: row-reverse;
}

/* ==========================================================
   FOOTER RESPONSIVE
========================================================== */

@media (max-width: 900px) {

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-contact {
    justify-items: center;
  }

  .footer-contact__item {
    justify-content: center;
    text-align: left;
  }

  .footer-contact {
    justify-items: center;
  }

  .footer-contact__item {
    justify-content: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__bottom-inner {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 0;
  }

  .footer-legal {
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .footer-legal .menu {
    justify-content: center;
    text-align: center;
    gap: .75rem 1.25rem;
  }

  .footer-legal .menu-item {
    text-align: center;
  }

  .footer-landscape img {
    min-height: 90px;
    object-fit: cover;
  }
}
