/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — Footer Styles
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.84);
}

.footer-gold-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--saffron-light), var(--gold), transparent);
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.88rem;
}

.footer-link:hover {
  color: var(--saffron-light);
}

.footer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
