/* Shared site header and inner-page title banner. */
#site-header {
  position: relative;
  width: 100%;
  z-index: 1200;
  min-height: 96px;
  background: #ffffff;
  border-bottom: 1px solid rgba(24, 90, 78, .08);
  box-shadow: 0 1px 0 rgba(24, 90, 78, .08);
}
.site-header,
.site-header.fixed,
.site-header.smaller {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  min-height: 96px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}
.site-header--hero {
  background: transparent;
  box-shadow: none;
}
.site-header .container {
  width: min(100%, 1440px);
  max-width: 1440px;
  padding-inline: 32px;
}
.site-header__inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto;
  min-height: 96px;
  align-items: center;
  gap: 32px;
}
.site-header__logo {
  position: relative;
  display: block;
  width: min(225px, 100%);
  max-height: 58px;
}
.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.site-header__logo-light { display: none !important; }
.site-header__nav-shell {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 8px 10px 8px 24px;
	border: 1px solid rgba(24, 90, 78, .08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 10px 35px rgba(16, 63, 56, .08);
}
.site-header__nav,
.site-header__menu,
.site-header__item { margin: 0; padding: 0; }
.site-header__menu {
	display: flex;
	align-items: center;
	gap: clamp(30px, 1.25vw, 20px);
	list-style: none;
}
.site-header__item { position: relative; list-style: none; }
.site-header__link {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: #1f302c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.site-header__link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #185a4e;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-header__link:hover,
.site-header__link:focus-visible,
.site-header__link.is-active { color: #185a4e; }
.site-header__link:hover::after,
.site-header__link:focus-visible::after,
.site-header__link.is-active::after { transform: scaleX(1); }
.site-header__item--dropdown { padding-right: 13px; }
.site-header__submenu-toggle {
  position: absolute;
  top: 50%;
  right: -3px;
  display: grid;
  width: 18px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}
.site-header__submenu-toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #43534f;
  border-bottom: 1.5px solid #43534f;
  transform: translateY(-2px) rotate(45deg);
}
.site-header__submenu {
  position: absolute;
  top: calc(100% + 13px);
  left: -18px;
  z-index: 20;
  width: 230px;
  margin: 0;
  padding: 12px;
  visibility: hidden;
  border: 1px solid rgba(24, 90, 78, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(16, 63, 56, .16);
  list-style: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.site-header__submenu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}
.site-header__submenu a {
  display: block;
  padding: 9px 11px;
  border-radius: 9px;
  color: #344b45;
  font-size: 14px;
  line-height: 1.3;
}
.site-header__submenu a:hover,
.site-header__submenu a:focus-visible { background: #edf5f1; color: #185a4e; }

/* Healing Paths mega menu */
.site-header__mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 20;
  width: min(720px, calc(100vw - 64px));
  margin: 0;
  padding: 36px;
  visibility: hidden;
  border: 1px solid rgba(24, 90, 78, .08);
  border-radius: 22px;
  background: #fdfcf8;
  box-shadow: 0 20px 50px rgba(16, 63, 56, .12);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.site-header__mega::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 20px;
  content: "";
}
.site-header__mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
}
.site-header__mega-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}
.site-header__mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 -14px;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background-color .2s ease;
}
.site-header__mega-item:hover,
.site-header__mega-item:focus-visible {
  background: #f2f6f0;
}
.site-header__mega-item-title {
  color: #17332c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.site-header__mega-item-arrow {
  color: #185a4e;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.site-header__mega-item:hover .site-header__mega-item-arrow,
.site-header__mega-item:focus-visible .site-header__mega-item-arrow {
  opacity: 1;
  transform: translateX(0);
}
.site-header__actions { display: flex; align-items: center; gap: 8px; }
.site-header__contact,
.site-header__arrow {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}
.site-header__contact {
  padding-inline: 24px;
  background: #185a4e;
  color: #fff;
  font-size: 14px;
}
.site-header__contact:hover,
.site-header__contact:focus-visible { background: #103f38; color: #fff; transform: translateY(-1px); }
.site-header__contact.is-active { box-shadow: inset 0 0 0 2px #d9ebdf; }
.site-header__arrow {
  width: 56px;
  background: #d9e8c2;
  color: #185a4e;
  font-size: 22px;
}
.site-header__arrow:hover,
.site-header__arrow:focus-visible { background: #c9dfaa; color: #103f38; transform: translateY(-1px); }
.site-header__toggle { display: none; }
.site-header a:focus-visible,
.site-header button:focus-visible { outline: 3px solid #b99152; outline-offset: 3px; }

.page-hero {
  position: relative;
  min-height: 120px;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #4d887a 0%, #79b672 55%, #9ad47d 100%);
  color: #fff;
}
.page-hero__inner {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.page-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 2.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
}
.page-hero__breadcrumb,
.page-hero__breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.page-hero__breadcrumb li { margin: 0; padding: 0; color: rgba(255,255,255,.9); line-height: 1.4; }
.page-hero__breadcrumb li + li::before { margin-right: 12px; color: rgba(255,255,255,.65); content: "/"; }
.page-hero__breadcrumb a { color: #fff; font-weight: 600; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }

@media (min-width: 1200px) {
  .site-header__item--dropdown:hover > .site-header__submenu,
  .site-header__item--dropdown:focus-within > .site-header__submenu,
  .site-header__item--dropdown.is-open > .site-header__submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .site-header__item--mega:hover > .site-header__mega,
  .site-header__item--mega:focus-within > .site-header__mega,
  .site-header__item--mega.is-open > .site-header__mega {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1310px) and (min-width: 1200px) {
  .site-header .container { padding-inline: 24px; }
  .site-header__inner { grid-template-columns: minmax(190px, 1fr) auto; gap: 20px; }
  .site-header__logo { width: 200px; }
  .site-header__nav-shell { padding-left: 18px; }
  .site-header__menu { gap: 11px; }
  .site-header__link { font-size: 13px; }
  .site-header__contact { padding-inline: 19px; }
}
@media (max-width: 1199px) {
  #site-header,
  .site-header,
  .site-header.fixed,
  .site-header.smaller { min-height: 84px; }
  .site-header .container { padding-inline: 28px; }
  .site-header__inner { grid-template-columns: 1fr auto; min-height: 84px; gap: 20px; }
  .site-header__logo { width: 205px; }
  .site-header__nav-shell {
    position: absolute;
    top: calc(100% - 1px);
    right: 28px;
    left: 28px;
    display: none;
    max-height: calc(100vh - 104px);
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(16, 63, 56, .2);
  }
  .site-header.is-menu-open .site-header__nav-shell { display: flex; }
  .site-header__menu { align-items: stretch; flex-direction: column; gap: 2px; }
  .site-header__link { display: flex; min-height: 46px; padding: 0 44px 0 10px; font-size: 15px; }
  .site-header__link::after { display: none; }
  .site-header__item--dropdown { padding-right: 0; }
  .site-header__submenu-toggle { top: 8px; right: 4px; width: 42px; height: 38px; transform: none; }
  .site-header__item.is-open .site-header__submenu-toggle span { transform: translateY(2px) rotate(225deg); }
  .site-header__submenu { position: static; display: none; width: 100%; margin: 0 0 8px; padding: 7px 10px; visibility: visible; border: 0; border-radius: 12px; background: #f2f7f4; box-shadow: none; opacity: 1; transform: none; }
  .site-header__item.is-open > .site-header__submenu { display: block; }
  .site-header__mega {
    position: static;
    display: none;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 0 8px;
    visibility: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .site-header__item.is-open > .site-header__mega { display: block; }
  .site-header__mega-grid { display: block; }
  .site-header__mega-col { display: block; gap: 0; }
  .site-header__mega-item {
    min-height: 44px;
    margin: 0;
    padding: 10px 6px;
    border-radius: 10px;
  }
  .site-header__mega-item-arrow { opacity: .55; transform: none; }
  .site-header__mega-item:hover .site-header__mega-item-arrow,
  .site-header__mega-item:focus-visible .site-header__mega-item-arrow { opacity: .55; transform: none; }
  .site-header__actions { padding-top: 12px; border-top: 1px solid rgba(24,90,78,.12); }
  .site-header__contact { flex: 1; }
  .site-header__toggle {
    display: grid;
    width: 50px;
    height: 50px;
    padding: 13px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 14px;
    background: #185a4e;
  }
  .site-header__toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
  .site-header.is-menu-open .site-header__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-menu-open .site-header__toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-menu-open .site-header__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-header--hero .site-header__toggle { background: rgba(255,255,255,.96); }
  .site-header--hero .site-header__toggle span { background: #185a4e; }
  body.nav-is-open { overflow: hidden; }
}
@media (min-width: 560px) and (max-width: 1199px) {
  .site-header__mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
}
@media (max-width: 767px) {
  #site-header,
  .site-header,
  .site-header.fixed,
  .site-header.smaller { min-height: 76px; }
  .site-header .container { padding-inline: 20px; }
  .site-header__inner { min-height: 76px; }
  .site-header__logo { width: 184px; max-height: 50px; }
  .site-header__logo img { max-height: 50px; }
  .site-header__nav-shell { right: 20px; left: 20px; max-height: calc(100vh - 92px); }
  .page-hero,
  .page-hero__inner { min-height: 116px; }
  .page-hero__inner { padding-block: 25px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; }
  .page-hero__breadcrumb { font-size: 14px; }
}
@media (max-width: 390px) {
  .site-header__logo { width: 165px; }
  .site-header__toggle { width: 46px; height: 46px; }
  .site-header__nav-shell { padding: 16px; }
  .site-header__contact,
  .site-header__arrow { min-height: 52px; }
  .site-header__arrow { width: 52px; }
}

/* Prevent legacy template mobile-header padding from changing reserved header height. */
.site-header.header-mobile { padding: 0 !important; }
.noscript-notice { padding: 12px 20px; background: #fff3cd; color: #473b13; text-align: center; }

.site-header.header-mobile { overflow: visible !important; background: transparent !important; transition: background-color 0.35s ease !important; }
.site-header--hero.header-mobile { background: transparent !important; }
.site-header__nav { height: auto !important; overflow: visible !important; }


/* Maintain solid white background on mobile expand z-menu */
.site-header.is-menu-open,
.site-header.is-menu-open.header-mobile {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Default Logo Visibility (Inner pages: Dark logo only) */
.site-header__logo-dark {
  display: block !important;
}
.site-header__logo-light {
  display: none !important;
}

/* Homepage Transparent Header Overrides */
.home-page #site-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-page .site-header__logo-dark {
  display: none !important;
}
.home-page .site-header__logo-light {
  display: block !important;
}

.home-page .site-header__toggle {
  background: rgba(255, 255, 255, 0.96) !important;
}
.home-page .site-header__toggle span {
  background: #185a4e !important;
}

/* Homepage Opened Menu State Overrides */
.home-page #site-header.is-menu-open {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(24, 90, 78, .08) !important;
  box-shadow: 0 10px 30px rgba(16, 63, 56, 0.05) !important;
}
.home-page #site-header.is-menu-open .site-header__logo-dark {
  display: block !important;
}
.home-page #site-header.is-menu-open .site-header__logo-light {
  display: none !important;
}
.home-page #site-header.is-menu-open .site-header__toggle {
  background: #185a4e !important;
}
.home-page #site-header.is-menu-open .site-header__toggle span {
  background: #ffffff !important;
}

/* Mobile responsive view header transparency + sticky background on scroll */
@media (max-width: 767px) {
  #site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    min-height: 76px !important;
    transition: background-color 250ms ease, box-shadow 250ms ease !important;
  }

  /* --- ABOUT PAGE HEADER (Always White + Dark Logo) --- */
  body.about-page #site-header {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(24, 90, 78, .08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  }
  body.about-page #site-header .site-header__logo-dark {
    display: block !important;
  }
  body.about-page #site-header .site-header__logo-light {
    display: none !important;
  }

  /* --- HOMEPAGE & ALL OTHER PAGES --- */
  body:not(.about-page) #site-header.header-not-scrolled:not(.is-menu-open) {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  body:not(.about-page) #site-header.header-scrolled,
  body:not(.about-page) #site-header.is-menu-open {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(24, 90, 78, .08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  }

  /* Logo visibility logic for Homepage & All Other Pages */
  body:not(.about-page) #site-header.header-not-scrolled:not(.is-menu-open) .site-header__logo-dark {
    display: none !important;
  }
  body:not(.about-page) #site-header.header-not-scrolled:not(.is-menu-open) .site-header__logo-light {
    display: block !important;
  }
  body:not(.about-page) #site-header.header-scrolled .site-header__logo-dark,
  body:not(.about-page) #site-header.is-menu-open .site-header__logo-dark {
    display: block !important;
  }
  body:not(.about-page) #site-header.header-scrolled .site-header__logo-light,
  body:not(.about-page) #site-header.is-menu-open .site-header__logo-light {
    display: none !important;
  }

  /* --- TOGGLE BUTTON STYLE OVERRIDES --- */
  /* Hamburger button styles when header is transparent */
  body:not(.about-page) #site-header.header-not-scrolled:not(.is-menu-open) .site-header__toggle {
    background: rgba(255, 255, 255, 0.96) !important;
  }
  body:not(.about-page) #site-header.header-not-scrolled:not(.is-menu-open) .site-header__toggle span {
    background: #185a4e !important;
  }

  /* Hamburger button styles when header is white */
  body.about-page #site-header .site-header__toggle,
  body:not(.about-page) #site-header.header-scrolled .site-header__toggle,
  body:not(.about-page) #site-header.is-menu-open .site-header__toggle {
    background: #185a4e !important;
  }
  body.about-page #site-header .site-header__toggle span,
  body:not(.about-page) #site-header.header-scrolled .site-header__toggle span,
  body:not(.about-page) #site-header.is-menu-open .site-header__toggle span {
    background: #ffffff !important;
  }

  /* Push top sections of inner pages down so they aren't covered by the fixed mobile header */
  body:not(.home-page) .page-hero {
    padding-top: 76px !important;
  }
  
  body:not(.home-page) .lh-about-hero-section {
    padding-top: calc(76px + 30px) !important;
  }
  
  body:not(.home-page) .lh-stories-section:first-of-type {
    padding-top: calc(76px + 30px) !important;
  }

  body:not(.home-page) #content > section:first-of-type:not(.page-hero):not(.lh-about-hero-section):not(.lh-stories-section) {
    padding-top: calc(76px + 40px) !important;
  }
}

.home-page .header-scrolled .container.site-header__inner {
	background: #fff;
	position: relative;
	top: -12px;
}

