.site-footer {
  /* navy veil over toile pattern to keep dark footer with a faint ornamental texture */
  background:
    linear-gradient(rgba(0, 39, 62, 0.92), rgba(0, 39, 62, 0.92)),
    url('../assets/pattern-toile-baroque-navy.webp') center / 460px repeat,
    var(--c-navy);
  color: var(--c-white);
  padding: var(--sp-xl) 0 var(--sp-md);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

.footer-logo {
  width: 48px;
  height: 48px;
}

.footer-logo-wordmark {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: var(--sp-md);
}

.footer-social a {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-social a:hover {
  color: var(--c-lilac);
}

.footer-copy {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--sp-sm);
  max-width: none;
}
