/* ── FOOTER (full — homepage) ────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  position: relative; z-index: 1;
  background: rgba(33,33,36,0.92);
}
footer .foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.25rem;
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.foot-links {
  display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center;
}
.foot-links a {
  font-size: 0.75rem; color: var(--muted); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.05em; text-transform: uppercase;
}
.foot-links a:hover { color: var(--white); }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; align-items: flex-start;
}
.copy { font-size: 0.72rem; color: #555559; line-height: 1.6; }
.disclaimer { font-size: 0.68rem; color: #44444a; max-width: 560px; line-height: 1.6; }

/* ── FOOTER (simple — interior pages) ────── */
footer.footer-simple {
  padding: 2rem 0;
  margin-top: 5rem;
}
footer.footer-simple .foot-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-bottom: none; padding-bottom: 0; margin-bottom: 0;
}
footer.footer-simple .copy { font-size: 0.72rem; color: var(--muted); }
footer.footer-simple .disclaimer { font-size: 0.68rem; color: #55555a; max-width: 520px; line-height: 1.5; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 560px) {
  footer .foot-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .foot-links { gap: 1.25rem; }
}
