.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(244, 210, 122, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer a {
  color: var(--gold-3);
  font-weight: 600;
  transition: opacity 0.25s ease;
}

.footer a:hover {
  opacity: 0.8;
}