/* ============================================
   Site Footer
   ============================================ */

.site-footer {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-10) 0 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--color-white);
}

/* Footer Grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

/* Footer Brand Column */
.footer__brand .site-logo {
  margin-bottom: var(--space-4);
}

.footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  max-width: 320px;
}

/* Footer Navigation */
.footer__nav-heading {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__nav-list a {
  font-size: var(--fs-sm);
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: var(--fs-xs);
}

/* Legal Disclaimer */
.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
}

.footer__disclaimer p {
  font-size: var(--fs-xs);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* Responsive */
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
