footer {
  border-top: 1px solid var(--rose-100); padding: 2.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1800px; margin: 0 auto; gap: 1rem; flex-wrap: wrap;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--rose-600); text-decoration: none; letter-spacing: 0.08em; display: block; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--rose-600); }
.footer-copy { font-size: 0.78rem; color: var(--muted); font-family: var(--font-body); }

/* RESPONSIVE */
@media (max-width: 600px) {
  footer { flex-direction: column; align-items: flex-start; }
}