<style>

/* ============================================================
   ANCHOR / SECTION NAV  (on-anav)
   Position handled by JS (position:fixed) for sticky.
   ============================================================ */
.on-anav {
  z-index: 200;
  background: rgba(254, 250, 247, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #E8E0D8;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
}
.on-anav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.on-anav-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF6B4A;
  white-space: nowrap;
  flex-shrink: 0;
}
.on-anav-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #FF6B4A;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 1px;
}
.on-anav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.on-anav-links li a {
  display: block;
  padding: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8C7B6E;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.on-anav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #FF6B4A;
  border-radius: 1px 1px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.on-anav-links li a:hover { color: #1A1614; }
.on-anav-links li a.on-anav-active { color: #FF6B4A; }
.on-anav-links li a.on-anav-active::after { transform: scaleX(1); }

/* Desktop: hide the mobile select */
.on-anav-mobile { display: none; }

/* ============================================================
   MOBILE — "Jump to ▾" select (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  .on-anav-links { display: none; }
  .on-anav-label { display: none; }

  .on-anav-inner {
    height: 48px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 12px;
  }
  .on-anav-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .on-anav-mobile-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FF6B4A;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .on-anav-select-wrap {
    position: relative;
    flex: 1;
  }
  .on-anav-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #E8E0D8;
    padding: 8px 28px 8px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1A1614;
    cursor: pointer;
    outline: none;
  }
  .on-anav-caret {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    color: #8C7B6E;
    pointer-events: none;
  }
}

/* ============================================================
   STICKY ESCAPE — stop HubSpot wrappers from clipping the bar
   ============================================================ */
.on-anav,
.on-anav-wrapper,
.on-anav-wrapper .dnd-section,
.on-anav-wrapper .content-wrapper,
.on-anav-wrapper .row-fluid,
.on-anav-wrapper .row-fluid .widget-span,
.on-anav-section,
.on-anav-section > .row-fluid,
.on-anav-section > .row-fluid > div {
  overflow: visible !important;
}

</style>