/* Shared site footer — single source of truth for the public marketing/legal footer.
   Authored to match the landing page (index.html) footer exactly. Scoped to
   `.site-footer` with element+class specificity so it overrides each page's
   legacy bare `footer{}` rules regardless of load order. All values are
   hardcoded (no CSS-var dependency) so the footer renders identically on any
   page, whatever design tokens that page happens to define. */

footer.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(3rem, 2rem + 3.2vw, 4.5rem) 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-align: left;
  background: transparent;
  margin-top: 0;
}
.site-footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.site-footer a:hover { color: #FFFFFF; }

.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: left;
}
.site-footer .footer-brand { max-width: 260px; }
.site-footer .footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer .footer-mark { height: 20px; width: auto; color: #C9933A; flex-shrink: 0; }
/* Explicit white on the wordmark span — some pages carry a leftover
   `footer .footer-logo span { color: accent }` rule from their old footer that
   would otherwise leak through and tint the logo gold. */
.site-footer .footer-logo span { color: #FFFFFF; }
.site-footer .footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}
.site-footer .footer-columns { display: flex; gap: 48px; flex-wrap: wrap; }
.site-footer .footer-col { display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.site-footer .footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-cta p { margin: 0 0 12px; color: #FFFFFF; font-weight: 600; }
.site-footer .footer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #C9933A 0%, #FFB740 100%);
  color: #201603;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer .footer-cta-btn:hover { color: #201603; opacity: 0.9; }

.site-footer .footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .footer-bottom p { margin: 0; }

@media (max-width: 640px) {
  .site-footer .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .site-footer .footer-brand { max-width: 100%; }
  .site-footer .footer-trust-badges { align-items: center; }
  .site-footer .footer-columns {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 32px;
  }
  .site-footer .footer-col { align-items: center; gap: 0; }
  .site-footer .footer-col a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    min-height: 44px;
    box-sizing: border-box;
  }
  .site-footer .footer-cta { text-align: center; }
}
