/* Footer shell */

.site-footer {
  margin-top: var(--wp--preset--spacing--16);
  padding: 0;
  color: var(--wp--preset--color--base);
}

.site-footer__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.site-footer__top {
  display: flex;
  min-height: 550px;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 19, 18, 0.52) 0%, rgba(20, 19, 18, 0.36) 42%, rgba(20, 19, 18, 0.16) 100%),
    url("../img/footer-mountains-bg.jpg") center center / cover no-repeat;
}

.site-footer__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 18, 0) 48%, rgba(20, 19, 18, 0.34) 100%);
  pointer-events: none;
}

.site-footer__inner--top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--wp--preset--spacing--6);
  padding: var(--wp--preset--spacing--16) var(--wp--preset--spacing--6) var(--wp--preset--spacing--10);
}

.site-footer__brand {
  margin: 0;
}

.site-footer__logo .wp-block-site-logo,
.site-footer__logo .custom-logo-link {
  display: inline-flex;
  margin: 0;
}

.site-footer__logo .custom-logo,
.site-footer__logo .wp-block-site-logo img {
  display: block;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.site-footer__brand .wp-block-site-logo + .site-footer__site-name {
  display: none;
}

.site-footer__site-name {
  margin: 0;
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl, 2.25rem);
}

.site-footer__content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--6);
  margin-block-start: 0;
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--xl);
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}

.site-footer__socials,
.site-footer__address,
.site-footer__contact {
  margin: 0;
}

.site-footer__socials {
  display: grid;
  gap: var(--wp--preset--spacing--2);
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-footer__socials a img {
  height: 20px;
}

.site-footer__address p,
.site-footer__contact p {
  margin: 0;
}

.site-footer__address span,
.site-footer__contact span {
  display: block;
}

.site-footer__top a {
  color: var(--wp--preset--color--base);
  text-decoration-color: rgba(244, 243, 234, 0.55);
}

.site-footer__top a:hover {
  color: var(--wp--preset--color--accent);
  text-decoration-color: currentcolor;
}

.site-footer__bottom {
  background: #3a3030;
  color: var(--wp--preset--color--base);
  margin-block-start: 0;
}

.site-footer__inner--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--6);
  padding: var(--wp--preset--spacing--4) var(--wp--preset--spacing--6);
}

.site-footer__partners {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--6);
  margin: 0;
}

.site-footer__partners p,
.site-footer__meta p {
  margin: 0;
}

.site-footer__partners a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  text-transform: none;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--sans);
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.35;
  text-align: right;
}

.site-footer__bottom a {
  color: var(--wp--preset--color--base);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--wp--preset--color--accent);
}

@media (max-width: 960px) {
  .site-footer__content {
    font-size: var(--wp--preset--font-size--lg);
  }

  .site-footer__inner--bottom {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer__meta {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-footer__top {
    background-position: center top;
  }

  .site-footer__inner--top {
    padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--4);
  }

  .site-footer__content {
    flex-direction: column;
    gap: var(--wp--preset--spacing--4);
    font-size: var(--wp--preset--font-size--md);
  }

  .site-footer__socials {
    display: flex;
  }

  .site-footer__inner--bottom {
    padding: var(--wp--preset--spacing--6) var(--wp--preset--spacing--4);
  }

  .site-footer__partners {
    justify-content: center;
    gap: var(--wp--preset--spacing--4);
  }

  .site-footer__partners a {
    font-size: var(--wp--preset--font-size--xs);
  }

  .site-footer__meta {
    font-size: var(--wp--preset--font-size--xs);
  }
}
