/* WorkMesh Footer */

.site-footer {
  background: var(--wm-color-navy-900);
  color: var(--wm-color-white);
  padding: var(--wm-space-16) 0 var(--wm-space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wm-space-10);
  margin-bottom: var(--wm-space-12);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  color: var(--wm-color-navy-200);
  margin-top: var(--wm-space-4);
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wm-space-8);
}

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wm-color-white);
  margin-bottom: var(--wm-space-4);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--wm-space-3);
}

.footer-column a {
  color: var(--wm-color-navy-200);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--wm-color-white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--wm-color-navy-700);
  padding-top: var(--wm-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--wm-space-4);
  align-items: center;
  text-align: center;
}

.footer-copyright {
  color: var(--wm-color-navy-300);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  gap: var(--wm-space-6);
}

.footer-legal a {
  color: var(--wm-color-navy-200);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--wm-color-white);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}
