:root {
  --navbar-height: 92px;
  --navbar-bg: #ffffff;
  --navbar-text: #3f3f3f;
  --navbar-accent: #ebab2b;
  --navbar-border: rgba(0, 0, 0, 0.08);
}

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--navbar-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.site-navbar__inner {
  width: 100%;
  max-width: 1440px;
  min-height: var(--navbar-height);
  margin: 0 auto;
  padding: 12px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-navbar__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-navbar__brand img {
  display: block;
  width: min(270px, 34vw);
  max-width: 100%;
  height: auto;
}

.site-navbar__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
}

.site-navbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--navbar-text);
  text-decoration: none;
  font-family: "GillSans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-navbar__link:hover,
.site-navbar__link:focus-visible {
  color: #111;
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}

.site-navbar__link.is-active {
  color: #111;
}

.site-navbar__link--cta {
  padding: 0 18px;
  background: var(--navbar-accent);
  color: #111;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.site-navbar__link--cta:hover,
.site-navbar__link--cta:focus-visible {
  background: #ffcf69;
}

.site-navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.site-navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #444;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

