/* ============================================================
   Site-wide footer — links on every page (home + legal + new pages).
   Self-contained: works on pages that don't load tokens.css
   (legal/static pages) by using literal colors. Matches the dark
   theme of the rest of the site.
   ============================================================ */

.site-footer{
  width:100%;
  max-width:960px;
  margin:clamp(3rem,8vw,5rem) auto 0;
  padding:clamp(1.5rem,3vw,2rem) clamp(1rem,3vw,1.5rem) clamp(2rem,4vw,2.5rem);
  border-top:1px solid rgba(96,165,250,.12);
  text-align:center;

  color:#94a3b8;
  font-family:"Geist","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size:.82rem;
  line-height:1.55;
}

.site-footer p{margin:0}

.site-footer a{
  color:#cbd5e1;
  text-decoration:none;
  transition:color .15s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible{
  color:#93c5fd;
  outline:none;
}

.footer-org{
  display:flex;
  flex-direction:column;
  gap:.25rem;
  margin-bottom:1.25rem;
}
.footer-name{
  font-size:.85rem;
  font-weight:500;
  color:#cbd5e1;
  letter-spacing:.04em;
}
.footer-address{color:#94a3b8}
.footer-contact{color:#94a3b8}
.footer-contact a{color:#cbd5e1}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:.4rem .55rem;
  margin-bottom:1rem;
  font-size:.8rem;
}
.footer-sep{
  display:inline-block;
  color:#475569;
  user-select:none;
}

.footer-copy{
  font-size:.78rem;
  color:#64748b;
  margin-bottom:.35rem;
}
.footer-disclaimer{
  text-align:center;
  font-size:.74rem;
  color:#64748b;
}

@media (max-width:600px){
  .site-footer{
    margin-top:clamp(2rem,8vw,3rem);
    padding:1.25rem 1rem 1.75rem;
  }
  .footer-nav{
    gap:.35rem .45rem;
    font-size:.78rem;
  }
}
