/* ============================================================================
   FB-APP FOOTER — clean custom footer (2026-05-01).
   Renders from partials/fb-footer.php. Salient's #footer-outer is hidden.
   Locked dark in all themes per the design contract.
   ============================================================================ */

#footer-outer,
#footer-widgets,
#copyright {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
}

.fb-app-footer {
  background: #050506;
  border-top: 1px solid #1a1a1e;
  color: #a1a1aa;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  -webkit-font-smoothing: antialiased;
  padding: 56px 36px 40px;
  margin-top: 80px;
}
.fb-app-footer * { box-sizing: border-box; }

.fb-app-footer__inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.fb-app-footer__brand p {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.6;
  margin: 0 0 14px;
}
.fb-app-footer__disclaimer {
  font-size: 12px;
  color: #7a7a86;
  line-height: 1.6;
  margin: 0;
}

.fb-app-footer__col h4 {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c4c4cc;
  margin: 0 0 16px;
}
.fb-app-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.fb-app-footer__col a {
  font-size: 13px;
  color: #d4d4d8;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.fb-app-footer__col a:hover { color: #c9a962; text-decoration: none; }

.fb-app-footer__bottom {
  width: 100%;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1a1a1e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #7a7a86;
}
.fb-app-footer__bottom a { color: #7a7a86; text-decoration: none; }
.fb-app-footer__bottom a:hover { color: #c9a962; }

@media (max-width: 980px) {
  .fb-app-footer { padding: 40px 20px 28px; }
  .fb-app-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fb-app-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
