/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  margin-top: 2px;
}
.footer-legal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
