﻿:root {
  --teal-950: #052f2c;
  --teal-900: #064640;
  --teal-800: #07574f;
  --teal-700: #0c6b62;
  --teal-100: #dbe9e7;
  --teal-50: #edf4f3;
  --brand: #07524e;
  --brand-dark: #043f3a;
  --accent-on-dark: #2aa79e;
  --amber: #07524e;
  --amber-soft: #e4f0ee;
  --ink: #050505;
  --muted: #515b5a;
  --soft: #f4f4f2;
  --paper: #ffffff;
  --line: #d1d7d5;
  --content-max: 1360px;
  --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 46px rgba(0, 0, 0, 0.18);
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 58px;
  font-weight: 850;
}

h2 {
  font-size: 38px;
  font-weight: 820;
}

.wrap {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

.topbar {
  width: min(100% - 48px, var(--content-max));
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(320px, 450px) minmax(280px, 430px) auto;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.logo {
  width: fit-content;
  display: block;
  text-decoration: none;
}

.logo img {
  display: block;
  width: min(440px, 34vw);
  height: auto;
}

.search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 52px;
  width: min(100%, 430px);
}

.search input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  padding: 11px 15px;
  padding-right: 56px;
  font: 700 15px/1.2 inherit;
  text-align: center;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.nav-search {
  display: none;
}

.search-clear {
  position: absolute;
  top: 1px;
  right: 52px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: calc(100% - 2px);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: 300 34px/1 Arial, sans-serif;
  cursor: pointer;
}

.search-clear:hover,
.search-clear:focus {
  color: #fff;
  outline: none;
}

.search-preview-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 95;
  width: min(620px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: #3d3d3d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  padding: 22px;
  color: #fff;
  text-align: left;
}

.search-preview-title {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

.search-preview-list {
  display: grid;
  gap: 14px;
}

.search-preview-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.search-preview-item:hover strong,
.search-preview-item:focus strong {
  color: var(--teal-100);
}

.search-preview-thumb {
  width: 82px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
}

.search-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-preview-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.search-preview-copy strong,
.search-preview-copy span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.search-preview-copy strong {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
}

.search-preview-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.search-preview-more,
.search-preview-state {
  display: block;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.search-preview-state {
  margin: 0;
  border-top: 0;
  padding-top: 0;
  text-align: center;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 52px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 999px 999px 0;
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.menu-toggle {
  display: none;
}

.header-contact {
  appearance: none;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 18px 6px 8px;
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-icon-badge {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact-icon-badge svg {
  width: 17px;
  height: 17px;
}

.header-contact:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.main-nav .nav-contact {
  display: none;
}

.main-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  padding: 0 max(24px, calc((100vw - var(--content-max)) / 2));
  background: #171717;
}

.main-nav a {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  color: #d7d7d7;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
}

.main-nav a:last-child {
  border-right: 0;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: #242424;
  color: #fff;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 180;
}

body.nav-open .site-header::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.58);
  content: "";
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  min-height: 560px;
  padding: 56px 0 42px;
}

.home-hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.hero-copy h1,
.hero-lead {
  opacity: 0;
  animation: heroCopyIn 720ms cubic-bezier(0.2, 0.78, 0.24, 1) forwards;
}

.hero-lead {
  animation-delay: 90ms;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 665px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.audio-wave {
  width: min(680px, 100%);
  height: 64px;
  margin-top: 26px;
  opacity: 0;
  transform: translateY(8px);
  animation: audioWaveIn 820ms cubic-bezier(0.2, 0.78, 0.24, 1) 180ms forwards;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 48%, rgba(0, 0, 0, 0.42) 66%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 48%, rgba(0, 0, 0, 0.42) 66%, transparent 100%);
  pointer-events: none;
}

.audio-wave svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.audio-wave-glow,
.audio-wave-lines {
  transform: scaleY(0.72);
  transform-box: fill-box;
  transform-origin: center;
}

.audio-wave-lines .wave,
.audio-wave-glow .wave {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
  vector-effect: non-scaling-stroke;
}

.audio-wave-glow .wave {
  stroke-width: 6;
  opacity: 0.2;
}

.audio-wave-lines .wave {
  stroke-width: 1.85;
  opacity: 0.88;
  stroke-dasharray: 760 260;
}

.audio-wave .wave-core {
  stroke: url("#audio-wave-teal");
}

.audio-wave .wave-upper,
.audio-wave .wave-lower {
  stroke: url("#audio-wave-violet");
}

.audio-wave .wave-fine {
  stroke: rgba(116, 237, 229, 0.72);
  stroke-width: 0.95;
  opacity: 0.68;
}

.audio-wave-lines .wave-upper,
.audio-wave-lines .wave-lower {
  stroke-width: 1.1;
  opacity: 0.56;
}

.home-hero h1 {
  color: var(--accent-on-dark);
}

.home-hero .eyebrow {
  color: var(--accent-on-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #fff;
}

.hero-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 700;
}

.hero-person {
  position: absolute;
  inset: 0 max(24px, calc((100vw - var(--content-max)) / 2)) 0 auto;
  z-index: 0;
  width: min(42vw, 760px);
  overflow: hidden;
  pointer-events: none;
}

.hero-person::before,
.hero-person::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-person::before {
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 10%, rgba(0, 0, 0, 0.4) 27%, transparent 48%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 5%, transparent 13%),
    linear-gradient(180deg, #000 0%, transparent 18%),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.88) 13%, transparent 34%);
}

.hero-person::after {
  background: radial-gradient(ellipse at 56% 45%, transparent 36%, rgba(0, 0, 0, 0.18) 74%, rgba(0, 0, 0, 0.76) 100%);
}

.hero-person img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 100% 50%;
  opacity: 0;
  animation: heroPersonIn 1000ms cubic-bezier(0.2, 0.78, 0.24, 1) 120ms forwards;
}

.hero-visual {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-product-panel {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 22px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: #111;
  padding: 24px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.hero-product-panel span {
  grid-column: 1;
  color: var(--accent-on-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-product-panel strong {
  grid-column: 1;
  color: #fff;
  font-size: 32px;
  line-height: 1.08;
}

.hero-product-panel img {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.hero-product-panel a {
  grid-column: 1;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

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

.hero-links a {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}

.category-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPersonIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes audioWaveIn {
  from {
    opacity: 0;
    transform: translateY(8px) scaleX(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.section {
  padding: 40px 0;
  background: #dfdfdf;
}

.section.muted {
  background: var(--soft);
}

.intro-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: #f7faf9;
  border-top: 0;
}

.intro-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark), var(--accent-on-dark) 58%, #a7b9b5);
  content: "";
}

.intro-section::after {
  display: none;
}

.intro-section .wrap {
  position: relative;
  z-index: 1;
}

.promise-section {
  padding: 14px 0;
  background: var(--brand);
  color: #fff;
}

.promise-section::before {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-dark), var(--accent-on-dark) 34%, #d3b26f 50%, var(--accent-on-dark) 66%, var(--brand-dark));
}

.promise-section .wrap {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: center;
}

.promise-head {
  display: grid;
  justify-items: start;
  gap: 0;
  text-align: left;
}

.promise-head h2 {
  max-width: 460px;
  margin: 0;
  color: #fff;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  border: 0;
}

.promise-grid article {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 47, 44, 0.55);
  padding: 10px 12px;
  text-align: left;
}

.promise-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}

.promise-icon svg {
  width: 23px;
  height: 23px;
}

.promise-grid strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.journey-main {
  min-width: 0;
}

.journey-kicker {
  width: fit-content;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.journey-heading {
  max-width: 660px;
  margin: 0 0 10px;
  color: #111918;
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
}

.journey-intro {
  max-width: 620px;
  margin: 0 0 24px;
  color: #3e4b49;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.section-head {
  display: grid;
  gap: 9px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.journey-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 8px;
  background: transparent;
  border: 0;
}

.journey-cards::before {
  display: none;
}

.journey-cards a {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #cddbd8;
  border-radius: 4px;
  background: #fff;
  padding: 0;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  isolation: isolate;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.journey-cards a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  height: auto;
  background: var(--brand);
  opacity: 1;
  transition:
    width 180ms ease,
    opacity 180ms ease;
  content: "";
}

.journey-cards a::after {
  display: none;
}

.journey-cards a:hover {
  border-color: rgba(7, 82, 78, 0.42);
  box-shadow: 0 8px 20px rgba(5, 47, 44, 0.08);
  transform: translateY(-1px);
}

.journey-cards a:hover::before {
  width: 4px;
  opacity: 1;
}

.journey-cards a:focus-visible {
  outline: 3px solid rgba(42, 167, 158, 0.42);
  outline-offset: 3px;
}

.journey-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0 16px 14px;
  position: relative;
  z-index: 1;
}

.journey-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #cddbd8;
  border-radius: 4px;
  background: #f7faf9;
  color: var(--brand);
  box-shadow: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.journey-cards a:hover .journey-icon {
  border-color: rgba(7, 82, 78, 0.3);
  background: #edf5f3;
  color: var(--brand);
  transform: none;
}

.journey-icon svg {
  width: 20px;
  height: 20px;
}

.journey-index {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #74807e;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.journey-cards a:hover .journey-index {
  background: transparent;
  color: var(--brand);
}

.journey-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 164px;
  align-items: center;
  gap: 7px;
  padding: 16px 16px 16px 2px;
  position: relative;
  z-index: 1;
}

.journey-copy > span {
  grid-column: 1;
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.journey-cards strong {
  grid-column: 1;
  color: #14201e;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.2;
}

.journey-copy p {
  grid-column: 1;
  margin: 0;
  color: #52605e;
  font-size: 13.5px;
  line-height: 1.45;
}

.journey-copy small {
  display: none;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 6px 10px;
  border: 1px solid rgba(7, 82, 78, 0.12);
  border-radius: 999px;
  background: #f4f8f7;
  color: #30413f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.journey-copy small::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: #d3b26f;
  content: "";
}

.journey-copy em {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid #b8ccc8;
  border-radius: 4px;
  background: #f7faf9;
  color: var(--brand);
  font-size: 13.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.journey-copy em::after {
  display: block;
  width: 11px;
  height: 11px;
  margin-left: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  content: "";
}

.journey-cards a:hover .journey-copy em {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.journey-cards a:hover .journey-copy em::after {
  transform: translateX(4px) rotate(45deg);
}

.value-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #cddbd8;
  border-radius: 4px;
  background: #fff;
  color: #14201e;
  padding: 24px;
  box-shadow: none;
  isolation: isolate;
}

.value-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand);
  content: "";
}

.value-panel::after {
  display: none;
}

.value-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.value-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: #14201e;
  font-size: clamp(22px, 1.42vw, 27px);
  line-height: 1.16;
  letter-spacing: 0;
}

.value-panel > p:not(.value-kicker) {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 12px 0 20px;
  color: #52605e;
  font-size: 14.5px;
  line-height: 1.5;
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2px;
  border-top: 1px solid #d9e4e1;
}

.value-item {
  min-height: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  gap: 2px 12px;
  border: 0;
  border-bottom: 1px solid #d9e4e1;
  border-radius: 0;
  background: transparent;
  padding: 13px 0;
}

.value-icon {
  grid-row: 1 / 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #cddbd8;
  border-radius: 4px;
  background: #f7faf9;
  color: var(--brand);
}

.value-icon svg {
  width: 21px;
  height: 21px;
}

.value-item strong {
  color: #14201e;
  font-size: 16px;
  line-height: 1.15;
}

.value-item span:last-child {
  color: #52605e;
  font-size: 13px;
  line-height: 1.35;
}

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

.category-card {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-rows: 150px 1fr;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  opacity: 0;
  transform: translateX(-6px) rotate(45deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(7, 82, 78, 0.36);
  box-shadow: 0 16px 34px rgba(5, 47, 44, 0.12);
  transform: translateY(-4px);
}

.category-card:hover::after,
.category-card:focus-visible::after {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}

.category-card:focus-visible {
  outline: 3px solid rgba(42, 167, 158, 0.28);
  outline-offset: 4px;
}

.category-card .media {
  display: grid;
  place-items: center;
  background: #fff;
  padding: 10px;
  transition: background-color 180ms ease;
}

.category-card:hover .media,
.category-card:focus-visible .media {
  background: #f7faf9;
}

.category-card img {
  width: 96%;
  height: 136px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.035);
}

.category-content {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 44px 24px 20px;
}

.category-content strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.category-content span {
  color: var(--muted);
  font-weight: 650;
}

.service-section {
  padding: 36px 0 40px;
  background: var(--brand);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.service-section .service-copy {
  max-width: none;
  display: grid;
  gap: 10px;
}

.service-section .eyebrow {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.76);
}

.service-section h2 {
  grid-column: 1;
  max-width: 760px;
  color: #fff;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 1.14;
}

.service-copy p:not(.eyebrow) {
  grid-column: 1;
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 0;
  background: transparent;
}

.service-list article {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: 172px auto auto;
  align-content: start;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: #f8fbfa;
  padding: 12px 12px 18px;
  color: #14201e;
  box-shadow: 0 18px 34px rgba(2, 26, 24, 0.14);
}

.service-list article::before {
  display: none;
}

.service-list article:last-child {
  border-right: 0;
}

.service-photo {
  position: relative;
  grid-column: 1 / -1;
  height: 172px;
  overflow: hidden;
  border: 1px solid #d9e4e1;
  background: #edf4f3;
}

.service-photo::after {
  display: none;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.service-list article:last-child .service-photo {
  background: #edf4f3;
}

.service-list article:last-child .service-photo img {
  object-fit: cover;
  padding: 0;
  filter: saturate(0.9) contrast(1.03);
}

.service-list strong {
  color: #0a1513;
  font-size: 21px;
  line-height: 1.15;
}

.service-list article > span:not(.service-photo) {
  color: #40514e;
  font-size: 14px;
  line-height: 1.38;
}

.chip-grid,
.tabs,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-grid a,
.tabs a,
.tag-row span {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  color: var(--teal-950);
  text-decoration: none;
  font-weight: 800;
}

.chip-grid a:hover,
.tabs a:hover {
  border-color: var(--teal-700);
  color: var(--teal-800);
}

.consumables-section {
  background: #dfdfdf;
  border-top: 1px solid rgba(5, 47, 44, 0.12);
}

.consumables-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.consumables-media {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand);
  color: #fff;
}

.consumables-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 47, 44, 0.04) 0%, rgba(5, 47, 44, 0.22) 42%, rgba(5, 47, 44, 0.88) 100%);
  content: "";
}

.consumables-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.consumables-media span {
  position: relative;
  z-index: 1;
  max-width: 320px;
  padding: 22px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.consumables-content {
  display: grid;
  align-content: center;
}

.consumables-content .section-head {
  max-width: 820px;
  margin-bottom: 22px;
}

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

.consumables-chip-grid a {
  min-height: 82px;
  display: grid;
  place-items: initial;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0;
  background: #fff;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.consumables-chip-grid a:hover,
.consumables-chip-grid a:focus-visible {
  border-color: rgba(7, 82, 78, 0.36);
  box-shadow: 0 12px 26px rgba(5, 47, 44, 0.1);
  color: var(--teal-950);
  transform: translateY(-2px);
}

.consumables-chip-grid span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.consumables-chip-grid strong {
  color: #14201e;
  font-size: 18px;
  line-height: 1.18;
}

.tabs {
  margin-bottom: 24px;
}

.tabs a[aria-current="page"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.vision-section {
  background: var(--soft);
}

.vision-head {
  max-width: 880px;
}

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

.vision-product-card {
  min-height: 382px;
  grid-template-rows: 230px 1fr;
}

.vision-product-card .media {
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.18) 0%, rgba(126, 150, 146, 0.16) 40%, transparent 72%),
    #34413f;
}

.vision-product-card img {
  height: 210px;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.26)) contrast(1.05) saturate(1.04);
}

.vision-product-card .category-content em {
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-preview-section {
  border-top: 1px solid var(--line);
}

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

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

.product-grid.product-list,
.product-grid.compact.product-list {
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.pagination[hidden] {
  display: none;
}

.pagination-button {
  min-width: 44px;
  height: 44px;
  border: 1px solid #9aa8a5;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font: 900 14px/1 inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.pagination-button:hover:not(:disabled),
.pagination-button:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
  outline: none;
}

.pagination-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.pagination-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 38, 36, 0.16);
}

.product-card:focus,
.product-card:focus-visible,
.product-card:focus-within {
  outline: none;
  box-shadow: 0 18px 38px rgba(4, 38, 36, 0.16);
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  text-indent: 100%;
  white-space: nowrap;
  cursor: pointer;
}

.product-card-link:focus {
  outline: none;
}

.product-card.wide {
  grid-template-columns: minmax(360px, 42%) 1fr;
  grid-template-rows: auto;
  min-height: 350px;
}

.product-image {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 12px;
}

.product-card.wide .product-image {
  min-height: 350px;
  padding: 14px;
}

.product-image img {
  width: 96%;
  height: 196px;
  object-fit: contain;
}

.product-card.wide .product-image img {
  width: 96%;
  height: 322px;
  max-height: calc(100% - 20px);
}

.product-body {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.product-card.wide .product-body {
  align-content: center;
  gap: 15px;
  padding: 38px 46px;
}

.brand {
  margin: 0;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.product-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.product-card.wide .product-body h2 {
  max-width: 820px;
  font-size: 38px;
  line-height: 1.06;
}

.product-number {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.product-summary {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  min-height: 28px;
  padding: 4px 9px;
  background: var(--teal-50);
  color: var(--ink);
  font-size: 12px;
}

.card-footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.text-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--brand);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.product-card.condensed {
  grid-template-rows: 200px 1fr;
}

.catalog-hero {
  background: #050505;
  color: #fff;
  padding: 86px 0;
}

.catalog-hero.has-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  background: #000;
  padding: 92px 0;
}

.catalog-hero.has-visual .wrap {
  position: relative;
  z-index: 2;
}

.catalog-hero-copy {
  max-width: 700px;
}

.catalog-hero h1 {
  color: var(--accent-on-dark);
}

.catalog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.catalog-hero-person {
  position: absolute;
  inset: 0 auto 0 calc(50% + 10px);
  z-index: 0;
  width: min(45vw, 820px);
  pointer-events: none;
}

.catalog-hero-person::before,
.catalog-hero-person::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.catalog-hero-person::before {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.68) 12%, rgba(0, 0, 0, 0.2) 30%, transparent 52%);
}

.catalog-hero-person::after {
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.9) 100%);
}

.catalog-hero-person img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 100% 50%;
  opacity: 0;
  animation: heroPersonIn 1000ms cubic-bezier(0.2, 0.78, 0.24, 1) 120ms forwards;
}

.product-detail-hero {
  background: #fff;
  color: var(--ink);
  padding: 52px 0 58px;
}

.product-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.96fr) minmax(480px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.product-detail-grid::after {
  position: absolute;
  right: 0;
  bottom: -58px;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 0;
  background: transparent;
  padding: 4px 8px;
  box-shadow: none;
}

.product-detail-media img {
  width: min(100%, 660px);
  max-height: 430px;
  object-fit: contain;
  background: transparent;
}

.product-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  max-width: 680px;
}

.breadcrumb {
  width: fit-content;
  max-width: 100%;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumb li + li::before {
  margin-right: 7px;
  color: #8a9694;
  content: "/";
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb [aria-current="page"] {
  max-width: 360px;
  overflow: hidden;
  color: var(--teal-950);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.back-link {
  width: fit-content;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}

.back-link:hover {
  color: var(--brand);
}

.product-detail-copy h1 {
  color: var(--ink);
  max-width: 680px;
  font-size: 50px;
  line-height: 1.04;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}

.product-meta-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: #34403f;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 800;
}

.product-benefits {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  position: relative;
  padding-left: 24px;
  color: #1f2b2a;
  font-size: 17px;
}

.product-benefits li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--accent-on-dark);
  content: "";
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.button.secondary.light {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary.light:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.parent-products {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.parent-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.parent-products-head p {
  margin: 0;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parent-slider-controls {
  display: flex;
  gap: 8px;
}

.parent-products.is-static .parent-slider-controls {
  display: none;
}

.parent-slider-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.parent-slider-button svg {
  width: 18px;
  height: 18px;
}

.parent-slider-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.parent-slider {
  overflow: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.parent-slider::-webkit-scrollbar {
  display: none;
}

.parent-product-track {
  display: flex;
  gap: 14px;
}

.parent-product-card {
  display: grid;
  flex: 0 0 min(100%, 320px);
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 132px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.parent-product-image {
  display: grid;
  place-items: center;
  background: #fff;
  padding: 8px;
}

.parent-product-image img {
  width: 100%;
  height: 108px;
  object-fit: contain;
}

.parent-product-body {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
}

.parent-product-body span {
  margin-bottom: 7px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parent-product-body strong {
  font-size: 18px;
  line-height: 1.2;
}

.parent-product-body em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.parent-product-card:hover {
  border-color: var(--brand);
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 76px;
  align-items: start;
}

.product-info-main {
  max-width: 900px;
}

.product-info-main h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 40px;
  line-height: 1.08;
}

.product-info-main p {
  margin: 0 0 18px;
  color: #243130;
  font-size: 18px;
}

.rich-content {
  color: #243130;
  font-size: 18px;
  line-height: 1.65;
}

.rich-content p {
  margin: 0 0 18px;
}

.rich-content ul,
.rich-content ol {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 26px;
}

.rich-content li {
  padding-left: 4px;
}

.rich-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

.technical-specs {
  margin-top: 38px;
  border-top: 2px solid #6f7f7b;
  padding-top: 28px;
}

.technical-specs h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.technical-specs table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 16px;
}

.technical-specs th,
.technical-specs td {
  border-bottom: 2px solid #6f7f7b;
  padding: 14px 0;
  text-align: left;
  vertical-align: top;
}

.technical-specs th {
  width: 34%;
  padding-right: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.technical-specs td {
  color: #172624;
  line-height: 1.55;
}

.product-info-side {
  border: 2px solid #6f7f7b;
  background: #fff;
  padding: 30px;
  box-shadow: none;
}

.product-info-side h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.product-info-side dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.product-info-side div {
  border-top: 2px solid #6f7f7b;
  padding-top: 14px;
}

.product-info-side dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-info-side dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.download-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.download-list a {
  border: 1px solid var(--brand);
  padding: 11px 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 850;
}

.product-accessories-section {
  border-bottom: 1px solid var(--line);
  background: #f6f8f7;
}

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

.related-card {
  display: grid;
  grid-template-rows: 180px auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: none;
}

.related-card:hover {
  border-color: var(--line);
}

.related-card span {
  display: grid;
  place-items: center;
  background: #fff;
  padding: 10px;
}

.related-card img {
  width: 96%;
  height: 160px;
  object-fit: contain;
}

.related-card strong {
  padding: 18px 18px 6px;
  font-size: 18px;
  line-height: 1.25;
}

.related-card em {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.cta-band {
  background: #050505;
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2 {
  color: #fff;
}

.cta-grid p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  align-items: end;
}

.count-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.count-card strong {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}

.count-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.products-wrap {
  display: grid;
  gap: 22px;
}

.toolbar {
  display: flex;
  justify-content: flex-start;
}

.toolbar label {
  width: min(100%, 460px);
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.toolbar input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 11px 14px;
  color: var(--ink);
  font: 16px/1.3 inherit;
}

.consumable-category-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 10px;
}

.consumable-category-nav a {
  min-height: 178px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 26px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.consumable-category-nav a:hover,
.consumable-category-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 18px 38px rgba(4, 38, 36, 0.14);
}

.consumable-category-nav a:focus-visible {
  outline: 3px solid rgba(7, 82, 78, 0.24);
  outline-offset: 4px;
}

.consumable-category-title {
  min-width: 0;
  align-self: start;
  max-width: 320px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.consumable-category-count {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consumable-category-count em {
  font-style: normal;
}

.consumable-category-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.consumable-category-action::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

.consumable-back-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.consumable-back-button:hover,
.consumable-back-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand);
  color: var(--brand);
}

.consumable-back-button svg {
  width: 20px;
  height: 20px;
}

.consumable-group-list {
  display: grid;
  gap: 54px;
}

.consumable-product-group {
  display: grid;
  gap: 18px;
}

.consumable-product-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.consumable-product-group-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.1;
}

.consumable-product-group-head span {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 34px;
  box-shadow: none;
}

.legal-section + .legal-section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-section p + p {
  margin-top: 12px;
}

.empty {
  display: none;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 18px;
  color: var(--muted);
  font-weight: 800;
}

.site-footer {
  background: #171717;
  color: #fff;
  padding: 54px 0 24px;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.inquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.inquiry-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.36);
}

.inquiry-dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 28px 30px 22px;
}

.inquiry-dialog-head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
}

.inquiry-dialog-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.inquiry-close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.inquiry-close svg {
  width: 20px;
  height: 20px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 22px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.contact-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 760px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #1d2423;
  color: #fff;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.38);
}

.contact-dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 30px 22px;
}

.contact-dialog-head h2 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.08;
}

.contact-dialog-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #b8c7c5;
}

.contact-close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.contact-close svg {
  width: 20px;
  height: 20px;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 30px 30px;
}

.contact-choice-card {
  appearance: none;
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.contact-choice-card:hover,
.contact-choice-card:focus-visible {
  border-color: rgba(42, 167, 158, 0.92);
  background: rgba(42, 167, 158, 0.12);
  color: #fff;
  outline: none;
  transform: translateY(-2px);
}

.contact-choice-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 167, 158, 0.48);
  border-radius: 50%;
  background: rgba(42, 167, 158, 0.14);
  color: #fff;
}

.contact-choice-icon svg {
  width: 22px;
  height: 22px;
}

.contact-choice-card strong {
  font-size: 22px;
  line-height: 1.08;
}

.contact-choice-card span:last-child {
  color: #b8c7c5;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px 30px 30px;
}

.inquiry-form[hidden],
.inquiry-choice[hidden] {
  display: none;
}

.inquiry-choice {
  padding: 26px 30px 30px;
}

.inquiry-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inquiry-choice-card {
  display: grid;
  grid-template-rows: 190px minmax(0, 1fr);
  border: 2px solid #9aa8a5;
  background: #fff;
  color: var(--ink);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.inquiry-choice-card:hover,
.inquiry-choice-card:focus-visible {
  border-color: var(--brand-dark);
  box-shadow: 0 16px 36px rgba(7, 82, 78, 0.16);
  transform: translateY(-2px);
  outline: none;
}

.inquiry-choice-media {
  display: block;
  border-bottom: 2px solid #c4cecc;
  background: #eef3f2;
  overflow: hidden;
}

.inquiry-choice-media img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: contain;
  background: #fff;
}

.inquiry-choice-content {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
}

.inquiry-choice-content > span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-choice-content strong {
  color: #050505;
  font-size: 21px;
  line-height: 1.16;
}

.inquiry-choice-content em {
  color: #435250;
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
}

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

.inquiry-form label:not(.inquiry-consent):not(.inquiry-honeypot) {
  display: grid;
  gap: 7px;
}

.inquiry-form label span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form input:not([type="checkbox"]),
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 11px 12px;
  color: var(--ink);
  font: 16px/1.35 inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-product-box {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(7, 82, 78, 0.2);
  background: var(--teal-50);
  padding: 12px;
}

.inquiry-product-thumb {
  display: block;
  aspect-ratio: 1.22;
  border: 1px solid #c4cecc;
  background: #fff;
  overflow: hidden;
}

.inquiry-product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.inquiry-product-copy {
  display: grid;
  gap: 6px;
}

.inquiry-product-copy span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-product-copy strong {
  font-size: 18px;
  line-height: 1.22;
}

.inquiry-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.inquiry-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.inquiry-status {
  min-height: 22px;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 850;
}

.inquiry-status.is-error {
  color: #9b1c1c;
}

.inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

body.inquiry-open,
body.contact-open {
  overflow: hidden;
}

body.inquiry-open .cookie-banner,
body.contact-open .cookie-banner {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-card {
  width: min(100%, 980px);
  min-height: 156px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 82, 78, 0.92), rgba(18, 18, 18, 0.96) 50%),
    #1b1b1b;
  padding: 18px 58px 18px 18px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.cookie-mascot {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: end center;
  align-self: end;
  overflow: visible;
}

.cookie-mascot img {
  width: 150px;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.3));
}

.cookie-copy {
  min-width: 0;
}

.cookie-copy .eyebrow {
  margin-bottom: 7px;
  color: #8ce9df;
}

.cookie-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.12;
}

.cookie-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.cookie-copy a {
  color: #8ce9df;
  font-weight: 850;
  text-decoration: none;
}

.cookie-copy a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  white-space: nowrap;
}

.cookie-button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.cookie-close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.cookie-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 780px) {
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 16px;
    padding-top: 46px;
  }

  .cookie-mascot {
    width: 92px;
    height: 92px;
  }

  .cookie-mascot img {
    width: 108px;
  }

  .cookie-copy h2 {
    font-size: 21px;
  }

  .cookie-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .cookie-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1 1 180px;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .cookie-card {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    padding: 18px 16px 16px;
    text-align: center;
    overflow: auto;
  }

  .cookie-mascot {
    width: 88px;
    height: 88px;
    justify-self: center;
  }

  .cookie-mascot img {
    width: 98px;
  }

  .cookie-copy .eyebrow {
    margin-bottom: 5px;
  }

  .cookie-copy h2 {
    font-size: 20px;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-button {
    width: 100%;
    min-height: 46px;
    flex: none;
    padding: 10px 14px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1240px) {
  .home-hero {
    min-height: 520px;
    padding: 48px 0 38px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, clamp(500px, 48vw, 600px));
  }

  .home-hero h1 {
    font-size: clamp(46px, 4.8vw, 56px);
  }

  .hero-lead {
    max-width: 560px;
    font-size: 18px;
  }

  .audio-wave {
    width: min(560px, 100%);
  }

  .hero-person {
    right: 24px;
    width: clamp(430px, 43vw, 560px);
  }

  .hero-person img {
    object-position: 74% 50%;
  }
}

@media (max-width: 1040px) {
  .hero-layout,
  .journey-layout,
  .service-grid,
  .consumables-layout,
  .catalog-hero-grid,
  .product-detail-grid,
  .product-info-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    gap: 38px;
  }

  .home-hero {
    min-height: 0;
  }

  .catalog-hero.has-visual {
    min-height: 0;
  }

  .hero-person,
  .catalog-hero-person {
    display: none;
  }

  .audio-wave {
    width: min(100%, 720px);
  }

  .hero-visual {
    max-width: 760px;
  }

  .category-grid,
  .promise-grid,
  .service-list,
  .consumables-chip-grid,
  .consumable-category-nav,
  .product-grid,
  .product-grid.compact,
  .product-strip,
  .vision-card-grid,
  .related-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid.product-list,
  .product-grid.compact.product-list {
    grid-template-columns: 1fr;
  }

  .pagination {
    justify-content: flex-start;
  }

  .pagination-button {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
  }

  .product-card.wide {
    grid-template-columns: minmax(280px, 38%) 1fr;
    min-height: 300px;
  }

  .product-card.wide .product-image {
    min-height: 300px;
    padding: 12px;
  }

  .product-card.wide .product-image img {
    height: 274px;
  }

  .product-card.wide .product-body {
    padding: 30px 32px;
  }

  .product-card.wide .product-body h2 {
    font-size: 30px;
  }

  .product-detail-media {
    order: 2;
    min-height: 340px;
    justify-items: start;
  }

  .product-detail-media img {
    max-height: 340px;
  }

  .product-detail-copy {
    order: 1;
    max-width: 780px;
  }

  .product-detail-copy h1 {
    max-width: 780px;
    font-size: 48px;
  }

  .product-info-side {
    width: min(100%, 620px);
  }

  .technical-specs table,
  .technical-specs tbody,
  .technical-specs tr,
  .technical-specs th,
  .technical-specs td {
    display: block;
    width: 100%;
  }

  .technical-specs th {
    border-bottom: 0;
    padding: 14px 0 4px;
  }

  .technical-specs td {
    padding: 0 0 14px;
  }

  h1 {
    font-size: 48px;
  }
}

@media (max-width: 780px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .logo img {
    width: 260px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    border-radius: 0;
    background: #171717;
    color: #fff;
    position: relative;
    z-index: 160;
  }

  .topbar > .search {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 150;
    width: min(86vw, 350px);
    height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 8px;
    margin: 0;
    padding: 86px 18px 24px;
    background: #111817;
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(0.2, 0.78, 0.24, 1), opacity 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

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

  .main-nav a {
    min-height: 52px;
    justify-content: start;
    place-items: center start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 8px;
    background: transparent;
    font-size: 17px;
  }

  .main-nav a:hover,
  .main-nav a[aria-current="page"] {
    background: rgba(42, 167, 158, 0.1);
    color: #fff;
  }

  .main-nav .nav-contact {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    justify-content: flex-start;
    padding: 7px 10px;
    border-radius: 0;
    background: rgba(42, 167, 158, 0.1);
  }

  .nav-search {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 48px;
    margin-bottom: 14px;
  }

  .nav-search .search-clear {
    right: 48px;
  }

  .nav-search input {
    min-height: 44px;
    text-align: left;
  }

  .nav-search .icon-button {
    width: 48px;
    min-height: 44px;
  }

  .nav-search .search-preview-panel {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 54vh;
    margin-top: 10px;
    padding: 16px;
  }

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

  .hero-product-panel img {
    grid-column: 1;
    grid-row: auto;
  }

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

  .journey-cards,
  .service-list {
    grid-template-columns: 1fr;
  }

  .value-panel {
    min-height: 0;
  }

  .journey-cards::before {
    display: none;
  }

  .toolbar {
    justify-content: stretch;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .wrap,
  .topbar,
  .main-nav {
    width: min(100% - 24px, var(--content-max));
  }

  .topbar {
    min-height: 0;
    gap: 8px;
    padding: 10px 0 12px;
  }

  .logo img {
    width: clamp(228px, 66vw, 262px);
  }

  .menu-toggle {
    width: 46px;
    min-height: 42px;
  }

  .nav-search {
    grid-template-columns: 1fr 48px;
    padding-bottom: 0;
  }

  .nav-search input {
    min-height: 40px;
    padding: 9px 12px;
    padding-right: 48px;
    font-size: 14px;
    text-align: left;
  }

  .search-preview-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .search-preview-thumb {
    width: 64px;
  }

  .search-preview-copy strong {
    font-size: 16px;
  }

  .icon-button {
    width: 48px;
    min-height: 40px;
  }

  .main-nav {
    width: min(88vw, 340px);
    padding: 78px 16px 22px;
  }

  .main-nav a {
    min-height: 48px;
    font-size: 15px;
  }

  .home-hero {
    display: none;
    padding: 44px 0 42px;
    background:
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 47%, rgba(0, 0, 0, 0.78) 72%, #000 100%),
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.1) 100%),
      url("/assets/hero-home-friendly-service-alt2.png") right 22% center / auto 100% no-repeat,
      #000;
  }

  .home-hero h1 {
    max-width: 340px;
    font-size: clamp(40px, 10.9vw, 44px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 345px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.52;
  }

  .catalog-hero.has-visual,
  .catalog-hero {
    padding: 42px 0 44px;
  }

  .catalog-hero h1 {
    font-size: 34px;
    line-height: 1.1;
  }

  .catalog-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 34px 0;
  }

  .service-section {
    padding: 30px 0 34px;
  }

  .service-section .service-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-list {
    gap: 16px;
  }

  .service-list article {
    min-height: 0;
    padding: 12px 12px 16px;
  }

  .service-list article:last-child {
    border-bottom: 0;
  }

  .service-photo {
    height: 168px;
  }

  .service-list strong {
    font-size: 21px;
  }

  .vision-section {
    padding: 34px 0 40px;
  }

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

  .consumables-layout {
    gap: 18px;
  }

  .consumables-media {
    min-height: 220px;
  }

  .consumables-media span {
    max-width: 280px;
    padding: 18px;
    font-size: 19px;
  }

  .consumables-content .section-head {
    margin-bottom: 18px;
  }

  .consumables-chip-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consumables-chip-grid a {
    min-height: 74px;
    padding: 13px 14px;
  }

  .intro-section {
    padding: 34px 0 38px;
  }

  .promise-section {
    display: none;
    padding: 12px 0 14px;
  }

  .promise-section .wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promise-head {
    justify-items: start;
    text-align: left;
  }

  .promise-head h2 {
    max-width: none;
    font-size: 14px;
    line-height: 1.25;
    text-align: left;
  }

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

  .promise-grid article {
    min-height: 46px;
    gap: 8px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(4, 63, 58, 0.58);
    padding: 9px 10px;
    text-align: left;
  }

  .promise-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .promise-icon svg {
    width: 17px;
    height: 17px;
  }

  .promise-grid strong {
    font-size: 12px;
    line-height: 1.18;
    white-space: normal;
  }

  .journey-heading,
  .journey-intro {
    text-align: left;
  }

  .journey-kicker {
    margin-left: 0;
  }

  .journey-heading {
    font-size: 31px;
  }

  .journey-intro {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero-layout {
    gap: 34px;
  }

  .audio-wave {
    width: 100%;
    height: 44px;
    margin-top: 22px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-links,
  .category-grid,
  .consumable-category-nav,
  .product-grid,
  .product-grid.compact,
  .product-strip,
  .related-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .journey-cards a {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .journey-cards a::before {
    inset: 0 auto 0 0;
    width: 5px;
    height: auto;
  }

  .journey-cards a:hover::before {
    width: 8px;
  }

  .journey-cards a::after {
    display: block;
  }

  .journey-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px 14px 14px 0;
  }

  .journey-card-head {
    padding: 14px 0 14px 12px;
  }

  .journey-icon {
    width: 34px;
    height: 34px;
  }

  .journey-icon svg {
    width: 20px;
    height: 20px;
  }

  .journey-cards strong {
    font-size: 17px;
  }

  .journey-copy p {
    font-size: 14px;
  }

  .journey-copy small {
    font-size: 12px;
  }

  .journey-copy em {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;
    font-size: 14px;
  }

  .value-panel {
    padding: 20px;
  }

  .value-panel h3 {
    font-size: 23px;
  }

  .value-panel > p:not(.value-kicker) {
    margin-bottom: 16px;
    font-size: 16px;
  }

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

  .value-item {
    min-height: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 2px 12px;
    padding: 13px 0;
  }

  .value-icon {
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
  }

  .value-icon svg {
    width: 21px;
    height: 21px;
  }

  .value-item strong {
    font-size: 16px;
  }

  .hero-product-panel {
    padding: 18px;
  }

  .category-card {
    min-height: 0;
    grid-template-rows: 128px 1fr;
  }

  .category-card .media {
    padding: 8px;
  }

  .category-card img {
    height: 118px;
  }

  .vision-product-card {
    grid-template-rows: 176px 1fr;
  }

  .vision-product-card img {
    height: 158px;
  }

  .category-content {
    gap: 7px;
    padding: 16px 34px 18px 18px;
  }

  .category-content strong {
    font-size: 22px;
  }

  .category-content span {
    font-size: 14px;
  }

  .consumable-group-list {
    gap: 38px;
  }

  .consumable-category-nav {
    gap: 12px;
  }

  .consumable-category-nav a {
    min-height: 132px;
    gap: 12px;
    padding: 19px;
  }

  .consumable-category-title {
    font-size: 22px;
  }

  .consumable-category-action {
    padding-top: 10px;
  }

  .consumable-product-group-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .consumable-product-group-head h2 {
    font-size: 25px;
  }

  .product-detail-hero {
    padding: 34px 0 42px;
  }

  .product-detail-grid {
    gap: 24px;
  }

  .product-detail-media {
    min-height: 220px;
    padding: 0;
  }

  .product-detail-media img {
    max-height: 210px;
  }

  .product-detail-copy {
    gap: 13px;
  }

  .product-detail-copy h1 {
    font-size: 34px;
    line-height: 1.06;
  }

  .product-meta-row span {
    font-size: 12px;
  }

  .product-benefits li {
    font-size: 15px;
    line-height: 1.55;
  }

  .product-detail-actions,
  .cta-grid .button {
    width: 100%;
  }

  .inquiry-modal {
    align-items: end;
    padding: 10px;
  }

  .contact-modal {
    align-items: end;
    padding: 10px;
  }

  .inquiry-dialog {
    max-height: 94vh;
  }

  .contact-dialog {
    max-height: 94vh;
  }

  .inquiry-dialog-head {
    padding: 22px 18px 18px;
  }

  .contact-dialog-head {
    padding: 22px 18px 18px;
  }

  .inquiry-dialog-head h2 {
    font-size: 26px;
  }

  .contact-dialog-head h2 {
    font-size: 26px;
  }

  .inquiry-form {
    padding: 20px 18px 22px;
  }

  .contact-choice-grid {
    grid-template-columns: 1fr;
    padding: 20px 18px 22px;
  }

  .contact-choice-card {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px 14px;
  }

  .contact-choice-icon {
    grid-row: span 2;
  }

  .inquiry-choice {
    padding: 20px 18px 22px;
  }

  .inquiry-choice-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-choice-card {
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 132px;
  }

  .inquiry-choice-media {
    border-right: 2px solid #c4cecc;
    border-bottom: 0;
  }

  .inquiry-choice-media img {
    height: 100%;
  }

  .inquiry-choice-content {
    padding: 16px;
  }

  .inquiry-choice-content strong {
    font-size: 18px;
  }

  .inquiry-product-box {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
  }

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

  .inquiry-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .product-info-side {
    padding: 20px;
  }

  .product-info-main h2 {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.12;
  }

  .product-info-main p {
    font-size: 16px;
    line-height: 1.58;
  }

  .technical-specs {
    margin-top: 24px;
  }

  .technical-specs h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  .product-card,
  .product-card.condensed {
    grid-template-rows: 168px 1fr;
  }

  .product-image img {
    height: 150px;
  }

  .product-body {
    padding: 18px;
  }

  .product-body h2,
  .product-body h3 {
    font-size: 22px;
    line-height: 1.14;
  }

  .product-card.wide {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
    min-height: 0;
  }

  .product-card.wide .product-image {
    min-height: 200px;
    padding: 12px;
  }

  .product-card.wide .product-image img {
    height: 178px;
  }

  .product-card.wide .product-body {
    padding: 18px;
  }

  .product-card.wide .product-body h2 {
    font-size: 22px;
    line-height: 1.14;
  }

  .product-summary {
    font-size: 15px;
  }

  .card-footer,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-lead,
  .catalog-hero p:not(.eyebrow),
  .section-head p:not(.eyebrow),
  .service-copy p:not(.eyebrow) {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .logo img {
    width: clamp(218px, 64vw, 238px);
  }

  h1 {
    font-size: 35px;
  }
}

