.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  pointer-events: none;
  transition: transform var(--duration-normal) var(--ease-out);
  will-change: transform;
}
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.site-header__shell {
  padding: 20px var(--section-padding-x) 0;
}
.site-header__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(10, 25, 41, 0.92), rgba(27, 56, 88, 0.72)),
    rgba(15, 42, 68, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(4, 13, 24, 0.22);
  pointer-events: auto;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.site-header__logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-header__logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--color-text-light);
  min-width: 0;
}
.site-header__logo-kicker {
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.site-header__logo-title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.site-header__nav {
  margin-left: auto;
}
@media (max-width: 991px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.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__nav-item.has-dropdown.is-hover-open > .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav-item.is-active > .site-header__nav-link {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.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.has-dropdown.is-hover-open > .site-header__nav-link,
.site-header__nav-item:hover > .site-header__nav-link {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.1);
}
.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-header__nav-item:hover > .site-header__nav-link,
.site-header__nav-item:focus-within > .site-header__nav-link {
  transform: translateY(-1px);
}

.site-header__nav-chevron {
  width: 12px;
  height: 12px;
  display: inline-flex;
  color: currentColor;
}
.site-header__nav-chevron svg {
  width: 100%;
  height: 100%;
}
.site-header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 620px;
  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::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}
.site-header__dropdown-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(11, 25, 41, 0.08);
  border-radius: 24px;
  background: rgba(247, 246, 243, 0.98);
  box-shadow: 0 30px 50px rgba(7, 17, 30, 0.18);
}
.site-header__dropdown-intro {
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 199, 86, 0.2),
      transparent 50%
    ),
    linear-gradient(180deg, rgba(15, 42, 68, 0.98), rgba(30, 58, 95, 0.96));
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__dropdown-item.is-active .site-header__dropdown-link {
  border-color: rgba(30, 58, 95, 0.2);
  background: rgba(30, 58, 95, 0.07);
}
.site-header__dropdown-item.is-active .site-header__dropdown-card {
  border-color: rgba(30, 58, 95, 0.2);
  background: rgba(30, 58, 95, 0.07);
}
.site-header__dropdown-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(15, 42, 68, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}
.site-header__dropdown-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 199, 86, 0.7);
  background: var(--color-text-light);
  box-shadow: 0 14px 24px rgba(15, 42, 68, 0.08);
}
.site-header__dropdown-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(15, 42, 68, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}
.site-header__dropdown-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 199, 86, 0.7);
  background: var(--color-text-light);
  box-shadow: 0 14px 24px rgba(15, 42, 68, 0.08);
}
.site-header__dropdown-parent-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.site-header__dropdown-label {
  color: var(--color-brand-navy-deep);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-header__dropdown-text {
  color: rgba(43, 43, 43, 0.78);
  font-size: 14px;
  line-height: 1.5;
}
.site-header__dropdown-sub-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(15, 42, 68, 0.08);
}
.site-header__dropdown-sub-item {
  margin: 0;
}
.site-header__dropdown-sub-item.is-active .site-header__dropdown-sub-link {
  border-color: rgba(255, 199, 86, 0.45);
  background: rgba(255, 199, 86, 0.08);
}
.site-header__dropdown-sub-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 42, 68, 0.08);
  border-radius: 14px;
  background: rgba(15, 42, 68, 0.03);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.site-header__dropdown-sub-link:hover {
  transform: translateX(2px);
  border-color: rgba(255, 199, 86, 0.4);
  background: rgba(255, 199, 86, 0.06);
}
.site-header__dropdown-sub-label {
  color: var(--color-brand-navy-deep);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header__dropdown-sub-text {
  color: rgba(43, 43, 43, 0.68);
  font-size: 13px;
  line-height: 1.45;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(95, 168, 211, 0.5);
  background: #2f80b7;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.site-header__cta:hover {
  transform: translateY(-2px);
  background: #3b8fc9;
  border-color: rgba(95, 168, 211, 0.85);
  box-shadow: 0 10px 20px rgba(47, 128, 183, 0.24);
}

.site-header__cta:focus-visible {
  outline: 2px solid rgba(95, 168, 211, 0.95);
  outline-offset: 2px;
}

.site-header__cta-label {
  display: inline-flex;
  align-items: center;
}

.site-header__cta-phone {
  display: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-header__menu-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  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: 991px) {
  .site-header__menu-button {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
  }
}
.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: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.site-header__menu-button-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text-light);
  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-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(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-light);
  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(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 199, 86, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(9, 23, 38, 0.97), rgba(15, 42, 68, 0.97));
  box-shadow: 0 28px 70px rgba(4, 13, 24, 0.5);
  color: var(--color-text-light);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.site-header__drawer-intro {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.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: rgba(255, 255, 255, 0.58);
}
.site-header__drawer-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.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(255, 255, 255, 0.09);
}
.site-header__drawer-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.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: flex-start;
  gap: 16px;
  padding: 18px 0;
}
.site-header__drawer-link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}
.site-header__drawer-link-label,
.site-header__drawer-sub-label {
  color: var(--color-text-light);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-header__drawer-link-text,
.site-header__drawer-sub-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}
.site-header__drawer-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.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(255, 255, 255, 0.1);
}
.site-header__drawer-sub-item.is-active .site-header__drawer-sub-link {
  background: rgba(255, 255, 255, 0.08);
}
.site-header__drawer-sub-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  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(255, 255, 255, 0.09);
  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(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}
.site-header__drawer-sub-child-label {
  color: var(--color-text-light);
  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: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}
.site-header__drawer-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header__drawer-cta {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-header__drawer-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}
.site-header__drawer-meta a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 14px;
}
.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(3, 10, 18, 0.45);
  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: 991px) {
  .site-header__shell {
    padding-top: 12px;
  }
  .site-header__inner {
    padding: 14px 16px;
    border-radius: 20px;
    gap: 14px;
  }
  .site-header__logo-copy {
    display: none;
  }
}
@media (max-width: 575px) {
  .site-header__shell {
    padding-left: 12px;
    padding-right: 12px;
  }
  .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: auto;
    justify-content: flex-end;
  }
  .site-header__menu-button {
    justify-content: center;
    min-width: 0;
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .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;
}
/* Family Dental-specific header visual overrides */
.site-header {
  position: sticky;
  pointer-events: auto;
  background: transparent;
}

.site-header__utility {
  background: #15324b;
  color: #fff;
}

.site-header__utility-inner {
  min-height: 40px;
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.site-header__utility-meta {
  color: rgba(255, 255, 255, 0.78);
}

.site-header__utility-pay {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.site-header__utility-pay::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.24) 50%, transparent 100%);
  transform: translateX(-180%);
  pointer-events: none;
  animation: site-header-pay-shimmer 3.8s ease-in-out infinite;
}

.site-header__utility-pay::after {
  content: "";
  position: absolute;
  inset: -6px -10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 50%, rgba(95, 168, 211, 0.25), transparent 65%);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header__utility-pay span {
  position: relative;
  z-index: 1;
}

.site-header__utility-pay:hover {
  transform: translateY(-1px);
}

.site-header__utility-pay:hover::after,
.site-header__utility-pay:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.site-header__utility-pay-icon {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transform-origin: 50% 50%;
  animation: site-header-pay-icon-float 2.9s ease-in-out infinite;
}

.site-header__utility-pay:hover .site-header__utility-pay-icon,
.site-header__utility-pay:focus-visible .site-header__utility-pay-icon {
  animation: site-header-pay-icon-hover 700ms var(--ease-out-expo) 1;
}

.site-header__utility-pay:focus-visible {
  outline: 2px solid rgba(95, 168, 211, 0.9);
  outline-offset: 2px;
}

.site-header__utility-pay-dropdown {
  position: relative;
}

.site-header__utility-pay-dropdown > summary {
  list-style: none;
  cursor: pointer;
}

.site-header__utility-pay-dropdown > summary::-webkit-details-marker {
  display: none;
}

.site-header__utility-pay-chevron {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease;
}

.site-header__utility-pay-dropdown[open] .site-header__utility-pay-chevron {
  transform: rotate(180deg);
}

.site-header__utility-pay-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 230px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(95, 168, 211, 0.28);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 25, 41, 0.2);
  z-index: 30;
}

.site-header__utility .site-header__utility-pay-link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #15324b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__utility .site-header__utility-pay-link:hover,
.site-header__utility .site-header__utility-pay-link:focus-visible {
  background: rgba(95, 168, 211, 0.14);
  color: #0d2a41;
}

.site-header__shell {
  padding: 0;
}

.site-header__inner {
  width: 100%;
  min-height: 92px;
  padding: 10px 48px;
  border: 0;
  box-shadow: inset 0 -10px 0 rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: #d3dae2;
  backdrop-filter: none;
}

body.page-template-about .site-header__inner {
  box-shadow: none;
}

.site-header__logo {
  width: 223px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.site-header__logo-image {
  width: 223px;
  height: 70px;
  object-fit: contain;
}

.site-header__logo img {
  width: 223px;
  height: 70px;
  object-fit: contain;
}

.site-header__logo-copy {
  color: #15324b;
}

.site-header__logo-kicker {
  color: #2f80b7;
}

.site-header__logo-title {
  font-size: 22px;
}

.site-header__nav-list {
  gap: 32px;
}

.site-header__nav {
  margin-left: auto;
}

.site-header__actions {
  margin-left: 32px;
  gap: 0;
}

.site-header__nav-link,
.site-header__nav-item.is-active > .site-header__nav-link {
  padding: 6px 0;
  border-radius: 0;
  color: #22313f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

.site-header__nav-link .site-header__nav-chevron {
  margin-left: 4px;
  color: #22313f;
}

.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.has-dropdown.is-hover-open > .site-header__nav-link,
.site-header__nav-item:hover > .site-header__nav-link {
  color: #2f80b7;
  background: transparent;
}

.site-header__nav-item.has-dropdown:hover > .site-header__nav-link .site-header__nav-chevron,
.site-header__nav-item.has-dropdown:focus-within > .site-header__nav-link .site-header__nav-chevron,
.site-header__nav-item.has-dropdown.is-hover-open > .site-header__nav-link .site-header__nav-chevron,
.site-header__nav-item:hover > .site-header__nav-link .site-header__nav-chevron {
  color: #2f80b7;
}

.site-header__cta {
  min-height: 54px;
  padding: 16px 32px;
  border: 1px solid #15324b;
  border-radius: 10px;
  background: transparent;
  color: #15324b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header__cta:hover {
  background: rgba(21, 50, 75, 0.08);
  color: #15324b;
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
  }

  .admin-bar .site-header {
    top: 0;
  }

  .site-header__utility-inner,
  .site-header__inner {
    padding-inline: 24px;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header__logo,
  .site-header__logo-image,
  .site-header__logo img {
    width: 168px;
    height: 53px;
  }

  .site-header__actions {
    margin-left: auto;
    justify-content: flex-end;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .site-header__utility {
    display: none;
  }

  .site-header__cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 520px) {
  .site-header__actions {
    gap: 10px;
  }

  .site-header__cta {
    min-height: 44px;
    padding: 0 12px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 430px) {
  .site-header__cta {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 999px;
    gap: 0;
  }

  .site-header__cta-label {
    display: none;
  }

  .site-header__cta-phone {
    display: inline-flex;
    width: 24px !important;
    height: 24px !important;
    transform: scale(1.85);
    transform-origin: center;
  }
}

/* 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;
}

@keyframes site-header-pay-shimmer {
  0%,
  72%,
  100% {
    transform: translateX(-180%);
  }
  84% {
    transform: translateX(180%);
  }
}

@keyframes site-header-pay-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes site-header-pay-icon-hover {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-2px) scale(1.08);
  }
  70% {
    transform: translateY(1px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__utility-pay,
  .site-header__utility-pay-icon {
    transition: none;
    animation: none;
  }

  .site-header__utility-pay::before {
    animation: none;
    transform: translateX(-180%);
  }
}

/* Menu-only refresh: dropdown, mobile drawer, and hamburger icon */
.site-header__nav {
  --header-nav-grid-columns: 6;
  --header-nav-column-offset: 1;
  margin-left: clamp(16px, 3vw, 40px);
  margin-right: clamp(16px, 3vw, 40px);
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  transform: translateX(calc((100% / var(--header-nav-grid-columns)) * var(--header-nav-column-offset)));
}

.site-header__nav-list {
  justify-content: center;
}

.site-header__dropdown {
  min-width: 280px;
}

.site-header__dropdown-panel {
  display: block;
  padding: 10px;
  border: 1px solid rgba(21, 50, 75, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(4, 13, 24, 0.16);
}

.site-header__dropdown-intro {
  display: none;
}

.site-header__dropdown-list {
  grid-template-columns: 1fr;
  gap: 6px;
}

.site-header__dropdown-item {
  position: relative;
}

.site-header__dropdown-item.has-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
}

.site-header__dropdown-link,
.site-header__dropdown-card {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.site-header__dropdown-link:hover,
.site-header__dropdown-link:focus-visible,
.site-header__dropdown-card:hover,
.site-header__dropdown-card:focus-within,
.site-header__dropdown-item.is-active .site-header__dropdown-link,
.site-header__dropdown-item.is-active .site-header__dropdown-card {
  transform: none;
  border: 0;
  background: #d9edf8;
  box-shadow: none;
}

.site-header__dropdown-parent-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.site-header__dropdown-submenu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #5a6a79;
}

.site-header__dropdown-submenu-icon svg {
  width: 100%;
  height: 100%;
}

.site-header__dropdown-label,
.site-header__dropdown-sub-label {
  color: #15324b;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-header__dropdown-text,
.site-header__dropdown-sub-text {
  display: none;
}

.site-header__dropdown-sub-list {
  position: absolute;
  top: -10px;
  left: 100%;
  min-width: 240px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(21, 50, 75, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(4, 13, 24, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s 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,
.site-header__dropdown-item.has-submenu.is-submenu-open .site-header__dropdown-sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.site-header__dropdown-sub-link {
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.site-header__dropdown-sub-link:hover,
.site-header__dropdown-sub-link:focus-visible,
.site-header__dropdown-sub-item.is-active .site-header__dropdown-sub-link {
  transform: none;
  border: 0;
  background: #d9edf8;
}
@media (max-width: 1180px) {
  .site-header__utility-inner,
  .site-header__inner {
    padding-inline: 24px;
  }

  .site-header__logo,
  .site-header__logo-image,
  .site-header__logo img {
    width: 190px;
    height: 60px;
  }

  .site-header__nav {
    display: none;
    transform: none;
    margin: 0;
  }

  .site-header__actions {
    margin-left: auto;
    gap: 12px;
  }

  .site-header__cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 12px;
  }

  .site-header__menu-button {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .site-header__menu-button:hover,
  .site-header__menu-button:focus-visible,
  .site-header__menu-button.isActive {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__menu-button-icon {
    width: 24px;
    height: 16px;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .site-header__menu-button-line {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #15324b;
    position: absolute;
    left: 0;
    transition: transform 0.22s ease;
  }

  .site-header__menu-button-line:first-child {
    top: 3px;
  }

  .site-header__menu-button-line:last-child {
    bottom: 3px;
  }

  .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(-5px) rotate(-45deg);
  }

  .site-header__menu-button-label {
    color: #15324b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

@media (max-width: 991px) {
  .site-header__nav {
    margin-left: auto;
    margin-right: 0;
    display: none;
    flex: 0 1 auto;
    transform: none;
  }

  .site-header__menu-button {
    display: inline-flex;
    width: auto;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .site-header__menu-button:hover,
  .site-header__menu-button:focus-visible,
  .site-header__menu-button.isActive {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header__menu-button-icon {
    width: 24px;
    height: 16px;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .site-header__menu-button-line {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #15324b;
    position: absolute;
    left: 0;
    transition: transform 0.22s ease;
  }

  .site-header__menu-button-line:first-child {
    top: 3px;
  }

  .site-header__menu-button-line:last-child {
    bottom: 3px;
  }

  .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(-5px) rotate(-45deg);
  }

  .site-header__menu-button-label {
    color: #15324b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .site-header__overlay {
    z-index: calc(var(--z-header, 1000) + 50);
    background: rgba(8, 28, 44, 0.42);
    backdrop-filter: blur(4px);
  }

  .site-header__drawer {
    z-index: calc(var(--z-header, 1000) + 60);
    inset: 22px 0 12px auto;
    width: min(390px, 100vw);
    max-height: calc(100dvh - 24px);
    padding: 0;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    background: #f4f8fb;
    border-left: 1px solid rgba(21, 50, 75, 0.12);
    box-shadow: -20px 0 48px rgba(4, 13, 24, 0.2);
  }

  .site-header__drawer-header {
    margin-bottom: 0;
    padding: 14px 18px 12px;
    border-bottom: 1px solid rgba(21, 50, 75, 0.14);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .site-header__drawer-logo,
  .site-header__drawer-logo-text {
    color: #15324b;
  }

  .site-header__drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(21, 50, 75, 0.16);
    border-radius: 12px;
    background: #f6f9fc;
    color: #15324b;
  }

  .site-header__drawer-body {
    height: calc(100vh - 69px - 24px);
    max-height: calc(100dvh - 69px - 24px);
    padding: 12px 14px 14px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #f4f8fb, #f8fbfe);
    box-shadow: none;
    color: #15324b;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header__drawer-intro {
    display: none;
  }

  .site-header__drawer-item {
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 6px;
  }

  .site-header__drawer-item:last-child {
    margin-bottom: 0;
  }

  .site-header__drawer-row {
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    min-height: 50px;
    border: 1px solid rgba(21, 50, 75, 0.1);
    border-radius: 14px;
    background: #ffffff;
  }

  .site-header__drawer-link-label,
  .site-header__drawer-sub-label {
    color: #15324b;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-header__drawer-link-text,
  .site-header__drawer-sub-text,
  .site-header__drawer-sub-child-text {
    color: #4a6072;
    font-size: 12px;
    line-height: 1.45;
  }

  .site-header__drawer-toggle,
  .site-header__drawer-sub-toggle {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(21, 50, 75, 0.12);
    border-radius: 8px;
    background: #eef4f9;
    color: #15324b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-header__drawer-toggle svg,
  .site-header__drawer-sub-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
  }

  .site-header__drawer-sub-item.is-active > .site-header__drawer-sub-row .site-header__drawer-sub-toggle svg {
    transform: rotate(180deg);
  }

  .site-header__drawer-sub {
    padding: 4px 0 6px;
  }

  .site-header__drawer-sub-list {
    gap: 6px;
    padding: 0;
    border-left: 0;
  }

  .site-header__drawer-sub-item {
    margin-left: 10px;
  }

  .site-header__drawer-sub-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    min-height: 46px;
    border: 1px solid rgba(47, 128, 183, 0.18);
    border-radius: 12px;
    background: #f2f7fb;
  }

  .site-header__drawer-sub-row .site-header__drawer-sub-link {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-header__drawer-sub-link,
  .site-header__drawer-sub-child-link {
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .site-header__drawer-sub-item.is-active .site-header__drawer-sub-link,
  .site-header__drawer-sub-child-item.is-active .site-header__drawer-sub-child-link {
    border: 0;
    background: transparent;
  }

  .site-header__drawer-sub-children-panel {
    display: none;
    overflow: hidden;
    padding: 4px 0 4px 2px;
  }

  .site-header__drawer-sub-children {
    margin: 0;
    padding: 2px 0 0 18px;
    gap: 6px;
  }

  .site-header__drawer-sub-child-label {
    color: #2f80b7;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-header__drawer-sub-label {
    color: #1f5f8a;
    font-size: 15px;
  }

  .site-header__drawer-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(21, 50, 75, 0.1);
    position: static;
    background: transparent;
  }

  .site-header__drawer-cta {
    min-height: 44px;
    border-radius: 999px;
    background: #2f80b7;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-header__drawer-meta a {
    color: #2c4458;
  }
}

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

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

  .site-header__drawer {
    inset: 10px 0 10px auto;
    width: 100vw;
    padding: 0;
    border-radius: 16px 0 0 16px;
  }

  .site-header__drawer-body {
    height: calc(100vh - 65px - 20px);
    max-height: calc(100dvh - 65px - 20px);
    padding: 10px 10px 12px;
  }

  .site-header__drawer-row,
  .site-header__drawer-sub-row {
    padding-left: 10px;
    padding-right: 10px;
  }

  .site-header__drawer-link-label,
  .site-header__drawer-sub-label {
    font-size: 15px;
  }
}