.site-header {
  --header-nav-green: #4a6b1f;
  --admin-bar-offset: 0px;
  position: fixed;
  top: var(--admin-bar-offset, 0px);
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  pointer-events: none;
  transition: transform var(--duration-normal) var(--ease-out);
  will-change: transform;
}

.site-header.is-drawer-open {
  z-index: 2147483646 !important;
  transform: none !important;
  will-change: auto;
}

.site-header.is-drawer-open .site-header__overlay {
  z-index: 2147483645;
}

.site-header.is-drawer-open .site-header__drawer {
  z-index: 2147483646;
}

.site-header__shell {
  position: relative;
  padding: 0 48px;
}
.site-header__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0 0 22px 22px;
  background: rgba(250, 250, 246, 0.22);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.site-header.is-scrolled .site-header__shell::before {
  opacity: 1;
}
.site-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-height: 72px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  pointer-events: auto;
}
.site-header__logo {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  padding-top: 0;
}
.site-header__logo .site-logo {
  width: auto;
  max-width: min(310px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.site-header__logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #20231f;
  min-width: 0;
  min-height: 57.98px;
  justify-content: center;
}
.site-header__logo-kicker {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4f554a;
}
.site-header__logo-title {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #20231f;
  letter-spacing: 0;
}
.site-header__nav {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.site-header__nav-cap {
  color: var(--header-nav-green);
  width: 48px;
  display: block;
  flex-shrink: 0;
}
.site-header__nav-cap svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.site-header__nav-cap--left {
  height: 40.5px;
  margin-right: -1px;
}
.site-header__nav-cap--right {
  height: 37.5px;
  margin-left: -1px;
  margin-right: -1px;
}
@media (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 24px 32px;
  background: var(--header-nav-green);
  border-radius: 0 0 20px 20px;
}
.site-header__nav-link > span {
  white-space: nowrap;
}
.site-header__nav-item {
  position: relative;
}
.site-header__nav-item.has-dropdown:hover > .site-header__dropdown,
.site-header__nav-item.has-dropdown:focus-within > .site-header__dropdown,
.site-header__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav-item.is-active > .site-header__nav-link {
  color: #ffffff;
  background: transparent;
  opacity: 1;
}
.site-header__nav-item.has-dropdown:hover > .site-header__nav-link,
.site-header__nav-item.has-dropdown:focus-within > .site-header__nav-link,
.site-header__nav-item.is-dropdown-open > .site-header__nav-link,
.site-header__nav-item:hover > .site-header__nav-link {
  color: #ffffff;
  background: transparent;
  opacity: 0.88;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  color: #ffffff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.site-header__nav-chevron {
  width: 10px;
  height: 10px;
  display: inline-flex;
  color: currentColor;
}
.site-header__nav-chevron svg {
  width: 100%;
  height: 100%;
}
.site-header__dropdown-stack {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  pointer-events: auto;
  z-index: 20;
}
.site-header__dropdown-stack[hidden] {
  display: none;
}
.site-header__dropdown {
  position: absolute;
  top: 2px;
  left: 0;
  min-width: 0;
  width: max-content;
  max-width: min(360px, calc(100vw - 2rem));
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}
.site-header__dropdown-stack .site-header__dropdown {
  top: 2px;
  left: 0;
}
.site-header__dropdown::before {
  content: "";
  position: absolute;
  inset: -2px 0 auto;
  height: 2px;
}
.site-header__dropdown-panel {
  position: relative;
  display: block;
  padding: 12px;
  border: 1px solid rgba(23, 28, 24, 0.08);
  border-radius: 14px;
  background: #f7f8f5;
  box-shadow: 0 10px 24px rgba(16, 24, 19, 0.14);
}
.site-header__dropdown-intro {
  display: none;
}
.site-header__dropdown-kicker {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}
.site-header__dropdown-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.site-header__dropdown-overview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-header__dropdown-list {
  display: grid;
  grid-template-columns: minmax(176px, 214px);
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__dropdown-item.is-active .site-header__dropdown-link {
  border-color: transparent;
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-item.is-active .site-header__dropdown-card {
  border-color: transparent;
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-card:hover {
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-link:hover {
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 5px 9px;
  border-radius: 8px;
  color: #222622;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.site-header__dropdown-parent-link:hover,
.site-header__dropdown-item.has-submenu:focus-within .site-header__dropdown-parent-link,
.site-header__dropdown-item.has-submenu:hover .site-header__dropdown-parent-link {
  background: rgba(74, 107, 31, 0.07);
}

.site-header__dropdown-item.has-submenu .site-header__dropdown-parent-link::after {
  content: "\203A";
  font-size: 10px;
  line-height: 1;
  color: rgba(34, 38, 34, 0.65);
}
.site-header__dropdown-label {
  color: #222622;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.site-header__dropdown-text {
  display: none;
}
.site-header__dropdown-sub-list {
  position: absolute;
  left: 100%;
  top: -6px;
  min-width: 176px;
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(23, 28, 24, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 24, 19, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.site-header__dropdown-item.has-submenu:hover .site-header__dropdown-sub-list,
.site-header__dropdown-item.has-submenu:focus-within .site-header__dropdown-sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header__dropdown-sub-item {
  margin: 0;
}
.site-header__dropdown-sub-item.is-active .site-header__dropdown-sub-link {
  border-color: transparent;
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-sub-link {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #222622;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-sub-link:hover {
  background: rgba(74, 107, 31, 0.07);
}
.site-header__dropdown-sub-label {
  color: #222622;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.site-header__dropdown-sub-text {
  display: none;
}
.site-header__actions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
  padding: 5px 0;
}
@media (min-width: 1201px) {
  .site-header__actions {
    margin-left: -43px;
  }
}
@media (max-width: 1360px) {
  .site-header__nav-cap {
    width: 38px;
  }

  .site-header__nav-cap--left {
    height: 32px;
  }

  .site-header__nav-cap--right {
    height: 30px;
    margin-right: -1px;
  }

  .site-header__nav-list {
    gap: 18px;
    padding: 18px 20px;
  }

  .site-header__nav-link {
    font-size: 14px;
  }

  .site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 8px;
  }
}
@media (max-width: 1200px) {
  .site-header__nav-list {
    gap: 14px;
    padding: 16px 16px;
  }

  .site-header__nav-link {
    font-size: 13px;
  }

  .site-header__actions {
    gap: 6px;
  }
}
@media (max-width: 880px) {
  .site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-left: 0;
    padding: 0;
  }
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  min-width: 0;
  width: auto;
  max-width: min(46vw, 360px);
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid #20231f;
  background: transparent;
  color: #20231f;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}
.site-header__paynow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  min-width: 0;
  width: auto;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid #4a6b1f;
  background: #4a6b1f;
  color: #ffffff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.site-header__paynow:hover {
  transform: translateY(-1px);
  background: #5f7f2e;
  border-color: #5f7f2e;
  box-shadow: 0 10px 18px rgba(32, 35, 31, 0.14);
}
.site-header__paynow-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-header__paynow-icon svg {
  width: 100%;
  height: 100%;
}
.site-header__paynow-label {
  line-height: 1;
}

.site-header__action-label,
.site-header__paynow-label {
  line-height: 1;
}
.site-header__cta > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-header__cta:hover {
  transform: translateY(-1px);
  background: #f3f4ef;
  color: #20231f;
  box-shadow: 0 10px 18px rgba(32, 35, 31, 0.14);
}
.site-header__cta-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-header__cta-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .site-header__cta {
    max-width: min(42vw, 320px);
    gap: 8px;
    padding: 12px 16px;
    font-size: 15px;
    letter-spacing: 0.4px;
    border-radius: 14px;
  }

  .site-header__cta-icon {
    width: 20px;
    height: 20px;
  }

  .site-header__paynow {
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 14px;
    letter-spacing: 0.4px;
  }
}
@media (max-width: 1024px) {
  .site-header__actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    width: auto;
  }

  .site-header__paynow,
  .site-header__cta {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 999px;
    gap: 0;
    flex: 0 0 44px;
  }

  .site-header__paynow {
    box-shadow: none;
  }

  .site-header__paynow-label,
  .site-header__action-label {
    display: none;
  }

  .site-header__cta-icon,
  .site-header__paynow-icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575px) {
  .site-header__actions {
    gap: 6px;
  }

  .site-header__paynow,
  .site-header__cta {
    width: 42px;
    max-width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 999px;
    gap: 0;
    flex: 0 0 42px;
  }

  .site-header__cta-icon,
  .site-header__paynow-icon {
    width: 18px;
    height: 18px;
  }
}
.site-header__menu-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(32, 35, 31, 0.22);
  border-radius: 999px;
  background: rgba(250, 250, 246, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}
@media (max-width: 1024px) {
  .site-header__menu-button {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    padding: 0;
    gap: 0;
    flex: 0 0 44px;
  }
}

@media (max-width: 1024px) {
  .site-header__menu-button {
    min-height: 44px;
    border-radius: 999px;
  }

  .site-header__menu-button-label {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header__paynow,
  .site-header__cta,
  .site-header__menu-button {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    gap: 0;
    flex-basis: 42px;
  }

  .site-header__menu-button-label {
    display: none;
  }
}
.site-header__menu-button.isActive {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}
.site-header__menu-button.isActive .site-header__menu-button-line:first-child {
  transform: translateY(4px) rotate(45deg);
}
.site-header__menu-button.isActive .site-header__menu-button-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.site-header__menu-button-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.site-header__menu-button-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #20231f;
}
.site-header__menu-button-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #20231f;
  transition: transform 0.22s ease;
}
.site-header__drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 2;
  width: min(420px, 100vw);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-header__drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-header__drawer-header,
.site-header__drawer-body {
  width: 100%;
  pointer-events: auto;
}
.site-header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.site-header__drawer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text-light);
}
.site-header__drawer-logo .site-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.site-header__drawer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.site-header__drawer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}
.site-header__drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(32, 35, 31, 0.22);
  border-radius: 50%;
  background: rgba(250, 250, 246, 0.92);
  color: #20231f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-header__drawer-close svg {
  width: 18px;
  height: 18px;
}
.site-header__drawer-body {
  width: 100%;
  height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  padding: 24px;
  border: 1px solid rgba(79, 85, 74, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(95, 127, 46, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(247, 248, 244, 0.98), rgba(238, 241, 232, 0.98));
  box-shadow: 0 20px 44px rgba(32, 35, 31, 0.18);
  color: #20231f;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-header__drawer-body::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.site-header__drawer-intro {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(79, 85, 74, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}
.site-header__drawer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5f7f2e;
}
.site-header__drawer-summary {
  margin: 0;
  color: #4f554a;
  line-height: 1.6;
  font-size: 15px;
}
.site-header__drawer-list,
.site-header__drawer-sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__drawer-item {
  border-top: 1px solid rgba(79, 85, 74, 0.22);
}
.site-header__drawer-item:last-child {
  border-bottom: 1px solid rgba(79, 85, 74, 0.22);
}
.site-header__drawer-item.is-active
  > .site-header__drawer-row
  .site-header__drawer-toggle
  svg {
  transform: rotate(180deg);
}
.site-header__drawer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.site-header__drawer-link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.site-header__drawer-link-label,
.site-header__drawer-sub-label {
  color: #20231f;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header__drawer-link-label {
  color: #2a312b;
}

.site-header__drawer-sub-label {
  color: #4a6b1f;
}
.site-header__drawer-link-text,
.site-header__drawer-sub-text {
  color: #4f554a;
  font-size: 13px;
  line-height: 1.5;
}
.site-header__drawer-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(79, 85, 74, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #4a6b1f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header__drawer-item.is-active .site-header__drawer-row {
  background: rgba(95, 127, 46, 0.08);
}
.site-header__drawer-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}
.site-header__drawer-sub {
  display: none;
  overflow: hidden;
  padding-bottom: 18px;
}
.site-header__drawer-sub-list {
  padding: 4px 0 0 14px;
  display: grid;
  gap: 10px;
  border-left: 1px solid rgba(95, 127, 46, 0.28);
}
.site-header__drawer-sub-item.is-active .site-header__drawer-sub-link {
  background: rgba(95, 127, 46, 0.12);
}
.site-header__drawer-sub-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(79, 85, 74, 0.12);
  text-decoration: none;
}
.site-header__drawer-sub-children {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 14px;
  display: grid;
  gap: 8px;
}
.site-header__drawer-sub-child-item {
  margin: 0;
}
.site-header__drawer-sub-child-item.is-active .site-header__drawer-sub-child-link {
  background: rgba(95, 127, 46, 0.12);
  border-color: rgba(255, 199, 86, 0.24);
}
.site-header__drawer-sub-child-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(79, 85, 74, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.site-header__drawer-sub-child-label {
  color: #5f7f2e;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-header__drawer-sub-child-text {
  color: #4f554a;
  font-size: 12px;
  line-height: 1.45;
}
.site-header__drawer-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(79, 85, 74, 0.24);
}
.site-header__drawer-cta {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #5f7f2e;
  background: #5f7f2e;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-header__drawer-cta--paynow {
  margin-top: 10px;
  background: #20231f;
  border: 1px solid #20231f;
  color: #ddebcb;
}

.site-header__drawer-cta:hover {
  background: #6c8f35;
  border-color: #6c8f35;
}
.site-header__drawer-cta--paynow:hover {
  background: #2c312c;
  border-color: #2c312c;
}
.site-header__drawer-meta {
  color: #4f554a;
  display: grid;
  gap: 8px;
}
.site-header__drawer-meta a {
  color: #4f554a;
  text-decoration: none;
  font-size: 14px;
}

.site-header__drawer-meta a:hover {
  color: #5f7f2e;
}

@media (max-width: 575px) {
  .site-header__drawer {
    padding: 12px;
  }

  .site-header__drawer-body {
    padding: 18px;
    border-radius: 22px;
  }

  .site-header__drawer-intro {
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 18px;
  }

  .site-header__drawer-row {
    padding: 14px 0;
  }

  .site-header__drawer-link-label,
  .site-header__drawer-sub-label {
    font-size: 12px;
  }
}
.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(20, 26, 19, 0.46);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.site-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 880px) {
  .site-header__shell {
    padding-top: 0;
    padding-left: 22px;
    padding-right: 22px;
  }
  .site-header__inner {
    padding: 0;
    border-radius: 0;
    gap: 14px;
  }
  .site-header__logo-copy {
    display: none;
  }
  .site-header__logo {
    width: auto;
    padding-top: 0;
  }
  .site-header__logo .site-logo {
    width: auto;
    max-width: min(220px, 100%);
    height: 56px;
  }
}
@media (max-width: 575px) {
  .site-header__shell {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header__shell::before {
    border-radius: 0 0 16px 16px;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
  .site-header__logo-img {
    width: 46px;
    height: 46px;
  }
  .site-header__actions {
    width: auto;
    margin-left: 0;
    justify-self: end;
  }
  .site-header__menu-button {
    justify-content: center;
    min-width: 42px;
  }
  .site-header__drawer {
    width: 100vw;
    padding: 12px;
  }
  .site-header__drawer-body {
    height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 20px;
    border-radius: 24px;
  }
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

/* Skip to main content */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}
