.site-footer {
  background: var(--st-navy-light);
  border-top: 1px solid var(--st-navy-mid);
  padding: var(--st-space-3xl) 0 0;
  margin-top: var(--st-space-4xl);
}
.site-footer__grid {
  display: grid;
  gap: var(--st-space-xl);
  grid-template-columns: 1.4fr repeat(4, 1fr);
  padding-bottom: var(--st-space-2xl);
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
}
.site-footer__tagline {
  color: var(--st-white-60);
  font-size: 14px;
  max-width: 280px;
  margin-top: var(--st-space-sm);
}
.site-footer__heading {
  font-family: var(--st-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--st-white-60);
  margin: 0 0 var(--st-space-md);
}
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--st-space-sm);
}
.site-footer__menu a { color: var(--st-white-90); font-size: 14px; }
.site-footer__menu a:hover { color: var(--st-gold); }
.site-footer__bottom {
  padding: var(--st-space-lg) 0;
  border-top: 1px solid var(--st-navy-mid);
  font-size: 12px;
  line-height: 1.6;
  color: var(--st-white-20);
}
/* ---- Legal-terms modal ---- */
.terms-modal { position: fixed; inset: 0; z-index: 300; }
.terms-modal[hidden] { display: none; }
.terms-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 21, 0.75);
  backdrop-filter: blur(2px);
}
.terms-modal__panel {
  position: relative;
  max-width: 720px;
  max-height: 82vh;
  margin: 6vh auto;
  background: var(--st-navy-light);
  border: 1px solid var(--st-navy-mid);
  border-radius: var(--st-radius-card);
  padding: var(--st-space-xl) var(--st-space-xl) var(--st-space-lg);
  overflow-y: auto;
}
.terms-modal__close {
  position: absolute;
  top: var(--st-space-md);
  right: var(--st-space-md);
  background: none;
  border: none;
  color: var(--st-white-60);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.terms-modal__close:hover { color: var(--st-white); }
#footer-terms-title { padding-right: var(--st-space-2xl); }
#footer-terms-body {
  font-size: 14px;
  color: var(--st-white-90);
  line-height: 1.7;
}
#footer-terms-body h1 { font-size: 22px; }
#footer-terms-body h2 { font-size: 17px; margin-top: var(--st-space-lg); }
#footer-terms-body p { color: var(--st-white-90); }
#footer-terms-body a { color: var(--st-gold); }