/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-surface);
  border-top: 2px solid var(--color-border-light);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  margin-top: 0;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--color-border-light);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-section a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-section a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--color-text-light);
}

