.site-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--color-black);
  background: var(--color-paper);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 309px;
}

.brand-lockup__name {
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 700;
  line-height: 30px;
}

.brand-lockup__tagline {
  color: var(--color-muted);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 17px;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  max-width: 760px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 650;
  line-height: 17px;
}

.primary-nav__item {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  white-space: nowrap;
}

.site-main {
  min-height: calc(100vh - var(--header-height) - 127px);
}

.site-footer {
  height: 127px;
  border-top: 1px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-paper);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
}

.site-footer__brand {
  font-size: 24px;
  font-weight: 700;
  line-height: 25px;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #d5c8b8;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
}

.site-footer__copy {
  padding-top: 18px;
  color: #a99f92;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
}
