.site-header {
  background: #16130f;
  color: #fffdf8;
}

.site-header-inner {
  width: min(1160px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.site-brand-mark {
  width: 17px;
  height: 17px;
  border: 4px solid #bd8737;
  border-radius: 50%;
  box-shadow: 7px 0 0 -4px #16130f;
}

.site-nav,
.site-languages {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 14px;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-languages {
  gap: 6px;
}

.site-languages a {
  padding: 3px 5px;
  color: #bfb5aa;
}

.site-languages a.active {
  color: #fffdf8;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: #8c5d20;
  color: #fff !important;
  font-weight: 800 !important;
}

@media (max-width: 760px) {
  .site-nav-secondary {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header-inner {
    width: min(100% - 24px, 1160px);
    height: 66px;
  }

  .site-header-cta {
    display: none;
  }

  .site-nav {
    gap: 8px;
  }
}
