:root {
  --ink: #16211f;
  --muted: #66706d;
  --line: #d8dedb;
  --surface: #ffffff;
  --soft: #f3f6f4;
  --forest: #006a5b;
  --forest-dark: #004d43;
  --gold: #c89425;
  --coral: #d96d4c;
  --radius: 8px;
  --shadow: 0 14px 40px rgba(22, 33, 31, 0.12);
  --page-x: clamp(1rem, 15vw, 18rem);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 72px;
  padding: 0 var(--page-x);
  border-bottom: 1px solid rgba(216, 222, 219, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.brand__mark {
  display: block;
  width: clamp(8.5rem, 12vw, 12rem);
  height: 100px;
  object-fit: contain;
}

.brand__picture {
  display: block;
}

.brand--footer .brand__mark {
  width: clamp(10rem, 18vw, 15rem);
  height: 96px;
}

.brand--footer {
  display: inline-flex !important;
  align-items: center;
  gap: 0.85rem;
}

.brand--footer .brand__text {
  color: #0680de;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  gap: 1rem;
  font-size: 0.95rem;
}

.header-search {
  display: flex;
  flex: 0 0 230px;
  gap: 0.4rem;
  margin-left: auto;
}

.header-search input {
  width: 100%;
}

.language-switcher {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  min-width: 168px;
  padding: 0.25rem 0.35rem 0.25rem 0.65rem;
  border: 1px solid rgba(0, 105, 85, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(0, 70, 55, 0.08);
}

.language-switcher label {
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-switcher select {
  width: 100%;
  min-height: 36px;
  padding: 0 1.8rem 0 0.55rem;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select:focus-visible {
  outline: 2px solid rgba(0, 105, 85, 0.35);
  outline-offset: 2px;
}

.translation-status {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 12;
  max-width: 240px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.translation-status:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.translation-status.is-warning {
  background: #8a4b00;
}

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

.site-nav a {
  color: var(--ink);
}

.site-nav a.button--small {
  border-color: var(--forest);
  background: var(--forest);
  color: #ffffff;
  white-space: nowrap;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--forest);
}

.site-nav a.button--small:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: #ffffff;
  font-weight: 700;
}

.button:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.78);
  background: #ffffff;
  color: var(--ink);
}

.button--small {
  min-height: 36px;
  padding: 0.48rem 0.85rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--forest);
  background: var(--forest);
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.home-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
}

.home-hero__overlay {
  background: linear-gradient(90deg, rgba(8, 21, 19, 0.82), rgba(8, 21, 19, 0.42), rgba(8, 21, 19, 0.12));
}

.home-hero__content {
  position: relative;
  max-width: 760px;
  padding: 6rem var(--page-x);
  color: #ffffff;
}

.home-hero h1,
.plain-hero h1,
.info-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

html:not([lang="en"]) .home-hero h1 {
  max-width: 13em;
  font-size: clamp(2.15rem, 4.6vw, 4.25rem);
  line-height: 1.05;
}

html[lang="zh-CN"] .home-hero h1,
html[lang="ja"] .home-hero h1,
html[lang="ko"] .home-hero h1 {
  max-width: 11em;
  font-size: clamp(2.55rem, 5.1vw, 4.65rem);
  line-height: 1.02;
}

.home-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metric-band div {
  min-height: 126px;
  padding: 1.8rem var(--page-x);
  background: var(--soft);
}

.metric-band strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.metric-band span {
  display: block;
  max-width: 13rem;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 5rem var(--page-x);
}

.section--split,
.info-hero,
.product-detail,
.contact-layout,
.logistics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}

.section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section--narrow {
  max-width: 920px;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.text-column {
  max-width: 720px;
}

.supply-showcase {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.supply-showcase__heading {
  align-items: start;
}

.supply-showcase__heading > p {
  max-width: 430px;
  margin: 0.35rem 0 0;
}

.brand-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.35);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(22, 33, 31, 0.08);
}

.brand-strip__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1.25rem;
  animation: brand-scroll 34s linear infinite;
}

.brand-strip img {
  width: 180px;
  height: 78px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
}

.about-brand-showcase {
  width: 100%;
  max-width: min(100%, var(--about-copy-width, 760px));
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.25);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(22, 33, 31, 0.08);
}

.info-hero > div:first-child {
  min-width: 0;
  --about-copy-width: 760px;
}

.info-hero .lead {
  max-width: min(100%, var(--about-copy-width));
  overflow-wrap: anywhere;
  word-break: normal;
}

.info-hero > div:first-child > h1 {
  max-width: min(100%, var(--about-copy-width));
}

.about-brand-showcase .brand-strip__track {
  gap: 0.7rem;
  padding: 0.85rem;
  animation-duration: 28s;
}

.about-brand-showcase img {
  width: 132px;
  height: 58px;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
}

@media (min-width: 981px) {
  .info-hero {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .info-hero > div:first-child {
    display: flex;
    flex-direction: column;
    --about-copy-width: clamp(620px, 48vw, 860px);
  }

  .about-brand-showcase {
    margin-top: auto;
    min-height: 9.5rem;
  }

  .info-hero__map {
    width: min(100%, 620px);
    justify-self: end;
  }

  .about-brand-showcase .brand-strip__track {
    align-items: center;
    min-height: 9.5rem;
  }

  .about-brand-showcase img {
    width: 156px;
    height: 74px;
  }
}

.product-section:nth-of-type(odd) {
  background: var(--soft);
}

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

.product-list-layout {
  display: grid;
  grid-template-columns: minmax(170px, 200px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.product-list-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-filter {
  position: sticky;
  top: 96px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.product-filter h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.product-filter--desktop {
  display: none;
}

.product-filter summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  caret-color: transparent;
}

.product-filter summary::-webkit-details-marker {
  display: none;
}

.product-filter summary::after {
  content: "+";
  float: none;
  margin-left: 0.45rem;
  color: var(--forest);
}

.product-filter[open] summary::after {
  content: "-";
}

.product-filter--compact {
  position: fixed;
  top: auto;
  right: auto;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: block;
  width: min(20rem, calc(100vw - 2rem));
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 0.85rem;
  border: 1px solid rgba(216, 222, 219, 0.95);
  border-radius: var(--radius);
  background: rgba(243, 246, 244, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.product-filter--compact:not([open]) {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  max-height: none;
  overflow: visible;
  padding: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #ffffff;
}

.product-filter--compact summary {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 1.4rem 0.1rem 0;
}

.product-filter--compact:not([open]) summary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  text-align: center;
  color: #ffffff !important;
  cursor: pointer;
  outline: none;
}

.product-filter--compact nav {
  margin-top: 0.75rem;
  max-height: 22rem;
  overflow: auto;
}

.product-filter summary span {
  display: inline;
  padding: 0;
  border-radius: 0;
}

.filter-fab__closed {
  display: none !important;
  font-size: 0.82rem;
  line-height: 1;
  color: #ffffff !important;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  caret-color: transparent;
}

.product-filter--compact:not([open]) .filter-fab__closed {
  color: #ffffff !important;
}

.product-filter--compact:not([open]) summary *,
.product-filter--compact:not([open]) summary::selection {
  color: #ffffff !important;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  caret-color: transparent;
}

.filter-fab__open {
  display: inline;
}

.product-filter--compact:not([open]) .filter-fab__closed {
  display: inline !important;
}

.product-filter--compact:not([open]) .filter-fab__open {
  display: none !important;
}

.product-filter--compact[open] .filter-fab__closed {
  display: none !important;
}

.product-filter--compact[open] .filter-fab__open {
  display: inline !important;
}

.product-filter--compact:not([open]) summary::after {
  content: "";
}

.product-filter nav {
  display: grid;
  gap: 0.35rem;
}

.product-filter a,
.product-filter span {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
}

.product-filter a:hover,
.product-filter a.is-active {
  background: #ffffff;
  color: var(--forest);
  font-weight: 800;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(22, 33, 31, 0.06);
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.product-card__image,
.product-gallery__image,
.info-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__placeholder,
.product-gallery__placeholder,
.empty-state {
  display: grid;
  place-items: center;
  min-height: 240px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem;
}

.product-card__meta {
  margin: 0 0 0.35rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 4rem var(--page-x);
  background: var(--forest);
  color: #ffffff;
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.plain-hero {
  padding: 5.5rem var(--page-x) 4rem;
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.plain-hero p {
  max-width: 760px;
}

.richtext img {
  border-radius: var(--radius);
}

.richtext a {
  color: var(--forest);
  font-weight: 700;
}

.product-detail {
  padding: 4rem var(--page-x);
  background: var(--soft);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-gallery__main {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
}

.product-gallery figcaption {
  padding: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-summary {
  position: sticky;
  top: 96px;
}

.product-summary h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.03;
}

.lead {
  font-size: 1.1rem;
}

.spec-list,
.contact-list {
  display: grid;
  gap: 1px;
  margin: 1.5rem 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-list div,
.contact-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #ffffff;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tag-row a {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.tag-row span {
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.info-hero {
  padding: 5rem var(--page-x);
  background: var(--soft);
}

.info-hero__image {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-hero__map {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.info-hero__map iframe {
  display: block;
  width: 100%;
  height: calc(100% - 44px);
  border: 0;
}

.info-hero__map-canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  height: calc(100% - 44px);
}

.info-hero__map-canvas .leaflet-pane,
.info-hero__map-canvas .leaflet-top,
.info-hero__map-canvas .leaflet-bottom {
  z-index: 1;
}

.info-hero__map-canvas .leaflet-control-zoom {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  margin-left: 0.85rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(22, 33, 31, 0.12);
}

.info-hero__map-canvas .leaflet-control-zoom a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  text-align: center;
  text-indent: 0;
  line-height: 34px;
}

.info-hero__map-canvas .leaflet-control-attribution {
  display: none;
}

.info-hero__map a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border-top: 1px solid var(--line);
  color: var(--forest);
  background: #ffffff;
  font-weight: 700;
}

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

.link-grid a {
  display: grid;
  gap: 0.65rem;
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.link-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.partner-logo-stack {
  display: grid;
  gap: 1.2rem;
}

.partner-logo-stack h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1rem;
}

.credentials-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.credential-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 33, 31, 0.07);
}

.credential-card__image,
.credential-card__placeholder {
  width: 100%;
  aspect-ratio: 13 / 8;
}

.credential-card__image {
  object-fit: cover;
}

.credential-card__placeholder {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: var(--forest);
  background: linear-gradient(135deg, rgba(0, 106, 91, 0.08), rgba(200, 148, 37, 0.12));
  font-weight: 800;
  text-align: center;
}

.credential-card__body {
  padding: 1.2rem;
}

.credential-card__type {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.credential-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.credential-card dl div {
  display: grid;
  gap: 0.1rem;
}

.credential-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-card dd {
  margin: 0;
  color: var(--ink);
}

.logo-grid img {
  width: 100%;
  height: 110px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #ffffff;
}

.contact-panel {
  align-self: stretch;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e9efec;
}

.contact-panel__body {
  margin-top: 1.5rem;
}

.contact-panel__body p:last-child {
  margin-bottom: 0;
}

.richtext a.contact-quote-button,
.contact-quote-button {
  color: #d8dedb;
}

.richtext a.contact-quote-button:hover,
.richtext a.contact-quote-button:focus-visible,
.contact-quote-button:hover,
.contact-quote-button:focus-visible {
  color: #ffffff;
}

.email-composer {
  display: grid;
  gap: 0.9rem;
  margin-top: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.email-composer h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.email-composer label {
  display: grid;
  gap: 0.35rem;
}

.email-composer label span {
  color: var(--ink);
  font-weight: 800;
}

.email-composer input,
.email-composer textarea {
  width: 100%;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.email-composer textarea {
  resize: vertical;
}

.enquiry-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-status {
  min-height: 1.4em;
  margin: -0.25rem 0 0;
  color: var(--forest);
  font-weight: 800;
}

.enquiry-status.is-error {
  color: #9f2d20;
}

.email-composer button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.product-email-composer {
  margin-top: 1.8rem;
  background: #ffffff;
}

.product-enquiry-section {
  padding-top: 0;
}

.product-enquiry-section .product-email-composer {
  max-width: 980px;
  margin: 0 auto;
}

.search-row,
.search-page-form {
  display: flex;
  gap: 0.5rem;
}

.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.search-hero__copy {
  max-width: 1120px;
}

.search-hero__copy p:not(.eyebrow) {
  max-width: 720px;
}

.search-page-form--large {
  width: min(760px, 100%);
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 1.2);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(22, 33, 31, 0.08);
}

.search-page-form--large input {
  flex: 1;
  border: 0;
  font-size: 1.08rem;
}

input[type="search"] {
  min-height: 44px;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.result-list {
  display: grid;
  gap: 1rem;
}

.search-results-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.search-summary-card,
.search-result-card,
.search-empty-state {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(22, 33, 31, 0.07);
}

.search-summary-card {
  position: sticky;
  top: 96px;
}

.search-summary-card strong {
  display: block;
  color: var(--forest);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
}

.search-summary-card span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.search-suggestions p {
  flex-basis: 100%;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.search-suggestions a {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: var(--soft);
  font-weight: 800;
}

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

.search-result-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 230px;
}

.search-result-card__meta {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.search-result-card p:not(.search-result-card__meta) {
  margin: 0;
}

.search-result-card .text-link {
  margin-top: auto;
}

.search-empty-state {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.search-empty-state h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.search-empty-state .search-suggestions {
  justify-content: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span,
.pagination strong {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.pagination strong {
  border-color: var(--forest);
  background: var(--forest);
  color: #ffffff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem var(--page-x);
  border-top: 1px solid var(--line);
  background: #0f1816;
  color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer label {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  margin-top: 0.62rem;
  line-height: 1.45;
}

.site-footer .brand--footer {
  margin-top: 0;
}

.site-footer a:hover {
  color: #ffffff;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.footer-search {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-strip__track {
    animation: none;
  }
}

@media (min-width: 1281px) {
  .product-filter--desktop {
    display: block;
  }

  .product-filter--compact,
  .product-filter--compact[open] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1280px) {
  .product-list-layout {
    grid-template-columns: 1fr;
  }

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

  .product-filter--desktop {
    position: static;
  }

  .product-filter--desktop {
    display: none !important;
  }

  .product-filter--compact {
    display: block !important;
  }

}

@media (max-width: 1320px) {
  .header-search {
    flex-basis: 190px;
  }

  .language-switcher {
    min-width: 150px;
  }

  .language-switcher label {
    display: none;
  }
}

@media (max-width: 1460px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: auto;
    left: var(--page-x);
    width: min(18rem, calc(100vw - (var(--page-x) * 2)));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .site-nav a.button--small {
    align-self: flex-start;
    min-height: 40px;
    padding: 0.58rem 1rem;
  }

  .language-switcher {
    margin-left: 0;
  }
}

@media (max-width: 980px) {
  .metric-band,
  .product-grid,
  .product-list-layout,
  .credential-grid,
  .search-results-layout,
  .link-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .search-summary-card {
    position: static;
  }

  .search-result-list {
    grid-template-columns: 1fr;
  }

  .product-filter--desktop {
    position: static;
  }

  .section--split,
  .info-hero,
  .product-detail,
  .contact-layout,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .info-hero .lead {
    max-width: 100%;
  }

  .about-brand-showcase {
    max-width: 100%;
  }

  .product-summary {
    position: static;
  }

  .section-heading,
  .cta-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 1rem;
  }

  .site-header .brand__mark {
    width: 58px;
    height: 58px;
  }

  .site-header {
    padding-inline: 1rem;
    padding-block: 0.65rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .header-search {
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
  }

  .language-switcher {
    order: 2;
    min-width: 132px;
    max-width: calc(100vw - 6rem);
    padding-left: 0.45rem;
  }

  .site-nav {
    right: auto;
    left: 0.65rem;
    width: min(17rem, calc(100vw - 1.3rem));
    padding: 0.65rem;
  }

  .site-nav a {
    padding: 0.65rem 0.8rem;
  }

  .translation-status {
    right: auto;
    left: 0;
    white-space: normal;
  }

  .home-hero__content,
  .section,
  .plain-hero,
  .info-hero,
  .product-detail,
  .cta-band,
  .site-footer {
    padding-inline: 1rem;
  }

  .home-hero h1,
  .plain-hero h1,
  .info-hero h1 {
    font-size: 2.35rem;
  }

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

  .info-hero__map {
    aspect-ratio: auto;
    height: min(62vh, 360px);
  }

  .about-brand-showcase .brand-strip__track {
    padding: 0.7rem;
  }

  .about-brand-showcase img {
    width: 118px;
    height: 52px;
    padding: 0.55rem;
  }

  .spec-list div,
  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .search-page-form {
    flex-direction: column;
  }

  .search-page-form--large {
    padding: 0.5rem;
  }

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

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

  .product-filter--compact {
    top: auto;
    right: auto;
    left: 0.75rem;
    bottom: 0.75rem;
    width: min(20rem, calc(100vw - 1.5rem));
  }

  .product-filter--compact:not([open]) {
    right: auto;
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* Product launch landing page additions */
.launch-landing .launch-hero .home-hero__content {
  max-width: 1080px;
}

.launch-landing .launch-hero h1 {
  max-width: 1040px;
}

.hero-title--brand-split {
  display: block;
}

.hero-title--brand-split .hero-title__brand,
.hero-title--brand-split .hero-title__line {
  display: block;
}

.hero-title--brand-split .hero-title__brand {
  color: #0680de;
}

.hero-title--brand-split .hero-title__line {
  white-space: nowrap;
}

.hero-contact-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.hero-contact-note a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.launch-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-inline: var(--page-x);
  border-block: 1px solid var(--line);
  background: var(--line);
}

.launch-metrics div {
  min-height: 128px;
  padding: clamp(2rem, 3vw, 2.8rem) clamp(1rem, 2.4vw, 2rem);
  display: flex;
  align-items: flex-start;
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
}

.launch-metrics strong {
  flex: 0 0 auto;
  min-width: 4.6rem;
  margin-top: -0.08em;
}

.launch-metrics span {
  max-width: 22rem;
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .launch-metrics {
    padding-inline: 0;
  }

  .launch-metrics div {
    min-height: auto;
    padding: 1.6rem var(--page-x);
  }
}

@media (max-width: 560px) {
  .launch-metrics div {
    display: block;
  }

  .launch-metrics strong {
    min-width: 0;
  }

  .launch-metrics span {
    max-width: none;
  }
}

.launch-intro .text-column p:first-child {
  font-size: 1.08rem;
}

.launch-landing .section-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 30px;
}

.launch-landing .section-heading h2 {
  margin: 0;
}

.launch-landing .product-section .section-heading {
  display: flex;
  max-width: none;
}

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 260px;
}

.benefit-card__number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 106, 91, 0.1);
  color: var(--forest);
  font-weight: 800;
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.22rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.launch-email-cta {
  align-items: flex-end;
  gap: 28px;
}

.launch-email-cta .button {
  width: fit-content;
  min-width: 0;
  padding-inline: 1rem;
  white-space: normal;
}

.launch-email-cta p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a.email-link,
.contact-panel a.email-link {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .benefit-card {
    min-height: auto;
  }

  .launch-email-cta {
    align-items: flex-start;
  }

  .launch-email-cta .button {
    align-self: flex-start;
  }
}

/* Product detail body layout: wider, easier-to-read descriptions for Materials, Shapes, and Applications. */
.product-body-section {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.product-body-section__inner {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-items: start;
}

.product-body-section__inner h2 {
  grid-column: 1;
  margin: 0;
  max-width: 100%;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.08;
}

.product-body-section__inner p {
  grid-column: 1;
  margin: 0 0 1.6rem;
  max-width: 1000px;
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.78;
}

.product-body-section__inner h2 + p {
  margin-top: 0.2rem;
}

.product-body-section__back {
  grid-column: 1;
  margin-top: 1rem !important;
}

@media (max-width: 1180px) {
  .product-body-section__inner {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .product-body-section__inner h2,
  .product-body-section__inner p,
  .product-body-section__back {
    grid-column: 1;
    max-width: 100%;
  }

  .product-body-section__inner h2 {
    max-width: 100%;
    margin-top: 1.2rem;
  }
}

/* Prevent browser caret from appearing on ordinary page text after clicks while keeping forms editable. */
body,
body *:not(input):not(textarea):not(select) {
  caret-color: transparent;
}

input,
textarea,
select,
[contenteditable="true"] {
  caret-color: auto;
}

/* Floating product family menu restoration */
.product-filter--floating {
  isolation: isolate;
}

.product-filter__panel {
  margin-top: 0.75rem;
}

.product-filter__hint {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.product-filter--compact.product-filter--floating {
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 80;
}

.product-filter--compact.product-filter--floating:not([open]) {
  width: auto;
  min-width: 4.75rem;
  height: 3.25rem;
  padding-inline: 1rem;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 18px 40px rgba(0, 85, 70, 0.28);
}

.product-filter--compact.product-filter--floating:not([open]) summary {
  gap: 0.35rem;
  white-space: nowrap;
}

.product-filter--compact.product-filter--floating:not([open]) summary::before {
  content: "☰";
  display: inline-block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.product-filter--compact.product-filter--floating[open] {
  width: min(22rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 52px rgba(10, 24, 20, 0.22);
}

.product-filter--compact.product-filter--floating[open] summary {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1.4rem 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.product-filter--compact.product-filter--floating[open] summary::after {
  content: "×";
  margin-left: auto;
  color: var(--forest);
  font-size: 1.35rem;
  line-height: 1;
}

.product-filter--compact.product-filter--floating nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

@media (min-width: 1281px) {
  .product-filter--compact.product-filter--floating,
  .product-filter--compact.product-filter--floating[open] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 620px) {
  .product-filter--compact.product-filter--floating {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .product-filter--compact.product-filter--floating:not([open]) {
    min-width: 4.5rem;
    width: auto;
    height: 3.1rem;
    padding-inline: 0.85rem;
  }

  .product-filter--compact.product-filter--floating[open] {
    width: min(21rem, calc(100vw - 1.5rem));
  }
}

/* Interest prompt and post-hero cleanup */
.launch-landing .launch-intro {
  padding-top: clamp(4.25rem, 7vw, 7rem);
}

.interest-popup[hidden] {
  display: none !important;
}

.interest-popup {
  position: fixed;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 60;
  width: min(420px, calc(100vw - 2rem));
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(216, 222, 219, 0.9);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(22, 33, 31, 0.22);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.interest-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.interest-popup__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.interest-popup__close:hover,
.interest-popup__close:focus-visible {
  border-color: var(--forest);
  color: var(--forest);
}

.interest-popup h2 {
  max-width: 330px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.interest-popup p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.interest-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.interest-popup__actions .button {
  min-height: 42px;
  padding-inline: 1rem;
}

@media (max-width: 620px) {
  .interest-popup {
    right: 0.85rem;
    bottom: 0.85rem;
    width: calc(100vw - 1.7rem);
  }

  .interest-popup__actions {
    flex-direction: column;
  }
}
