.footer-scene-wrap {
  position: relative;
  height: 220px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
#footer-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; cursor: grab; }
#footer-canvas:active { cursor: grabbing; }

@media (max-width: 640px) {
  .footer-scene-wrap { height: 150px; }
}
.footer-scene-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}

footer {
  padding: 40px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
.footer-links { justify-self: center; }
.footer-copy { justify-self: end; }
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -1px; color: #333; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #444; text-decoration: none; }
.footer-links a:hover { color: #666; }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: #333; }

@media (max-width: 500px) {
  footer { padding: 32px 20px; grid-template-columns: 1fr; justify-items: start; }
  .footer-links, .footer-copy { justify-self: start; }
}
