/* -----------------------------------------
   FOOTER COMPONENT
----------------------------------------- */

.site-footer {
    background: var(--color-deep-navy);
    color: var(--text-inverse);
    border-top: var(--border-light);
    padding: var(--space-8) 0;
}

.site-footer .text-muted {
    color: #e0e0e0; /* soft white-gray for readability */
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* NEW: centers the columns horizontally */
  gap: var(--space-8);
  align-items: flex-start;
}

.footer-col {
    flex: 1 1 220px;
    text-align: center;
}

.footer-col-wide {
    flex: 1 1 100%;
    text-align: center;
}

.footer-logo-centered {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3);
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-inverse);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: var(--space-2);
}

.footer-col a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-bottom {
    margin-top: var(--space-6);
    text-align: center;
    color: #e0e0e0;
    font-size: var(--text-sm);
}

.footer-logo-img {
    height: 96px;
    margin-bottom: var(--space-3);
    display: block;
}

.footer-logo-caption {
    font-size: var(--text-base);
    color: var(--text-inverse);
    text-align: center;
}

.footer-mission {
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: var(--leading-loose);
    margin-top: 0;
    margin-bottom: var(--space-4);
    color: #e0e0e0;
}

.footer-mission-explainer {
  font-size: var(--text-base);
  color: #e0e0e0;
  font-style: italic;
  margin-top: calc(-1 * var(--space-2));
  margin-bottom: var(--space-4);
  line-height: var(--leading-loose);
}

.footer-address {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: #e0e0e0;
}