/* site-legal bar — copyright + privacy link, bottom-right, scroll-revealed */
.site-legal {
  position: fixed;
  bottom: 1.75rem;
  right: 2rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-family: Abcdiatypemono, sans-serif;
  font-size: 0.575rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.site-legal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-legal-copy {
  color: rgba(255, 255, 255, 0.38);
}

a.site-legal-link {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.25s ease;
}

a.site-legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 479px) {
  .site-legal {
    bottom: 1rem;
  }
}
