.site-footer {
  position: relative;
  z-index: 10;
  padding: 36px var(--pad-x);
  border-top: 1px solid rgba(200,240,80,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-25);
  letter-spacing: 0.08em;
}
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-social {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-40);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  cursor: none;
}
.footer-social::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.footer-social:hover { color: var(--accent); }
.footer-social:hover::after { transform: scaleX(1); }

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
