/* ===== FOOTER ===== */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-faint);
}

.footer-center {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-center a,
.footer-right a {
  font-family: 'Raleway', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-center a:hover,
.footer-right a:hover { color: var(--accent); }

.footer-right {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  .site-footer { padding: 32px 24px; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-center,
  .footer-right { justify-content: center; }
}
