:root {
  --navy: #062b47;
  --navy-deep: #041f35;
  --navy-bright: #0a4f7c;
  --blue: #087dbf;
  --cyan: #16b7c8;
  --amber: #f5b335;
  --amber-dark: #d99008;
  --ink: #10283d;
  --body: #405468;
  --muted: #6d7d8d;
  --line: #cbd5dc;
  --line-dark: #95a6b3;
  --mist: #f2f6f8;
  --white: #fff;
  --shell: min(1240px, calc(100vw - 64px));
  --outer-gutter: max(32px, calc((100vw - 1240px) / 2));
  --shadow: 0 14px 38px rgba(6, 43, 71, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

body.nav-open {
  overflow: hidden;
}

.wp-site-blocks {
  padding: 0 !important;
}

.wp-site-blocks > * {
  margin-block-start: 0 !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(8, 125, 191, 0.35);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 840px;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #78d8e5;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

h1 {
  font-size: clamp(42px, 5.1vw, 74px);
}

h2 {
  font-size: clamp(30px, 3.25vw, 48px);
}

h3 {
  font-size: 21px;
}

p {
  color: var(--body);
}

.lead {
  font-size: 18px;
  line-height: 1.75;
}

.goeast-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.goeast-skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  height: 82px;
  border-bottom: 1px solid #dce4e9;
  background: rgba(255, 255, 255, 0.98);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.brand img {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.primary-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.45vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav > ul > li > .nav-link-row {
  display: flex;
  align-items: center;
  min-height: 82px;
}

.primary-nav > ul > li > .nav-link-row > a {
  display: flex;
  align-items: center;
  min-height: 82px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.primary-nav > ul > li > .nav-link-row > a:hover,
.primary-nav > ul > li > .nav-link-row > a:focus-visible {
  color: var(--blue);
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-link-row {
  display: flex;
  align-items: center;
}

.nav-link-row > a {
  min-width: 0;
}

.nav-submenu-toggle {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 36px;
  padding: 0;
  color: currentColor;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% - 8px);
  left: -18px;
  width: 300px;
  max-height: calc(100vh - 124px);
  margin: 0;
  padding: 14px;
  overflow: auto;
  list-style: none;
  border: 0;
  border-radius: 18px;
  background: #15344b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-submenu .nav-link-row {
  border-radius: 10px;
}

.nav-submenu .nav-link-row:hover,
.nav-submenu .nav-link-row:focus-within {
  background: rgba(255, 255, 255, 0.14);
}

.nav-submenu .nav-link-row > a {
  flex: 1;
  padding: 15px 12px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
}

.nav-submenu .nav-submenu-toggle {
  flex: 0 0 34px;
  color: #f3f3f3;
}

.nav-submenu--level-3 {
  top: calc(-14px + var(--submenu-shift-y, 0px));
  left: calc(100% + 8px);
  width: 360px;
  max-height: calc(100vh - 124px);
  overflow: auto;
  transform: translateX(10px);
}

.nav-submenu--level-2 {
  max-height: none;
  overflow: visible;
}

.nav-item--equipment > .nav-submenu--level-2 {
  width: 410px;
}

.nav-item--reverse > .nav-submenu--level-2 {
  right: -18px;
  left: auto;
}

.nav-item--reverse .nav-submenu--level-3 {
  right: calc(100% + 8px);
  left: auto;
  transform: translateX(-10px);
}

.has-submenu:hover > .nav-submenu,
.has-submenu:focus-within > .nav-submenu,
.has-submenu.is-submenu-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.mobile-nav-actions {
  display: none;
}

.primary-nav .dashicons {
  width: 14px;
  height: 14px;
  margin-left: 3px;
  font-size: 14px;
}

.has-mega-menu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  grid-template-columns: 270px 1fr;
  width: min(1180px, calc(100vw - 64px));
  padding: 34px;
  color: var(--white);
  border: 0;
  border-radius: 18px;
  background: #15344b;
  box-shadow: 0 18px 44px rgba(4, 31, 53, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu__intro {
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.mega-menu__intro .eyebrow,
.mega-menu__intro strong,
.mega-menu__intro p,
.mega-menu__intro .text-link {
  color: var(--white);
}

.mega-menu__intro strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

.mega-menu__intro p {
  font-size: 13px;
}

.mega-menu__intro .text-link + .text-link {
  margin-top: 12px;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 24px;
  padding-left: 32px;
}

.mega-menu__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 450;
}

.mega-menu__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.mega-menu__links span {
  color: #f4f4f4;
  font-weight: 650;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .dashicons {
  margin-left: 10px;
}

.button--amber {
  color: #142b3b;
  background: var(--amber);
  border-color: var(--amber);
}

.button--amber:hover {
  background: #ffca59;
  border-color: #ffca59;
}

.button--navy {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button--outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
}

.button--outline:hover {
  color: var(--ink);
  background: var(--white);
}

.button--outline-dark {
  color: var(--ink);
  border-color: var(--navy);
  background: transparent;
}

.button--full {
  width: 100%;
}

.header-rfq {
  min-height: 43px;
  padding-inline: 20px;
  white-space: nowrap;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.text-link .dashicons {
  margin-left: 7px;
  transition: transform 150ms ease;
}

.text-link:hover .dashicons {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.contact-dock {
  position: fixed;
  z-index: 800;
  top: 50%;
  right: 18px;
  display: grid;
  width: 82px;
  padding: 8px 7px;
	overflow: visible;
  border: 1px solid rgba(6, 43, 71, 0.08);
  border-radius: 42px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(4, 31, 53, 0.2);
  transform: translateY(-50%);
}

.contact-dock__item {
	position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 8px 2px;
  color: var(--ink);
  border-bottom: 1px solid #e8edf0;
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 160ms ease, background 160ms ease;
}

.contact-dock__item:last-child {
  border-bottom: 0;
}

.contact-dock__item:hover,
.contact-dock__item:focus-visible {
  color: var(--navy);
  background: var(--mist);
}

.contact-dock__item.is-disabled {
  cursor: default;
  opacity: 0.46;
}

.contact-dock__item.is-disabled:hover {
  color: var(--ink);
  background: var(--white);
}

.contact-dock__icon,
.contact-option__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  margin-bottom: 7px;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.2);
  transition: transform 160ms ease;
}

.contact-dock__item:hover .contact-dock__icon,
.contact-dock__item:focus-visible .contact-dock__icon {
  transform: translateY(-2px);
}

.contact-dock__icon .dashicons,
.contact-option__icon .dashicons {
  width: 23px;
  height: 23px;
  font-size: 23px;
}

.contact-dock__item--whatsapp .contact-dock__icon,
.contact-option--whatsapp .contact-option__icon {
  background: #20bd67;
}

.contact-dock__item--telegram .contact-dock__icon,
.contact-option--telegram .contact-option__icon {
  background: #229ed9;
}

.contact-dock__item--phone .contact-dock__icon,
.contact-option--phone .contact-option__icon {
  color: #c66a08;
  background: #fff5e9;
  box-shadow: inset 0 0 0 5px rgba(245, 179, 53, 0.12);
}

.contact-dock__item--email .contact-dock__icon,
.contact-option--email .contact-option__icon,
.contact-dock__item--inquiry .contact-dock__icon,
.contact-option--inquiry .contact-option__icon {
  color: #dd7b12;
  background: #fff3e5;
  box-shadow: inset 0 0 0 5px rgba(245, 179, 53, 0.12);
}

.contact-dock__label {
  white-space: nowrap;
}

.contact-dock__detail {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  display: grid;
  min-width: max-content;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(6, 43, 71, 0.1);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(4, 31, 53, 0.16);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(8px, -50%);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.contact-dock__item:hover .contact-dock__detail,
.contact-dock__item:focus-visible .contact-dock__detail {
  opacity: 1;
  transform: translate(0, -50%);
  visibility: visible;
}

.contact-dock__detail::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(6, 43, 71, 0.1);
  border-right: 1px solid rgba(6, 43, 71, 0.1);
  background: var(--white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.contact-dock__detail small {
  color: var(--steel);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-dock__detail strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
}

.contact-options {
  padding: 72px 0 78px;
  background: var(--mist);
}

.contact-options .section-heading {
  margin-bottom: 34px;
}

.contact-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  min-height: 148px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(6, 43, 71, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-option.is-disabled {
  cursor: default;
  border-style: dashed;
  box-shadow: none;
  opacity: 0.62;
}

.contact-option.is-disabled:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.contact-option.is-disabled .contact-option__arrow {
  visibility: hidden;
}

.contact-option__icon {
  width: 52px;
  height: 52px;
  margin: 0;
}

.contact-option > span:nth-child(2) {
  display: grid;
}

.contact-option small {
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 16px;
}

.contact-option em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.contact-option__arrow {
  color: var(--blue);
}

.home-hero {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 680px;
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 12px 72px 0;
}

.home-hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(42px, 3.35vw, 48px);
  line-height: 1.13;
}

.home-hero .lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--body);
  font-size: 15px;
}

.home-hero__service-copy {
  display: grid;
  gap: 5px;
  line-height: 1.5;
}

.home-hero__service-copy strong,
.home-hero__service-copy span {
  display: block;
}

.home-hero__service-copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.home-hero__capability-list > span {
  display: inline-block;
  white-space: nowrap;
}

.home-hero__media {
  position: relative;
  width: calc(100% + var(--outer-gutter));
  min-width: 0;
  height: 100%;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 71, 0.08);
  content: "";
  pointer-events: none;
}

.home-hero__media figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 26px;
  display: grid;
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

.home-hero__media figcaption span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero__media figcaption strong {
  font-size: 13px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 540px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.hero-facts div {
  display: grid;
  padding-right: 14px;
}

.hero-facts strong {
  color: var(--amber);
  font-size: 24px;
  line-height: 1;
}

.hero-facts span {
  margin-top: 8px;
  color: #c9dbe5;
  font-size: 11px;
}

.trust-strip {
  color: var(--ink);
  background: var(--mist);
  border-bottom: 1px solid #dce4e9;
}

.trust-strip__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__items span {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 12px 22px;
  border-left: 1px solid #d6e0e6;
  font-size: 12px;
  font-weight: 700;
}

.trust-strip__items span:last-child {
  border-right: 1px solid #d6e0e6;
}

.trust-strip .dashicons {
  margin-right: 9px;
  color: var(--blue);
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.64fr);
  align-items: end;
  gap: 70px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-dark);
}

.section-heading--split p {
  margin-bottom: 12px;
  font-size: 14px;
}

.section-heading--center {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-bottom: 0;
}

.category-lines {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(2, 1fr);
  column-gap: 76px;
}

.category-line {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto 24px;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
}

.category-line:hover strong,
.category-line:hover > .dashicons {
  color: var(--blue);
}

.category-line__number {
  color: var(--amber-dark);
  font-weight: 800;
}

.category-line strong {
  font-size: 14px;
  transition: color 150ms ease;
}

.category-line__count {
  color: var(--muted);
  font-size: 11px;
}

.solution-feature {
  padding: 0;
  color: var(--white);
  background: var(--navy-deep);
}

.solution-feature__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 560px;
}

.solution-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 74px 70px 74px 0;
}

.solution-feature h2 {
  color: var(--white);
  font-size: clamp(32px, 3.4vw, 50px);
}

.solution-feature p {
  color: #c9dbe5;
}

.solution-feature__media {
  position: relative;
  width: calc(100% + var(--outer-gutter));
  min-width: 0;
}

.solution-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-feature__media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(4, 31, 53, 0.84);
  font-size: 10px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 8px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  color: #e3eef3;
  font-size: 13px;
}

.check-list .dashicons {
  margin: 1px 9px 0 0;
  color: var(--amber);
}

.check-list--dark li {
  color: var(--body);
}

.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.process-card {
  position: relative;
  min-height: 300px;
  padding: 34px 32px 30px;
  border-right: 1px solid var(--line);
}

.process-card:first-child {
  border-left: 1px solid var(--line);
}

.process-card > .dashicons {
  width: 36px;
  height: 36px;
  margin: 22px 0;
  color: var(--navy);
  font-size: 36px;
}

.process-card__number {
  display: block;
  color: #a4afb8;
  font-size: 26px;
  font-weight: 500;
}

.process-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.process-card p {
  margin-bottom: 0;
  font-size: 13px;
}

.capability-split {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-split__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 630px;
}

.capability-split figure {
  position: relative;
  width: calc(100% + var(--outer-gutter));
  min-width: 0;
  margin-left: calc(-1 * var(--outer-gutter));
}

.capability-split figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-split figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(4, 31, 53, 0.84);
  font-size: 10px;
}

.capability-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 70px 72px;
}

.capability-split__content > p {
  margin-bottom: 28px;
}

.capability-split__intro {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.capability-split__intro p {
  margin: 0;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-metrics div {
  display: grid;
  padding: 20px 16px 20px 0;
}

.mini-metrics div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.mini-metrics strong {
  margin-bottom: 7px;
  font-size: 13px;
}

.mini-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.projects-section {
  background: var(--mist);
}

.project-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card,
.content-card,
.equipment-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid #d9e2e7;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.project-card:hover,
.content-card:hover,
.equipment-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.5;
  background: #dfe7eb;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-card:hover .card-media img,
.content-card:hover .card-media img,
.equipment-card:hover .card-media img {
  transform: scale(1.025);
}

.card-body {
  padding: 24px;
}

.card-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-code {
  display: block;
  margin: -2px 0 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-code--hero {
  margin: 7px 0 10px;
  color: var(--blue);
}

.product-name-zh {
  margin: -4px 0 12px !important;
  min-height: 0 !important;
  color: var(--muted);
  font-size: 13px !important;
}

.product-name-zh--hero {
  margin: -8px 0 18px !important;
  font-size: 16px !important;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  min-height: 64px;
  margin-bottom: 18px;
  font-size: 13px;
}

.card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 13px;
}

.card-facts span {
  padding: 6px 9px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid #d9e2e7;
  font-size: 10px;
  font-weight: 700;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
}

.project-archive__hero .inner-hero__callout strong {
  font-size: clamp(26px, 3vw, 42px);
}

.project-archive__intro {
  padding-bottom: 44px;
}

.project-archive__intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(420px, 1.25fr);
  gap: 80px;
  align-items: end;
}

.project-archive__intro-grid h2,
.project-case__story h2 {
  margin-bottom: 0;
}

.project-archive__intro-grid p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
}

.project-archive__list {
  padding-top: 40px;
  background: var(--mist);
}

.project-case__hero {
  padding: 112px 0 118px;
  color: var(--white);
  background: var(--navy);
}

.project-case__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
  align-items: end;
}

.project-case__heading h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--white);
}

.project-case__heading > p {
  max-width: 720px;
  margin-bottom: 30px;
  color: #c9d6de;
  font-size: 18px;
}

.project-case__facts {
  margin: 0;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-case__facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.project-case__facts div:last-child {
  border-bottom: 0;
}

.project-case__facts dt {
  color: #9fb5c4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-case__facts dd {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.project-case__media {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  margin-bottom: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-case__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.project-case__media figcaption {
  padding: 13px 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-top: 0;
  font-size: 10px;
}

.project-case__story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 90px;
  align-items: start;
}

.project-case__story .prose > .eyebrow {
  display: block;
}

.project-evidence-panel {
  padding: 36px;
  color: #d4e0e7;
  background: var(--navy);
}

.project-evidence-panel h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.project-evidence-panel > p {
  margin-bottom: 24px;
}

.project-evidence-panel small {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  color: #9fb5c4;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.6;
}

.project-related {
  background: var(--mist);
}

@media (max-width: 1024px) {
  .project-archive__intro-grid,
  .project-case__hero-grid,
  .project-case__story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-case__hero {
    padding: 90px 0 110px;
  }

  .project-case__facts {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .project-case__hero {
    padding: 70px 0 94px;
  }

  .project-case__heading > p {
    font-size: 15px;
  }

  .project-case__facts {
    padding: 20px;
  }

  .project-case__facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .project-case__media {
    margin-top: -48px;
  }

  .project-case__media img {
    aspect-ratio: 1.32;
  }

  .project-evidence-panel {
    padding: 27px 23px;
  }
}

.rfq-section {
  padding: 94px 0;
  color: var(--white);
  background: var(--navy);
}

.rfq-section__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(560px, 1.32fr);
  gap: 86px;
  align-items: start;
}

.rfq-intro {
  position: sticky;
  top: 120px;
}

.rfq-intro h2 {
  color: var(--white);
}

.rfq-intro > p {
  color: #ccdde5;
}

.rfq-trust {
  display: grid;
  margin-top: 34px;
  padding: 20px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.06);
}

.rfq-trust strong {
  font-size: 13px;
}

.rfq-trust span {
  margin-top: 4px;
  color: #c4d7e0;
  font-size: 11px;
}

.rfq-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-grid label,
.consent-field {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid #bdcbd4;
  border-radius: 0;
  background: var(--white);
}

.form-grid textarea {
  min-height: 142px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(8, 125, 191, 0.13);
}

.form-grid [aria-invalid="true"] {
  border-color: #bb3128;
}

.form-grid small,
.rfq-form > small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

[data-field-error]:not(:empty) {
  color: #b02720;
}

.file-picker {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 49px;
  border: 1px solid #bdcbd4;
  background: var(--mist);
  transition: border-color 160ms ease, outline-color 160ms ease;
}

.file-picker:focus-within {
  border-color: var(--blue);
  outline: 2px solid rgba(8, 125, 191, 0.13);
}

.form-grid .file-picker__input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.file-picker__button {
  flex: 0 0 auto;
  margin: 7px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.file-picker__name {
  min-width: 0;
  padding: 8px 12px 8px 4px;
  overflow: hidden;
  color: var(--body);
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 8px;
  color: var(--body);
  font-weight: 500;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.consent-field a {
  color: var(--blue);
  text-decoration: underline;
}

.selected-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 15px;
  background: var(--mist);
  border-left: 3px solid var(--blue);
}

.selected-product div {
  display: grid;
}

.selected-product span {
  color: var(--muted);
  font-size: 10px;
}

.selected-product strong {
  font-size: 13px;
}

.selected-product small {
  margin-top: 3px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--body);
  font-size: 12px;
  text-align: center;
}

.form-status.is-error {
  color: #b02720;
}

.form-status.is-success {
  color: #20723a;
}

.rfq-form[aria-busy="true"] {
  cursor: progress;
}

.rfq-form[aria-busy="true"] input,
.rfq-form[aria-busy="true"] select,
.rfq-form[aria-busy="true"] textarea {
  opacity: 0.72;
}

.site-footer {
  padding-top: 70px;
  color: #d6e4eb;
  background: var(--navy-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.1fr;
  gap: 58px;
  padding-bottom: 60px;
}

.footer-contact-links {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 11px;
}

.footer-contact-links .dashicons {
  color: var(--amber);
}

.brand--footer {
  width: 180px;
  margin-bottom: 22px;
  padding: 9px 11px;
  background: var(--white);
}

.brand--footer img {
  width: 158px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0;
}

.site-footer p {
  color: #aebfca;
  font-size: 12px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  font-size: 12px;
}

.site-footer li a:hover {
  color: var(--amber);
}

.footer-note {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8096a5;
  font-size: 10px;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8298a7;
  font-size: 11px;
}

.inner-hero {
  padding: 88px 0;
  color: var(--white);
  background: var(--navy);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: 90px;
}

.inner-hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
}

.inner-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #c9dce5;
}

.inner-hero__callout {
  padding: 24px 26px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.07);
}

.inner-hero__callout strong {
  display: block;
  margin-bottom: 7px;
}

.inner-hero__callout p {
  margin-bottom: 12px;
  font-size: 12px;
}

.directory-categories {
  padding-bottom: 76px;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--navy);
}

.category-card > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.66;
  transition: opacity 180ms ease, transform 220ms ease;
}

.category-card:hover > img {
  opacity: 0.78;
  transform: scale(1.025);
}

.category-card > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: end;
  gap: 14px;
  padding: 60px 24px 24px;
  color: var(--white);
  background: rgba(4, 31, 53, 0.78);
}

.category-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
}

.category-card b {
  grid-column: 2;
  color: #c6d9e3;
  font-size: 11px;
}

.category-card > div > span {
  grid-row: 1 / span 2;
  color: var(--amber);
  font-weight: 800;
}

.category-card > div > .dashicons {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.subcategory-band {
  padding: 30px 0;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.subcategory-band .shell > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subcategory-band .shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subcategory-band a,
.tag-list span {
  padding: 7px 11px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.subcategory-band a {
  scroll-margin-top: 110px;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.subcategory-band a:hover,
.subcategory-band a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  background: #f7fbfd;
}

.directory-breadcrumbs {
  min-height: 54px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.results-section {
  background: var(--mist);
}

.results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.results-toolbar h2 {
  margin: 0;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border: 0;
  font-weight: 700;
}

.directory-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
}

.equipment-results {
  min-width: 0;
}

.equipment-filters {
  align-self: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid #d9e2e7;
}

.filter-header,
.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.filter-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-header button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 700;
}

.search-field {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  font-size: 12px;
  font-weight: 700;
}

.search-field div {
  position: relative;
}

.search-field .dashicons {
  position: absolute;
  top: 12px;
  left: 11px;
  color: var(--muted);
}

.search-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 10px 10px 38px;
  border: 1px solid var(--line);
}

.filter-group {
  display: grid;
  gap: 9px;
  max-height: 220px;
  margin: 0;
  padding: 18px 0;
  overflow: auto;
  border: 0;
  border-top: 1px solid var(--line);
}

.filter-group legend {
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

.filter-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--body);
  font-size: 11px;
}

.filter-group input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
}

.filter-submit {
  display: none;
  width: 100%;
  margin-top: 15px;
}

.results-meta {
  margin-bottom: 18px;
}

.results-meta p {
  margin: 0;
  font-size: 12px;
}

.results-meta label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.results-meta select {
  min-height: 40px;
  padding: 8px 32px 8px 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fluid-product-tree {
  background: var(--mist);
}

.catalog-product-tree > .shell {
  padding-right: 92px;
}

.fluid-product-tree__groups {
  display: grid;
  gap: 32px;
}

.fluid-product-tree__group {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  scroll-margin-top: 106px;
}

.fluid-product-tree__family {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.fluid-product-tree__family-copy {
  max-width: 820px;
}

.fluid-product-tree__family h2 {
  margin: 5px 0 10px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.fluid-product-tree__family p {
  max-width: 760px;
  margin: 0;
}

.fluid-product-tree__family-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-bottom: 2px;
  white-space: nowrap;
}

.family-summary-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.family-summary-meta strong {
  color: var(--navy);
  font-size: 22px;
}

.fluid-product-tree__products {
  padding-top: 24px;
}

.fluid-product-tree__products-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fluid-product-tree__products-heading strong {
  color: var(--muted);
  font-size: 11px;
}

.fluid-product-tree__products .equipment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.equipment-card--preview .card-body {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.equipment-card--preview .card-actions {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.family-view-all {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.equipment-card .card-body {
  padding: 20px;
}

.equipment-card h3 {
  font-size: 18px;
}

.equipment-card .card-body p {
  min-height: 82px;
}

.empty-state {
  padding: 70px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state > .dashicons {
  width: 44px;
  height: 44px;
  color: var(--line-dark);
  font-size: 44px;
}

.empty-state.is-hidden,
.is-hidden {
  display: none !important;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
}

.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}

.pagination button[aria-current="page"] {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.results-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 11px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs .dashicons {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  font-size: 13px;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-hero {
  padding: 36px 0 88px;
}

.equipment-single .shell {
  padding-right: max(0px, calc(112px - var(--outer-gutter)));
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}

.product-hero__media {
  position: relative;
  min-height: 540px;
  background: var(--mist);
}

.product-hero__media > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.product-hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
}

.product-hero__media--gallery {
  min-height: 0;
  background: transparent;
}

.product-gallery-switcher {
  margin: 0;
}

.product-gallery-switcher__stage {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--mist);
}

.product-gallery-switcher__stage > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, transform 240ms ease;
}

.product-gallery-switcher__stage > img[data-gallery-mode="detail-left"] {
  transform: scale(1.38);
  transform-origin: 30% 50%;
}

.product-gallery-switcher__stage > img[data-gallery-mode="detail-right"] {
  transform: scale(1.42);
  transform-origin: 72% 54%;
}

.product-gallery-switcher__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(4, 31, 53, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-gallery-switcher__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-gallery-switcher__thumb {
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--mist);
}

.product-gallery-switcher__thumb:hover,
.product-gallery-switcher__thumb:focus-visible,
.product-gallery-switcher__thumb.is-active {
  border-color: var(--blue);
}

.product-gallery-switcher__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-switcher__thumb img[data-gallery-mode="detail-left"] {
  object-position: 30% 50%;
  transform: scale(1.32);
}

.product-gallery-switcher__thumb img[data-gallery-mode="detail-right"] {
  object-position: 72% 54%;
  transform: scale(1.35);
}

.product-gallery-switcher > figcaption {
  position: static;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-hero h1 {
  font-size: clamp(40px, 4.3vw, 62px);
}

.product-hero .lead {
  margin-bottom: 28px;
}

.evidence-note {
  display: flex;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 17px;
  background: var(--mist);
  border-left: 3px solid var(--blue);
}

.evidence-note > .dashicons {
  flex: 0 0 auto;
  color: var(--blue);
}

.evidence-note div {
  display: grid;
}

.evidence-note strong {
  font-size: 12px;
}

.evidence-note span {
  color: var(--muted);
  font-size: 11px;
}

.evidence-note--wide {
  margin-top: 40px;
}

.source-line {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.source-line a {
  color: var(--blue);
  font-weight: 700;
}

.product-detail-nav {
  position: sticky;
  z-index: 760;
  top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.product-detail-nav .shell {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-detail-nav .shell::-webkit-scrollbar {
  display: none;
}

.product-detail-nav a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 22px;
  color: var(--body);
  border-bottom: 3px solid transparent;
  font-size: 11px;
  font-weight: 800;
}

.product-detail-nav a:first-child {
  padding-left: 0;
}

.product-detail-nav a:hover,
.product-detail-nav a:focus-visible,
.product-detail-nav a[aria-current="true"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.product-detail {
  background: var(--mist);
}

.product-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
  gap: 78px;
}

.prose {
  color: var(--body);
}

.prose h2 {
  margin-top: 0;
}

.prose h3 {
  margin-top: 36px;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
}

.selection-profile-intro {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--blue);
  background: var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.selection-checklist {
  position: sticky;
  top: 164px;
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 32px rgba(6, 43, 71, 0.16);
}

.selection-checklist h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 28px;
}

.selection-checklist ol {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.selection-checklist li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.selection-checklist li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--amber);
  font-size: 10px;
  font-weight: 800;
}

.selection-checklist li strong {
  font-size: 12px;
}

.selection-checklist > p {
  color: #c1d0da;
  font-size: 11px;
}

.product-specifications {
  scroll-margin-top: 140px;
  background: var(--white);
}

.verified-spec-block {
  margin-bottom: 42px;
  padding: 24px;
  border: 1px solid rgba(8, 125, 191, 0.25);
  background: #f5fbfe;
}

.verified-spec-block > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.verified-spec-block > div:first-child span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verified-spec-block > div:first-child strong {
  font-size: 13px;
}

.reference-spec-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.reference-spec-header h3 {
  margin: 8px 0 0;
  font-size: 26px;
}

.reference-spec-header > p {
  margin: 0;
  font-size: 12px;
}

.reference-spec-badge {
  display: inline-flex;
  padding: 6px 9px;
  color: #8a5a00;
  background: #fff4d8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reference-spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.table-scroll-hint {
  display: none;
}

.reference-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.reference-spec-table th,
.reference-spec-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.reference-spec-table thead th {
  color: var(--white);
  background: var(--navy);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-spec-table tbody th {
  width: 22%;
  color: var(--navy);
  background: #f8fafb;
  font-size: 12px;
}

.reference-spec-table tbody td {
  color: var(--body);
  font-size: 12px;
}

.reference-spec-table tbody tr:last-child th,
.reference-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.product-configuration {
  scroll-margin-top: 140px;
  background: var(--mist);
}

.product-configuration__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-configuration__grid article {
  padding: 30px;
  background: var(--white);
}

.product-configuration__grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-configuration__grid h3 {
  margin-bottom: 20px;
}

.product-configuration__grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--body);
}

.product-configuration__grid li + li {
  margin-top: 9px;
}

.similar-products {
  scroll-margin-top: 140px;
  background: var(--white);
}

.similar-products__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 32px;
}

.similar-products__heading h2 {
  margin-bottom: 12px;
}

.similar-products__heading p {
  max-width: 720px;
  margin: 0;
}

.similar-products__controls {
  display: flex;
  gap: 8px;
}

.similar-products__controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.similar-products__controls button:hover,
.similar-products__controls button:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.similar-products__controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.similar-products__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.similar-products__viewport::-webkit-scrollbar {
  display: none;
}

.similar-products__track {
  display: grid;
  grid-auto-columns: minmax(250px, calc((100% - 60px) / 4));
  grid-auto-flow: column;
  gap: 20px;
}

.similar-products__track .equipment-card {
  scroll-snap-align: start;
}

.similar-products__track .card-media {
  min-height: 210px;
}

.spec-panel {
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--amber);
  box-shadow: 0 10px 28px rgba(6, 43, 71, 0.08);
}

.spec-panel__heading h2 {
  margin-bottom: 22px;
  font-size: 28px;
}

.spec-table {
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row span {
  color: var(--body);
  font-size: 12px;
}

.spec-row strong {
  color: var(--navy);
  font-size: 13px;
}

.spec-row small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
}

.product-gallery {
  background: var(--white);
}

.product-gallery__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.product-gallery__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.product-gallery__item img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.product-gallery__item--wide img {
  height: 520px;
}

.product-gallery__item figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(4, 31, 53, 0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.equipment-related {
  background: var(--mist);
}

.feature-image {
  margin-top: 50px;
}

.feature-image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.material-attribution-note {
  margin: 30px 0 42px;
  padding: 24px 26px;
  color: var(--navy);
  background: #f3f7f9;
  border-left: 4px solid var(--amber);
}

.material-attribution-note strong {
  display: block;
  margin-bottom: 8px;
}

.material-attribution-note p {
  margin: 0;
}

.material-library-block {
  margin: 26px 0 54px;
}

.material-library-block__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.material-library-block__heading h2,
.material-library-block__heading p {
  margin: 0;
}

.material-library-grid {
  display: grid;
  grid-template-columns: repeat(var(--material-columns, 3), minmax(0, 1fr));
  gap: 18px;
}

.material-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 39, 63, 0.06);
}

.material-card__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 10px;
  overflow: hidden;
  background: #edf2f5;
}

.material-card__media img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.material-card video {
  display: block;
  width: 100%;
  max-height: 420px;
  aspect-ratio: 16 / 9;
  background: #061d2e;
  object-fit: contain;
}

.material-card__file-type {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.material-card__body {
  padding: 18px;
}

.material-card__body > span {
  display: block;
  margin-bottom: 7px;
  color: var(--amber-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.material-card__body h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.material-card__body small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.material-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 18px 20px;
  background: var(--mist);
  border: 1px solid var(--line);
}

.material-summary strong {
  color: var(--navy);
}

.material-summary span {
  color: var(--muted);
}

.project-case__evidence-media {
  background: var(--mist);
}

.project-case__video {
  margin-bottom: 28px;
}

.project-case__video video {
  display: block;
  width: min(100%, 980px);
  max-height: 620px;
  margin: 0 auto;
  background: #061d2e;
}

.project-case__video p {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.project-case__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-case__gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.project-case__gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.project-case__gallery figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1100px) {
  .material-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .material-library-block__heading,
  .material-library-grid,
  .project-case__gallery {
    grid-template-columns: 1fr;
  }

  .material-card__media img {
    height: auto;
    max-height: 420px;
  }
}

.service-grid,
.about-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article,
.about-principles article {
  padding: 36px;
  background: var(--white);
}

.service-grid article > span,
.about-principles article > span {
  color: var(--amber-dark);
  font-weight: 800;
}

.service-grid h2,
.about-principles h2 {
  margin-top: 30px;
  font-size: 26px;
}

.about-principles {
  grid-template-columns: repeat(3, 1fr);
  width: min(1100px, calc(100vw - 64px));
  margin-top: 50px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.about-intro {
  padding-bottom: 70px;
}

.supply-chain-services {
  background: var(--mist);
}

.supply-chain-services__heading {
  align-items: end;
  margin-bottom: 42px;
}

.supply-chain-services__heading > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.service-grid--supply-chain {
  gap: 18px;
  background: transparent;
  border: 0;
}

.service-grid--supply-chain .service-card {
  position: relative;
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
}

.service-grid--supply-chain .service-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--amber);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.service-grid--supply-chain h2 {
  margin: 24px 0 12px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.service-card__en > p {
  margin: 0;
  color: var(--body);
  line-height: 1.7;
}

.service-card__zh {
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.service-card__zh h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.service-card__zh p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

@media (min-width: 761px) {
  .supply-chain-services__heading,
  .service-grid--supply-chain {
    margin-right: 92px;
  }
}

.section-topic-nav {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.section-topic-nav .shell {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.section-topic-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.section-topic-nav a:hover,
.section-topic-nav a[aria-current="page"] {
  color: var(--navy);
}

.section-topic-nav a[aria-current="page"]::after,
.section-topic-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--amber);
  content: "";
}

.solution-hub__systems,
.resource-hub__latest,
.page-topic-index {
  background: var(--mist);
}

.resource-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-group-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.resource-group-card > span {
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
}

.resource-group-card h2 {
  margin: 28px 0 14px;
  font-size: 26px;
}

.resource-group-card > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.resource-group-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 24px;
  padding: 16px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-group-card li a {
  display: flex;
  justify-content: space-between;
  color: var(--body);
  font-size: 12px;
}

.resource-group-card > .text-link {
  margin-top: auto;
}

.page-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.page-topic-grid > a {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 9px 18px;
  align-items: start;
  min-height: 180px;
  padding: 28px;
  background: var(--white);
}

.page-topic-grid > a:hover {
  background: #f8fbfc;
}

.page-topic-grid > a > span {
  grid-row: 1 / 3;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 800;
}

.page-topic-grid strong {
  color: var(--navy);
  font-size: 19px;
}

.page-topic-grid p {
  grid-column: 2 / 3;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.page-topic-grid .dashicons {
  grid-column: 3;
  grid-row: 1;
  color: var(--blue);
}

.section-child-page__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.section-side-nav {
  position: sticky;
  top: 112px;
  display: grid;
  border: 1px solid var(--line);
}

.section-side-nav strong {
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
}

.section-side-nav a {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 12px;
  font-weight: 650;
}

.section-side-nav a:last-child {
  border-bottom: 0;
}

.section-side-nav a:hover,
.section-side-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--mist);
  box-shadow: inset 3px 0 0 var(--amber);
}

.section-child-page__content {
  max-width: 800px;
}

.section-child-page__content h2 {
  margin-top: 44px;
}

.section-child-page__content h2:first-child {
  margin-top: 0;
}

.thank-you {
  min-height: 68vh;
  text-align: center;
}

.thank-you .narrow {
  padding: 50px;
  background: var(--mist);
}

.thank-you .dashicons {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  color: var(--blue);
  font-size: 60px;
}

.thank-you h1 {
  font-size: 50px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
    --outer-gutter: 24px;
  }

  .site-header__inner {
    grid-template-columns: 155px 1fr auto;
    gap: 16px;
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .primary-nav > ul {
    gap: 14px;
  }

  .primary-nav > ul > li > .nav-link-row > a {
    font-size: 14px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body.admin-bar .site-header {
    top: 32px;
  }

  .site-header {
    height: 72px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .header-rfq {
    min-height: 40px;
  }

  .primary-nav {
    position: fixed;
    z-index: 1000;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 18px 24px 90px;
    overflow: auto;
    background: var(--white);
  }

  body.admin-bar .primary-nav {
    top: 104px;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav > ul {
    display: block;
  }

  .primary-nav > ul > li > .nav-link-row {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > ul > li > .nav-link-row > a {
    flex: 1;
    min-height: 56px;
    color: var(--navy);
    font-size: 15px;
  }

  .primary-nav > ul > li > .nav-link-row > .nav-submenu-toggle {
    width: 52px;
    height: 56px;
    color: var(--navy);
  }

  .nav-submenu,
  .nav-submenu--level-3,
  .nav-item--equipment > .nav-submenu--level-2,
  .nav-item--reverse > .nav-submenu--level-2,
  .nav-item--reverse .nav-submenu--level-3 {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    padding: 8px 0 12px 16px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: var(--mist);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu:hover > .nav-submenu,
  .has-submenu:focus-within > .nav-submenu {
    display: none;
  }

  .has-submenu.is-submenu-open > .nav-submenu {
    display: block;
  }

  .nav-submenu .nav-link-row {
    border-bottom: 1px solid #dbe4e9;
    border-radius: 0;
  }

  .nav-submenu .nav-link-row:hover,
  .nav-submenu .nav-link-row:focus-within {
    background: var(--white);
  }

  .nav-submenu .nav-link-row > a {
    padding: 12px 10px;
    color: var(--navy);
    font-size: 13px;
  }

  .nav-submenu .nav-submenu-toggle {
    color: var(--navy);
    transform: none;
  }

  .nav-item--level-1.is-submenu-open > .nav-link-row > .nav-submenu-toggle {
    transform: rotate(180deg);
  }

  .nav-submenu .nav-item.is-submenu-open > .nav-link-row > .nav-submenu-toggle {
    transform: rotate(90deg);
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    padding: 22px;
    color: var(--navy);
    border-radius: 0;
    background: var(--mist);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-mega-menu:hover .mega-menu,
  .has-mega-menu:focus-within .mega-menu {
    display: none;
    transform: none;
  }

  .has-mega-menu.is-submenu-open > .mega-menu {
    display: grid;
  }

  .mega-menu__intro .eyebrow,
  .mega-menu__intro strong,
  .mega-menu__intro p,
  .mega-menu__intro .text-link,
  .mega-menu__links a,
  .mega-menu__links span {
    color: var(--navy);
  }

  .mega-menu__links a:hover {
    color: var(--navy);
    background: var(--white);
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .mobile-nav-actions > a:first-child {
    display: grid;
    place-items: center;
    min-height: 50px;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-weight: 800;
  }

  .home-hero__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 610px;
  }

  .home-hero__content {
    padding-right: 42px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero__media img {
    min-height: 610px;
  }

  .hero-facts {
    display: none;
  }

  .trust-strip__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading--split {
    gap: 40px;
  }

  .category-lines {
    column-gap: 40px;
  }

  .category-line__count {
    display: none;
  }

  .solution-feature__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .solution-feature__content {
    padding-right: 42px;
  }

  .process-card {
    padding-inline: 20px;
  }

  .capability-split__content {
    padding-left: 42px;
  }

  .project-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid > :last-child {
    display: none;
  }

  .rfq-section__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 44px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
  }

  .product-hero__grid {
    gap: 42px;
  }

  .product-detail__grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
  }

  .product-gallery__item img,
  .product-gallery__item--wide img {
    height: 410px;
  }

  .fluid-product-tree__family {
    grid-template-columns: 1fr;
  }

  .fluid-product-tree__family-actions {
    justify-content: flex-start;
  }

  .fluid-product-tree__products .equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100vw - 36px);
    --outer-gutter: 18px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar .primary-nav {
    top: 118px;
  }

  .section {
    padding: 72px 0;
  }

  .header-rfq {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .mega-menu__intro {
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-menu__links {
    grid-template-columns: 1fr;
    padding: 18px 0 0;
  }

  .mega-menu__links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-hero__grid,
  .solution-feature__grid,
  .capability-split__grid,
  .rfq-section__grid,
  .inner-hero__grid,
  .product-hero__grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-gallery__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    padding: 70px 0 48px;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .home-hero__media,
  .solution-feature__media {
    width: 100%;
    min-width: 100%;
  }

  .home-hero__media img {
    min-height: 430px;
  }

  .trust-strip__items {
    grid-template-columns: 1fr;
  }

  .trust-strip__items span,
  .trust-strip__items span:last-child {
    min-height: 54px;
    padding-inline: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid #d6e0e6;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .category-lines {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .solution-feature__content {
    padding: 68px 0 50px;
  }

  .solution-feature__media {
    height: 450px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .capability-split figure {
    width: calc(100% + 36px);
    min-width: calc(100% + 36px);
    height: 480px;
    margin-left: -18px;
  }

  .capability-split__content {
    padding: 62px 0;
  }

  .project-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .project-grid > :last-child {
    display: block;
  }

  .rfq-section__grid {
    gap: 35px;
  }

  .rfq-intro {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .contact-dock {
    top: auto;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: repeat(var(--contact-count), minmax(0, 1fr));
    width: auto;
    padding: 5px;
    border-radius: 20px;
    transform: none;
  }

  .contact-dock__item {
    min-height: 58px;
    padding: 3px 2px;
    border-right: 1px solid #e8edf0;
    border-bottom: 0;
    gap: 2px;
  }

  .contact-dock__item:last-child {
    border-right: 0;
  }

  .contact-dock__icon {
    width: 31px;
    height: 31px;
    margin: 0;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.2);
  }

  .contact-dock__icon .dashicons {
    width: 17px;
    height: 17px;
    font-size: 17px;
  }

  .contact-dock__label {
    font-size: 8px;
  }

  .contact-dock__detail {
    display: none;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .category-card-grid {
    grid-template-columns: 1fr;
  }

  .results-toolbar {
    align-items: center;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .directory-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .equipment-filters {
    display: none;
  }

  .equipment-filters.is-open {
    display: block;
  }

  .filter-submit {
    display: inline-flex;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fluid-product-tree__group {
    padding: 18px;
  }

  .catalog-product-tree > .shell {
    padding-right: 0;
  }

  .fluid-product-tree__family {
    gap: 18px;
  }

  .fluid-product-tree__family-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    white-space: normal;
  }

  .fluid-product-tree__products .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card--preview .card-body {
    min-height: auto;
  }

  .family-view-all .button {
    width: 100%;
  }

  .product-hero__media,
  .product-hero__media > img {
    min-height: 420px;
    height: 420px;
  }

  .spec-panel {
    order: -1;
  }

  .about-principles {
    grid-template-columns: 1fr;
    width: calc(100vw - 36px);
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .home-hero__media img {
    min-height: 340px;
  }

  .home-hero__media figcaption {
    right: 12px;
    bottom: 12px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .process-grid,
  .mini-metrics,
  .project-grid,
  .equipment-grid,
  .service-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .service-grid--supply-chain .service-card {
    padding: 26px 22px;
  }

  .process-card,
  .process-card:nth-child(3) {
    min-height: auto;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mini-metrics div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-split figure {
    height: 340px;
  }

  .rfq-form {
    padding: 24px 18px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .category-card,
  .category-card > img {
    min-height: 250px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .results-toolbar {
    align-items: flex-start;
  }

  .results-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero {
    padding-bottom: 65px;
  }

  .product-hero__media,
  .product-hero__media > img {
    min-height: 320px;
    height: 320px;
  }

  .product-gallery__item img,
  .product-gallery__item--wide img {
    height: 300px;
  }

  .breadcrumbs {
    display: none;
  }

  .spec-panel {
    padding: 22px;
  }
}

@media (max-width: 1024px) {
  .product-detail-nav {
    top: 72px;
  }

  .product-gallery-switcher__stage {
    height: 430px;
  }

  .similar-products__track {
    grid-auto-columns: minmax(240px, calc((100% - 40px) / 3));
  }

  .selection-checklist {
    top: 148px;
  }
}

@media (max-width: 780px) {
  .equipment-single .shell {
    padding-right: 0;
  }

  .product-detail-nav a {
    min-height: 52px;
    padding-inline: 16px;
  }

  .product-gallery-switcher__stage {
    height: 360px;
  }

  .product-gallery-switcher__thumb {
    height: 66px;
  }

  .selection-checklist {
    position: static;
  }

  .reference-spec-header,
  .similar-products__heading,
  .verified-spec-block > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-scroll-hint {
    display: block;
    margin: -6px 0 12px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
  }

  .product-configuration__grid {
    grid-template-columns: 1fr;
  }

  .similar-products__track {
    grid-auto-columns: minmax(260px, 86vw);
  }
}

@media (max-width: 520px) {
  .product-hero__media--gallery {
    height: auto;
    min-height: 0;
  }

  .product-gallery-switcher__stage {
    height: 300px;
  }

  .product-gallery-switcher__thumb {
    height: 58px;
  }

  .selection-checklist,
  .product-configuration__grid article {
    padding: 24px;
  }

  .reference-spec-table {
    min-width: 680px;
  }
}

/* Store and catalogue-to-commerce bridge */
.woocommerce-notices-wrapper,
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  width: var(--shell);
  margin: 18px auto 0;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
}

.store-hero,
.store-page-hero {
  color: var(--white);
  background: var(--navy);
}

.store-hero {
  padding: 82px 0;
}

.store-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.55fr);
  align-items: end;
  gap: 72px;
}

.store-hero h1,
.store-hero p,
.store-page-hero h1,
.store-page-hero p {
  color: var(--white);
}

.store-hero h1 {
  margin-bottom: 22px;
}

.store-hero p {
  max-width: 740px;
  margin-bottom: 0;
  color: #cbdce7;
  font-size: 18px;
}

.store-hero__actions {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 28px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.08);
}

.store-hero__actions strong {
  font-size: 20px;
}

.store-categories {
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.store-categories .shell {
  display: flex;
  gap: 9px;
  padding-block: 22px;
  overflow-x: auto;
}

.store-categories a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.store-categories a:hover,
.store-categories a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.store-catalog {
  background: var(--mist);
}

.store-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.store-toolbar h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-grid--related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 43, 71, 0.07);
}

.store-card__image {
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #e8edf0;
}

.store-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.store-card:hover .store-card__image img {
  transform: scale(1.025);
}

.store-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.store-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-card h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.store-card p {
  margin-bottom: 16px;
  font-size: 14px;
}

.store-card__lead-time {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.store-card__lead-time .dashicons {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.store-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.store-price,
.store-single-price {
  color: var(--navy);
  font-weight: 800;
}

.store-price {
  font-size: 19px;
}

.store-price del,
.store-single-price del {
  margin-right: 7px;
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 500;
}

.store-card__buy .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 11px;
}

.store-stock {
  color: #177245;
  font-weight: 750;
}

.store-stock--outofstock {
  color: #a33b32;
}

.store-stock--onbackorder {
  color: #94630a;
}

.store-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.store-pagination a,
.store-pagination span {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}

.store-pagination .current {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.store-empty {
  padding: 70px 32px;
  border: 1px dashed var(--line-dark);
  background: var(--white);
  text-align: center;
}

.store-empty > span .dashicons {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 48px;
}

.store-empty h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.store-empty p {
  max-width: 700px;
  margin: 0 auto 24px;
}

.equipment-store-box {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 22px;
  border: 1px solid #a9c5d6;
  border-left: 4px solid var(--blue);
  background: #f3f9fc;
}

.equipment-store-box__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.equipment-store-box__heading span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.equipment-store-box__heading strong {
  color: var(--navy);
  font-size: 27px;
}

.equipment-store-box__meta {
  display: grid;
  gap: 5px;
  color: var(--body);
  font-size: 13px;
}

.store-scope {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  color: var(--body);
  background: #fffaf0;
  font-size: 13px;
  line-height: 1.55;
}

.store-price-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.equipment-store-box > small {
  color: var(--muted);
  line-height: 1.5;
}

.store-purchase-controls {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(130px, 0.75fr);
  gap: 10px;
}

.store-add-form {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
}

.store-add-form label {
  display: grid;
  gap: 4px;
}

.store-add-form label span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-add-form input {
  width: 100%;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  text-align: center;
}

.store-purchase-controls .button {
  min-height: 46px;
}

.store-unavailable {
  grid-column: 1 / -1;
  padding: 12px;
  color: #8c372f;
  background: #fff2f0;
  font-weight: 700;
  text-align: center;
}

.equipment-card__store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 10px 12px;
  background: #edf7fb;
}

.equipment-card__store span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.equipment-card__store strong {
  color: var(--navy);
  font-size: 16px;
}

.store-single-price {
  margin: 18px 0 12px;
  font-size: 38px;
  line-height: 1.2;
}

.store-technical-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.store-product-description {
  background: var(--mist);
}

.store-page-hero {
  padding: 50px 0;
}

.store-page-hero .shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.store-page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(40px, 5vw, 64px);
}

.store-page-hero p {
  margin-bottom: 0;
  color: #cbdce7;
}

.store-page-content {
  min-height: 420px;
}

.store-page-content .wc-block-cart,
.store-page-content .wc-block-checkout,
.store-page-content .woocommerce {
  max-width: none;
  margin: 0;
}

.store-page-content input,
.store-page-content select,
.store-page-content textarea {
  border-color: var(--line-dark) !important;
  border-radius: 0 !important;
}

.store-page-content .wc-block-components-button,
.store-page-content .woocommerce-button,
.store-page-content button[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 0 !important;
  color: var(--white) !important;
  background: var(--navy) !important;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .store-grid,
  .store-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-hero__grid {
    grid-template-columns: 1fr minmax(220px, 0.5fr);
    gap: 36px;
  }
}

@media (max-width: 780px) {
  .store-hero {
    padding: 58px 0;
  }

  .store-hero__grid,
  .store-page-hero .shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .store-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-grid,
  .store-grid--related {
    grid-template-columns: 1fr;
  }

  .store-purchase-controls {
    grid-template-columns: 1fr;
  }

  .equipment-store-box__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .store-add-form {
    grid-template-columns: 68px 1fr;
  }

  .store-card__buy {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-card__buy .button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .resource-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-child-page__layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 780px) {
  .section-topic-nav .shell {
    gap: 22px;
  }

  .section-topic-nav a {
    min-height: 56px;
  }

  .resource-group-grid,
  .page-topic-grid,
  .section-child-page__layout {
    grid-template-columns: 1fr;
  }

  .resource-group-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .page-topic-grid > a {
    min-height: 0;
    padding: 24px 20px;
  }

  .section-side-nav {
    position: static;
  }
}

@media (max-width: 520px) {
  .mobile-nav-actions {
    grid-template-columns: 1fr;
  }

  .page-topic-grid > a {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px 12px;
  }
}
