.site-footer {
  background: var(--lea-night-deep);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lea-gold-soft);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(3, minmax(130px, 0.68fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  gap: 0.9rem 1.1rem;
}

.site-footer__seal {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  padding: 7px;
  border-radius: 50%;
  background: var(--lea-ivory);
}

.site-footer__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__logo {
  margin: 0;
  color: var(--lea-white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer__motto {
  margin: 0.35rem 0 0;
  color: var(--lea-gold-soft);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer__blurb {
  grid-column: 1 / -1;
  max-width: 46ch;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.75;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
}

.site-footer__col p {
  margin: 0;
}

.site-footer__col address {
  max-width: 24ch;
  font-style: normal;
  line-height: 1.6;
}

.site-footer__contact-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer__head {
  margin: 0 0 0.75rem;
  color: var(--lea-gold-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer__company {
  padding-block: 1.8rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__company-title {
  margin: 0 0 1.2rem;
  color: var(--lea-gold-soft);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem clamp(1.5rem, 4vw, 3.5rem);
  margin: 0;
}

.site-footer__company-grid div {
  min-width: 0;
}

.site-footer__company-grid dt {
  margin-bottom: 0.28rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.64rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer__company-grid dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.site-footer__company-grid dd:first-of-type {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.site-footer .site-footer__credit {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.48rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1;
}

.site-footer__credit-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  padding: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 0.25s var(--ease-birth), background-color 0.25s ease;
}

.site-footer__credit-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__credit strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  font-weight: 600;
}

.site-footer .site-footer__credit:hover {
  color: var(--lea-gold-soft);
}

.site-footer__credit:hover .site-footer__credit-mark {
  background: var(--lea-white);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .site-footer__company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-footer__brand,
  .site-footer__col:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    flex-direction: column;
  }

  .site-footer__legal-copy {
    flex-direction: column;
  }

  .site-footer__company-grid {
    grid-template-columns: 1fr;
  }
}
