/* ============================================
   FOOTER
   Standardized on --dark-mid (#1C1E1A).
   4-column grid: brand (wider) + 3 link columns.
   Bottom bar: copyright left, location right.
============================================ */

.site-footer {
  background: var(--dark-mid);
  border-top: 1px solid rgba(247, 246, 242, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}


/* --- Top: 4-column grid --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
}


/* --- Brand column --- */
.footer-brand-logo {
  display: block;
  width: 140px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-brand-logo .nwa-logo {
  width: 100%;
  height: auto;
}

.footer-brand-logo .logo-wordmark {
  fill: var(--white);
}

.footer-brand-logo .logo-tagline {
  fill: var(--accent);
}

/* Raster fallback */
.footer-brand-logo img {
  width: 140px;
  height: auto;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(247, 246, 242, 0.3);
  font-weight: 300;
  max-width: 280px;
  margin: 1.5em 0;
}


/* --- Column titles --- */
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.2);
  font-weight: 500;
  margin-bottom: 1.2rem;
}


/* --- Link lists --- */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(247, 246, 242, 0.4);
  font-weight: 300;
  transition: color 0.2s;
}

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


/* --- Bottom bar --- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(247, 246, 242, 0.05);
  font-size: 0.72rem;
  color: rgba(247, 246, 242, 0.2);
  letter-spacing: 0.05em;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  color: var(--accent);
  transition: color 0.2s;
}

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

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-inner {
    padding: 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    padding: 3rem 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}