@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700;800;900&display=swap');

:root {
  --site-shell-header-height: 68px;
  /* Every header button hangs off this so they can never drift apart. */
  --site-shell-control-height: 48px;
}

html {
  scroll-padding-top: calc(var(--site-shell-header-height) + 24px);
}

/* Shared breadcrumb treatment */
.product-breadcrumbs,
.breadcrumb-list,
.hero__breadcrumb,
.breadcrumb {
  display: flex;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  max-width: 100% !important;
  overflow: hidden !important;
  min-width: 0 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.78rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

nav[aria-label="Breadcrumb"],
.product-lead-breadcrumbs {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-breadcrumbs {
  margin-bottom: 18px !important;
}

.product-breadcrumbs > li,
.breadcrumb-list > li {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
}

.product-breadcrumbs > li:last-child,
.breadcrumb-list > li:last-child,
.hero__breadcrumb > span[aria-current="page"],
.breadcrumb > span[aria-current="page"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: var(--text, #080808) !important;
}

.hero__breadcrumb > span[aria-current="page"],
.breadcrumb > span[aria-current="page"] {
  color: inherit !important;
}

.product-breadcrumbs a,
.breadcrumb-list a,
.hero__breadcrumb a,
.breadcrumb a {
  color: var(--muted, #4a5568) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.product-breadcrumbs a:hover,
.breadcrumb-list a:hover,
.hero__breadcrumb a:hover,
.breadcrumb a:hover {
  color: var(--accent, #1565c0) !important;
}

.product-breadcrumbs > li > span:not([aria-current]),
.breadcrumb-list > li > span:not([aria-current]),
.hero__breadcrumb > span:not([aria-current]),
.breadcrumb > span:not([aria-current]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 14px !important;
  flex: 0 0 14px !important;
  overflow: hidden !important;
  color: var(--muted, #4a5568) !important;
  font-size: 0 !important;
  opacity: 0.55 !important;
}

.product-breadcrumbs > li > span:not([aria-current])::before,
.breadcrumb-list > li > span:not([aria-current])::before,
.hero__breadcrumb > span:not([aria-current])::before,
.breadcrumb > span:not([aria-current])::before {
  content: '›';
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .product-breadcrumbs,
  .breadcrumb-list {
    width: 100% !important;
    gap: 6px !important;
  }

  .product-breadcrumbs > li:not(:first-child):not(:last-child),
  .breadcrumb-list > li:not(:first-child):not(:last-child) {
    display: none !important;
  }

  .product-breadcrumbs > li:last-child,
  .breadcrumb-list > li:last-child {
    gap: 6px !important;
  }

  .product-breadcrumbs > li:last-child::before,
  .breadcrumb-list > li:last-child::before {
    content: '›';
    flex: 0 0 auto;
    color: var(--muted, #4a5568);
    font-size: 1rem;
    line-height: 1;
    opacity: 0.55;
  }
}

.site-shell-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-shell-nav {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  height: var(--site-shell-header-height);
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border, #d7e1ee);
}

.site-shell-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.site-shell-logo img {
  display: block;
  width: auto;
  height: 42px;
}

.site-shell-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-shell-links li {
  display: flex;
  align-items: center;
}

.site-shell-links a,
.site-shell-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #080808);
  text-decoration: none;
  transition: color 0.2s;
}

.site-shell-links a:hover,
.site-shell-link-button:hover {
  color: var(--accent, #0d54a6);
}

.site-shell-link-button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.site-shell-link-button svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-shell-link-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.site-shell-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.site-shell-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: #1565c0;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  height: var(--site-shell-control-height);
  padding: 0 32px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.site-shell-cta:hover {
  opacity: 0.9;
  color: #ffffff;
}

.site-shell-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
}

.site-shell-menu-toggle {
  display: none;
  width: var(--site-shell-control-height);
  height: var(--site-shell-control-height);
  border: 1px solid var(--border, #d7e1ee);
  background: rgba(255,255,255,0.9);
  color: var(--text, #080808);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.site-shell-menu-toggle:hover {
  border-color: var(--accent, #0d54a6);
  color: var(--accent, #0d54a6);
  background: #ffffff;
}

.site-shell-menu-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* ── DESKTOP MEGA MENU ── */
.site-shell-mega {
  position: absolute;
  top: 100%;
  left: 0;
  /* While the page is locked open the scrollbar is gone, so the panel is inset
     by its width to stop the contents jumping sideways. 0 the rest of the time. */
  right: var(--site-shell-lock-pad, 0px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-bottom: 1px solid rgba(13, 84, 166, 0.12);
  box-shadow: 0 28px 60px rgba(5, 27, 56, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 1030;

  /* Never taller than the space under the header, and scroll whatever is left
     over. `contain` stops the scroll chaining to the page at either end. */
  max-height: calc(100vh - var(--site-shell-header-height) - 12px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 84, 166, 0.32) transparent;
}

.site-shell-mega::-webkit-scrollbar {
  width: 10px;
}

.site-shell-mega::-webkit-scrollbar-track {
  background: transparent;
}

.site-shell-mega::-webkit-scrollbar-thumb {
  background: rgba(13, 84, 166, 0.28);
  border: 3px solid transparent;
  background-clip: content-box;
  border-radius: 999px;
}

.site-shell-mega::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 84, 166, 0.5);
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Freeze the page behind the open panel. The panel keeps its own scroll. */
html.site-shell-locked {
  overflow: hidden;
}

html.site-shell-locked body {
  padding-right: var(--site-shell-lock-pad, 0px);
}

html.site-shell-locked .site-shell-header {
  padding-right: var(--site-shell-lock-pad, 0px);
}

.site-shell-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-shell-mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 48px 36px;
}

.site-shell-mega-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(13, 84, 166, 0.1);
}

.site-shell-mega-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #0d54a6);
  margin-bottom: 8px;
}

.site-shell-mega-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.site-shell-mega-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0;
  color: #06162c;
}

.site-shell-mega-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #0d54a6);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.site-shell-mega-all:hover {
  gap: 14px;
}

.site-shell-mega-all svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.site-shell-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-shell-mega-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  color: #09182f;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 84, 166, 0.08);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-shell-mega-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 84, 166, 0.22);
  box-shadow: 0 14px 32px rgba(13, 84, 166, 0.1);
}

.site-shell-mega-card > svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  color: var(--accent, #0d54a6);
  flex: 0 0 auto;
}

.site-shell-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 18, 38, 0.45);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1040;
}

.site-shell-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-shell-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  max-width: 100vw;
  height: 100vh;
  max-height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-left: 1px solid rgba(13, 84, 166, 0.12);
  box-shadow: -28px 0 60px rgba(5, 27, 56, 0.18);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
}

.site-shell-drawer.is-open {
  transform: translateX(0);
}

.site-shell-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px 20px;
  padding-top: max(28px, env(safe-area-inset-top));
  padding-right: max(24px, env(safe-area-inset-right));
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(13, 84, 166, 0.1);
  background:
    radial-gradient(circle at top right, rgba(21, 101, 192, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  z-index: 2;
}

.site-shell-drawer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #0d54a6);
  margin-bottom: 10px;
}

.site-shell-drawer-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.site-shell-drawer-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 2.3rem;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--text, #080808);
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.site-shell-drawer-header p {
  color: rgba(8, 8, 8, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 280px;
  margin: 0;
}

.site-shell-drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(13, 84, 166, 0.14);
  background: rgba(255,255,255,0.88);
  color: var(--text, #080808);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-shell-drawer-close:hover {
  border-color: var(--accent, #0d54a6);
  color: var(--accent, #0d54a6);
  transform: rotate(90deg);
}

.site-shell-drawer-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.site-shell-drawer-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 24px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}

.site-shell-drawer-panel + .site-shell-drawer-panel {
  margin-top: 24px;
}

.site-shell-drawer-panel-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8, 8, 8, 0.55);
  margin-bottom: 14px;
}

.site-shell-drawer-links,
.site-shell-drawer-product-list {
  display: grid;
  gap: 10px;
}

.site-shell-drawer-link,
.site-shell-drawer-product-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(13, 84, 166, 0.1);
  background: rgba(255,255,255,0.9);
  color: var(--text, #080808);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-shell-drawer-link:hover,
.site-shell-drawer-product-link:hover {
  transform: translateX(4px);
  border-color: rgba(13, 84, 166, 0.26);
  box-shadow: 0 18px 28px rgba(10, 39, 78, 0.08);
}

.site-shell-drawer-link span,
.site-shell-drawer-product-copy strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text, #080808);
}

.site-shell-drawer-link svg,
.site-shell-drawer-product-link > svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  color: var(--accent, #0d54a6);
}

.site-shell-drawer-product-link {
  grid-template-columns: 64px 1fr auto;
}

.site-shell-drawer-product-visual {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(13, 84, 166, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-shell-drawer-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-shell-drawer-product-visual span {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent, #0d54a6);
  letter-spacing: 0.06em;
}

.site-shell-drawer-product-copy p {
  margin: 6px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(8, 8, 8, 0.62);
}

body.site-shell-drawer-open {
  overflow: hidden;
  width: 100%;
  overscroll-behavior: none;
}

html.site-shell-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-shell-footer {
  padding: 60px 48px 40px;
  border-top: 1px solid var(--border, #d7e1ee);
  background: #ffffff;
}

.site-shell-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.site-shell-footer-brand p {
  font-size: 0.85rem;
  color: var(--muted, #080808);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.site-shell-footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text, #080808);
  margin: 0 0 20px;
}

.site-shell-footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--muted, #080808);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.site-shell-footer-col a:hover,
.site-shell-footer-contact a:hover {
  color: var(--accent, #0d54a6);
}

.site-shell-footer-col a.site-shell-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  margin: 4px 0 0;
  color: #0a66c2;
  transition: color 0.2s;
}

.site-shell-footer-social svg {
  width: 26px;
  height: 26px;
  display: block;
}

.site-shell-footer-col a.site-shell-footer-social:hover {
  color: #004182;
}

.site-shell-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border, #d7e1ee);
}

.site-shell-footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted, #080808);
  margin: 0;
}

.site-shell-footer-contact a {
  color: var(--accent, #0d54a6);
  text-decoration: none;
}

@media (max-width: 1280px) {
  .site-shell-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-shell-mega-inner {
    padding: 28px 32px 32px;
  }
}

@media (max-width: 1024px) {
  .site-shell-nav {
    padding: 0 24px;
  }

  .site-shell-links {
    display: none;
  }

  /* Mobile uses the slide-in drawer instead. */
  .site-shell-mega {
    display: none;
  }

  .site-shell-menu-toggle {
    display: inline-flex;
  }

  .site-shell-actions .site-shell-cta {
    display: none;
  }

  .site-shell-footer {
    padding: 40px 24px;
  }

  .site-shell-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  :root {
    --site-shell-header-height: 84px;
    --site-shell-control-height: 52px;
  }

  .site-shell-nav {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .site-shell-logo img {
    height: 34px;
    max-width: min(210px, 52vw);
    object-fit: contain;
  }

  .site-shell-menu-toggle,
  .site-shell-search-toggle {
    width: var(--site-shell-control-height);
    height: var(--site-shell-control-height);
    flex: 0 0 auto;
  }

  .site-shell-drawer {
    width: 100vw;
    border-left: 0;
  }

  .site-shell-drawer-header,
  .site-shell-drawer-scroll {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .site-shell-drawer-header {
    gap: 14px;
    align-items: flex-start;
  }

  .site-shell-drawer-header h3 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .site-shell-drawer-link,
  .site-shell-drawer-product-link {
    padding: 15px 14px;
  }

  .site-shell-drawer-product-link {
    grid-template-columns: 48px 1fr auto;
  }

  .site-shell-drawer-product-visual {
    width: 48px;
    height: 48px;
  }

  .site-shell-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Site typography selection */
body,
p,
li,
dt,
dd,
label,
input,
textarea,
select,
button,
a,
span,
small,
strong,
.section-lead,
.form-sub,
.card-copy,
.product-article,
.site-shell-links a,
.site-shell-link-button {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  letter-spacing: 0 !important;
}

body,
p,
li,
dt,
dd,
label,
input,
textarea,
select,
.section-lead,
.form-sub,
.product-article {
  font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-heading,
.site-shell-mega-head h3,
.site-shell-drawer-header h3,
.hero-title,
.product-hero h1,
.page-title,
.card-title,
.trust-label {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .section-heading,
  .hero-title,
  .hero__title,
  .page-title,
  .product-hero h1,
  .cta-section h2,
  .featured-header h2,
  .year-intro h2,
  .left-panel h2,
  .locations-header h2,
  .maps-header h2,
  .distributors-header h2
) em {
  font-family: 'Sora', sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: inherit;
}

:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .section-heading,
  .section-title,
  .hero-title,
  .hero__title,
  .page-title,
  .product-hero h1
) span {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

:is(
  .year-number,
  .num,
  .stat-num,
  .big-num,
  .stat-item__number,
  .hero-meta-item .num,
  .story-stat .num,
  .stat-item .num,
  .stats-bar .big-num
) span,
:is(
  .year-number,
  .num,
  .stat-num,
  .big-num,
  .stat-item__number
) sup {
  font-family: 'Sora', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}


/* ==========================================================================
   Site search overlay
   ========================================================================== */

.site-shell-search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: var(--site-shell-control-height);
  border-radius: 2px;
  border: 1px solid rgba(13, 84, 166, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: #0d54a6;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.site-shell-search-toggle:hover {
  border-color: rgba(13, 84, 166, 0.5);
  background: #ffffff;
}

.site-shell-search-toggle:focus-visible {
  outline: 2px solid #0d54a6;
  outline-offset: 2px;
}

.site-shell-search-toggle svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  flex: 0 0 auto;
}

.site-shell-search {
  position: fixed;
  inset: 0;
  z-index: 1040;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: max(72px, 9vh) 20px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-shell-search.is-open {
  opacity: 1;
  visibility: visible;
}

.site-shell-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 42, 0.55);
  backdrop-filter: blur(2px);
}

.site-shell-search-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(680px, calc(100vh - max(72px, 9vh) - 24px));
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(13, 84, 166, 0.16);
  box-shadow: 0 30px 70px rgba(5, 27, 56, 0.32);
  transform: translateY(-8px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-shell-search.is-open .site-shell-search-panel {
  transform: translateY(0);
}

.site-shell-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(13, 84, 166, 0.12);
  flex: 0 0 auto;
}

.site-shell-search-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d54a6;
}

.site-shell-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(13, 84, 166, 0.18);
  background: transparent;
  color: #09182f;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-shell-search-close:hover {
  background: rgba(13, 84, 166, 0.07);
  border-color: rgba(13, 84, 166, 0.4);
}

.site-shell-search-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* The results list is the part that scrolls, not the whole dialog. */

.site-shell-search-error {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #46566c;
}

.site-shell-search-error code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(13, 84, 166, 0.08);
  color: #0d54a6;
  padding: 1px 5px;
}


@media (max-width: 1024px) {
  .site-shell-search-toggle span {
    display: none;
  }

  .site-shell-search-toggle {
    padding: 0;
    width: var(--site-shell-control-height);
    justify-content: center;
  }

  .site-shell-search {
    padding: 64px 12px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-shell-search,
  .site-shell-search-panel {
    transition: none;
  }
}

/* Search facet markers. Clipped rather than display:none so Pagefind still
   reads them while nobody sees them. */
.pagefind-facets {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}



/* ── SEARCH: input, filters, grouped results ── */

.site-shell-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(13, 84, 166, 0.12);
  flex: 0 0 auto;
}

.site-shell-search-icon {
  width: 18px;
  height: 18px;
  stroke: #0d54a6;
  flex: 0 0 auto;
}

.site-shell-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #09182f;
}

.site-shell-search-input::placeholder {
  color: #8b98a8;
  font-weight: 500;
}

.site-shell-search-input::-webkit-search-cancel-button {
  display: none;
}

.site-shell-search-clear {
  border: 0;
  background: transparent;
  color: #0d54a6;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 6px;
}

.site-shell-search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(13, 84, 166, 0.12);
  background: #f7fafd;
  flex: 0 0 auto;
}

.site-shell-search-filters label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7b8f;
}

.site-shell-search-filters select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #09182f;
  background: #ffffff;
  border: 1px solid rgba(13, 84, 166, 0.2);
  border-radius: 2px;
  padding: 7px 10px;
  max-width: 210px;
  cursor: pointer;
}

.site-shell-search-results {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 18px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 84, 166, 0.32) transparent;
}

.site-shell-search-results[data-busy] {
  opacity: 0.55;
}

.site-shell-search-count,
.site-shell-search-note {
  margin: 0;
  padding: 16px 0 0;
  font-size: 13px;
  color: #6b7b8f;
}

.site-shell-search-note {
  font-size: 14px;
  line-height: 1.6;
  color: #46566c;
}

.site-shell-search-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: rgba(13, 84, 166, 0.08);
  color: #0d54a6;
  padding: 1px 5px;
}

.site-shell-search-group {
  padding-top: 18px;
}

.site-shell-search-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d54a6;
}

.site-shell-search-group-title span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  color: #8b98a8;
  background: #eef4fb;
  border-radius: 999px;
  padding: 1px 7px;
}

.site-shell-search-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-shell-search-card + .site-shell-search-card {
  border-top: 1px solid rgba(13, 84, 166, 0.09);
}

.site-shell-search-card a {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 11px 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.site-shell-search-card a:hover,
.site-shell-search-card a:focus-visible {
  background: #f2f7fd;
  outline: none;
}

.site-shell-search-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #f4f8fd;
  border: 1px solid rgba(13, 84, 166, 0.08);
}

.site-shell-search-card-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.site-shell-search-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.site-shell-search-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: #09182f;
}

.site-shell-search-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #5b6b80;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .site-shell-search-filters select {
    max-width: 100%;
    flex: 1 1 auto;
  }

  .site-shell-search-filters label {
    flex: 1 1 100%;
  }
}

/* ── ENQUIRY FORMS ── */
/* These live in the global sheet, not the page's scoped <style>, because the
   status message is created by form-handler.js and so carries no Astro scope
   attribute for a scoped rule to match. */

/* Honeypot: moved off-screen rather than display:none, which some bots skip. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  border-left: 3px solid #ef4444;
  background: #fef2f2;
  color: #7f1d1d;
}

.form-status[hidden] {
  display: none;
}

.form-status a {
  color: #b91c1c;
  font-weight: 600;
}
