/* Footer */
.site-footer {
  padding-top: 70px;
  background: #0a2117;
  color: #dbe4dd;
}

.site-footer__grid {
  display: grid;
  padding-bottom: 64px;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(150px, 1fr));
  gap: 44px;
}

.footer-brand__name {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #aebcb2;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: #e1bd64;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.site-footer__grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--patina-gold);
  text-underline-offset: 4px;
}

.site-footer__grid span:not(.footer-brand__name) {
  color: #aebcb2;
}

.site-footer__bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #294336;
  color: #8fa196;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
