/* =============================================
   footer.css — footer, disclaimer, bottom bar
   ============================================= */

.site-footer {
  background: var(--text);
  color: #C7CEDB;
  padding-block: 3rem 2rem;
}

.footer-inner { display: flex; flex-direction: column; gap: 2rem; }

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
}
.footer-tagline { color: var(--accent); font-size: .95rem; margin-top: .25rem; }

.footer-disclaimer {
  max-width: 720px;
  color: #AEB6C4;
  font-size: .9rem;
  font-style: italic;
}
.footer-disclaimer strong { color: #E7EBF1; font-style: normal; }

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  padding: 0;
  margin: 0;
}
.footer-links li + li { margin-top: 0; }
.footer-links a { color: #C7CEDB; font-weight: 500; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: #9AA3B4;
}
.footer-bottom .badge-18 { background: var(--accent); }
