.fa-site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248,241,231,.94);
  border-bottom: 1px solid rgba(73,56,67,.08);
  backdrop-filter: blur(16px);
}

.fa-site-nav,
.fa-site-nav * {
  box-sizing: border-box;
}

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

.fa-site-nav__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.fa-site-nav__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.fa-site-nav__logo img {
  width: 78px;
  height: auto;
  display: block;
}

.fa-site-nav__links {
  display: none;
  align-items: center;
  gap: 26px;
  color: #493843;
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.fa-site-nav__links a[aria-current="page"],
.fa-site-nav__links a:hover {
  color: #FF6542;
}

.fa-site-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fa-site-nav__icon,
.fa-site-nav__menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(3,71,50,.14);
  border-radius: 999px;
  background: #fff;
  color: #493843;
}

.fa-site-nav__icon svg,
.fa-site-nav__menu-button svg,
.fa-site-nav__mobile-panel svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fa-site-nav__cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #FF6542;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,101,66,.28);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.fa-site-nav__mobile {
  position: relative;
  display: block;
}

.fa-site-nav__mobile summary {
  list-style: none;
}

.fa-site-nav__mobile summary::-webkit-details-marker {
  display: none;
}

.fa-site-nav__mobile-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(310px, calc(100vw - 32px));
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(73,56,67,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 50px -28px rgba(64,19,19,.45), 0 8px 22px rgba(64,19,19,.1);
}

.fa-site-nav__mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  color: #493843;
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.fa-site-nav__mobile-panel a[aria-current="page"],
.fa-site-nav__mobile-panel a:hover {
  background: #F8F1E7;
  color: #FF6542;
}

.fa-site-nav__mobile-panel .fa-site-nav__mobile-cta {
  margin-top: 4px;
  justify-content: center;
  background: #FF6542;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,101,66,.22);
}

@media (min-width: 900px) {
  .fa-site-nav__inner {
    min-height: 86px;
  }

  .fa-site-nav__logo img {
    width: 98px;
  }

  .fa-site-nav__links {
    display: flex;
  }

  .fa-site-nav__cta {
    display: inline-flex;
  }

  .fa-site-nav__mobile {
    display: none;
  }
}
