/* Site-wide link grid above the thin contact footer */
.site-footer-nav {
  display: block;
  position: static;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-top: auto;
  padding: 0;
  background: #FAFAF8;
  color: #1a1a1a;
  border: none;
  border-top: 1px solid #d8d6d0;
  border-bottom: 1px solid #d8d6d0;
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  z-index: auto;
  grid-template-columns: none;
  column-gap: 0;
  overflow: visible;
}

.site-footer-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.site-footer-nav-col {
  width: auto;
  min-width: 0;
  padding: 36px clamp(20px, 3vw, 48px) 40px;
  border-right: 1px solid #d8d6d0;
  box-sizing: border-box;
}

.site-footer-nav-col:last-child {
  border-right: none;
}

.site-footer-nav-heading {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b66;
}

.site-footer-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.site-footer-nav-links a:hover,
.site-footer-nav-links a:focus-visible {
  color: #14532d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-nav-ext {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
}

/* When the link grid is present, the thin footer should not also claim margin-top: auto */
.site-footer-nav + .site-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .site-footer-nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-nav-col {
    padding: 28px 22px 30px;
  }

  .site-footer-nav-col:nth-child(2n) {
    border-right: none;
  }

  .site-footer-nav-col:nth-child(-n + 2) {
    border-bottom: 1px solid #d8d6d0;
  }
}

@media (max-width: 520px) {
  .site-footer-nav-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-nav-col {
    border-right: none;
    border-bottom: 1px solid #d8d6d0;
    padding: 24px 20px;
  }

  .site-footer-nav-col:last-child {
    border-bottom: none;
  }

  .site-footer-nav-col:nth-child(-n + 2) {
    border-bottom: 1px solid #d8d6d0;
  }
}
