.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 26px 0;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer p {
  margin: 0;
  font-size: .85rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .2s ease;
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); }
