/* footer.css — Site footer (outside #app, scroll-to-reveal on desktop) */

.site-footer {
  width: min(100%, 560px);
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(20px, 3.5vh, 36px) clamp(18px, 3.5vw, 30px);
  margin-bottom: clamp(32px, 6vh, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-link {
  font-size: 11px;
  color: #999;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.15s;
}

.footer-link:hover { color: #111; }
