.site-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #efe8d7;
  background: rgba(16, 39, 33, 0.98);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}
.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #f8f3e8;
  text-decoration: none;
}
.site-brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid #efe8d7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #102721, inset 0 0 0 5px #efe8d7;
  color: #f8f3e8;
  background: #c84a35;
  font: 900 16px/1 Arial, Helvetica, sans-serif;
}
.site-brand-text {
  font: 950 16px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
}
.site-nav {
  display: flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.7vw, 24px);
}
.site-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 10px 0;
  color: #dce2df;
  font: 800 11px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #f0c45c;
}
.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #f0c45c;
  content: "";
}
.site-nav .site-nav-cta {
  padding: 12px 14px;
  border: 1px solid #f0c45c;
  color: #102721;
  background: #f0c45c;
}
.site-nav .site-nav-cta:hover,
.site-nav .site-nav-cta:focus-visible,
.site-nav .site-nav-cta[aria-current="page"] {
  color: #102721;
  background: #f7d57e;
}
.site-nav .site-nav-cta[aria-current="page"]::after {
  display: none;
}
@media (max-width: 900px) {
  .site-header-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding-top: 12px;
  }
  .site-brand {
    align-self: flex-start;
  }
  .site-nav {
    justify-content: flex-start;
    margin-top: 9px;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }
}
@media (max-width: 520px) {
  .site-header-inner {
    width: min(100% - 24px, 1180px);
  }
  .site-brand-mark {
    width: 34px;
    height: 34px;
  }
  .site-brand-text {
    font-size: 14px;
  }
  .site-nav {
    gap: 15px;
  }
  .site-nav a {
    font-size: 10px;
  }
}
