:root {
  --vm-crimson: #a81d30;
  --vm-crimson-dark: #821222;
  --vm-slate: #303e48;
  --vm-slate-dark: #1d282f;
  --vm-ink: #182228;
  --vm-text: #48555d;
  --vm-muted: #707c83;
  --vm-line: #d8dde0;
  --vm-soft-line: #e9edef;
  --vm-surface: #f4f5f4;
  --vm-warm: #f3f0eb;
  --vm-white: #ffffff;
  --vm-container: 1240px;
  --vm-header-height: 80px;
  --vm-shadow: 0 24px 64px rgba(20, 31, 38, 0.12);
  --vm-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--vm-header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--vm-white);
  color: var(--vm-text);
  font-family: var(--vm-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.vm-menu-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

.vm-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(168, 29, 48, 0.36);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  color: var(--vm-ink);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.2em;
}

ul,
ol {
  margin-top: 0;
}

.vm-container {
  width: min(calc(100% - 48px), var(--vm-container));
  margin-inline: auto;
}

.vm-narrow-content {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.vm-section {
  padding-block: clamp(76px, 9vw, 128px);
}

.vm-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--vm-crimson);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vm-eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.vm-eyebrow-light {
  color: #f4a8b3;
}

.vm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.vm-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.vm-button-primary {
  background: var(--vm-crimson);
  color: var(--vm-white);
}

.vm-button-primary:hover {
  background: var(--vm-crimson-dark);
}

.vm-button-dark {
  background: var(--vm-slate-dark);
  color: var(--vm-white);
}

.vm-button-dark:hover {
  background: var(--vm-slate);
}

.vm-button-light {
  background: var(--vm-white);
  color: var(--vm-crimson-dark);
}

.vm-button-light:hover {
  background: #f9e9ec;
}

.vm-button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(21, 30, 36, 0.18);
  color: var(--vm-white);
}

.vm-button-ghost:hover {
  border-color: var(--vm-white);
  background: rgba(255, 255, 255, 0.12);
}

.vm-text-link,
.vm-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vm-ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.vm-text-link span,
.vm-card-link span:last-child {
  color: var(--vm-crimson);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.vm-text-link:hover span,
.vm-card-link:hover span:last-child {
  transform: translateX(4px);
}

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

.vm-text-link-light span {
  color: #f4a8b3;
}

.vm-skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--vm-white);
  color: var(--vm-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

/* Header */
.vm-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--vm-header-height);
  border-bottom: 1px solid rgba(48, 62, 72, 0.1);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease;
}

.vm-header-sentinel {
  position: relative;
  z-index: -1;
  display: block;
  width: 1px;
  height: 9px;
  margin-bottom: -9px;
  pointer-events: none;
}

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

.vm-site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(19, 31, 38, 0.08);
}

.home .vm-site-header {
  position: fixed;
  right: 0;
  left: 0;
}

.home .vm-site-header:not(.is-scrolled) {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(18, 28, 34, 0.24);
  box-shadow: none;
}

.home .vm-site-header:not(.is-scrolled) .vm-menu a,
.home .vm-site-header:not(.is-scrolled) .vm-menu-toggle {
  color: var(--vm-white);
}

.home .vm-site-header:not(.is-scrolled) .vm-language-switcher {
  border-left-color: rgba(255, 255, 255, 0.34);
}

.home .vm-site-header:not(.is-scrolled) .vm-language-switcher a {
  color: rgba(255, 255, 255, 0.76);
}

.home .vm-site-header:not(.is-scrolled) .vm-language-switcher .is-current a,
.home .vm-site-header:not(.is-scrolled) .vm-language-switcher a:hover {
  color: var(--vm-white);
}

.home .vm-site-header.is-menu-open {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: rgba(18, 28, 34, 0.96);
  box-shadow: none;
}

.home .vm-site-header.is-menu-open .vm-menu-toggle {
  color: var(--vm-white);
}

.vm-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.vm-brand,
.custom-logo-link {
  display: block;
  flex: 0 0 auto;
  text-decoration: none;
}

.vm-brand img,
.custom-logo {
  width: min(252px, 28vw);
  height: auto;
}

.vm-brand .vm-header-logo {
  width: auto;
  height: min(56px, calc(var(--vm-header-height) - 18px));
}

.vm-primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.vm-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-menu a {
  position: relative;
  display: block;
  color: var(--vm-slate-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.vm-menu a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--vm-crimson);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.vm-menu a:hover::after,
.vm-menu .current-menu-item > a::after,
.vm-menu .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.vm-header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid var(--vm-crimson);
  background: var(--vm-crimson);
  color: var(--vm-white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease;
}

.vm-header-cta:hover {
  background: var(--vm-crimson-dark);
}

.vm-language-switcher {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--vm-line);
  list-style: none;
}

.vm-language-switcher a {
  color: var(--vm-muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.vm-language-switcher .is-current a,
.vm-language-switcher a:hover {
  color: var(--vm-crimson);
}

.vm-menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--vm-ink);
  cursor: pointer;
}

.vm-menu-toggle-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-menu-icon {
  display: grid;
  width: 24px;
  gap: 6px;
}

.vm-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.vm-menu-toggle[aria-expanded="true"] .vm-menu-icon span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.vm-menu-toggle[aria-expanded="true"] .vm-menu-icon span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Home hero */
.vm-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--vm-slate-dark);
  isolation: isolate;
}

.admin-bar .vm-hero {
  min-height: calc(100dvh - 32px);
}

.vm-hero-slides,
.vm-hero-slide,
.vm-hero-media,
.vm-hero-shade {
  position: absolute;
  inset: 0;
}

.vm-hero-slides {
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.vm-hero-slider.is-dragging .vm-hero-slides {
  cursor: grabbing;
}

.vm-hero-slide {
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--vm-hero-drag-x, 0), 0, 0);
  visibility: hidden;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 220ms ease, visibility 0s linear 650ms;
}

.vm-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.vm-hero-slider.is-dragging .vm-hero-slide.is-active {
  transition: none;
}

.vm-hero-media {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.005);
}

.vm-hero-media-engineer {
  object-position: 58% center;
}

.vm-hero-media-plant {
  object-position: left center;
  transform: scale(1.12);
  transform-origin: left center;
}

.vm-hero-media-water,
.vm-hero-media-ai,
.vm-hero-media-quality {
  object-position: 60% center;
}

.vm-hero-shade {
  background: linear-gradient(90deg, rgba(14, 23, 29, 0.88) 0%, rgba(20, 31, 38, 0.64) 42%, rgba(25, 36, 43, 0.18) 72%, rgba(25, 36, 43, 0.06) 100%), linear-gradient(0deg, rgba(10, 18, 22, 0.4), transparent 52%);
}

.vm-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(74px, 10vh, 116px) clamp(132px, 16vh, 172px);
}

.vm-hero h1,
.vm-hero h2 {
  max-width: 860px;
  margin: 0;
  color: var(--vm-white);
  font-size: clamp(3.1rem, 5.7vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.vm-hero-lead {
  max-width: 640px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.55;
}

.vm-hero-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.vm-hero-a11y-toggle:focus-visible {
  position: fixed !important;
  z-index: 110;
  top: calc(var(--vm-header-height) + 14px);
  right: 24px;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px 14px !important;
  overflow: visible !important;
  clip: auto !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  background: var(--vm-slate-dark);
  color: var(--vm-white);
  white-space: nowrap !important;
}

.vm-hero-pagination {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.vm-hero-pagination {
  gap: 8px;
}

.vm-hero-pagination button {
  display: grid;
  width: 38px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.vm-hero-pagination span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
  transition: background-color 180ms ease, transform 180ms ease;
}

.vm-hero-pagination button:hover span,
.vm-hero-pagination button[aria-current="true"] span {
  background: var(--vm-crimson);
  transform: scaleY(2);
}


.vm-trust-strip {
  border-bottom: 1px solid var(--vm-line);
  background: var(--vm-white);
}

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

.vm-trust-grid > div {
  min-height: 126px;
  padding: 30px clamp(24px, 4vw, 52px);
  border-left: 1px solid var(--vm-line);
}

.vm-trust-grid > div:last-child {
  border-right: 1px solid var(--vm-line);
}

.vm-trust-grid strong,
.vm-trust-grid span {
  display: block;
}

.vm-trust-grid strong {
  margin-bottom: 5px;
  color: var(--vm-ink);
  font-size: 0.98rem;
}

.vm-trust-grid span {
  color: var(--vm-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* General split content */
.vm-split {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.vm-split-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr);
}

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

.vm-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--vm-surface);
}

.vm-image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vm-about-product-image {
  background: #f1f1ef;
}

.vm-about-product-image img {
  min-height: 420px;
  object-fit: contain;
}

.vm-image-tall img {
  min-height: 560px;
  aspect-ratio: 1.12 / 1;
}

.vm-intro-media {
  position: relative;
  padding-bottom: 72px;
}

.vm-team-focus img {
  object-position: right center;
}

.vm-intro-facility {
  position: absolute;
  bottom: 0;
  left: 28px;
  width: min(46%, 278px);
  margin: 0;
  padding: 10px;
  background: var(--vm-white);
  box-shadow: 0 18px 48px rgba(20, 31, 38, 0.16);
}

.vm-intro-facility img {
  width: 100%;
  aspect-ratio: 668 / 438;
  object-fit: cover;
}

.vm-copy-block h2 {
  max-width: 700px;
  text-wrap: balance;
}

.vm-copy-block > p:not(.vm-eyebrow) {
  max-width: 650px;
  color: var(--vm-text);
  font-size: 1.03rem;
}

.vm-copy-block .vm-button,
.vm-copy-block .vm-text-link {
  margin-top: 16px;
}

.vm-check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 14px;
  padding: 0;
  list-style: none;
}

.vm-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--vm-ink);
  font-weight: 600;
}

.vm-check-list li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 13px;
  height: 2px;
  background: var(--vm-crimson);
  content: "";
}

.vm-section-heading {
  margin-bottom: clamp(36px, 5vw, 66px);
}

.vm-section-heading h2 {
  max-width: 760px;
}

.vm-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 72px;
}

.vm-heading-row > p {
  margin-bottom: 8px;
  color: var(--vm-muted);
  font-size: 1rem;
}

.vm-heading-light h2,
.vm-heading-light > p {
  color: var(--vm-white);
}

/* Product cards */
.vm-products-section,
.vm-archive-section {
  background: var(--vm-surface);
}

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

.vm-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--vm-line);
  background: var(--vm-white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vm-product-card:hover {
  border-color: #bcc4c8;
  box-shadow: 0 18px 42px rgba(28, 40, 47, 0.08);
  transform: translateY(-3px);
}

.vm-product-card:focus-within {
  border-color: var(--vm-crimson);
  box-shadow: 0 0 0 1px var(--vm-crimson);
}

.vm-product-image {
  display: grid;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  place-items: center;
  border-bottom: 1px solid var(--vm-line);
  background: #f0f1f0;
}

.vm-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vm-product-card-body {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 2.5vw, 36px);
}

.vm-product-group,
.vm-index-label {
  margin: 0 0 14px;
  color: var(--vm-crimson);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.vm-product-card h2,
.vm-product-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.vm-product-card h2 a,
.vm-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.vm-product-card a:focus-visible {
  outline-color: var(--vm-crimson);
}

.vm-product-card-body > p:not(.vm-product-group) {
  color: var(--vm-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

.vm-card-link {
  width: 100%;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--vm-soft-line);
}

.vm-card-spec {
  width: 100%;
  margin: 4px 0 24px;
  padding: 13px 0;
  border-block: 1px solid var(--vm-soft-line);
}

.vm-card-spec span,
.vm-card-spec strong {
  display: block;
}

.vm-card-spec span {
  color: var(--vm-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-card-spec strong {
  margin-top: 3px;
  color: var(--vm-ink);
  font-size: 0.85rem;
}

.vm-centered-action {
  margin-top: 46px;
  text-align: center;
}

/* Applications */
.vm-applications-section {
  background: #eef1f2;
  padding-block: clamp(82px, 8vw, 116px);
}

.vm-applications-section .vm-section-heading {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.vm-applications-section .vm-heading-row {
  grid-template-columns: minmax(0, 800px) auto;
  gap: 48px;
}

.vm-applications-section .vm-section-heading h2 {
  font-size: clamp(2.35rem, 3.2vw, 3rem);
}

.vm-applications-section .vm-heading-row > .vm-text-link {
  min-height: 44px;
  justify-self: end;
}

.vm-application-directory {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  border-top: 1px solid #cbd2d6;
  border-bottom: 1px solid #cbd2d6;
}

.vm-application-featured {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  border-right: 1px solid #cbd2d6;
  color: var(--vm-ink);
  text-decoration: none;
}

.vm-application-featured-media {
  display: block;
  min-height: 460px;
  overflow: hidden;
  background: #dfe4e6;
}

.vm-application-featured-media img,
.vm-application-directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.vm-application-featured:hover .vm-application-featured-media img,
.vm-application-directory-row:hover .vm-application-directory-media img {
  transform: scale(1.025);
}

.vm-application-featured-copy {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px 28px;
  background: var(--vm-white);
}

.vm-application-featured-copy > span,
.vm-application-featured-copy strong,
.vm-application-featured-copy em,
.vm-application-directory-copy,
.vm-application-directory-copy strong,
.vm-application-directory-copy em {
  display: block;
}

.vm-application-featured-copy strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.vm-application-featured-copy em,
.vm-application-directory-copy em {
  max-width: 460px;
  margin-top: 7px;
  color: var(--vm-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.vm-application-featured-copy b,
.vm-application-directory-row b {
  color: var(--vm-crimson);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.vm-application-directory-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  min-width: 0;
}

.vm-application-directory-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px 20px;
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 28px 28px 28px 32px;
  border-bottom: 1px solid #cbd2d6;
  color: var(--vm-ink);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.vm-application-directory-row:last-child {
  border-bottom: 0;
}

.vm-application-directory-row:hover {
  background: rgba(255, 255, 255, 0.6);
}

.vm-application-directory-copy strong {
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.25;
}

.vm-application-directory-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe4e6;
}

/* Process */
.vm-process-section {
  background: var(--vm-white);
}

.vm-process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 130px);
}

.vm-process-list,
.vm-principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-process-list li,
.vm-principles-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--vm-line);
}

.vm-process-list li:first-child,
.vm-principles-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.vm-process-list > li > span,
.vm-principles-list > li > span {
  color: var(--vm-crimson);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.vm-process-list h3,
.vm-principles-list h3 {
  margin-bottom: 8px;
}

.vm-process-list p,
.vm-principles-list p {
  margin-bottom: 0;
  color: var(--vm-muted);
}

.vm-download-teaser {
  background: var(--vm-warm);
}

.vm-download-teaser .vm-image-frame img {
  min-height: 420px;
}

.vm-cta-band {
  padding-block: clamp(54px, 7vw, 86px);
  background: var(--vm-crimson);
  color: var(--vm-white);
}

.vm-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.vm-cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--vm-white);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.vm-cta-inner .vm-eyebrow {
  margin-bottom: 14px;
}

/* Page heroes */
.vm-page-hero {
  --vm-page-hero-image: none;
  --vm-page-hero-position: center;
  --vm-page-hero-position-mobile: var(--vm-page-hero-position);
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 140px);
  background-color: var(--vm-slate-dark);
  background-image: var(--vm-page-hero-image);
  background-position: var(--vm-page-hero-position);
  background-repeat: no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.88);
  isolation: isolate;
}

.vm-page-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(168, 29, 48, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(14, 23, 29, 0.92) 0%, rgba(16, 26, 32, 0.7) 48%, rgba(16, 26, 32, 0.24) 78%, rgba(16, 26, 32, 0.12) 100%);
  content: "";
}

.vm-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.vm-page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--vm-white);
  font-size: clamp(2.8rem, 5.3vw, 4.8rem);
  text-wrap: balance;
}

.vm-page-hero-inner > p {
  margin-bottom: 6px;
  font-size: 1.02rem;
  text-shadow: 0 1px 12px rgba(8, 14, 18, 0.72);
}

.vm-applications-hero {
  --vm-page-hero-image: url("../images/inner-hero-applications.jpg");
  --vm-page-hero-position: 66% 50%;
  --vm-page-hero-position-mobile: 70% 50%;
}

.vm-product-archive-hero {
  --vm-page-hero-image: url("../images/inner-hero-products.jpg");
  --vm-page-hero-position: 70% 50%;
  --vm-page-hero-position-mobile: 72% 50%;
}

.vm-downloads-hero {
  --vm-page-hero-image: url("../images/inner-hero-downloads.jpg");
  --vm-page-hero-position: 72% 52%;
  --vm-page-hero-position-mobile: 70% 50%;
}

.vm-about-hero {
  --vm-page-hero-image: url("../images/inner-hero-about.jpg");
  --vm-page-hero-position: 70% 48%;
  --vm-page-hero-position-mobile: 72% 46%;
}

.vm-contact-hero {
  --vm-page-hero-image: url("../images/inner-hero-contact.jpg");
  --vm-page-hero-position: 72% 48%;
  --vm-page-hero-position-mobile: 74% 46%;
}

/* Applications detail */
.vm-application-detail-list {
  background: var(--vm-white);
}

.vm-application-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: stretch;
  margin-bottom: clamp(72px, 10vw, 140px);
}

.vm-application-detail:last-child {
  margin-bottom: 0;
}

.vm-application-detail-reverse .vm-application-detail-image {
  order: 2;
}

.vm-application-detail-image {
  min-height: 520px;
  overflow: hidden;
  background: var(--vm-surface);
}

.vm-application-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-application-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
  background: var(--vm-warm);
}

.vm-application-detail-copy h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.vm-application-detail-copy h3 {
  margin-top: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vm-application-detail-copy ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.vm-secondary-callout {
  padding-block: clamp(68px, 8vw, 106px);
  border-block: 1px solid var(--vm-line);
  background: var(--vm-surface);
}

.vm-secondary-callout-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 120px);
}

.vm-secondary-callout-inner h2 {
  margin-bottom: 0;
}

.vm-secondary-callout-inner > p {
  margin-bottom: 0;
  align-self: end;
}

/* Application and product hierarchy */
.vm-application-overview-section,
.vm-family-section,
.vm-valve-category-section,
.vm-category-product-section {
  background: var(--vm-surface);
}

.vm-application-overview-grid,
.vm-valve-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vm-application-overview-grid {
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 52px);
}

.vm-application-overview-card {
  position: relative;
  display: grid;
  min-width: 0;
  height: clamp(340px, 28vw, 390px);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--vm-line);
  background: var(--vm-white);
  color: var(--vm-ink);
  text-decoration: none;
}

.vm-application-overview-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 400ms ease;
}

.vm-application-overview-card::after {
  display: none;
}

.vm-application-overview-card:hover img {
  transform: scale(1.025);
}

.vm-application-overview-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.vm-application-overview-card:nth-child(even) img {
  order: 2;
}

.vm-application-overview-copy small,
.vm-family-feature small,
.vm-valve-category-copy small {
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vm-application-overview-copy small {
  color: var(--vm-crimson);
}

.vm-application-overview-copy strong {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.vm-application-overview-copy em,
.vm-family-feature em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-style: normal;
}

.vm-application-overview-copy em {
  color: var(--vm-muted);
}

.vm-application-overview-copy b,
.vm-family-feature b,
.vm-valve-category-copy b {
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.vm-application-overview-copy b {
  color: var(--vm-crimson);
}

.vm-breadcrumbs {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.vm-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vm-breadcrumbs li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.vm-breadcrumbs li + li::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.36);
  content: "/";
}

.vm-breadcrumbs a {
  color: var(--vm-white);
  text-decoration: none;
}

.vm-context-hero::before {
  background: linear-gradient(90deg, rgba(12, 20, 26, 0.97) 0%, rgba(13, 22, 28, 0.88) 50%, rgba(13, 22, 28, 0.58) 100%);
}

.vm-context-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: clamp(56px, 9vw, 140px);
}

.vm-context-detail-intro h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.vm-context-detail-intro > p:last-child {
  max-width: 780px;
  font-size: 1.04rem;
}

.vm-review-panel,
.vm-category-pending {
  padding: clamp(30px, 4vw, 48px);
  border-top: 4px solid var(--vm-crimson);
  background: var(--vm-warm);
}

.vm-review-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
  padding-left: 20px;
  color: var(--vm-ink);
}

.vm-related-navigation {
  padding-block: clamp(56px, 7vw, 86px);
  border-top: 1px solid var(--vm-line);
  background: var(--vm-surface);
}

.vm-related-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--vm-line);
}

.vm-related-link-grid a {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 116px;
  align-content: center;
  gap: 6px 20px;
  padding: 24px;
  border-right: 1px solid var(--vm-line);
  color: var(--vm-ink);
  text-decoration: none;
}

.vm-related-link-grid a:last-child {
  border-right: 0;
}

.vm-related-link-grid small {
  grid-column: 1 / -1;
  color: var(--vm-crimson);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.vm-related-link-grid strong {
  font-size: 1rem;
}

.vm-family-feature {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--vm-white);
  text-decoration: none;
  isolation: isolate;
}

.vm-family-feature::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 22, 28, 0.05) 26%, rgba(13, 22, 28, 0.9) 100%),
    linear-gradient(90deg, rgba(13, 22, 28, 0.48), rgba(13, 22, 28, 0.04) 76%);
  content: "";
}

.vm-family-feature > img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-family-feature > span {
  display: grid;
  width: min(470px, 92%);
  align-content: end;
  padding: clamp(34px, 4vw, 56px);
}

.vm-family-feature strong {
  font-size: clamp(2.8rem, 4.4vw, 4.25rem);
  line-height: 0.96;
}

.vm-selection-strip {
  padding-block: 30px;
  background: var(--vm-slate-dark);
}

.vm-selection-strip .vm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vm-selection-strip p,
.vm-selection-strip a {
  margin: 0;
  color: var(--vm-white);
}

.vm-valve-category-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--vm-line);
  background: var(--vm-white);
  color: var(--vm-ink);
  text-decoration: none;
}

.vm-valve-category-image {
  display: grid;
  overflow: hidden;
  place-items: center;
  background: #eff0ef;
}

.vm-valve-category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vm-valve-family-grid .vm-valve-category-card {
  grid-template-columns: minmax(215px, 1.05fr) minmax(0, 0.95fr);
  min-height: 360px;
}

.vm-valve-family-grid .vm-valve-category-image {
  position: relative;
  min-height: 0;
  background: #eceeed;
}

.vm-valve-family-grid .vm-valve-category-image img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.vm-valve-family-grid .vm-valve-category-copy {
  padding: clamp(28px, 3vw, 40px);
}

.vm-valve-category-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.vm-valve-category-copy small {
  color: var(--vm-crimson);
}

.vm-valve-category-copy strong {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.vm-valve-category-copy em {
  margin-top: 7px;
  color: var(--vm-muted);
  font-size: 1rem;
  font-style: normal;
}

.vm-valve-category-copy p {
  margin-top: 20px;
  font-size: 0.86rem;
}

.vm-valve-category-copy b {
  margin-top: auto;
  color: var(--vm-crimson);
}

.vm-product-category-hero h1 span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.26em;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.vm-category-pending {
  max-width: 840px;
}

.vm-category-pending h2 {
  max-width: 650px;
}

.vm-category-pending .vm-button {
  margin-top: 12px;
}

/* About */
.vm-principles-section {
  padding-block: clamp(76px, 9vw, 128px);
  background: var(--vm-slate-dark);
  color: rgba(255, 255, 255, 0.72);
}

.vm-principles-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
}

.vm-principles-layout h2,
.vm-principles-list h3 {
  color: var(--vm-white);
}

.vm-principles-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.vm-principles-list p {
  color: rgba(255, 255, 255, 0.63);
}

.vm-service-split {
  margin-bottom: 70px;
}

/* Downloads */
.vm-downloads-section {
  background: var(--vm-surface);
}

.vm-download-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--vm-line);
  background: var(--vm-white);
}

.vm-download-row + .vm-download-row {
  margin-top: 22px;
}

.vm-file-mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 116px;
  place-items: end center;
  padding-bottom: 17px;
  background: var(--vm-crimson);
  color: var(--vm-white);
}

.vm-file-mark::before {
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 0 25px 25px;
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, 0.34) transparent;
  content: "";
}

.vm-file-mark span {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.vm-file-mark-request {
  background: var(--vm-slate);
}

.vm-download-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
}

.vm-download-copy > p:not(.vm-product-group) {
  max-width: 690px;
  margin-bottom: 12px;
}

.vm-download-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  color: var(--vm-muted);
  font-size: 0.78rem;
  list-style: none;
}

.vm-download-copy li {
  position: relative;
}

.vm-download-copy li + li::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--vm-crimson);
  content: "";
}

.vm-document-note {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  margin-top: 34px;
  padding: 26px 30px;
  border-left: 3px solid var(--vm-crimson);
  background: #ebe8e3;
  color: var(--vm-text);
}

.vm-document-note strong {
  color: var(--vm-ink);
}

.vm-document-note p {
  margin: 0;
}

/* Contact and form */
.vm-contact-section {
  background: var(--vm-surface);
}

.vm-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.vm-contact-details {
  position: sticky;
  top: calc(var(--vm-header-height) + 36px);
}

.vm-contact-details h2,
.vm-form-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.vm-contact-details dl {
  margin: 40px 0;
}

.vm-contact-details dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 17px 0;
  border-top: 1px solid var(--vm-line);
}

.vm-contact-details dl > div:last-child {
  border-bottom: 1px solid var(--vm-line);
}

.vm-contact-details dt {
  color: var(--vm-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-contact-details dd {
  margin: 0;
  color: var(--vm-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.vm-response-note {
  padding: 24px 26px;
  border-left: 3px solid var(--vm-crimson);
  background: var(--vm-white);
}

.vm-contact-support {
  margin: -12px 0 26px;
  padding: 22px 24px;
  border-left: 3px solid var(--vm-crimson);
  background: var(--vm-white);
}

.vm-contact-support h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.35;
}

.vm-contact-support p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.vm-response-note strong {
  color: var(--vm-ink);
}

.vm-response-note p {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

.vm-distributors-section {
  padding-block: clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--vm-line);
  background: var(--vm-white);
}

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

.vm-distributor-card {
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--vm-line);
  background: var(--vm-surface);
}

.vm-distributor-card h3 {
  margin-bottom: 7px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.vm-company-english {
  min-height: 3em;
  color: var(--vm-muted);
  font-size: 0.84rem;
}

.vm-distributor-card dl {
  margin: 30px 0 0;
}

.vm-distributor-card dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--vm-line);
}

.vm-distributor-card dt {
  color: var(--vm-muted);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-distributor-card dd {
  margin: 0;
  color: var(--vm-ink);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.vm-form-panel {
  padding: clamp(34px, 5vw, 64px);
  background: var(--vm-white);
  box-shadow: var(--vm-shadow);
}

.vm-contact-form {
  margin-top: 38px;
}

.vm-product-context {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 24px 0 -12px;
  padding: 14px 17px;
  border-left: 3px solid var(--vm-crimson);
  background: var(--vm-surface);
}

.vm-product-context span {
  color: var(--vm-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-product-context strong {
  color: var(--vm-ink);
  font-size: 0.88rem;
}

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

.vm-contact-form p {
  margin: 0 0 20px;
}

.vm-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--vm-ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.vm-contact-form input,
.vm-contact-form textarea,
.vm-contact-form select {
  width: 100%;
  border: 1px solid #cbd1d5;
  border-radius: 0;
  background: #fbfcfc;
  color: var(--vm-ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.vm-contact-form input,
.vm-contact-form select {
  min-height: 50px;
  padding: 10px 13px;
}

.vm-contact-form textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.vm-contact-form input:focus,
.vm-contact-form textarea:focus,
.vm-contact-form select:focus {
  border-color: var(--vm-crimson);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(168, 29, 48, 0.1);
}

.vm-contact-form .vm-form-note {
  margin: 13px 0 0;
  color: var(--vm-muted);
  font-size: 0.76rem;
}

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

.vm-form-notice {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid;
}

.vm-form-notice ul {
  margin: 6px 0 0;
  padding-left: 20px;
}

.vm-form-success {
  border-color: #317449;
  background: #eaf5ed;
  color: #245936;
}

.vm-form-error {
  border-color: var(--vm-crimson);
  background: #faeaed;
  color: #791525;
}

.vm-map-section {
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--vm-white);
}

.vm-map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.vm-map-layout h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.vm-map-frame {
  min-height: 420px;
  overflow: hidden;
  background: var(--vm-surface);
}

.vm-map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* Product detail */
.vm-product-detail-hero {
  padding-block: 34px clamp(76px, 8vw, 116px);
  background: var(--vm-surface);
}

.vm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--vm-muted);
  font-size: 0.74rem;
}

.vm-breadcrumbs a {
  color: var(--vm-slate);
  text-decoration: none;
}

.vm-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.vm-product-detail-image {
  overflow: hidden;
  border: 1px solid var(--vm-line);
  background: var(--vm-white);
}

.vm-product-detail-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.vm-product-summary h1 {
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
}

.vm-product-lead {
  margin: 24px 0 30px;
  font-size: 1.08rem;
}

.vm-product-quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 30px;
  border-block: 1px solid var(--vm-line);
}

.vm-product-quick-specs div {
  padding: 18px 20px 18px 0;
}

.vm-product-quick-specs div + div {
  padding-left: 24px;
  border-left: 1px solid var(--vm-line);
}

.vm-product-quick-specs span,
.vm-product-quick-specs strong {
  display: block;
}

.vm-product-quick-specs span {
  color: var(--vm-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vm-product-quick-specs strong {
  margin-top: 5px;
  color: var(--vm-ink);
  font-size: 0.88rem;
}

.vm-product-summary .vm-text-link {
  padding-inline: 12px;
}

.vm-product-spec-section {
  background: var(--vm-white);
}

.vm-spec-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.vm-spec-layout h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.vm-spec-list {
  margin: 0;
}

.vm-spec-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--vm-line);
}

.vm-spec-list > div:last-child {
  border-bottom: 1px solid var(--vm-line);
}

.vm-spec-list dt {
  color: var(--vm-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vm-spec-list dd {
  margin: 0;
  color: var(--vm-ink);
  font-weight: 650;
}

.vm-product-content-section {
  padding-top: 0;
}

.vm-entry-content {
  color: var(--vm-text);
  font-size: 1.04rem;
}

.vm-entry-content h2 {
  margin-top: 1.7em;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.vm-entry-content h2:first-child {
  margin-top: 0;
}

.vm-entry-content h3 {
  margin-top: 1.5em;
}

.vm-entry-content ul,
.vm-entry-content ol {
  padding-left: 1.25em;
}

.vm-entry-content li + li {
  margin-top: 8px;
}

.vm-entry-content a {
  color: var(--vm-crimson-dark);
}

.vm-entry-content img {
  margin-block: 2em;
}

.vm-selection-note-section {
  border-top: 1px solid var(--vm-line);
  background: var(--vm-white);
}

.vm-selection-note {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 8vw, 120px);
}

.vm-selection-note h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.vm-selection-note .vm-button {
  margin-top: 14px;
}

/* Footer */
.vm-site-footer {
  padding-top: clamp(66px, 8vw, 98px);
  background: #172127;
  color: rgba(255, 255, 255, 0.66);
}

.vm-footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) repeat(2, minmax(120px, 0.65fr)) minmax(220px, 1fr);
  gap: clamp(34px, 5vw, 70px);
  padding-bottom: 66px;
}

.vm-footer-brand img {
  width: 250px;
  height: auto;
  margin-bottom: 25px;
}

.vm-footer-brand p {
  max-width: 380px;
  margin: 0;
}

.vm-site-footer h2 {
  margin-bottom: 22px;
  color: var(--vm-white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.vm-site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.vm-site-footer a:hover {
  color: var(--vm-white);
  text-decoration: underline;
}

.vm-footer-contact p {
  margin-bottom: 9px;
  font-size: 0.86rem;
}

.vm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.75rem;
}

.vm-footer-bottom p {
  margin: 0;
}

.vm-footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.vm-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.vm-footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-social-placeholder {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.74);
}

.vm-social-placeholder::before {
  width: 16px;
  height: 16px;
  background: currentColor;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.vm-social-linkedin::before {
  mask-image: url("../icons/linkedin-in.svg");
  -webkit-mask-image: url("../icons/linkedin-in.svg");
}

.vm-social-youtube::before {
  width: 18px;
  mask-image: url("../icons/youtube.svg");
  -webkit-mask-image: url("../icons/youtube.svg");
}

.vm-social-x::before {
  mask-image: url("../icons/x-twitter.svg");
  -webkit-mask-image: url("../icons/x-twitter.svg");
}

.vm-not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding-block: 100px;
  background: var(--vm-surface);
  text-align: center;
}

.vm-not-found .vm-container {
  max-width: 760px;
}

.vm-not-found p:not(.vm-eyebrow) {
  max-width: 600px;
  margin-inline: auto;
}

.vm-not-found .vm-eyebrow,
.vm-not-found .vm-actions {
  justify-content: center;
}

/* haniwis autonomous dosing platform */
.vm-haniwis-home {
  padding-block: clamp(88px, 10vw, 142px);
  background: #17232a;
  color: var(--vm-white);
}

.vm-haniwis-home-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
}

.vm-haniwis-mark {
  margin: 0 0 24px;
  color: var(--vm-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.vm-haniwis-mark span {
  margin-left: 2px;
  color: #f2a6b1;
  font-size: 0.33em;
  vertical-align: top;
}

.vm-haniwis-home-copy h2 {
  max-width: 660px;
  color: var(--vm-white);
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
}

.vm-haniwis-home-copy > p:not(.vm-eyebrow):not(.vm-haniwis-mark) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.vm-haniwis-home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 34px;
}

.vm-haniwis-home-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
}

.vm-haniwis-home-media {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--vm-white);
  text-decoration: none;
}

.vm-haniwis-home-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 22, 0.86));
  content: "";
}

.vm-haniwis-home-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 360ms ease;
}

.vm-haniwis-home-media:hover img {
  transform: scale(1.018);
}

.vm-haniwis-home-media > span {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 22px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 750;
}

.vm-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.vm-family-section-light {
  background: linear-gradient(180deg, #f7f7f5 0%, #ffffff 100%);
}

.vm-family-grid-three {
  grid-template-columns: 1.18fr 0.82fr;
}

.vm-family-grid-three .vm-family-feature-primary {
  grid-row: span 2;
  aspect-ratio: auto;
}

.vm-family-grid-three .vm-family-feature:not(.vm-family-feature-primary) {
  aspect-ratio: 16 / 7;
}

.vm-family-grid-three .vm-family-feature:not(.vm-family-feature-primary) strong {
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}

.vm-availability-note {
  max-width: 900px;
  padding: clamp(34px, 6vw, 72px);
  border-left: 4px solid var(--vm-crimson);
  background: var(--vm-white);
  box-shadow: 0 22px 60px rgba(26, 38, 45, 0.08);
}

.vm-availability-note h2,
.vm-availability-note h3 {
  margin: 10px 0 18px;
}

.vm-availability-note .vm-button {
  margin-top: 20px;
}

.vm-pump-category-grid .vm-valve-category-card:nth-child(2) .vm-valve-category-image img {
  object-position: 58% center;
}

.vm-pump-category-grid .vm-valve-category-card:nth-child(3) .vm-valve-category-image img {
  object-position: 82% center;
}

.vm-family-feature-haniwis::after {
  background:
    linear-gradient(180deg, rgba(13, 22, 28, 0.04) 22%, rgba(13, 22, 28, 0.92) 100%),
    linear-gradient(90deg, rgba(13, 22, 28, 0.52), rgba(13, 22, 28, 0.05) 78%);
}

.vm-family-feature-haniwis > img {
  object-position: center 58%;
}

.vm-haniwis-page {
  background: #17232a;
  color: rgba(255, 255, 255, 0.76);
}

.vm-haniwis-page h1,
.vm-haniwis-page h2,
.vm-haniwis-page h3 {
  color: var(--vm-white);
}

.vm-haniwis-hero {
  position: relative;
  min-height: calc(100dvh - var(--vm-header-height));
  overflow: hidden;
  isolation: isolate;
}

.vm-haniwis-hero-media,
.vm-haniwis-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vm-haniwis-hero-media {
  object-fit: cover;
  object-position: center;
}

.vm-haniwis-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 18, 23, 0.96) 0%, rgba(15, 24, 30, 0.85) 44%, rgba(15, 24, 30, 0.2) 78%, rgba(15, 24, 30, 0.1) 100%);
}

.vm-haniwis-hero-inner {
  display: grid;
  min-height: calc(100dvh - var(--vm-header-height));
  align-content: center;
  padding-block: 42px 72px;
}

.vm-haniwis-hero .vm-breadcrumbs {
  margin-bottom: clamp(30px, 5vw, 60px);
}

.vm-haniwis-hero-copy {
  max-width: 760px;
}

.vm-haniwis-hero-copy h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.2vw, 6.5rem);
  line-height: 0.96;
}

.vm-haniwis-lead {
  max-width: 700px;
  color: var(--vm-white);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 650;
}

.vm-haniwis-hero-copy > p:not(.vm-haniwis-mark):not(.vm-haniwis-lead) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.vm-haniwis-tech {
  background: #17232a;
}

.vm-haniwis-page .vm-section-heading {
  max-width: 800px;
}

.vm-haniwis-page .vm-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.vm-haniwis-tech-panel {
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.16);
}

.vm-haniwis-tech-overview {
  aspect-ratio: 21 / 6;
  margin: 0;
  overflow: hidden;
  background: #111c22;
}

.vm-haniwis-tech-overview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.vm-haniwis-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.vm-haniwis-tech-grid article {
  min-width: 0;
  min-height: 390px;
  background: #1d2b33;
}

.vm-haniwis-tech-grid article:nth-child(2) {
  background: #22323b;
}

.vm-haniwis-tech-copy {
  min-width: 0;
  padding: clamp(26px, 3vw, 40px);
}

.vm-haniwis-tech-grid h3 {
  margin-top: 24px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.vm-haniwis-tech-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.vm-haniwis-tech-grid small {
  display: block;
  margin-top: 22px;
  color: #f1a5b0;
  font-size: 0.74rem;
  line-height: 1.55;
}

.vm-tech-glyph {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--vm-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vm-haniwis-loop {
  background: #22323b;
}

.vm-haniwis-loop-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(56px, 9vw, 130px);
}

.vm-haniwis-loop-grid > div p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.vm-haniwis-loop ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.vm-haniwis-loop li {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.vm-haniwis-loop li:nth-child(2n) {
  border-right: 0;
}

.vm-haniwis-loop li > span {
  display: block;
  margin-bottom: 24px;
  color: #f1a5b0;
  font-size: 0.7rem;
  font-weight: 800;
}

.vm-haniwis-loop li strong {
  color: var(--vm-white);
  font-size: 1.3rem;
}

.vm-haniwis-loop li p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.vm-haniwis-roadmap {
  background: #17232a;
}

.vm-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vm-roadmap-grid article {
  position: relative;
  min-height: 310px;
  padding: 38px 24px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.vm-roadmap-grid article:last-child {
  border-right: 0;
}

.vm-roadmap-grid article::before {
  position: absolute;
  top: -4px;
  left: 24px;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
}

.vm-roadmap-grid article.is-active::before {
  width: 38px;
  background: var(--vm-crimson);
}

.vm-roadmap-grid article > span {
  color: #f1a5b0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vm-roadmap-grid h3 {
  margin-top: 28px;
  font-size: 1.35rem;
}

.vm-roadmap-grid p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.vm-haniwis-cta {
  padding-block: clamp(78px, 9vw, 120px);
  background: var(--vm-crimson);
}

.vm-haniwis-cta-inner,
.vm-whitepaper-success .vm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.vm-haniwis-cta h2,
.vm-whitepaper-success h2 {
  max-width: 700px;
  color: var(--vm-white);
}

.vm-haniwis-cta p:not(.vm-eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.vm-haniwis-disclaimer {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #17232a;
}

.vm-haniwis-disclaimer p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.vm-whitepaper-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: calc(100dvh - 40px);
  padding: clamp(28px, 5vw, 54px);
  border: 0;
  border-top: 5px solid var(--vm-crimson);
  border-radius: 0;
  background: var(--vm-white);
  color: var(--vm-ink);
  box-shadow: 0 30px 100px rgba(8, 14, 18, 0.4);
}

.vm-whitepaper-dialog::backdrop {
  background: rgba(7, 13, 17, 0.8);
  backdrop-filter: blur(5px);
}

.vm-whitepaper-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.vm-whitepaper-dialog h2 {
  color: var(--vm-ink);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.vm-dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--vm-line);
  background: transparent;
  color: var(--vm-ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.vm-whitepaper-form {
  margin-top: 24px;
}

.vm-whitepaper-success {
  padding-block: 46px;
  background: #244d37;
}

.vm-whitepaper-success p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1140px) {
  :root {
    --vm-header-height: 78px;
  }

  .vm-brand img,
  .custom-logo {
    width: 218px;
  }

  .vm-menu-toggle {
    display: inline-flex;
  }

  .vm-primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--vm-header-height);
    right: 0;
    bottom: 0;
    left: auto;
    display: flex;
    width: min(86vw, 360px);
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 34px 24px 42px;
    background: var(--vm-white);
    box-shadow: -24px 0 64px rgba(16, 26, 32, 0.22);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .vm-primary-nav {
    top: calc(var(--vm-header-height) + 32px);
  }

  .vm-primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  body.vm-menu-open::before {
    position: fixed;
    z-index: 98;
    inset: 0;
    background: rgba(12, 20, 25, 0.56);
    content: "";
  }

  .home .vm-site-header:not(.is-scrolled) .vm-primary-nav.is-open .vm-menu a,
  .home .vm-site-header:not(.is-scrolled) .vm-primary-nav.is-open .vm-language-switcher a {
    color: var(--vm-ink);
  }

  .vm-menu {
    display: grid;
    gap: 0;
  }

  .vm-menu li {
    border-bottom: 1px solid var(--vm-line);
  }

  .vm-menu a {
    padding: 16px 0;
    font-size: 1.12rem;
  }

  .vm-menu a::after {
    display: none;
  }

  .vm-header-cta {
    min-height: 52px;
  }

  .vm-language-switcher {
    justify-content: center;
    padding: 0;
    border-left: 0;
  }

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

  .vm-product-card {
    grid-template-rows: auto 1fr;
  }

  .vm-footer-grid {
    grid-template-columns: 1.5fr repeat(2, 0.75fr);
  }

  .vm-footer-contact {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 1024px) {
  .vm-family-grid {
    grid-template-columns: 1fr;
  }

  .vm-family-feature {
    min-height: 0;
    aspect-ratio: 16 / 7;
  }

  .vm-family-grid-three .vm-family-feature-primary {
    grid-row: auto;
    aspect-ratio: 16 / 7;
  }

  .vm-applications-section .vm-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vm-applications-section .vm-heading-row > .vm-text-link {
    justify-self: start;
  }

  .vm-application-directory {
    grid-template-columns: 1fr;
  }

  .vm-application-featured {
    border-right: 0;
    border-bottom: 1px solid #cbd2d6;
  }

  .vm-application-featured-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .vm-haniwis-tech-grid {
    grid-template-columns: 1fr;
  }

  .vm-haniwis-tech-grid article {
    min-height: 0;
  }

}

@media (max-width: 782px) {
  .admin-bar .vm-site-header {
    top: 46px;
  }

  .admin-bar .vm-hero {
    min-height: calc(100dvh - 46px);
  }

  .admin-bar .vm-primary-nav {
    top: calc(var(--vm-header-height) + 46px);
  }
}

@media (max-width: 860px) {
  .vm-container,
  .vm-narrow-content {
    width: min(calc(100% - 36px), var(--vm-container));
  }

  .vm-haniwis-home-grid,
  .vm-haniwis-loop-grid {
    grid-template-columns: 1fr;
  }

  .vm-haniwis-home-media {
    order: -1;
  }

  .vm-haniwis-tech-grid {
    grid-template-columns: 1fr;
  }

  .vm-haniwis-tech-grid article {
    min-height: 0;
  }

  .vm-haniwis-tech-overview {
    aspect-ratio: 16 / 9;
  }

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

  .vm-roadmap-grid article:nth-child(2) {
    border-right: 0;
  }

  .vm-roadmap-grid article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .vm-trust-grid > div,
  .vm-trust-grid > div:last-child {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--vm-line);
    border-left: 0;
  }

  .vm-split,
  .vm-split-wide,
  .vm-split-balanced,
  .vm-heading-row,
  .vm-process-grid,
  .vm-page-hero-inner,
  .vm-secondary-callout-inner,
  .vm-principles-layout,
  .vm-contact-layout,
  .vm-map-layout,
  .vm-product-detail-grid,
  .vm-spec-layout,
  .vm-selection-note {
    grid-template-columns: 1fr;
  }

  .vm-heading-row,
  .vm-page-hero-inner {
    gap: 24px;
  }

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

  .vm-application-overview-grid,
  .vm-valve-category-grid,
  .vm-distributor-grid,
  .vm-context-detail-grid {
    grid-template-columns: 1fr;
  }

  .vm-application-overview-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .vm-application-overview-card img,
  .vm-application-overview-card:nth-child(even) img {
    order: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .vm-application-overview-copy {
    padding: 32px;
  }

  .vm-related-link-grid {
    grid-template-columns: 1fr;
  }

  .vm-related-link-grid a,
  .vm-related-link-grid a:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--vm-line);
  }

  .vm-related-link-grid a:last-child {
    border-bottom: 0;
  }

  .vm-image-tall img {
    min-height: 440px;
  }

  .vm-process-grid,
  .vm-principles-layout {
    gap: 30px;
  }

  .vm-cta-inner {
    align-items: flex-start;
  }

  .vm-application-detail,
  .vm-application-detail-reverse {
    grid-template-columns: 1fr;
  }

  .vm-application-detail-reverse .vm-application-detail-image {
    order: 0;
  }

  .vm-application-detail-image {
    min-height: 420px;
  }

  .vm-contact-details {
    position: static;
  }

  .vm-map-layout {
    gap: 36px;
  }

  .vm-download-row {
    grid-template-columns: 90px 1fr;
  }

  .vm-download-row .vm-button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --vm-header-height: 70px;
  }

  .home .vm-site-header {
    position: sticky;
  }

  .home .vm-site-header:not(.is-scrolled) {
    border-bottom-color: rgba(48, 62, 72, 0.1);
    background: rgba(255, 255, 255, 0.97);
  }

  .home .vm-site-header:not(.is-scrolled) .vm-menu-toggle {
    color: var(--vm-ink);
  }

  body {
    font-size: 15px;
  }

  .vm-container,
  .vm-narrow-content {
    width: min(calc(100% - 32px), var(--vm-container));
  }

  .home .vm-hero {
    height: 700px;
    min-height: 0;
    background: var(--vm-slate-dark);
  }

  .vm-haniwis-home {
    padding-block: 16px 72px;
  }

  .vm-haniwis-home-grid {
    gap: 38px;
  }

  .vm-haniwis-home-media img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .vm-haniwis-home-copy h2 {
    font-size: 2.25rem;
  }

  .vm-haniwis-home-meta {
    display: grid;
  }

  .vm-family-feature-haniwis > img {
    object-position: 64% center;
  }

  .vm-haniwis-hero {
    min-height: 0;
    padding-top: clamp(230px, 66vw, 270px);
    background: #17232a;
  }

  .vm-haniwis-hero-media,
  .vm-haniwis-hero-shade {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    height: clamp(200px, 58vw, 230px);
  }

  .vm-haniwis-hero-media {
    width: calc(100% - 32px);
    object-position: 64% center;
  }

  .vm-haniwis-hero-shade {
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 18, 23, 0.22), transparent 46%);
  }

  .vm-haniwis-hero-inner {
    min-height: 0;
    padding-block: 30px 36px;
  }

  .vm-haniwis-hero .vm-breadcrumbs {
    margin-bottom: 18px;
  }

  .vm-haniwis-hero .vm-haniwis-mark {
    margin-bottom: 16px;
    font-size: 2rem;
  }

  .vm-haniwis-hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 10.8vw, 2.9rem);
  }

  .vm-haniwis-lead {
    margin-bottom: 22px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .vm-haniwis-hero-copy > p:not(.vm-haniwis-mark):not(.vm-haniwis-lead) {
    display: none;
  }

  .vm-haniwis-tech-panel,
  .vm-roadmap-grid {
    margin-top: 38px;
  }

  .vm-haniwis-tech-copy {
    padding: 30px 24px;
  }

  .vm-haniwis-loop ol,
  .vm-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .vm-haniwis-loop li,
  .vm-haniwis-loop li:nth-child(2n),
  .vm-roadmap-grid article,
  .vm-roadmap-grid article:nth-child(2) {
    border-right: 0;
  }

  .vm-roadmap-grid article,
  .vm-roadmap-grid article:nth-child(-n+2) {
    min-height: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .vm-roadmap-grid article:last-child {
    border-bottom: 0;
  }

  .vm-haniwis-cta-inner,
  .vm-whitepaper-success .vm-container {
    align-items: stretch;
    flex-direction: column;
  }

  .vm-haniwis-cta .vm-button,
  .vm-whitepaper-success .vm-button {
    width: 100%;
  }

  .vm-whitepaper-dialog {
    max-height: calc(100dvh - 24px);
    padding: 26px 20px;
  }

  .vm-brand img,
  .custom-logo {
    width: 184px;
  }

  .vm-header-inner {
    gap: 18px;
  }

  .vm-menu-toggle {
    width: 44px;
    min-width: 44px;
    justify-content: center;
    padding: 0;
  }

  .vm-menu-toggle:focus-visible {
    outline-color: var(--vm-crimson);
    outline-width: 2px;
    outline-offset: 2px;
  }

  .home .vm-site-header:not(.is-scrolled) .vm-menu-toggle:focus-visible,
  .home .vm-site-header.is-menu-open .vm-menu-toggle:focus-visible {
    outline-color: var(--vm-white);
    box-shadow: 0 0 0 4px rgba(18, 28, 34, 0.56);
  }

  .vm-menu-toggle-label {
    display: none;
  }

  .vm-primary-nav {
    width: min(88vw, 340px);
    gap: 16px;
    padding: 20px max(16px, env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) 16px;
  }

  .vm-menu a {
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.4;
  }

  .vm-header-cta {
    min-height: 48px;
  }

  .vm-hero-media-engineer {
    object-position: 68% center;
  }

  .vm-hero-media-plant {
    object-position: 56% center;
  }

  .vm-hero-media-water,
  .vm-hero-media-ai {
    object-position: 64% center;
  }

  .vm-hero-media-quality {
    object-position: 66% center;
  }

  .home .vm-hero {
    height: calc(100svh - var(--vm-header-height));
    min-height: 650px;
    max-height: 780px;
  }

  .vm-hero-slide {
    grid-template-rows: clamp(280px, 44svh, 380px) minmax(0, 1fr);
    align-items: stretch;
  }

  .vm-hero-media,
  .vm-hero-shade {
    position: relative;
    inset: auto;
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
  }

  .vm-hero-media {
    max-width: none;
    transform: none;
  }

  .vm-hero-media-plant {
    object-position: left center;
  }

  .vm-hero-shade {
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 18, 22, 0.12), transparent 48%);
  }

  .vm-hero-content {
    grid-row: 2;
    grid-column: 1;
    align-self: start;
    width: 100%;
    padding: 28px 20px 82px;
  }

  .vm-hero h1,
  .vm-hero h2 {
    max-width: 620px;
    font-size: clamp(2.35rem, 11.5vw, 3.3rem);
    line-height: 1.04;
  }

  .vm-hero-lead {
    max-width: 540px;
    margin-block: 18px 24px;
    line-height: 1.48;
  }

  .vm-hero-controls {
    bottom: 18px;
    gap: 12px;
  }

  .vm-hero-pagination {
    gap: 0;
  }

  .vm-hero-pagination button {
    width: 28px;
  }

  .vm-hero-pagination span {
    width: 20px;
  }

  .vm-actions,
  .vm-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .vm-actions .vm-button,
  .vm-cta-inner .vm-button {
    width: 100%;
  }

  .vm-section {
    padding-block: 72px;
  }

  .vm-image-tall img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .vm-intro-media {
    display: grid;
    gap: 14px;
    padding-bottom: 0;
  }

  .vm-intro-facility {
    position: static;
    width: 72%;
    margin-left: auto;
    padding: 7px;
    box-shadow: 0 14px 34px rgba(20, 31, 38, 0.14);
  }

  .vm-product-card {
    grid-template-rows: auto 1fr;
  }

  .vm-product-image {
    aspect-ratio: 3 / 2;
  }

  .vm-product-card-body {
    min-height: 0;
  }

  .vm-applications-section {
    padding-block: 64px;
  }

  .vm-applications-section .vm-section-heading {
    margin-bottom: 28px;
  }

  .vm-applications-section .vm-heading-row {
    gap: 12px;
  }

  .vm-applications-section .vm-section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .vm-application-featured-media {
    aspect-ratio: 4 / 3;
  }

  .vm-application-featured-copy {
    min-height: 0;
    gap: 18px;
    padding: 20px 18px 22px;
  }

  .vm-application-featured-copy strong {
    font-size: 1.28rem;
  }

  .vm-application-directory-row {
    grid-template-columns: minmax(0, 1fr) 82px 18px;
    gap: 12px;
    padding: 18px 10px 18px 18px;
  }

  .vm-application-directory-copy strong {
    font-size: 1.05rem;
  }

  .vm-application-directory-copy em {
    display: none;
  }

  .vm-application-directory-media {
    width: 82px;
  }

  .vm-page-hero {
    padding-block: 0;
    background-image: none;
  }

  .vm-page-hero-inner {
    align-items: start;
    padding-block: clamp(250px, 68vw, 272px) 54px;
  }

  .vm-page-hero::before {
    display: block;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: 16px;
    height: clamp(210px, 58vw, 230px);
    background-color: #131e24;
    background-image: var(--vm-page-hero-image);
    background-position: var(--vm-page-hero-position-mobile);
    background-repeat: no-repeat;
    background-size: auto 100%;
  }

  .vm-page-hero-inner > p {
    text-shadow: none;
  }

  .vm-page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.3rem);
  }

  .vm-application-overview-card {
    min-height: 0;
    aspect-ratio: auto;
  }

  .vm-application-overview-card img,
  .vm-application-overview-card:nth-child(even) img {
    aspect-ratio: 4 / 3;
  }

  .vm-application-overview-copy {
    padding: 28px 24px 30px;
  }

  .vm-family-feature {
    min-height: 430px;
    aspect-ratio: auto;
  }

  .vm-family-grid-three .vm-family-feature,
  .vm-family-grid-three .vm-family-feature-primary,
  .vm-family-grid-three .vm-family-feature:not(.vm-family-feature-primary) {
    width: 100%;
    aspect-ratio: auto;
  }

  .vm-family-feature > span {
    width: 100%;
    padding: 34px 24px;
  }

  .vm-selection-strip .vm-container {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .vm-valve-category-image {
    aspect-ratio: 3 / 2;
  }

  .vm-valve-family-grid .vm-valve-category-image {
    aspect-ratio: 4 / 3;
  }

  .vm-valve-category-copy {
    min-height: 310px;
  }

  .vm-distributor-card dl > div {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .vm-company-english {
    min-height: 0;
  }

  .vm-application-detail-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .vm-application-detail-copy {
    padding: 34px 24px;
  }

  .vm-form-grid,
  .vm-product-quick-specs {
    grid-template-columns: 1fr;
  }

  .vm-product-quick-specs div + div {
    padding-left: 0;
    border-top: 1px solid var(--vm-line);
    border-left: 0;
  }

  .vm-form-panel {
    padding: 30px 22px;
  }

  .vm-contact-details dl > div {
    grid-template-columns: 68px 1fr;
    gap: 15px;
  }

  .vm-map-frame,
  .vm-map-frame iframe {
    min-height: 340px;
    height: 340px;
  }

  .vm-spec-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .vm-download-row {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .vm-download-row .vm-button {
    grid-column: 1;
    width: 100%;
  }

  .vm-file-mark {
    width: 70px;
    height: 88px;
  }

  .vm-document-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .vm-download-teaser .vm-image-frame img {
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

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

  .vm-footer-brand,
  .vm-footer-contact {
    grid-column: 1 / -1;
  }

  .vm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .vm-footer-social {
    margin-top: 12px;
  }
}

@media (max-width: 420px) {
  .vm-brand img,
  .custom-logo {
    width: 164px;
  }

  .vm-hero h1,
  .vm-hero h2 {
    font-size: 2.32rem;
  }

  .vm-hero-lead {
    font-size: 1rem;
  }

  .vm-footer-grid {
    grid-template-columns: 1fr;
  }

  .vm-footer-grid > div {
    grid-column: 1;
  }
}

@media (max-width: 640px) and (max-height: 650px) {
  .home .vm-hero {
    height: calc(100svh - var(--vm-header-height));
    min-height: 560px;
  }

  .vm-hero-slide {
    grid-template-rows: clamp(190px, 36svh, 225px) minmax(0, 1fr);
  }

  .vm-hero-content {
    padding: 18px 16px 58px;
  }

  .vm-hero h1,
  .vm-hero h2 {
    font-size: 2rem;
  }

  .vm-hero-lead {
    margin-block: 10px 14px;
    font-size: 0.92rem;
  }

  .vm-hero .vm-button {
    min-height: 44px;
    padding-block: 9px;
  }

  .vm-hero-controls {
    bottom: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
