/* Footer: forest, four columns, small type */

.site-footer {
  background-color: var(--forest);
  color: var(--on-dark-muted);
  padding-block: 3.5rem;
  font-size: 0.8125rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* No optical nudge here: the footer grid is align-items: start, so there is
   no fixed band to centre in, and pushing the logo down would only drop it
   further below the adjacent columns' first line of text. */

.site-footer__logo {
  display: block;
  height: 62px;
  width: auto;
}

.site-footer__col p {
  margin: 0 0 0.375rem;
}

.site-footer__col a {
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer__col--legal {
  text-align: right;
}

@media (max-width: 767.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__col--legal {
    text-align: left;
  }
}
