.site-footer {
  background: var(--color-black);
  color: var(--color-text-inverse);
  padding: 2rem 1.25rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.footer-copy,
.footer-credit {
  margin: 0;
  font-family: var(--font-fa);
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.footer-credit a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.25s var(--ease-smooth), opacity 0.25s var(--ease-smooth);
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #f3d58a;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .site-footer {
    padding-inline: 1rem;
  }

  .footer-copy,
  .footer-credit {
    font-size: 0.75rem;
  }
}
