.site-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #dfe5dc;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #17201b;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #b9c8bd;
  background: #123c37;
  color: #f8f2d1;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy .eyebrow {
  margin: 0;
  color: #64716a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.brand-copy strong {
  color: #17201b;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.25;
}

.article-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  min-width: 0;
}

.article-nav a,
.site-footer__links a {
  color: #536159;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.article-nav a:hover,
.site-footer__links a:hover {
  color: #123c37;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2)) 30px;
  border-top: 1px solid #dfe5dc;
  background: rgba(247, 248, 244, 0.9);
  color: #69756e;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  align-items: start;
  justify-content: space-between;
  gap: 14px 32px;
  width: 100%;
}

.site-footer__brand,
.site-footer__compliance,
.site-footer__links {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.site-footer__brand {
  color: #7b857f;
}

.site-footer__compliance {
  justify-items: end;
  text-align: right;
}

.site-footer__brand span,
.site-footer__compliance span,
.site-footer__compliance a {
  display: block;
}

.site-footer__compliance a {
  color: inherit;
  text-decoration: none;
}

.site-footer__compliance a:hover {
  color: #123c37;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__links {
  padding-top: 14px;
  border-top: 1px solid #e7ece5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer__compliance {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-bar {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 14px 16px;
  }

  .article-nav {
    justify-content: flex-start;
  }

  .site-footer__inner {
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__compliance,
  .site-footer__links {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy .eyebrow {
    font-size: 11px;
  }
}
