/* ───────────────────────── Footer Component ───────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 40px 0 48px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.site-footer .footer-container {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.site-footer .footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer .footer-brand {
  font-weight: 900;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.site-footer .footer-brand .theme-drum {
  height: 32px;
  width: auto;
  margin-right: 10px;
}

.site-footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer .footer-links a {
  transition: color 0.18s ease;
  color: var(--text-secondary);
}

.site-footer .footer-links a:hover {
  color: var(--text-primary);
}

.site-footer .footer-desc {
  margin: 0;
  max-width: 70ch;
  color: var(--text-muted);
}

.site-footer .footer-legal {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}
