/* ============================================================
   LUMINOVA — Footer
   Site-wide footer styles.
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.35);
  padding: 3.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.4rem;
  display: block;
}

.footer__logo span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer__copy {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
  line-height: 1.8;
}

.footer__copy a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer__copy a:hover {
  opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .footer__links {
    gap: 1rem;
  }
}
