/* ==========================================================================
   Psychic Visions AI — Footer
   Multi-column footer with legal links and brand mark.
   ========================================================================== */

.footer {
  border-top: 1px solid rgba(245, 215, 122, 0.1);
  padding: var(--space-2xl) var(--section-pad-x);
  background: rgba(10, 6, 20, 0.5);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dim);
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--color-gold-light), var(--color-gold));
  color: var(--color-bg);
  font-size: 0.7rem;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-copy {
  color: var(--color-dim);
  font-size: 0.8rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}
