/* (c) 2026 Sentys Inc. All rights reserved. */





.products-section {
  background: var(--white);
  padding: 48px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.products-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 auto 24px;
  max-width: 1100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease;
  opacity: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.4s var(--spring);
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--gray-bg);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
}

.product-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.product-card-btn {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
  align-self: flex-start;
}

.product-card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(175, 209, 57, 0.4);
}


.product-listing {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.product-listing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}

.product-listing h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}

.product-listing p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1rem;
}

.product-listing img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
}

.btn-pill {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.btn-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(175, 209, 57, 0.4);
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-listing { padding: 1.5rem 0; }
  .product-listing img { max-width: 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}


.product-card--browse {
  text-decoration: none;
  color: inherit;
}
.product-card-image--browse {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7ec 0%, #e8ecd6 100%);
  border-bottom: 2px solid #dde4c0;
}
.browse-icon {
  width: 56px;
  height: 56px;
  color: #8bad00;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.product-card--browse:hover .browse-icon {
  opacity: 1;
  transform: scale(1.1);
}







.products-section { scroll-margin-top: 96px; }

.products-section__title {


  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  padding: 16px 0;
  margin: 0 auto 24px;
  max-width: 1100px;
  border-bottom: 0;
}

@media (max-width: 768px) {
  .products-section__title {
    padding: 14px 0;
    margin: 0 auto 24px;
  }
}





body.has-stuck-section .site-header.scrolled,
body.has-stuck-section .products-section__title {
  box-shadow: none !important;
}




.products-section {
  border: 0;
  border-radius: 0;
  margin-top: 8px;
  margin-bottom: 8px;
}




.product-card--folded { display: none; }



.hero-title-row {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}
.hero-title-row h1 { margin: 0; }
.hero-supplier-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;





  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-supplier-badge[hidden] { display: none; }
.hero-supplier-badge__logo {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.hero-supplier-badge__name { display: none; }
.hero-supplier-badge__clear {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: background 0.15s ease, transform 0.15s ease;
}
.hero-supplier-badge__clear:hover {
  background: #000;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .hero-title-row { gap: 14px; }
  .hero-supplier-badge__logo { height: 40px; max-width: 140px; }
  .hero-supplier-badge__clear { top: -6px; right: -6px; width: 18px; height: 18px; font-size: 0.7rem; }
}


.synchrotron-hero {
  margin: 0 auto 28px;
  max-width: 1100px;
}
.synchrotron-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.synchrotron-hero figcaption {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  text-align: center;
  line-height: 1.5;
}
.synchrotron-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #444;
}



.family-jumpbar {
  position: sticky;
  top: 64px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e6dc;
}
.family-jumpbar.is-hidden { display: none; }





.family-jumpbar__track {
  display: flex;
  gap: 2px;
  max-width: none;
  margin: 0;
  padding: 0 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}
.family-jumpbar__track::-webkit-scrollbar { display: none; }
.family-jumpbar__chip {
  flex: none;
  padding: 15px 13px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #707070;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.family-jumpbar__chip:hover { color: #1a1a19; }
.family-jumpbar__chip.is-active { color: #1a1a19; border-bottom-color: #B0D237; }
.family-jumpbar__chip.is-hidden { display: none; }

.products-section { scroll-margin-top: 126px; }



.products-grid--panels { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) { .products-grid--panels { grid-template-columns: 1fr; } }


.products-section__title-link { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.products-section__title-link:hover { color: #69842b; }
.products-section__title-arrow { font-size: 0.75em; color: #B0D237; transition: transform 0.2s ease; }
.products-section__title-link:hover .products-section__title-arrow { transform: translateX(4px); }




.family-jumpbar__up {
  flex: none;
  align-self: center;
  padding: 15px 4px 12px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #1a1a19;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.family-jumpbar__up:hover { color: #69842b; }
.family-jumpbar__sep {
  flex: none;
  align-self: center;
  padding: 0 10px 2px;
  color: #c9c9c4;
  font-size: 0.8rem;
}







.nav-stack { position: sticky; top: 64px; z-index: 900; }






.nav-stack.crumb-trail { z-index: 990; }
.nav-stack > .family-jumpbar,
.nav-stack > .family-submenu { position: static; top: auto; }
.family-jumpbar--has-sub { border-bottom: 0; }
.family-submenu {
  position: sticky;
  top: 109px;
  z-index: 899;
  background: rgba(249, 249, 246, 0.97);


  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.055);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.family-submenu__track {
  display: flex;
  gap: 2px;
  max-width: none;
  margin: 0;
  padding: 0 48px 0 84px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.family-submenu__track::-webkit-scrollbar { display: none; }




.family-submenu__chip {
  flex: none;
  margin: 6px 2px 7px;
  padding: 5px 13px 6px;
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #83837c;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.family-submenu__chip:hover { color: #1a1a19; background: rgba(0, 0, 0, 0.04); }
.family-submenu__chip.is-active {
  color: #1a1a19;
  font-weight: 600;
  background: rgba(176, 210, 57, 0.26);
}
@media (max-width: 900px) {
  .family-jumpbar__track { padding-left: 24px; padding-right: 24px; }
  .family-submenu__track { padding-left: 52px; padding-right: 24px; }
  .family-subsub__track  { padding-left: 80px; padding-right: 24px; }
}
@media (max-width: 760px) {
  .family-submenu { position: static; }
  .family-jumpbar__track { padding-left: 16px; padding-right: 16px; }
  .family-submenu__track { padding-left: 34px; padding-right: 16px; }
  .family-subsub__track  { padding-left: 52px; padding-right: 16px; }
}


.products-section--plain {
  border: 0;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
}



.family-jumpbar--inline {
  position: static;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid #e8e6dc;
  margin: 0 0 30px;
}
.family-jumpbar--inline .family-jumpbar__track { padding-left: 0; padding-right: 0; max-width: none; }
.family-jumpbar--inline .family-jumpbar__up,
.family-jumpbar--inline .family-jumpbar__chip { padding-top: 4px; padding-bottom: 11px; }
.family-jumpbar--inline .family-jumpbar__chip:first-of-type { padding-left: 0; }




.family-jumpbar--stepped { display: flex; align-items: stretch; gap: 4px; }
.family-jumpbar--stepped .family-jumpbar__track { flex: 1 1 auto; min-width: 0; }


.family-jumpbar--stepped .family-jumpbar__chip {
  transition: color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.family-jumpbar__step {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  border-radius: 999px;
  color: #7a7a72;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}



.family-jumpbar--inline .family-jumpbar__step { margin: 7px 0; }
@media (hover: hover) and (pointer: fine) {
  .family-jumpbar__step:hover { background: #f2f4e9; color: var(--green, #7f9b28); }
}
.family-jumpbar__step:focus-visible { outline: 2px solid var(--green, #B0D237); outline-offset: 2px; }







.section-topnav {
  position: sticky;
  top: 64px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8e6dc;
}
.section-topnav .family-jumpbar--inline { border-bottom: 0; margin: 0; }








.family-jumpbar--stepped .family-jumpbar__track { position: relative; }
.family-jumpbar__ink {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: #B0D237;
  pointer-events: none;
}
.family-jumpbar--stepped.has-ink .family-jumpbar__chip.is-active { border-bottom-color: transparent; }












@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 300ms;
  animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes sentys-page-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
[data-page-fade] {




  animation: sentys-page-in 0.42s cubic-bezier(0.32, 0.72, 0, 1) backwards;



  transition: opacity 0.3s ease, transform 0.3s ease;
}
html.is-page-leaving [data-page-fade] {
  opacity: 0;
  transform: translateY(-6px);
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-page-fade] { animation: none; }
  html.is-page-leaving [data-page-fade] { opacity: 1; transform: none; transition: none; }
}
@supports (view-transition-name: none) {
  [data-page-fade] { animation: none; transition: none; }
  html.is-page-leaving [data-page-fade] { opacity: 1; transform: none; }
}





.family-subsub {
  background: rgba(252, 252, 250, 0.97);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.family-subsub__track {
  display: flex;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0 48px 0 120px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.family-subsub__track::-webkit-scrollbar { display: none; }
.family-subsub__chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: #9a9a93;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.family-subsub__chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  flex: none;
}
.family-subsub__chip:hover { color: #1a1a19; }
.family-subsub__chip.is-active { color: #1a1a19; font-weight: 600; }
.family-subsub__chip.is-active::before { background: #B0D237; }





.product-card--browse {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  min-height: 116px;
  padding: 22px 32px;
  text-decoration: none;
  color: #1a1a19;
  background-color: #f6f7f2;
  background-image: linear-gradient(rgba(26, 26, 25, 0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26, 26, 25, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: -1px -1px;
  border-color: rgba(0, 0, 0, 0.08);
}
.product-card--browse .browse-icon { width: 48px; height: 48px; flex: 0 0 48px; color: #69842b; }
.product-card-body--browse { padding: 0; flex: 1 1 auto; }
.product-card-body--browse .product-card-title { margin: 0 0 4px; }
.product-card-body--browse .product-card-desc { margin: 0; }
.product-card-arrow { font-size: 28px; line-height: 1; color: #B0D237; flex: 0 0 auto; transition: transform 0.2s ease; }
.product-card--browse:hover .product-card-arrow { transform: translateX(5px); }












.nav-stack__crumb {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  height: 34px;
  background: rgba(249, 249, 246, 0.97);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.055);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}





.nav-stack__step {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0 -3px;
  border-radius: 999px;
  color: #8d8d84;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-stack__step:hover { background: #eef1e3; color: var(--green, #7f9b28); }
}
.nav-stack__step:focus-visible { outline: 2px solid var(--green, #B0D237); outline-offset: 2px; }
.nav-stack__step--prev { margin-right: 4px; }
.nav-stack__step--next { margin-left: 4px; }



.nav-stack__crumb-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #55554f;
  text-decoration: none;
  white-space: nowrap;
}



@media (hover: hover) and (pointer: fine) {
  .nav-stack__crumb-link:hover { color: var(--green, #7f9b28); }
}
.nav-stack__crumb-sep { color: #b9b9b1; font-size: 0.72rem; font-family: var(--font-heading); font-weight: 300; }





body.hero-head-v2 .nav-stack .family-jumpbar--page,
body.hero-head-v2 .nav-stack .family-submenu,
body.hero-head-v2 .nav-stack .family-subsub {
  overflow: hidden;
  max-height: 64px;
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  will-change: max-height, transform, opacity;
  transition: max-height 0.48s cubic-bezier(0.65, 0.05, 0.36, 1),
              opacity 0.28s ease 0.08s,
              transform 0.5s cubic-bezier(0.34, 1.3, 0.5, 1);
}
body.hero-head-v2 .nav-stack--crumbed .family-jumpbar--page,
body.hero-head-v2 .nav-stack--crumbed .family-submenu,
body.hero-head-v2 .nav-stack--crumbed .family-subsub {
  max-height: 0;
  opacity: 0;



  transform: translateY(-10px) scaleY(0.92);
  transition: max-height 0.48s cubic-bezier(0.65, 0.05, 0.36, 1),
              opacity 0.26s ease,
              transform 0.48s cubic-bezier(0.65, 0.05, 0.36, 1);
}


body.hero-head-v2 .nav-stack .family-submenu { transition-delay: 0.03s, 0.03s, 0.03s; }
body.hero-head-v2 .nav-stack .family-subsub { transition-delay: 0.06s, 0.06s, 0.06s; }
@media (prefers-reduced-motion: reduce) {
  body.hero-head-v2 .nav-stack .family-jumpbar--page,
  body.hero-head-v2 .nav-stack .family-submenu,
  body.hero-head-v2 .nav-stack .family-subsub { transition: none; }
}








body.hero-head-v2 .family-jumpbar__track { padding: 9px 48px 8px; }
body.hero-head-v2 .nav-stack--stuck .family-jumpbar__track { padding-top: 7px; padding-bottom: 7px; }














body.hero-head-v2 .family-jumpbar__chip {
  padding: 4px 13px 3px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-bottom-width: 2px;
}
body.hero-head-v2 .family-submenu__chip {
  border-radius: 0;
  background: none;
  border-bottom: 2px solid transparent;
  margin: 5px 2px;
  padding: 4px 12px 3px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
  color: #6f6f68;
}
body.hero-head-v2 .family-submenu__chip.is-active {
  background: none;
  color: #1a1a19;
  font-weight: 600;
  border-bottom-color: #B0D237;
}
body.hero-head-v2 .family-subsub__chip::before { display: none; }
body.hero-head-v2 .family-subsub__chip {
  gap: 0;
  padding: 5px 12px 3px;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #97978f;
}
body.hero-head-v2 .family-subsub__chip.is-active {
  color: #1a1a19;
  font-weight: 600;
  border-bottom-color: #B0D237;
}



.nav-stack__crumb-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #55554f;
  text-decoration: none;
  white-space: nowrap;
}



@media (hover: hover) and (pointer: fine) {
  .nav-stack__crumb-link:hover { color: var(--green, #7f9b28); }
}
.nav-stack__crumb-sep { color: #b9b9b1; font-size: 0.72rem; font-family: var(--font-heading); font-weight: 300; }





body.hero-head-v2 .nav-stack .family-jumpbar--page,
body.hero-head-v2 .nav-stack .family-submenu,
body.hero-head-v2 .nav-stack .family-subsub {
  overflow: hidden;
  max-height: 64px;
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  will-change: max-height, transform, opacity;
  transition: max-height 0.48s cubic-bezier(0.65, 0.05, 0.36, 1),
              opacity 0.28s ease 0.08s,
              transform 0.5s cubic-bezier(0.34, 1.3, 0.5, 1);
}
body.hero-head-v2 .nav-stack--crumbed .family-jumpbar--page,
body.hero-head-v2 .nav-stack--crumbed .family-submenu,
body.hero-head-v2 .nav-stack--crumbed .family-subsub {
  max-height: 0;
  opacity: 0;



  transform: translateY(-10px) scaleY(0.92);
  transition: max-height 0.48s cubic-bezier(0.65, 0.05, 0.36, 1),
              opacity 0.26s ease,
              transform 0.48s cubic-bezier(0.65, 0.05, 0.36, 1);
}


body.hero-head-v2 .nav-stack .family-submenu { transition-delay: 0.03s, 0.03s, 0.03s; }
body.hero-head-v2 .nav-stack .family-subsub { transition-delay: 0.06s, 0.06s, 0.06s; }
@media (prefers-reduced-motion: reduce) {
  body.hero-head-v2 .nav-stack .family-jumpbar--page,
  body.hero-head-v2 .nav-stack .family-submenu,
  body.hero-head-v2 .nav-stack .family-subsub { transition: none; }
}








body.hero-head-v2 .family-jumpbar__track { padding: 9px 48px 8px; }
body.hero-head-v2 .nav-stack--stuck .family-jumpbar__track { padding-top: 7px; padding-bottom: 7px; }


.nav-stack__crumb-here { position: relative; display: inline-flex; align-items: center; }
.nav-stack__crumb-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  padding: 2px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 400;



  letter-spacing: 0.045em;
  text-transform: none;
  color: #1c1c1a;
}


@media (hover: hover) and (pointer: fine) {



  button.nav-stack__crumb-current:hover { color: var(--green, #7f9b28); }
}
.nav-stack__crumb-caret { opacity: 0.55; transform: translateY(1px); transition: transform 0.18s ease; }
.nav-stack__crumb-current[aria-expanded="true"] .nav-stack__crumb-caret { transform: translateY(1px) rotate(180deg); }




.nav-stack__crumb-here--up { gap: 3px; }
.nav-stack__crumb-more {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: none;
  margin: 0;
  padding: 2px 1px;
  line-height: 0;
  color: #9a9a92;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .nav-stack__crumb-here--up:hover .nav-stack__crumb-link,
  .nav-stack__crumb-here--up:hover .nav-stack__crumb-more { color: var(--green, #7f9b28); }
  .nav-stack__crumb-here--up:hover .nav-stack__crumb-caret { transform: translateY(1px) rotate(180deg); }
}
.nav-stack__crumb-more[aria-expanded="true"] .nav-stack__crumb-caret { transform: translateY(1px) rotate(180deg); }




.nav-stack__peers {
  position: absolute;
  top: calc(100% + 10px);
  left: -12px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 6px;
  background: #fff;
  border: 1px solid #e6e6e0;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);



  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.42s var(--spring, cubic-bezier(0.34, 1.56, 0.64, 1)), visibility 0s linear 0.42s;
}

.nav-stack__peer {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.24s ease, transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), background-color 0.15s ease;
}
.nav-stack__crumb-here:hover .nav-stack__peer,
.nav-stack__crumb-here:focus-within .nav-stack__peer,
.nav-stack__crumb-here.is-open .nav-stack__peer { opacity: 1; transform: none; }
.nav-stack__crumb-here:hover .nav-stack__peer:nth-child(1),
.nav-stack__crumb-here.is-open .nav-stack__peer:nth-child(1) { transition-delay: 0.06s; }
.nav-stack__crumb-here:hover .nav-stack__peer:nth-child(2),
.nav-stack__crumb-here.is-open .nav-stack__peer:nth-child(2) { transition-delay: 0.10s; }
.nav-stack__crumb-here:hover .nav-stack__peer:nth-child(3),
.nav-stack__crumb-here.is-open .nav-stack__peer:nth-child(3) { transition-delay: 0.14s; }
.nav-stack__crumb-here:hover .nav-stack__peer:nth-child(4),
.nav-stack__crumb-here.is-open .nav-stack__peer:nth-child(4) { transition-delay: 0.18s; }
.nav-stack__crumb-here:hover .nav-stack__peer:nth-child(n+5),
.nav-stack__crumb-here.is-open .nav-stack__peer:nth-child(n+5) { transition-delay: 0.22s; }











@media (hover: hover) and (pointer: fine) {
  .nav-stack__crumb-here:hover::after,
  .nav-stack__crumb-here:focus-within::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
}
.nav-stack__crumb-here.is-open::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }


@media (hover: hover) and (pointer: fine) {
  .nav-stack__crumb-here:hover .nav-stack__peers,
  .nav-stack__crumb-here:focus-within .nav-stack__peers {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s, 0s, 0s;
  }
}
.nav-stack__crumb-here.is-open .nav-stack__peers {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s, 0s, 0s;
}
.nav-stack__peer {
  padding: 7px 12px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: #4a4a45;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .nav-stack__peer:hover { background: #f4f6ec; color: #1c1c1a; }
}


.nav-stack__peer.is-current { font-weight: 600; color: #1c1c1a; }



@media (max-width: 760px) {
  .site-header .nav-stack__crumb { margin-left: 12px; }
  .site-header .nav-stack__crumb .nav-stack__crumb-here--up,
  .site-header .nav-stack__crumb .nav-stack__crumb-link,
  .site-header .nav-stack__crumb .nav-stack__crumb-sep { display: none; }
  .nav-stack__crumb-current { font-size: 0.74rem; max-width: 46vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav-stack__peers { left: 0; }
}







body.hero-head-v2.nav-oneline .nav-stack .family-jumpbar--page,
body.hero-head-v2.nav-oneline .nav-stack .family-submenu,
body.hero-head-v2.nav-oneline .nav-stack .family-subsub { display: none; }





body.hero-head-v2.nav-oneline .nav-stack {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 48px;
  background: rgba(249, 249, 246, 0.97);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.055);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);


  transition: height 0.32s cubic-bezier(0.32, 0.72, 0, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease;
}




body.hero-head-v2.nav-oneline .nav-stack:not(.crumb-trail) { display: none; }
body.hero-head-v2.nav-oneline .nav-stack--crumbed {
  background: none;
  box-shadow: none;
  height: 0;
  padding: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body.hero-head-v2.nav-oneline .nav-stack .nav-stack__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;




  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1),
              background-color 0.3s ease,
              box-shadow 0.3s ease,
              padding 0.3s ease;
}
@media (max-width: 900px) {
  body.hero-head-v2.nav-oneline .nav-stack { padding: 0 24px; }
}



.nav-stack__crumb-lead { display: inline-flex; align-items: center; gap: 8px; }



.nav-stack .crumb-filter {
  display: none;
  align-items: center;
  gap: 9px;



  margin-left: 22px;
  padding-right: 0;
  white-space: nowrap;
}
body.hero-head-v2.nav-oneline .nav-stack .crumb-filter { display: inline-flex; }



body.minimal-site .nav-stack .crumb-filter { display: inline-flex; }
.nav-stack--crumbed .crumb-filter { display: none !important; }
.crumb-filter__logo { height: 20px; width: auto; max-width: 90px; object-fit: contain; }
.crumb-filter__label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #55554f;
}
.crumb-filter__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  color: #4a4a45;
  text-decoration: none;


  line-height: 0;
}
.crumb-filter__clear svg { display: block; }
@media (hover: hover) and (pointer: fine) {
  .crumb-filter__clear:hover { background: var(--green, #B0D237); color: #1c1c1a; }
}
@media (max-width: 760px) {
  .nav-stack .crumb-filter { margin-left: 12px; gap: 6px; }
  .crumb-filter__label { font-size: 0.65rem; }
  .crumb-filter__logo { height: 16px; max-width: 70px; }
}





.nav-stack__crumb-scope { display: none; }
.site-header .nav-stack__crumb-scope {
  display: inline-flex;
  align-items: center;
  gap: 6px;




  margin-left: -14px;
  margin-right: 4px;
}
.nav-stack__crumb-scope-name {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.045em;
  color: #1c1c1a;
}
.nav-stack__crumb-scope-logo {


  height: 22px;
  width: auto;
  max-width: 62px;
  object-fit: contain;
  display: block;
}
@media (max-width: 760px) {

  .site-header .nav-stack__crumb-scope { margin-left: -10px; }
  .nav-stack__crumb-scope-logo { height: 18px; max-width: 46px; }
}

.site-header .nav-stack__crumb-lead { display: none; }


.site-header .nav-stack__crumb--rootless .nav-stack__crumb-lead { display: inline-flex; }



.nav-stack__crumb-current--leaf { cursor: default; }
.nav-stack__crumb-current--leaf:hover { color: #1c1c1a; }
