.site-footer {
  background: transparent;
  color: rgba(246, 251, 251, 0.72);
  font-family: var(--font-body);
}

.site-footer--on-background {
  position: relative;
  z-index: 25;
  margin-top: calc(var(--footer-height) * -1);
  padding-bottom: 1rem;
  text-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.76);
}

.site-footer__inner {
  margin-inline: clamp(1rem, 5vw, 1.5rem);
  padding: 1rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  font-size: clamp(0.72rem, 0.78vw, 0.88rem);
  line-height: 1.4;
}

.site-footer__brand,
.site-footer__copy,
.site-footer__credit {
  display: block;
  margin: 0;
  font-family: var(--font-body);
  font-size: inherit;
  line-height: inherit;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__credit a {
  color: rgba(246, 251, 251, 0.72);
  font-size: 1.05em;
  text-transform: none;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: var(--white);
  outline: none;
  transform: translateY(-1px);
}
