/* ============================================================
   RON FOOTER — MINIMAL ONEPAGE
============================================================ */

.site-footer {
  margin-top: clamp(4rem, 6vw, 6rem);
  padding: 1.4rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.site-footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Links */
.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-legal a,
.footer-legal button {
  font-size: .75rem;
  color: var(--ink-2);
  opacity: .75;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;

  /* Button Reset */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--ink-1);
  opacity: 1;
}

/* Copyright */
.footer-copy {
  font-size: .7rem;
  color: var(--ink-2);
  opacity: .55;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {
  .site-footer-inner {
    flex-direction: column-reverse;
    /* Copyright at bottom */
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-copy {
    white-space: normal;
  }
}