/* Mobile visual layer. Do not place desktop behavior in this file. */

@media (max-width: 919px) {

img { object-fit: cover; }

p { color: var(--text); margin: 0 0 18px; }

h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.18; }

h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: 0; }

h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: 0; }

h3 { font-size: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  column-gap: 32px;
  padding: 24px 4vw;
  background: #f1f4f6;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.logo { display: inline-flex; align-items: center; justify-self: end; gap: 9px; margin-right: 8px; font-size: 21px; font-weight: 700; color: var(--brand-dark); }

.logo img { width: 49px; height: 49px; object-fit: contain; }

.site-nav { grid-column: 2; font-size: 15px; font-weight: 500; color: #334754; white-space: nowrap; }

.nav-list, .product-dropdown, .dropdown-series { margin: 0; padding: 0; list-style: none; }

.nav-list { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2vw, 32px); }

.nav-item { position: relative; }

.nav-list > .nav-item > a,
.nav-primary > a { position: relative; display: inline-flex; align-items: center; padding: 10px 0; transition: color 0.25s ease; }

.nav-list > .nav-item > a::after,
.nav-primary > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
   background: #173f59;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-list > .nav-item > a:hover,
.nav-list > .nav-item > a:focus-visible,
.nav-list > .nav-item > a.is-active,
.nav-primary > a:hover,
.nav-primary > a:focus-visible,
.nav-primary > a.is-active,
  .has-dropdown:is(:hover, :focus-within, .is-open) .nav-primary > a { color: #173f59; }

.nav-list > .nav-item > a:hover::after,
.nav-list > .nav-item > a:focus-visible::after,
.nav-list > .nav-item > a.is-active::after,
.nav-primary > a:hover::after,
.nav-primary > a:focus-visible::after,
.nav-primary > a.is-active::after,
.has-dropdown:is(:hover, :focus-within, .is-open) .nav-primary > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 32px;
  margin-left: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #334754;
  cursor: pointer;
  transition: color 0.2s ease;
}

.dropdown-chevron { display: block; width: 17px; height: 17px; flex: 0 0 auto; color: currentColor; transform: translateY(1px); transition: transform 0.2s ease, color 0.2s ease; }

.has-dropdown:is(:hover, :focus-within, .is-open) .dropdown-toggle { color: var(--brand-dark); }

.has-dropdown:is(:hover, :focus-within, .is-open) .dropdown-chevron { transform: translateY(1px) rotate(180deg); }

.has-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 18px; }

.product-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 370px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.foam-dropdown { width: 310px; }

.foam-dropdown-title { padding: 8px 10px 12px; color: var(--brand-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }

.dropdown-group + .dropdown-group { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }

.dropdown-category, .dropdown-series a { display: flex; align-items: center; border-radius: 6px; transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease; }

.dropdown-category { justify-content: flex-start; padding: 9px 10px; color: var(--brand-dark); font-size: 15px; font-weight: 600; }

.dropdown-series { padding: 2px 0 4px 14px; }

.dropdown-series a { padding: 7px 10px; color: var(--text); font-size: 14px; font-weight: 500; }

.dropdown-category:hover, .dropdown-category:focus-visible,
.dropdown-series a:hover, .dropdown-series a:focus-visible { color: var(--brand); background: #f4f7f9; transform: translateX(2px); }
}

@media (max-width: 919px) {
[id="external-spring"], [id="internal-spring"], [id^="series-"] { scroll-margin-top: 124px; }

.nav-cta, .footer-cta {
  background: var(--brand);
  color: #fff !important;
  min-height: 44px;
  padding: 10px 21px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}

.header-cta { grid-column: 3; justify-self: end; white-space: nowrap; background: #173f59; border-color: #173f59; transition: background 0.2s ease, transform 0.2s ease; }

.header-cta:hover { background: #214f6b; transform: translateY(-1px); }

.nav-toggle { display: none; border: 0; background: #173f59; color: #fff; padding: 9px 12px; border-radius: var(--radius); font-size: 20px; }

.hero, .page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 80px 5vw;
  min-height: 650px;
  background: linear-gradient(180deg, #f9fbfc, #fff);
}

.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }

.hero-stats div { min-width: 0; padding: 0 14px; border-right: 1px solid var(--line); }

.hero-stats div:first-child { padding-left: 0; }

.hero-stats div:last-child { padding-right: 0; border-right: 0; }

.hero-stats strong, .hero-stats span { display: block; }

.hero-stats strong { margin-bottom: 4px; color: var(--brand-dark); font-size: clamp(19px, 1.6vw, 25px); line-height: 1.15; white-space: nowrap; }

.hero-stats span { color: var(--text); font-size: 12px; line-height: 1.4; white-space: nowrap; }

#products { scroll-margin-top: 124px; }

.page-hero { min-height: 470px; }

.page-hero:has(.foam-hero-image) { background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 28%, transparent 52%), linear-gradient(105deg, #a89c94 0%, #c8bbb0 48%, #e7ded6 100%); }

.page-hero:has(img[src*="plastic-bottle-hot-category"]) { background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 28%, transparent 52%), linear-gradient(105deg, #87919a 0%, #b0b8bf 48%, #dde2e6 100%); }

.factory-manufacturing-hero { position: relative; display: flex; min-height: 720px; align-items: center; padding: 72px clamp(24px, 7vw, 134px); overflow: hidden; isolation: isolate; background: #183244; }

.factory-manufacturing-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8, 29, 44, 0.88) 0%, rgba(10, 34, 50, 0.74) 38%, rgba(12, 38, 54, 0.4) 68%, rgba(10, 31, 45, 0.28) 100%); pointer-events: none; }

.factory-manufacturing-hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.factory-manufacturing-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,31,44,0.04) 45%, rgba(8,25,38,0.2) 100%); pointer-events: none; }

.factory-manufacturing-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; filter: brightness(0.98) saturate(0.9) contrast(1.07) blur(0.45px); transform: scale(1.003); }

.factory-manufacturing-hero-copy { position: relative; z-index: 2; width: 100%; max-width: 520px; color: #fff; }

.factory-manufacturing-hero-copy .eyebrow { margin-bottom: 24px; color: rgba(255,255,255,0.84); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; }

.factory-manufacturing-hero-copy h1 { max-width: 520px; margin-bottom: 34px; color: #fff; font-size: clamp(38px, 3.1vw, 50px); line-height: 1.05; letter-spacing: -0.04em; text-shadow: 0 2px 18px rgba(0,0,0,0.2); }

.factory-manufacturing-hero-copy > p { max-width: 520px; margin: 0; color: rgba(255,255,255,0.92); font-size: 16px; line-height: 1.72; text-shadow: 0 1px 14px rgba(0,0,0,0.18); }

.factory-hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.3); }

.factory-hero-stats div { min-width: 0; padding: 0 18px; border-right: 1px solid rgba(255,255,255,0.22); }

.factory-hero-stats div:first-child { padding-left: 0; }

.factory-hero-stats div:last-child { padding-right: 0; border-right: 0; }

.factory-hero-stats strong, .factory-hero-stats span { display: block; }

.factory-hero-stats strong { margin-bottom: 5px; color: #fff; font-size: 28px; line-height: 1; letter-spacing: -0.03em; }

.factory-hero-stats span { color: rgba(255,255,255,0.76); font-size: 11px; font-weight: 700; line-height: 1.35; letter-spacing: 0.045em; text-transform: uppercase; }

.factory-manufacturing-hero-copy .btn { min-height: 50px; margin-top: 30px; padding: 12px 22px; border-color: rgba(255,255,255,0.28); border-radius: 6px; background: #25465f; box-shadow: 0 10px 24px rgba(0,0,0,0.16); font-size: 13px; font-weight: 700; letter-spacing: 0.025em; }

.factory-manufacturing-hero-copy .btn:hover, .factory-manufacturing-hero-copy .btn:focus-visible { background: #17364d; transform: translateY(-2px); }

#manufacturing-capability { scroll-margin-top: 120px; }

.compact-hero { grid-template-columns: 1fr; min-height: 340px; }

.hero-media img, .page-hero img, .rounded-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #e9eef2;
}

.page-hero .lotion-hero-image,
.page-hero .foam-hero-image {
  width: 100%;
  height: 500px;
  aspect-ratio: auto;
  object-fit: contain;
}

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

.hero-points, .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.hero-points span, .tag-list span {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}

.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.button-row.compact { margin-top: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid var(--brand);
}

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

.btn.secondary { background: #fff; color: var(--brand); }

.btn.small { min-height: 38px; padding: 9px 14px; font-size: 14px; }

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

.section { padding: 72px 5vw; }

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

.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }

.foam-series-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -6px auto 36px;
}

.foam-series-tab {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.foam-series-tab:hover,
.foam-series-tab:focus-visible,
.foam-series-tab.is-active {
  border-color: var(--brand-dark);
  background: var(--brand);
  color: #fff;
}

.foam-series-intro { margin: 0 0 26px; text-align: left; }

.foam-series-intro h3 { margin-bottom: 8px; color: var(--brand-dark); font-size: clamp(24px, 3vw, 32px); }

.foam-series-intro p { margin: 0; color: var(--text); }

.foam-output-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}

.foam-output-heading:first-child { margin-top: 0; }

.foam-output-number { color: var(--brand); font-size: 13px; font-weight: 800; }

.foam-output-heading h3 { margin: 0; color: var(--brand-dark); font-size: 21px; }

.foam-catalog-card[hidden] { display: none; }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.05fr 0.95fr; }

.oem-customization-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
}

.customization-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 660px;
  height: 460px;
  padding: 24px;
  justify-self: center;
}

.customization-image-wrap .rounded-img {
  width: 100%;
  height: 100%;
  max-height: 412px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  background: transparent;
}

.card-grid { display: grid; gap: 22px; }

.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.card-grid.five { grid-template-columns: repeat(5, 1fr); }

.card, .mini-card, .image-cards article, .contact-box, .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.selected-product { margin: 16px 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: #f4f6f8; }

.selected-product h3 { margin-bottom: 8px; color: var(--brand-dark); font-size: 16px; }

.selected-product p { margin: 3px 0; }

.product-card img, .image-cards img, .blog-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #e9eef2;
}

.home-products-section { padding-top: 55px; padding-bottom: 72px; }

.home-products-section .section-heading { margin-bottom: 38px; }

.home-products-section .section-heading .eyebrow { margin-bottom: 10px; }

.home-products-section .section-heading h2 { margin-bottom: 12px; }

.home-products-section .section-heading > p:last-child { margin-bottom: 0; }

.home-product-grid { align-items: stretch; }

.home-product-grid .product-card { display: flex; flex-direction: column; height: 100%; }

.home-product-grid .product-image-link { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 18px; overflow: hidden; border-radius: 6px; background: #edf1f4; }

.home-product-grid .product-image-link img { width: 100%; height: 100%; margin: 0; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; background: #edf1f4; }

.home-product-grid .product-card h3 { margin: 0 0 8px; }

.home-product-grid .product-card h3 a { color: inherit; }

.home-product-grid .product-card > p { margin: 0 0 18px; }

.product-category-tags { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: -6px; margin-bottom: 16px; }

.product-category-tags a { padding: 6px 9px; border-radius: 6px; background: #edf2f6; color: var(--brand-dark); font-size: 13px; font-weight: 500; line-height: 1.2; white-space: nowrap; transition: color 0.2s ease, background-color 0.2s ease; }

.product-category-tags a:hover, .product-category-tags a:focus-visible { background: #dfe9f0; color: var(--brand); }

.home-product-grid .product-card-actions { gap: 14px; margin-top: auto; padding-top: 4px; }

.home-product-grid .product-card-actions .btn { border-color: var(--brand); font-weight: 600; transition: color 0.2s ease, background-color 0.2s ease; }

.home-product-grid .product-card-actions .btn:hover, .home-product-grid .product-card-actions .btn:focus-visible { background: var(--brand); color: #fff; }

.home-product-grid .product-card-actions .text-link { font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }

.home-product-grid .product-card-actions .text-link:hover, .home-product-grid .product-card-actions .text-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }

.mini-card h3 { color: var(--brand-dark); font-size: 18px; }

.feature-list { display: grid; gap: 16px; margin: 24px 0; }

.feature-list div {
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-list strong { display: block; margin-bottom: 4px; }

.feature-list span { color: var(--text); }

.manufacturing-strength-section { padding: 48px 5vw 88px; }

.manufacturing-strength-inner { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); grid-template-areas: "visual heading" "visual details"; column-gap: 64px; row-gap: 28px; align-items: center; width: 100%; max-width: 1500px; margin: 0 auto; }

.manufacturing-heading { grid-area: heading; align-self: end; }

.manufacturing-heading .eyebrow { margin-bottom: 10px; }

.manufacturing-heading h2 { max-width: 680px; margin-bottom: 14px; color: var(--brand-dark); font-size: clamp(34px, 3vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.manufacturing-heading > p:last-child { max-width: 620px; margin-bottom: 0; font-size: 16px; line-height: 1.65; }

.manufacturing-visual { position: relative; grid-area: visual; align-self: center; }

.manufacturing-collage { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 12px; height: clamp(500px, 36vw, 540px); }

.manufacturing-collage img { display: block; width: 100%; height: 100%; min-width: 0; min-height: 0; border-radius: 12px; object-fit: cover; object-position: center; filter: saturate(0.84) brightness(0.98) contrast(0.96); }

.manufacturing-collage img:nth-child(2) { filter: saturate(0.72) brightness(0.98) contrast(0.94); }

.manufacturing-collage .factory-building-image { object-position: center 68%; }

.manufacturing-details { grid-area: details; align-self: start; }

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

.manufacturing-feature-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfd; transition: border-color 0.2s ease, transform 0.2s ease; }

.manufacturing-feature-grid article:hover { border-color: #b7c9d6; transform: translateY(-2px); }

.manufacturing-feature-grid .feature-number { display: block; margin-bottom: 11px; color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }

.manufacturing-feature-grid h3 { margin: 0 0 9px; color: var(--brand-dark); font-size: 18px; font-weight: 600; line-height: 1.3; }

.manufacturing-feature-grid p { margin: 0; font-size: 15px; line-height: 1.6; }

.manufacturing-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 28px; }

.manufacturing-actions .text-link { font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }

.manufacturing-actions .text-link:hover, .manufacturing-actions .text-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }

.clean-list { padding-left: 20px; color: var(--text); }

.clean-list li { margin-bottom: 8px; }

.center { text-align: center; margin-top: 28px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }

.spec-table th { background: var(--brand); color: #fff; }

.spec-table tr:last-child td { border-bottom: 0; }

/* Lotion pump catalog */
.series-quick-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1040px; margin: 22px auto 0; }

.series-quick-nav > div { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }

.series-quick-nav strong { margin-right: auto; color: var(--brand-dark); }

.series-quick-nav a { color: var(--brand); font-size: 14px; font-weight: 800; }

.catalog-section { scroll-margin-top: 90px; }

.series-block { scroll-margin-top: 90px; }

.series-block + .series-block { margin-top: 52px; }

.series-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }

.series-heading h3 { margin-bottom: 0; font-size: clamp(26px, 3vw, 36px); }

.series-heading .eyebrow { margin-bottom: 6px; }

.series-heading > span { flex: 0 0 auto; color: var(--text); font-weight: 700; }

.catalog-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; max-width: 1500px; margin: 0 auto; }

.catalog-card { display: flex; flex-direction: column; min-width: 0; height: 390px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04); }

.product-image-box { flex: 0 0 240px; height: 240px; display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; background: #fff; }

.product-image-box img { display: block; width: auto; height: auto; max-width: 90%; max-height: 230px; object-fit: contain; }

.catalog-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; min-height: 0; padding: 9px 10px 10px; border-top: 1px solid var(--line); }

.catalog-card h4 { margin-bottom: 4px; overflow-wrap: anywhere; font-size: 13px; color: var(--brand-dark); }

.catalog-card p { margin-bottom: 4px; font-size: 12px; line-height: 1.35; }

.catalog-card .catalog-series { color: var(--brand); font-weight: 800; }

.catalog-card .catalog-series { font-size: 12px; }

.catalog-card .catalog-spec { color: var(--text); }

.catalog-card .btn { align-self: stretch; justify-content: center; margin-top: auto; padding: 7px 8px; font-size: 11px; white-space: nowrap; }

.series-page .catalog-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.series-page .catalog-card { height: auto; overflow: visible; }

.series-page .product-image-box { flex: 0 0 200px; height: 200px; overflow: hidden; padding: 10px; }

.series-page .product-image-box img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; }

.series-page .catalog-card-body { min-height: 112px; padding: 10px 12px 12px; }

.series-page .catalog-card h4 { margin: 0 0 6px; font-size: clamp(16px, 1.4vw, 19px); font-weight: 700; line-height: 1.15; overflow-wrap: anywhere; }

.series-page .catalog-card p { margin: 0 0 4px; font-size: 13px; line-height: 1.4; }

.series-page .catalog-card .catalog-series { font-size: 13px; }

.series-page .catalog-card .catalog-spec { min-height: 1.4em; }

.series-page .catalog-card .btn { margin-top: 8px; }

.bottle-catalog-card { height: 455px; }

.bottle-catalog-card .product-image-box { padding: 0; }

.bottle-catalog-card .product-image-box img { width: auto; height: auto; max-width: 100%; max-height: 240px; object-fit: contain; }

.bottle-card-specs { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 8px; margin: 4px 0 7px; }

.bottle-card-specs div { min-width: 0; }

.bottle-card-specs dt { color: var(--text); font-size: 9px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }

.bottle-card-specs dd { margin: 1px 0 0; overflow-wrap: anywhere; color: var(--brand-dark); font-size: 10px; line-height: 1.25; }

.bottle-card-specs div:last-child { grid-column: 1 / -1; }

.foam-catalog-card { height: 405px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }

.foam-catalog-card:hover { border-color: var(--accent); box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08); }

.foam-catalog-card .catalog-name { color: var(--brand-dark); font-weight: 700; }

.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* Lotion pump technical specifications */
.lotion-technical-section { padding-top: 76px; padding-bottom: 96px; background: #f7f9fa; }

.lotion-technical-heading { max-width: 900px; margin-bottom: 40px; }

.lotion-technical-heading h2 { margin-bottom: 15px; color: var(--brand-dark); font-size: clamp(30px, 2.8vw, 42px); line-height: 1.1; letter-spacing: -0.025em; white-space: nowrap; }

.lotion-technical-heading > p:last-child { max-width: 760px; margin: 0 auto; font-size: 16px; line-height: 1.7; }

.lotion-specification-card { width: 100%; max-width: 1000px; margin: 0 auto; border-top: 1px solid #dde4e8; border-bottom: 1px solid #dde4e8; border-right: 0; border-left: 0; border-radius: 0; background: #fff; box-shadow: none; }

.lotion-specification-table { width: 100%; min-width: 680px; border-collapse: collapse; }

.lotion-specification-table th { height: 54px; padding: 0 28px; border-bottom: 1px solid #dfe6ea; color: #607889; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-align: left; text-transform: uppercase; }

.lotion-specification-table th:first-child { width: 30%; }

.lotion-specification-table th:last-child { width: 70%; }

.lotion-specification-table td { height: 60px; padding: 12px 28px; border-bottom: 1px solid #edf1f3; background: #fff; color: #486581; font-size: 15px; line-height: 1.5; }

.lotion-specification-table tr:last-child td { border-bottom: 0; }

.lotion-specification-table td:first-child { color: #27485f; font-weight: 700; }

.lotion-specification-table .priority-row td:last-child { color: #102a43; font-weight: 800; }

.lotion-technical-cta { display: flex; width: 100%; max-width: 1000px; margin: 34px auto 0; align-items: center; justify-content: space-between; gap: 34px; padding: 28px 0; border-top: 1px solid #dfe6ea; border-bottom: 1px solid #dfe6ea; border-radius: 0; background: transparent; }

.lotion-technical-cta h3 { margin-bottom: 7px; color: var(--brand-dark); font-size: 22px; }

.lotion-technical-cta p { margin: 0; color: #607583; font-size: 15px; }

.lotion-technical-cta .btn { min-width: 170px; min-height: 48px; flex: 0 0 auto; }
}

@media (max-width: 919px) {
.lotion-technical-section { padding: 62px 20px 78px; }
  .lotion-technical-heading { margin-bottom: 36px; text-align: left; }
  .lotion-technical-heading > p:last-child { margin-left: 0; }
  .lotion-technical-cta { align-items: flex-start; flex-direction: column; padding: 26px 0; }
  .lotion-technical-cta .btn { width: auto; }
}

@media (max-width: 919px) and (max-width: 520px) {
.lotion-technical-heading h2 { font-size: clamp(27px, 8vw, 30px); letter-spacing: -0.035em; white-space: normal; }
  .lotion-specification-table { min-width: 0; table-layout: fixed; }
  .lotion-specification-table th:first-child { width: 38%; }
  .lotion-specification-table th:last-child { width: 62%; }
  .lotion-specification-table th, .lotion-specification-table td { height: auto; min-height: 60px; padding: 17px 12px; overflow-wrap: anywhere; }
  .lotion-specification-table td { font-size: 14px; }
  .lotion-technical-cta .btn { width: 100%; }
}

@media (max-width: 919px) {
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.factory-process-section { padding: 56px 5vw 32px; background: #f8fafb; }

.factory-process-inner { width: 100%; max-width: 1500px; margin: 0 auto; }

.factory-process-heading { max-width: 760px; margin-bottom: 40px; text-align: left; }

.factory-process-heading .eyebrow { margin-bottom: 10px; font-size: 14px; font-weight: 700; }

.factory-process-heading h2 { margin-bottom: 14px; font-size: clamp(36px, 3vw, 50px); line-height: 1.1; letter-spacing: -0.02em; }

.factory-process-heading > p:last-child { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.6; }

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

.factory-process-grid .process-card { position: relative; min-width: 0; height: 100%; padding: 28px 24px 30px; border: 0; border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(17, 35, 52, 0.07); text-align: left; }

.factory-process-grid .process-number { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; min-height: 32px; padding: 6px 10px; border-radius: 8px; background: #edf2f6; color: var(--brand-dark); font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: 0.06em; }

.factory-process-grid .process-card h3 { min-height: 2.6em; margin: 18px 0 10px; color: var(--brand-dark); font-size: 18px; font-weight: 600; line-height: 1.3; }

.factory-process-grid .process-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.55; }

.factory-process-link { display: inline-flex; margin-top: 30px; color: var(--brand); font-weight: 600; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }

.factory-process-link:hover, .factory-process-link:focus-visible { color: var(--brand-dark); text-decoration-color: currentColor; }
}

@media (max-width: 919px) {
.inquiry-band {
  margin: 0;
  padding: 64px 5vw;
  background: #e8eef2;
  color: #16384d;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.inquiry-band p { color: #526875; }
.inquiry-band .eyebrow { color: #173f59; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-qr-section {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
}

.contact-qr-heading { margin-bottom: 24px; text-align: center; }

.contact-qr-heading h2,
.contact-qr-heading h3 { margin-bottom: 9px; color: #16384d; }

.contact-qr-heading p { margin: 0; color: #526875; }

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: clamp(18px, 2.2vw, 28px);
}

.contact-qr-card {
  min-width: 0;
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  text-align: center;
}

.contact-qr-card img {
  width: clamp(160px, 16vw, 200px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
}

.contact-qr-card figcaption {
  margin-top: 10px;
  color: #16384d;
  font-size: 15px;
  font-weight: 700;
}

.contact-qr-link { display: block; color: inherit; text-decoration: none; }

.copy-contact-id { display: inline-flex; min-height: 30px; align-items: center; justify-content: center; margin: 6px 0 0; padding: 5px 9px; border: 1px solid var(--line); border-radius: 5px; background: #fff; color: var(--brand-dark); font: inherit; font-size: 11px; font-weight: 700; cursor: pointer; }

.copy-contact-id:hover, .copy-contact-id:focus-visible { border-color: var(--accent); }

.contact-qr-note { max-width: 620px; margin: 24px auto 0; text-align: center; }

.contact-qr-section-dark {
  border: 1px solid #d3dee5;
  border-radius: 12px;
  background: #f7f9fa;
}

.contact-qr-section-dark .contact-qr-heading h3 { color: #16384d; }

.contact-qr-section-dark .contact-qr-heading p { color: #526875; }

.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}

summary { cursor: pointer; font-weight: 800; color: var(--brand-dark); }

details p { margin: 12px 0 0; }

/* Homepage lower-section refinement */
.home-oem-section { padding-top: 58px; padding-bottom: 60px; }

.home-oem-section .section-heading { margin-bottom: 28px; }

.home-oem-section .mini-card { display: flex; min-height: 150px; flex-direction: column; justify-content: flex-start; padding: 30px 22px; }

.home-oem-section .mini-card h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.35; }

.home-oem-section .mini-card p { margin: 0; line-height: 1.65; }

.home-oem-section .center { margin-top: 28px; }

.home-inspection-section { padding-top: 56px; padding-bottom: 56px; }
.home-inspection-section .section-heading { margin-bottom: 28px; }
.home-inspection-grid { align-items: stretch; }
.home-inspection-grid .inspection-card { display: flex; height: 100%; min-width: 0; overflow: hidden; flex-direction: column; padding: 0; border-color: #d9e2ec; border-radius: 12px; box-shadow: 0 8px 24px rgba(17,24,39,0.045); transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.home-inspection-grid .inspection-card:hover { border-color: #c4d0da; box-shadow: 0 14px 30px rgba(15,31,44,0.1); transform: translateY(-3px); }
.home-inspection-grid .inspection-card > img { display: block; width: 100%; height: 200px; flex: 0 0 auto; object-fit: cover; object-position: center; }
.inspection-card-content { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.inspection-card-content h3 { margin: 0 0 10px; color: var(--brand-dark); font-size: 18px; line-height: 1.35; }
.inspection-card-content p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.65; }
.home-inspection-section + .faq-section { padding-top: 54px; padding-bottom: 54px; }










.faq-section .section-heading { margin-bottom: 24px; }

.faq-section .faq-list { width: 100%; max-width: 1100px; }

.home-inquiry-band { grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); gap: clamp(40px, 4vw, 64px); margin-bottom: 0; padding-top: 58px; padding-bottom: 58px; }

.home-inquiry-band > div { max-width: 660px; }

.home-inquiry-band h2 { margin-bottom: 16px; }

.home-inquiry-band > div > p:last-child { margin-bottom: 0; line-height: 1.7; }

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 54px 5vw 82px;
  background: #102a3a;
  color: #fff;
}

.site-footer p, .site-footer a { color: #cfd9df; }

.site-footer a { display: block; margin: 8px 0; }

.site-footer h3, .site-footer h4 { color: #fff; }

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  gap: 11px;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.floating-contact.is-over-footer { visibility: hidden; opacity: 0; pointer-events: none; }

.floating-contact-item { position: relative; }

.floating-contact-button {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 1px solid #ccd8e2;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 10px 28px rgba(15, 31, 44, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(15, 31, 44, 0.22);
  transform: translateY(-2px);
}

.floating-contact-button:focus-visible { outline: 3px solid rgba(37, 70, 95, 0.22); outline-offset: 3px; }

.floating-contact-button svg { width: 29px; height: 29px; fill: currentColor; }

.floating-contact-popup {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  width: 224px;
  padding: 17px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 31, 44, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.floating-contact-popup::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14px;
  width: 14px;
  height: 100%;
}

.floating-contact-popup strong,
.floating-contact-popup span { display: block; text-align: center; }

.floating-contact-popup strong { margin-bottom: 10px; color: var(--brand-dark); font-size: 16px; }

.floating-contact-popup span { margin-top: 9px; color: var(--text); font-size: 13px; }

.floating-contact-popup .copy-contact-id { width: 100%; margin-top: 10px; }

.floating-contact-popup .copy-contact-status { min-height: 16px; margin-top: 5px; font-size: 11px; }

.floating-contact-popup img {
  width: 176px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
}

.floating-contact-item.is-open .floating-contact-popup {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
}

@media (max-width: 919px) and (hover: hover) and (pointer: fine) {
.floating-contact-item:hover .floating-contact-popup,
  .floating-contact-item:focus-within .floating-contact-popup {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 919px) {
.footer-crawl-links { display: flex; width: 100%; max-width: 1500px; flex-wrap: wrap; gap: 10px 24px; margin: 0 auto; }

.footer-crawl-links a { margin: 0; }

.factory-identity-line { margin: 0 0 16px; color: #dce6ee; font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }

/* Shared compact B2B footer */
.site-footer.corporate-footer { display: block; padding: 44px 5vw 0; background: #102a3a; color: #fff; }

.corporate-footer-grid, .corporate-footer-bottom { width: 100%; max-width: 1500px; margin: 0 auto; }

.corporate-footer-grid { display: grid; grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.72fr) minmax(180px, 0.9fr) minmax(200px, 0.95fr) minmax(270px, 1.2fr); gap: clamp(30px, 2.8vw, 48px); align-items: start; }

.corporate-footer h3, .corporate-footer h4 { margin: 0 0 14px; color: #fff; font-size: 16px; font-weight: 700; line-height: 1.4; }

.corporate-footer p, .corporate-footer a, .corporate-footer li, .corporate-footer dd { color: #cfd9df; font-size: 14px; line-height: 1.55; }

.corporate-footer p { margin: 0; }

.footer-brand-block h3 { max-width: 420px; font-size: 17px; }

.footer-brand-block .footer-positioning { margin-bottom: 9px; color: #fff; font-weight: 600; }

.footer-brand-block p + p { margin-top: 8px; }

.footer-products a, .footer-company-links a { display: block; margin: 8px 0; }

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

.footer-company-links { margin-top: 13px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.12); }

.corporate-footer a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease; }

.corporate-footer a:hover, .corporate-footer a:focus-visible { color: #fff; text-decoration-color: currentColor; }

.footer-contact-block dl, .footer-contact-block dd { margin: 0; }

.footer-contact-block dl { display: grid; gap: 10px; }

.footer-contact-block dt { margin-bottom: 2px; color: #f2f6f8; font-size: 13px; font-weight: 600; }

.footer-contact-block dd { overflow-wrap: anywhere; }

.footer-whatsapp-link { margin-top: -5px; }

.footer-quote-cta { display: inline-flex; min-height: 40px; margin-top: 15px; align-items: center; justify-content: center; padding: 8px 15px; border: 1px solid rgba(255,255,255,0.48); border-radius: 6px; color: #fff !important; font-size: 12px !important; font-weight: 700; }

.footer-quote-cta:hover, .footer-quote-cta:focus-visible { background: #fff; color: var(--brand-dark) !important; text-decoration-color: transparent !important; }

.footer-location-item + .footer-location-item { margin-top: 17px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.12); }

.footer-location-item strong { display: block; margin-bottom: 5px; color: #f2f6f8; font-size: 14px; font-weight: 600; }

.footer-location-item a { display: inline-block; margin-top: 6px; }

.corporate-footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 25px; padding: 16px 0 18px; border-top: 1px solid rgba(255,255,255,0.12); color: #aebec8; font-size: 13px; line-height: 1.5; }
}

@media (max-width: 919px) {
.corporate-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 42px; }
  .footer-brand-block { grid-column: span 2; }
}

@media (max-width: 919px) {
.site-footer.corporate-footer { padding: 40px 20px 0; }
  .corporate-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .corporate-footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 22px; padding: 15px 0 17px; }
}

@media (max-width: 919px) and (max-width: 600px) {
.corporate-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand-block { grid-column: auto; }
  .footer-location-item + .footer-location-item { margin-top: 15px; padding-top: 13px; }
}

@media (max-width: 919px) {
.site-header { grid-template-columns: minmax(0, 1fr) auto auto; column-gap: 12px; min-height: 88px; padding: 16px 5vw; }
  .logo { grid-column: 1; justify-self: start; margin-right: 0; }
  .logo img { width: 40px; height: 40px; }
  .header-cta { display: inline-flex; grid-column: 2; grid-row: 1; align-items: center; }
  .nav-toggle { display: inline-flex; grid-column: 3; justify-self: end; align-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 5vw 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    white-space: normal;
  }
  .site-nav.is-open { display: flex; }
  .nav-list { width: 100%; flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-item { width: 100%; }
  .nav-list > .nav-item > a, .nav-primary > a { width: auto; padding: 9px 0; }
  .nav-primary { justify-content: space-between; width: 100%; }
  .dropdown-toggle { width: 40px; height: 40px; }
  .has-dropdown::before { display: none; }
  .product-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow: hidden;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }
  .has-dropdown.is-open .product-dropdown { max-height: 520px; padding-top: 6px; padding-bottom: 8px; pointer-events: auto; }
  .foam-dropdown { width: 100%; }
  .dropdown-category { padding: 8px 10px; }
  .dropdown-series { padding-left: 14px; }
}

@media (max-width: 919px) {
/* About page */
.about-page main { overflow: hidden; }

.about-page .about-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(48px, 5vw, 84px);
  min-height: 650px;
  padding-top: 76px;
  padding-bottom: 76px;
  background: linear-gradient(135deg, #f7f9fb 0%, #fff 68%);
}

.about-hero-copy { max-width: 660px; justify-self: end; }

.about-hero-copy .eyebrow { margin-bottom: 18px; letter-spacing: 0.16em; }

.about-hero-copy h1 { max-width: 630px; margin-bottom: 26px; color: var(--brand-dark); font-size: clamp(42px, 4.2vw, 60px); line-height: 1.06; letter-spacing: -0.035em; }

.about-hero-intro { max-width: 620px; padding-left: 22px; border-left: 2px solid #b9c9d5; }

.about-hero-intro p { margin-bottom: 11px; font-size: 16px; line-height: 1.65; }

.about-hero-intro p:last-child { margin-bottom: 0; }

.about-hero-actions { gap: 14px; margin-top: 30px; }

.about-hero-actions .btn { min-height: 48px; padding: 12px 22px; font-size: 14px; letter-spacing: 0.02em; transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease; }

.about-hero-actions .btn:hover, .about-hero-actions .btn:focus-visible { transform: translateY(-2px); }

.about-hero-actions .btn.secondary { border-color: #afbdc8; color: var(--brand-dark); }

.about-hero-media { position: relative; width: 100%; max-width: 760px; justify-self: start; }

.about-hero-media::before { content: ""; position: absolute; top: -18px; right: -18px; width: 32%; height: 42%; border-top: 1px solid #b9c9d5; border-right: 1px solid #b9c9d5; pointer-events: none; }

.about-page .about-hero-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; object-fit: cover; object-position: center; box-shadow: 0 26px 60px rgba(21, 45, 63, 0.12); filter: brightness(1.03) saturate(0.96) contrast(1.03); }

.about-section-intro { max-width: 560px; }

.about-section-intro.centered { max-width: 720px; margin: 0 auto 46px; text-align: center; }

.about-section-intro .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.16em; }

.about-section-intro h2 { margin-bottom: 15px; color: var(--brand-dark); font-size: clamp(34px, 3.2vw, 48px); line-height: 1.1; letter-spacing: -0.025em; }

.about-section-intro > p:last-child { max-width: 560px; margin-bottom: 0; line-height: 1.7; }

.about-snapshot-section { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); gap: clamp(48px, 6vw, 96px); align-items: center; padding-top: 86px; padding-bottom: 86px; }

.about-snapshot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid #d4dee6; border-radius: 12px; background: #fff; overflow: hidden; box-shadow: 0 18px 48px rgba(21, 45, 63, 0.06); }

.about-snapshot-grid article { min-width: 0; padding: 30px 22px; border-right: 1px solid #dce4ea; }

.about-snapshot-grid article:last-child { border-right: 0; }

.snapshot-value { display: block; margin-bottom: 10px; color: var(--brand-dark); font-size: clamp(34px, 2.8vw, 44px); font-weight: 700; line-height: 1; letter-spacing: -0.04em; white-space: nowrap; }

.about-snapshot-grid h3 { margin: 0; color: #657684; font-size: 12px; font-weight: 700; line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase; }

.about-products-section { padding-top: 92px; padding-bottom: 96px; background: #f5f7f9; }

.about-product-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr)); gap: 0; max-width: 1420px; margin: 0 auto; border: 1px solid #cfd9e1; border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.52); }

.about-product-grid article { position: relative; min-height: 230px; padding: 32px 30px 34px; border-right: 1px solid #cfd9e1; background: transparent; }

.about-product-grid article:last-child { border-right: 0; }

.about-product-grid span { display: block; margin-bottom: 36px; color: #8a9ba8; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; }

.about-product-grid h3 { margin-bottom: 12px; color: var(--brand-dark); font-size: 21px; line-height: 1.25; }

.about-product-grid p { max-width: 31ch; margin: 0; font-size: 15px; line-height: 1.7; }

.about-product-grid article::after { content: ""; position: absolute; left: 30px; bottom: -1px; width: 0; height: 2px; background: var(--brand); transition: width 0.25s ease; }

.about-product-grid article:hover::after { width: calc(100% - 60px); }

.about-product-grid article:first-child { padding-right: 44px; padding-left: 38px; background: var(--brand-dark); }

.about-product-grid article:first-child span { color: #9fb5c5; }

.about-product-grid article:first-child h3 { color: #fff; font-size: 27px; }

.about-product-grid article:first-child p { max-width: 38ch; color: #dbe5ec; font-size: 16px; }

.about-product-grid article:first-child::after { left: 38px; background: #fff; }

.about-audience-section { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: clamp(52px, 6vw, 94px); align-items: center; padding-top: 104px; padding-bottom: 104px; }

.about-audience-media { position: relative; max-width: 720px; justify-self: end; }

.about-page .about-audience-media img { width: 100%; aspect-ratio: 4 / 3; border-radius: 10px; object-fit: cover; box-shadow: 0 22px 54px rgba(21, 45, 63, 0.1); }

.about-audience-media::after { content: ""; position: absolute; left: -20px; bottom: -20px; z-index: -1; width: 52%; height: 48%; border-radius: 10px; background: #e8eef2; }

.about-audience-copy { max-width: 610px; }

.about-audience-copy .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.16em; }

.about-audience-copy h2 { margin-bottom: 30px; color: var(--brand-dark); font-size: clamp(36px, 3.3vw, 50px); letter-spacing: -0.03em; }

.about-audience-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }

.about-audience-list span { position: relative; padding: 10px 15px 10px 29px; border: 1px solid #d5dfe6; border-radius: 999px; background: #f7f9fa; color: var(--brand-dark); font-size: 14px; font-weight: 600; line-height: 1.35; }

.about-audience-list span::before { content: ""; position: absolute; top: 50%; left: 15px; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); transform: translateY(-50%); }

.about-audience-summary { max-width: 58ch; margin: 0; font-size: 16px; line-height: 1.75; }

.about-advantages-section { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(50px, 6vw, 100px); align-items: start; padding-top: 96px; padding-bottom: 102px; background: #f5f7f9; }

.about-advantages-section .about-section-intro { position: sticky; top: 144px; }

.about-advantages-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 42px; }

.about-advantages-grid article { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 20px; min-height: 164px; padding: 27px 2px 18px; border-top: 1px solid #cbd7df; background: transparent; }

.about-advantages-grid article > span { color: #8da0ad; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }

.about-advantages-grid h3 { margin-bottom: 11px; color: var(--brand-dark); font-size: 19px; line-height: 1.35; }

.about-advantages-grid p { margin: 0; font-size: 15px; line-height: 1.7; }

.about-final-cta { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: clamp(50px, 6vw, 92px); align-items: center; padding: 78px 6vw; background: var(--brand-dark); color: #fff; }

.about-final-cta-copy { max-width: 780px; }

.about-final-cta .eyebrow { margin-bottom: 12px; color: #9fb5c5; font-size: 12px; letter-spacing: 0.16em; }

.about-final-cta h2 { max-width: 760px; margin-bottom: 18px; font-size: clamp(36px, 3.5vw, 52px); line-height: 1.08; letter-spacing: -0.03em; }

.about-final-cta p { color: #d7e2ea; line-height: 1.7; }

.about-final-cta-copy > p:last-child { max-width: 660px; margin-bottom: 0; }

.about-final-cta-actions { padding: 30px 0 30px clamp(30px, 4vw, 58px); border-left: 1px solid rgba(255, 255, 255, 0.2); }

.about-final-cta-actions h3 { margin-bottom: 20px; color: #fff; font-size: 23px; }

.about-cta-trust { display: grid; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }

.about-cta-trust li { position: relative; padding-left: 26px; color: #d7e2ea; font-size: 15px; }

.about-cta-trust li::before { content: "✓"; position: absolute; left: 0; color: #fff; font-weight: 700; }

.about-final-cta-actions .button-row { margin-top: 0; }

.about-final-cta-actions .btn { min-height: 48px; }

.about-final-cta-actions .btn.primary { border-color: #fff; background: #fff; color: var(--brand-dark); }

.about-final-cta-actions .btn.secondary { border-color: rgba(255, 255, 255, 0.46); background: transparent; color: #fff; }

.about-page .site-footer.corporate-footer { padding-top: 56px; }

.about-page .corporate-footer-grid { gap: clamp(38px, 3.3vw, 56px); }

.about-page .corporate-footer p, .about-page .corporate-footer a, .about-page .corporate-footer li, .about-page .corporate-footer dd { line-height: 1.65; }

.about-page .footer-brand-block { max-width: 430px; }

.about-page .corporate-footer-bottom { margin-top: 34px; }
}

@media (max-width: 919px) {
.about-page .about-hero { gap: 40px; }
  .about-hero-copy h1 { font-size: clamp(40px, 5vw, 52px); }
  .about-snapshot-section, .about-advantages-section { grid-template-columns: 1fr; }
  .about-snapshot-section .about-section-intro, .about-advantages-section .about-section-intro { max-width: 720px; }
  .about-advantages-section .about-section-intro { position: static; }
  .about-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-product-grid article:first-child { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:nth-child(2), .about-product-grid article:nth-child(3) { border-right: 1px solid #cfd9e1; }
  .about-audience-section { gap: 44px; }
  .about-final-cta { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); }
  .card-grid.five, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .manufacturing-strength-section { padding-top: 48px; padding-bottom: 68px; }
  .manufacturing-strength-inner { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); column-gap: 40px; }
  .manufacturing-feature-grid { grid-template-columns: 1fr; }
  .manufacturing-collage { height: 500px; }
  .factory-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

@media (max-width: 919px) {
.about-page .about-hero { grid-template-columns: 1fr; gap: 42px; padding: 56px 20px 62px; }
  .about-hero-copy { max-width: none; justify-self: stretch; }
  .about-hero-copy h1 { max-width: 680px; font-size: clamp(38px, 10vw, 50px); }
  .about-hero-intro { padding-left: 18px; }
  .about-hero-media { max-width: 720px; justify-self: stretch; }
  .about-hero-media::before { top: -12px; right: -10px; }
  .about-snapshot-section, .about-products-section, .about-audience-section, .about-advantages-section { padding: 68px 20px; }
  .about-snapshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-snapshot-grid article { border-bottom: 1px solid #dce4ea; }
  .about-snapshot-grid article:nth-child(2) { border-right: 0; }
  .about-snapshot-grid article:nth-child(n+3) { border-bottom: 0; }
  .about-product-grid { grid-template-columns: 1fr; }
  .about-product-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:nth-child(-n+3) { border-bottom: 1px solid #cfd9e1; }
  .about-product-grid article:last-child { border-bottom: 0; }
  .about-product-grid span { margin-bottom: 22px; }
  .about-audience-section { grid-template-columns: 1fr; gap: 52px; }
  .about-audience-media { max-width: 720px; justify-self: stretch; }
  .about-audience-copy { max-width: 680px; }
  .about-advantages-grid { grid-template-columns: 1fr; }
  .about-advantages-grid article { min-height: 0; }
  .about-final-cta { grid-template-columns: 1fr; gap: 38px; padding: 64px 20px; }
  .about-final-cta-actions { padding: 28px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.2); border-left: 0; }
  .site-header { min-height: 72px; padding: 8px 5vw; }
  .hero, .page-hero, .split, .split.reverse, .inquiry-band, .contact-layout {
    grid-template-columns: 1fr;
  }
  .home-hero { display: flex; flex-direction: column; height: auto; min-height: auto; max-height: none; padding: 0; gap: 0; overflow: visible; }
  .home-hero::after { display: none; }
  .home-hero .hero-media { position: relative; inset: auto; order: 2; width: 100%; background: #f3f5f7; }
  .home-hero .hero-media img { width: 100%; height: auto; aspect-ratio: 8 / 5; object-fit: contain; object-position: center; }
  .home-hero .hero-text { order: 1; width: 100%; margin-left: 0; padding: 42px 5vw 36px; }
  .home-hero h1 { font-size: clamp(36px, 10vw, 50px); line-height: 1.08; }
  .home-hero .hero-description { font-size: 16px; line-height: 1.65; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .hero-stats div { padding: 0 14px 0 0; }
  .hero-stats div:nth-child(2) { padding-right: 0; border-right: 0; }
  .oem-customization-section { grid-template-columns: 1fr; gap: 28px; }
  .customization-image-wrap { max-width: 100%; height: auto; min-height: 0; padding: 16px; }
  .customization-image-wrap .rounded-img { width: 100%; height: auto; max-height: 360px; object-fit: contain; }
  .hero, .page-hero { padding-top: 52px; min-height: auto; }
  .factory-page-hero { gap: 36px; padding: 52px 20px 60px; }
  .factory-hero-copy { max-width: none; }
  .factory-hero-copy > p { font-size: 16px; line-height: 1.65; }
  .page-hero.factory-page-hero > img { width: 100%; height: auto; max-height: none; aspect-ratio: auto; object-fit: contain; }
  .hero.home-hero { padding-top: 0; }
  .page-hero .lotion-hero-image,
  .page-hero .foam-hero-image { width: 100%; height: auto; max-height: 500px; object-fit: contain; }
  .card-grid.three, .card-grid.four, .card-grid.five, .process-grid { grid-template-columns: 1fr; }
  .series-quick-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: 1fr; }
  .foam-series-tabs { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
  .foam-series-tab { width: 100%; }
  .foam-series-intro { margin-bottom: 20px; }
  .foam-output-heading { margin-top: 10px; padding-top: 16px; }
  .series-quick-nav > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .series-quick-nav strong { margin-right: 0; }
  .series-heading { align-items: flex-start; }
  .site-footer { grid-template-columns: 1fr; }
  .floating-contact { right: 16px; bottom: 20px; gap: 10px; }
  .floating-contact-button { width: 52px; height: 52px; }
  .floating-contact-popup { right: calc(100% + 10px); width: min(240px, calc(100vw - 96px)); }
  .contact-qr-section { padding: 30px 24px; }
  .home-products-section { padding-top: 52px; padding-bottom: 72px; }
  .home-products-section .section-heading { margin-bottom: 36px; }
.home-oem-section, .home-inspection-section, .home-inspection-section + .faq-section { padding: 48px 20px; }
  .home-oem-section .mini-card { min-height: 0; padding: 28px 22px; }
  .home-inspection-grid .inspection-card > img { height: 210px; }
  .faq-section .section-heading { margin-bottom: 22px; }
.home-inquiry-band { grid-template-columns: 1fr; gap: 28px; margin-bottom: 0; padding: 48px 20px; }
  .product-category-tags { flex-wrap: wrap; }
  .site-footer { padding-bottom: 100px; }
  .manufacturing-strength-section { padding: 40px 20px 52px; }
  .manufacturing-strength-inner { grid-template-columns: 1fr; grid-template-areas: "heading" "visual" "details"; gap: 28px; }
  .manufacturing-heading { align-self: auto; }
  .manufacturing-heading h2 { font-size: clamp(32px, 8vw, 42px); line-height: 1.15; }
  .manufacturing-visual { overflow: visible; }
  .manufacturing-collage { height: auto; gap: 10px; }
  .manufacturing-collage img { height: auto; aspect-ratio: 4 / 3; border-radius: 10px; object-position: center; }
  .manufacturing-collage .factory-building-image { object-position: center 68%; }
  .manufacturing-feature-grid { grid-template-columns: 1fr; }
  .manufacturing-feature-grid article { padding: 22px; }
  .manufacturing-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .factory-process-section { padding: 48px 20px 24px; }
  .factory-process-heading { margin-bottom: 36px; }
  .factory-process-heading h2 { font-size: clamp(34px, 9vw, 44px); line-height: 1.12; }
  .factory-process-heading > p:last-child { font-size: 16px; line-height: 1.6; }
  .factory-process-grid { grid-template-columns: 1fr; gap: 16px; }
  .factory-process-grid .process-card { padding: 24px; }
  .factory-process-grid .process-card h3 { min-height: 0; }
}

@media (max-width: 919px) {
.tooling-gallery {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tooling-gallery .rounded-img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
}

.tooling-gallery .tooling-main {
  grid-row: 1 / 3;
}

/* Factory page lower capability, inquiry and footer refinements */
.factory-capability-section { padding: 80px 5vw; background: #fff; }

.factory-capability-section.factory-capability-muted { background: #f7f9fb; }

.factory-capability-inner { width: 100%; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: clamp(56px, 4.4vw, 72px); align-items: center; }

.factory-capability-copy { max-width: 640px; }

.factory-capability-copy h2 { max-width: 18ch; margin: 0 0 20px; color: var(--brand-dark); font-size: clamp(32px, 2.5vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }

.factory-capability-copy p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.7; }

.factory-capability-copy p + p { margin-top: 16px; }

.factory-single-media { overflow: hidden; border-radius: 12px; background: #eef2f5; }

.factory-single-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }

.injection-capability-section .factory-capability-inner { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.08fr); }

.injection-capability-section { padding-top: 40px; }

.injection-capability-section .factory-single-media { width: 100%; max-width: 540px; justify-self: start; overflow: visible; background: transparent; }

.injection-capability-section .factory-single-media img { width: 100%; height: auto; aspect-ratio: auto; border-radius: 12px; object-fit: contain; object-position: center; }

.injection-capability-section .factory-capability-copy { width: 100%; max-width: 700px; }

.injection-capability-section .factory-capability-copy h2 { max-width: 22ch; }

.injection-capability-section .factory-capability-data li { padding-right: 14px; padding-left: 14px; }

.injection-capability-section .factory-capability-data li:first-child { padding-left: 0; }

.factory-capability-data { display: flex; margin: 28px 0 0; padding: 0; list-style: none; }

.factory-capability-data li { flex: 1 1 0; min-width: 0; padding: 0 18px; border-left: 1px solid var(--line); }

.factory-capability-data li:first-child { padding-left: 0; border-left: 0; }

.factory-capability-data strong, .factory-capability-data span { display: block; }

.factory-capability-data strong { margin-bottom: 5px; color: var(--brand-dark); font-size: 15px; font-weight: 700; }

.factory-capability-data span { color: var(--text); font-size: 14px; line-height: 1.45; }

.factory-media-collage { height: 520px; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; }

.factory-media-collage img { display: block; width: 100%; height: 100%; min-height: 0; border-radius: 12px; object-fit: cover; object-position: center; }

.factory-media-collage .tooling-main { grid-row: 1 / 3; }

.tooling-gallery .tooling-main { object-position: center; }

.automatic-assembly-section { min-height: 0; max-height: 650px; padding-top: 44px; padding-bottom: 44px; }

.automatic-assembly-section .factory-capability-inner { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; }

.automatic-assembly-section .factory-capability-copy { max-width: 660px; align-self: center; }

.automatic-assembly-section .factory-capability-copy h2 { max-width: 22ch; }

.automatic-assembly-grid { display: grid; width: min(100%, 520px); grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, 200px); gap: 20px; align-self: center; justify-self: center; }

.automatic-assembly-card { display: flex; width: 100%; height: 180px; align-items: center; justify-content: center; overflow: hidden; border-radius: 16px; background: #f7f9fb; box-shadow: 0 8px 22px rgba(15, 31, 44, 0.08); }

.automatic-assembly-card img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; }

.automatic-assembly-grid .automatic-assembly-main { grid-column: 1; grid-row: 1 / 3; width: 100%; height: 420px; }

.automatic-assembly-grid .automatic-assembly-card:not(.automatic-assembly-main) { width: 100%; height: 200px; }

.final-inspection-section { padding-top: 76px; padding-bottom: 76px; }

.final-inspection-section .factory-capability-inner { grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: clamp(56px, 4.4vw, 72px); align-items: center; }

.final-inspection-section .factory-capability-copy { width: 100%; max-width: 620px; }

.final-inspection-section .factory-capability-copy h2 { max-width: 540px; margin-bottom: 24px; font-size: clamp(38px, 3vw, 48px); line-height: 1.12; letter-spacing: -0.02em; }

.final-inspection-section .factory-capability-copy p { max-width: 620px; font-size: 17px; line-height: 1.7; }

.final-inspection-section .factory-capability-copy p + p { margin-top: 18px; }

.final-inspection-media { overflow: hidden; border-radius: 12px; background: #eef2f5; }

.final-inspection-media img { display: block; width: 100%; height: auto; border-radius: 12px; object-fit: contain; object-position: center; }

.factory-inquiry-band { display: block; padding: 60px 5vw; }

.factory-inquiry-inner { width: 100%; max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(48px, 5vw, 76px); align-items: center; }

.factory-inquiry-copy { min-width: 0; }

.factory-inquiry-inner h2 { max-width: 820px; min-width: 520px; margin: 0 0 20px; color: #16384d; font-size: clamp(38px, 3vw, 54px); line-height: 1.1; letter-spacing: -0.02em; }

.factory-inquiry-copy > p { max-width: 720px; margin: 0; color: #526875; font-size: 17px; line-height: 1.65; }

.factory-project-support { width: 100%; max-width: 420px; padding-left: clamp(32px, 3vw, 48px); border-left: 1px solid #d3dee5; }

.factory-support-label { margin: 0 0 16px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; }

.factory-project-support ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }

.factory-project-support li { position: relative; padding-left: 16px; color: #dce6ee; font-size: 15px; line-height: 1.5; }

.factory-project-support li::before { content: ""; position: absolute; top: 0.68em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.7); }

.factory-inquiry-button { display: inline-flex; width: 220px; min-height: 52px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 7px; background: #fff; color: var(--brand-dark); font-size: 14px; font-weight: 700; text-align: center; transition: background-color 0.2s ease, transform 0.2s ease; }

.factory-inquiry-button:hover, .factory-inquiry-button:focus-visible { background: #edf3f7; transform: translateY(-1px); }

.factory-faq-section { padding: 64px 5vw 56px; background: #fff; }

.factory-faq-inner { width: 100%; max-width: 1000px; margin: 0 auto; }

.factory-faq-heading { margin-bottom: 32px; text-align: center; }

.factory-faq-heading .eyebrow { margin-bottom: 8px; }

.factory-faq-heading h2 { margin: 0; color: var(--brand-dark); font-size: clamp(34px, 3vw, 46px); line-height: 1.15; letter-spacing: -0.02em; }

.factory-faq-intro { max-width: 680px; margin: 16px auto 0; color: #5f7180; font-size: 16px; line-height: 1.65; }

.factory-faq-list { display: grid; gap: 12px; }

.factory-faq-item { overflow: hidden; padding: 0; border: 1px solid #d7e2eb; border-radius: 12px; background: #fff; box-shadow: 0 3px 12px rgba(15,31,44,0.04); transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease; }

.factory-faq-item:hover, .factory-faq-item[open] { border-color: #b8cad8; box-shadow: 0 10px 28px rgba(15,31,44,0.08); transform: translateY(-1px); }

.factory-faq-item summary { position: relative; display: grid; min-height: 68px; grid-template-columns: 48px minmax(0, 1fr) 32px; gap: 14px; align-items: center; padding: 0 22px; color: var(--brand-dark); cursor: pointer; list-style: none; transition: background-color 0.2s ease; }

.factory-faq-item summary::-webkit-details-marker { display: none; }

.factory-faq-item summary::after { content: "+"; display: inline-flex; width: 30px; height: 30px; grid-column: 3; grid-row: 1; align-items: center; justify-content: center; border: 1px solid #c9d7e2; border-radius: 50%; background: #f5f8fa; color: var(--brand-dark); font-size: 21px; font-weight: 400; line-height: 1; transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.25s ease; }

.factory-faq-item:hover summary::after { border-color: var(--brand-dark); background: var(--brand-dark); color: #fff; }

.factory-faq-item[open] summary::after { border-color: var(--brand-dark); background: var(--brand-dark); color: #fff; transform: rotate(45deg); }

.factory-faq-number { color: #71879a; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }

.factory-faq-question { font-size: 17px; font-weight: 700; line-height: 1.4; }

.factory-faq-answer { margin: 0 22px 0 84px; padding: 0 42px 20px 0; border-top: 1px solid #e8eef3; }

.factory-faq-answer p { max-width: 780px; margin: 16px 0 0; color: var(--text); font-size: 15px; line-height: 1.7; animation: factory-faq-answer-in 0.25s ease both; }

@keyframes factory-faq-answer-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.factory-faq-cta { display: flex; gap: 36px; align-items: center; justify-content: space-between; margin-top: 32px; padding: 26px 30px; border: 1px solid #d7e2eb; border-left: 4px solid var(--brand-dark); border-radius: 12px; background: #f4f7f9; }

.factory-faq-cta h3 { margin: 0 0 5px; color: var(--brand-dark); font-size: 21px; line-height: 1.3; }

.factory-faq-cta p { margin: 0; color: var(--text); font-size: 15px; line-height: 1.6; }

.factory-faq-cta .btn { flex: 0 0 auto; white-space: nowrap; }

.site-footer.factory-footer { display: block; padding: 44px 5vw 0; }

.factory-footer-main, .factory-footer-locations, .factory-footer-bottom { width: 100%; max-width: 1500px; margin-right: auto; margin-left: auto; }

.factory-footer-main { display: grid; grid-template-columns: minmax(300px, 1.55fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr) minmax(220px, 1fr); gap: clamp(36px, 3.2vw, 52px); align-items: start; }

.factory-footer h3, .factory-footer h4 { margin: 0 0 18px; color: #fff; font-size: 16px; font-weight: 700; }

.factory-footer-company h3 { max-width: 430px; margin-bottom: 8px; font-size: 17px; line-height: 1.4; }

.factory-footer-company p { max-width: 460px; }

.factory-footer-company .factory-footer-positioning { margin-bottom: 10px; color: #fff; font-size: 14px; font-weight: 600; }

.factory-footer-oem { display: inline-flex; margin-top: 16px; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; }

.factory-footer p, .factory-footer a, .factory-footer dd { color: #cfd9df; font-size: 14px; line-height: 1.6; }

.factory-footer p { margin: 0; }

.factory-footer a { display: block; margin: 10px 0; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.2s ease, text-decoration-color 0.2s ease; }

.factory-footer a:hover, .factory-footer a:focus-visible { color: #fff; text-decoration-color: currentColor; }

.factory-footer-contact dl, .factory-footer-contact dd { margin: 0; }

.factory-footer-manufacturing ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }

.factory-footer-manufacturing li { color: #cfd9df; font-size: 14px; line-height: 1.55; }

.factory-footer-contact dl { display: grid; gap: 12px; }

.factory-footer-contact dt { margin-bottom: 4px; color: #fff; font-size: 14px; font-weight: 600; }

.factory-footer-contact a { margin: 0; overflow-wrap: anywhere; }

.factory-footer-contact .factory-footer-quote { display: inline-flex; min-height: 42px; margin-top: 18px; align-items: center; justify-content: center; padding: 9px 16px; border: 1px solid rgba(255,255,255,0.48); border-radius: 6px; color: #fff; font-size: 13px; font-weight: 700; }

.factory-footer-contact .factory-footer-quote:hover, .factory-footer-contact .factory-footer-quote:focus-visible { background: #fff; color: var(--brand-dark); text-decoration-color: transparent; }

.factory-footer-locations { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); }

.factory-footer-locations h4 { margin-bottom: 12px; }

.factory-location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(44px, 4vw, 56px); }

.factory-location-grid strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }

.factory-location-grid p { max-width: 540px; }

.factory-location-grid a { display: inline-block; margin-top: 6px; }

.factory-footer-bottom { margin-top: 20px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.12); color: #aebec8; font-size: 13px; line-height: 1.5; }
}

@media (max-width: 919px) {
.factory-capability-section { padding: 68px 5vw; }
  .factory-capability-inner { grid-template-columns: 1fr; gap: 36px; }
  .injection-capability-section .factory-capability-inner { grid-template-columns: 1fr; }
  .injection-capability-section { padding-top: 36px; }
  .injection-capability-section .factory-single-media { width: 100%; max-width: 560px; justify-self: center; }
  .automatic-assembly-section .factory-capability-inner { grid-template-columns: 1fr; }
  .automatic-assembly-section { max-height: none; min-height: 0; }
  .automatic-assembly-section .factory-capability-copy { max-width: 760px; }
  .automatic-assembly-grid { width: min(100%, 520px); max-width: 520px; }
  .factory-capability-copy { max-width: 760px; }
  .factory-capability-inner.media-first .factory-capability-copy, .factory-capability-section.media-first .factory-capability-copy { order: 1; }
  .factory-capability-section.media-first .factory-capability-media, .factory-capability-section.media-first .factory-media-collage { order: 2; }
  .factory-capability-section.media-first .final-inspection-media { order: 2; }
  .final-inspection-section { padding-top: 60px; padding-bottom: 60px; }
  .final-inspection-section .factory-capability-inner { grid-template-columns: 1fr; }
  .factory-media-collage { height: 500px; }
  .factory-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 48px; }
  .factory-inquiry-band { padding-top: 60px; padding-bottom: 60px; }
  .factory-inquiry-inner { gap: 40px; }
  .factory-inquiry-inner h2 { min-width: 0; font-size: clamp(36px, 4.4vw, 46px); }
}

@media (max-width: 919px) {
.tooling-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .tooling-gallery .tooling-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .tooling-gallery .rounded-img:not(.tooling-main) {
    aspect-ratio: 4 / 3;
  }
  .factory-capability-section { padding: 52px 20px; }
  .final-inspection-section { padding: 44px 20px; }
  .final-inspection-section .factory-capability-copy h2 { margin-bottom: 22px; font-size: clamp(32px, 9vw, 38px); }
  .final-inspection-section .factory-capability-copy p { font-size: 16px; line-height: 1.65; }
  .injection-capability-section { padding-top: 36px; }
  .factory-capability-inner { gap: 28px; }
  .factory-capability-copy h2 { margin-bottom: 16px; font-size: clamp(30px, 8vw, 38px); }
  .factory-capability-copy p { font-size: 16px; line-height: 1.65; }
  .factory-capability-data { flex-direction: column; gap: 0; margin-top: 24px; }
  .factory-capability-data li { padding: 12px 0; border-top: 1px solid var(--line); border-left: 0; }
  .factory-capability-data li:first-child { padding-top: 0; border-top: 0; }
  .factory-media-collage { height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto; gap: 12px; }
  .factory-media-collage .tooling-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16 / 10; }
  .factory-media-collage img:not(.tooling-main) { height: auto; aspect-ratio: 4 / 3; }
  .automatic-assembly-grid { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-template-rows: repeat(2, 200px); gap: 20px; }


  .factory-inquiry-band { padding: 48px 20px; }
  .factory-inquiry-inner { grid-template-columns: 1fr; gap: 28px; }
  .factory-inquiry-inner h2 { max-width: 620px; min-width: 0; margin-bottom: 18px; font-size: clamp(32px, 9vw, 38px); }
  .factory-inquiry-copy > p { font-size: 16px; }
  .factory-inquiry-button { width: 100%; max-width: 320px; }
  .factory-faq-section { padding: 52px 20px 46px; }
  .factory-faq-heading { margin-bottom: 24px; text-align: left; }
  .factory-faq-item summary { grid-template-columns: 38px minmax(0, 1fr) 24px; gap: 10px; padding: 10px 16px; }
  .factory-faq-question { font-size: 16px; }
  .factory-faq-answer { margin-right: 16px; margin-left: 64px; padding-right: 28px; }
  .factory-faq-cta { align-items: flex-start; flex-direction: column; gap: 18px; padding: 22px; }
  .factory-faq-cta .btn { width: 100%; max-width: 260px; }
  .site-footer.factory-footer { padding: 40px 20px 0; }
  .factory-footer-main { grid-template-columns: 1fr; gap: 34px; }
  .factory-footer-locations { margin-top: 26px; padding-top: 22px; }
  .factory-location-grid { grid-template-columns: 1fr; gap: 26px; }
  .factory-footer-bottom { margin-top: 26px; padding: 17px 0; }
}

@media (max-width: 919px) {
.factory-manufacturing-hero { min-height: 650px; padding: 64px 20px; }
  .factory-manufacturing-hero::after { background: linear-gradient(90deg, rgba(8,29,44,0.88) 0%, rgba(8,29,44,0.68) 72%, rgba(8,29,44,0.42) 100%); }
  .factory-manufacturing-hero-copy { max-width: 520px; }
  .factory-manufacturing-hero-copy h1 { font-size: clamp(38px, 8vw, 48px); }
}

@media (max-width: 919px) and (max-width: 520px) {
.factory-manufacturing-hero { min-height: 600px; padding: 52px 20px 58px; }
  .factory-manufacturing-hero::after { background: rgba(8,29,44,0.74); }
  .factory-manufacturing-hero-media img { object-position: center; }
  .factory-manufacturing-hero-copy .eyebrow { margin-bottom: 16px; font-size: 11px; }
  .factory-manufacturing-hero-copy h1 { margin-bottom: 26px; font-size: clamp(34px, 9.5vw, 42px); }
  .factory-manufacturing-hero-copy > p { font-size: 15px; line-height: 1.65; }
  .factory-manufacturing-hero-copy .btn { width: auto; min-width: 210px; margin-top: 25px; }
}

@media (max-width: 919px) {
/* About page — premium B2B manufacturer direction */
.about-page {
  --about-navy: #102a3d;
  --about-ink: #173247;
  --about-copy: #536573;
  --about-line: #d7e0e6;
  --about-soft: #f3f6f7;
}

.about-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #315d79;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.about-page .eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #8aa3b4;
}

.about-page .about-hero {
  grid-template-columns: minmax(0, 700px) minmax(0, 866px);
  gap: clamp(80px, 7.5vw, 144px);
  align-items: start;
  justify-content: space-between;
  min-height: 684px;
  padding: 80px 5.68vw 88px 5vw;
  background: #f8fafb;
}

.about-page .about-hero::after {
  content: none;
}

.about-hero-copy {
  width: 100%;
  max-width: 640px;
  justify-self: start;
}

.about-hero-copy h1.eyebrow {
  margin: 3px 0 27px;
  color: #163f5c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.about-hero-copy h1.eyebrow::before { content: none; }

.about-hero-intro {
  max-width: 640px;
  padding: 0;
  border: 0;
}

.about-hero-intro p {
  max-width: none;
  margin-bottom: 20px;
  color: #29475c;
  font-size: 17px;
  line-height: 1.68;
}

.about-hero-intro p:first-child {
  color: #29475c;
  font-size: 17px;
}

.about-hero-intro p:last-child { margin-bottom: 0; }

.about-hero-actions { margin-top: 24px; }

.about-hero-actions .btn {
  min-width: 238px;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 7px;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.about-hero-actions .btn.primary {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: none;
}

.about-hero-actions .btn.primary:hover,
.about-hero-actions .btn.primary:focus-visible {
  background: var(--brand-dark);
  box-shadow: none;
}

.about-hero-media {
  width: 100%;
  max-width: 866px;
  padding: 0;
  justify-self: end;
}

.about-hero-media::before {
  content: none;
}

.about-page .about-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1627 / 967;
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(17, 42, 59, 0.08);
  filter: none;
  transform: none;
}

.about-section-intro { max-width: 590px; }

.about-section-intro.centered { max-width: 790px; margin-bottom: 58px; }

.about-section-intro .eyebrow { margin-bottom: 14px; }

.about-section-intro h2,
.about-audience-copy h2 {
  color: var(--about-navy);
  font-size: clamp(38px, 3.25vw, 52px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.about-section-intro > p:last-child { color: var(--about-copy); font-size: 16px; line-height: 1.75; }

.about-snapshot-section {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(64px, 6vw, 104px);
  padding: 108px 5.5vw 112px;
  background: #fff;
}

.about-snapshot-section .about-section-intro {
  max-width: 680px;
  padding-left: 26px;
  border-left: 1px solid #9eb0bc;
}

.about-snapshot-section .about-section-intro .eyebrow { margin-bottom: 16px; }

.about-snapshot-section .about-section-intro h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(32px, 2.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.about-snapshot-section .about-section-intro > p {
  max-width: 64ch;
  margin-bottom: 14px;
  color: var(--about-copy);
  font-size: 16px;
  line-height: 1.72;
}

.about-snapshot-section .about-section-intro > p:last-child { margin-bottom: 0; }

.about-snapshot-grid {
  position: relative;
  border: 0;
  border-top: 1px solid #aebdc6;
  border-bottom: 1px solid #d8e0e5;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.about-snapshot-grid::before {
  content: "MANUFACTURING CAPACITY";
  position: absolute;
  top: -30px;
  right: 0;
  color: #879aa7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-snapshot-grid article {
  min-height: 178px;
  padding: 43px 24px 32px;
  border-right: 1px solid #d8e0e5;
}

.about-snapshot-grid article:first-child { padding-left: 0; }

.about-snapshot-grid article:last-child { padding-right: 0; }

.snapshot-value {
  margin-bottom: 17px;
  color: var(--about-navy);
  font-size: clamp(42px, 3.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.snapshot-value small { margin-left: 4px; font-size: 0.42em; font-weight: 600; letter-spacing: 0; vertical-align: 0.45em; }

.about-snapshot-grid h3 { color: #617583; font-size: 11px; letter-spacing: 0.13em; }

.about-products-section {
  position: relative;
  padding: 112px 5.5vw 120px;
  background: #f5f7f8;
  color: var(--about-ink);
}

.about-products-section::before {
  content: none;
}

.about-products-section .about-section-intro .eyebrow { color: #315d79; }

.about-products-section .about-section-intro .eyebrow::before { background: #8aa3b4; }

.about-products-section .about-section-intro h2 { color: #102a43; }

.about-products-section .about-section-intro > p:last-child { max-width: 720px; margin-inline: auto; color: #5b6b78; }

.about-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1460px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.about-product-grid article {
  min-height: 300px;
  padding: 34px 30px 38px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-product-grid article:first-child {
  padding: 34px 30px 38px;
  border-color: #e5e7eb;
  background: #fff;
}

.about-product-grid article:last-child { padding-right: 30px; }

.about-product-grid article:hover { border-color: #cbd5dc; box-shadow: 0 14px 32px rgba(16,42,67,0.08); transform: translateY(-3px); }

.about-product-grid span,
.about-product-grid article:first-child span { margin-bottom: 52px; color: #829ab1; font-size: 11px; }

.about-product-grid h3,
.about-product-grid article:first-child h3 { color: #102a43; font-size: 23px; line-height: 1.22; }

.about-product-grid article:first-child h3 { max-width: 320px; color: #102a43; font-size: 23px; }

.about-product-grid p,
.about-product-grid article:first-child p { max-width: 34ch; color: #486581; font-size: 15px; line-height: 1.72; }

.about-product-grid article:first-child p { max-width: 34ch; color: #486581; font-size: 15px; }

.about-product-grid article::after { content: none; }

.about-audience-section { padding: 124px 5.5vw 132px; }

.about-audience-media { max-width: 760px; padding: 0 14px 14px 0; }

.about-page .about-audience-media img { border-radius: 3px; box-shadow: 0 24px 58px rgba(16, 42, 61, 0.12); }

.about-audience-media::after {
  left: 14px;
  bottom: 0;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: 1px solid #b8c6cf;
  border-radius: 3px;
  background: transparent;
}

.about-audience-copy { max-width: 620px; }

.about-audience-copy h2 { margin-bottom: 34px; }

.about-audience-list { gap: 0; margin-bottom: 34px; border-top: 1px solid var(--about-line); }

.about-audience-list span {
  width: 50%;
  padding: 15px 12px 15px 20px;
  border: 0;
  border-bottom: 1px solid var(--about-line);
  border-radius: 0;
  background: transparent;
  font-size: 14px;
}

.about-audience-list span::before { left: 1px; width: 6px; height: 1px; border-radius: 0; }

.about-audience-summary { color: var(--about-copy); }

.about-advantages-section {
  padding: 118px 5.5vw 126px;
  background: var(--about-soft);
}

.about-advantages-grid { gap: 34px 54px; }

.about-advantages-grid article { min-height: 174px; padding: 29px 0 22px; border-top-color: #bac8d1; }

.about-advantages-grid article > span { color: #718895; }

.about-advantages-grid h3 { font-size: 21px; }

.about-advantages-grid p { color: var(--about-copy); }

.about-final-cta {
  padding: 96px 5.5vw;
  background: linear-gradient(118deg, #102a3d 0%, #183b52 100%);
}

.about-final-cta .eyebrow::before { background: #6f8b9e; }

.about-final-cta-actions .btn { border-radius: 3px; }

.about-cta-trust li::before { content: "—"; }
}

@media (max-width: 919px) {
.about-page .about-hero { grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr); gap: 44px; min-height: auto; padding-inline: 5vw; }
  .about-snapshot-grid article { padding-inline: 20px; }
  .about-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .about-product-grid article:first-child { padding: 34px 30px 38px; border-bottom-color: #e5e7eb; }
  .about-product-grid article:nth-child(2) { padding-left: 30px; }
}

@media (max-width: 919px) {
.about-page .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    padding: 62px 20px 70px;
    background: #f8fafb;
  }
  .about-hero-copy { max-width: 680px; justify-self: stretch; }
  .about-hero-media { max-width: 720px; padding: 0; }
  .about-snapshot-section,
  .about-products-section,
  .about-audience-section,
  .about-advantages-section { padding: 84px 20px; }
  .about-snapshot-section { gap: 68px; }
  .about-snapshot-grid article { min-height: 150px; padding: 34px 22px; }
  .about-snapshot-grid article:first-child { padding-left: 0; }
  .about-snapshot-grid article:nth-child(2) { padding-right: 0; }
  .about-snapshot-grid article:nth-child(3) { padding-left: 0; }
  .about-product-grid { grid-template-columns: 1fr; }
  .about-product-grid article,
  .about-product-grid article:first-child,
  .about-product-grid article:nth-child(2),
  .about-product-grid article:last-child { min-height: 0; padding: 34px 28px 38px; border: 1px solid #e5e7eb; }
  .about-product-grid article:first-child { border-color: #e5e7eb; }
  .about-product-grid span,
  .about-product-grid article:first-child span { margin-bottom: 24px; }
  .about-audience-list span { width: 100%; }
  .about-advantages-grid { gap: 18px; }
  .about-final-cta { padding: 76px 20px; }
}

@media (max-width: 919px) and (max-width: 520px) {
.about-hero-actions { align-items: stretch; flex-direction: column; }
  .about-hero-actions .btn { width: 100%; }
  .about-snapshot-grid { grid-template-columns: 1fr; }
  .about-snapshot-grid article,
  .about-snapshot-grid article:first-child,
  .about-snapshot-grid article:nth-child(2),
  .about-snapshot-grid article:nth-child(3) { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid #d8e0e5; }
  .about-snapshot-grid article:last-child { border-bottom: 0; }
  .snapshot-value { margin-bottom: 10px; }
}

@media (max-width: 919px) {
html { scroll-behavior: smooth; }

html:has(body.continuous-spray-page) { scroll-padding-top: 96px; }

img { object-fit: cover; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(37, 70, 95, 0.35);
  outline-offset: 3px;
}

.site-header {
  min-height: var(--header-height);
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(18px, 2.4vw, 36px);
  padding: 10px clamp(24px, 4vw, 64px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: #cbd7e0;
  box-shadow: 0 5px 18px rgba(15, 31, 44, 0.08);
}

.logo { grid-column: 1; justify-self: start; margin-right: 0; font-size: 22px; }

.logo img { width: 52px; height: 52px; }

.site-nav { grid-column: 2; justify-self: center; font-size: 14px; }

.nav-list { gap: clamp(14px, 1.5vw, 24px); }

.nav-list > .nav-item > a,
.nav-primary > a { min-height: 44px; padding: 10px 0; font-size: 14px; }

.dropdown-toggle { width: 44px; height: 44px; }

.nav-cta { min-height: 44px; }

.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--brand);
  cursor: pointer;
}

.nav-toggle-icon { display: grid; width: 20px; gap: 4px; }

.nav-toggle-icon span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; }

.nav-toggle-label { font-size: 13px; font-weight: 700; }

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

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

.footer-accordion-trigger { display: none; }

.footer-accordion-panel { display: contents; }

.menu-open { overflow: hidden; }

.home-hero {
  height: clamp(600px, calc(100vh - var(--header-height)), 720px);
  min-height: 600px;
  max-height: 720px;
}

.home-hero .hero-text {
  width: min(720px, 46vw);
  margin-left: clamp(32px, 6vw, 96px);
  padding: 44px 0 52px;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 3.1vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-wrap: balance;
}

.home-hero .hero-description { max-width: 590px; font-size: 16px; line-height: 1.55; }

.home-hero .button-row { margin-top: 24px; }

.home-hero .btn { min-height: 46px; }

.hero-purchase-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  margin: 17px 0 0;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-purchase-info span[aria-hidden="true"] { color: var(--accent); font-weight: 400; }

.hero-stats { margin-top: 28px; padding-top: 20px; }

.hero-stats strong { font-size: clamp(21px, 1.8vw, 28px); }

.hero-stats span { font-size: 13px; }

.section { padding-inline: var(--section-inline); }

.section-heading { max-width: 900px; }

.section-heading > p:last-child { font-size: 16px; line-height: 1.65; }

.eyebrow { font-size: 12px; line-height: 1.4; letter-spacing: 0.08em; }

.btn,
.btn.small { min-height: 44px; }

.btn { transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }

.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }

.btn.primary:hover,
.btn.primary:focus-visible { background: var(--brand-dark); border-color: var(--brand-dark); }

.btn.secondary:hover,
.btn.secondary:focus-visible { background: #edf3f7; border-color: var(--brand-dark); color: var(--brand-dark); }
.home-product-grid,
.home-oem-section .card-grid.five,
.home-inspection-grid {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  justify-content: center;
}

.home-oem-section .card-grid.five {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 22px;
}

.home-oem-section .card-grid.five .mini-card {
  flex: 1 1 0;
  min-width: 0;
}

.home-product-grid { grid-auto-rows: 1fr; }

.home-product-grid .product-card { min-height: 500px; padding: 24px; }

.home-product-grid .product-image-link { aspect-ratio: 4 / 3; }

.home-product-grid .product-image-link img { padding: 10px; object-fit: contain; }

.home-product-grid .product-card > p { font-size: 15px; line-height: 1.65; }

/* Continuous spray bottle series */
.cs-page { overflow: clip; }

.cs-container { width: min(100% - 48px, 1440px); margin-inline: auto; }

.continuous-spray-page .header-cta:hover, .continuous-spray-page .header-cta:focus-visible { background: #575260; border-color: #575260; }

.cs-hero { display: flex; min-height: max(680px, calc(92svh - var(--header-height))); align-items: center; padding: clamp(56px, 6vw, 92px) 0 clamp(64px, 7vw, 104px); background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 28%, transparent 52%), linear-gradient(105deg, #68758b 0%, #96a2b5 48%, #ccd5df 100%); }

.cs-hero-layout { display: grid; width: 100%; grid-template-columns: minmax(0, 42fr) minmax(0, 58fr); gap: clamp(48px, 7vw, 96px); align-items: center; }

.cs-hero-copy { position: relative; z-index: 2; width: 660px; max-width: 660px; }

.cs-hero-copy .eyebrow { margin-bottom: 26px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 600; letter-spacing: .16em; }

.cs-hero-copy h1 { max-width: 660px; margin-bottom: 11px; color: #fff; font-size: clamp(50px, 3.2vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; white-space: nowrap; }

.cs-hero-copy .cs-hero-subtitle { margin: 0 0 26px; color: rgba(255, 255, 255, .90); font-size: 20px; font-weight: 500; line-height: 1.3; }

.cs-hero-copy .cs-hero-description { max-width: 500px; margin: 0 0 30px; color: rgba(255, 255, 255, .90); font-size: 17px; font-weight: 400; line-height: 1.65; }

.cs-hero-copy .button-row { gap: 12px; margin-top: 0; }

.cs-hero-copy .btn { min-height: 54px; padding: 14px 30px; border-radius: 11px; font-size: 15px; font-weight: 600; }

.cs-hero-copy .btn.primary { background: #123F59; border-color: #123F59; color: #FFFFFF; }

.cs-hero-copy .btn.primary:hover, .cs-hero-copy .btn.primary:focus-visible { background: #0D3146; border-color: #0D3146; }

.cs-hero-copy .btn.secondary { background: transparent; border: 1px solid rgba(255,255,255,0.75); color: #FFFFFF; }

.cs-hero-copy .btn.secondary:hover, .cs-hero-copy .btn.secondary:focus-visible { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); color: #FFFFFF; }

.cs-hero-visual { position: relative; z-index: 1; min-width: 0; }

.cs-product-stage { position: relative; width: 100%; height: clamp(500px, 43vw, 650px); overflow: visible; transform: translateX(8px) scale(1.10); transform-origin: center bottom; }

.cs-product-stage::after { display: none; }

.cs-hero-product { position: absolute; left: 50%; bottom: 0; display: block; width: min(100%, 650px); height: 100%; margin: 0; transform: translate(-50%, 14px); opacity: 0; animation: cs-product-enter .7s cubic-bezier(.22, .61, .36, 1) 80ms forwards; }

.cs-hero-product::after { content: ""; position: absolute; left: 23%; bottom: 4%; z-index: 0; width: 54%; height: 3.8%; border-radius: 50%; background: rgba(57, 70, 82, .14); filter: blur(12px); transform: scaleX(1.1); }

.cs-hero-product img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; background: transparent; filter: drop-shadow(0 18px 22px rgba(35, 55, 75, 0.10)); }

.cs-hero-product { z-index: 1; }

@keyframes cs-product-enter { to { opacity: 1; transform: translate(-50%, 0); } }

.cs-hero-copy { animation: cs-copy-enter .65s ease-out both; }

@keyframes cs-copy-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 919px) {
.cs-product-section { scroll-margin-top: 96px; padding: clamp(80px, 7vw, 96px) 0 0; background: #f5f7f9; }

.cs-applications { scroll-margin-top: 96px; padding: clamp(56px, 4vw, 64px) 0 56px; background: #fff; }

.cs-applications .cs-section-heading { margin-bottom: 38px; }

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

.cs-application-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #e1e7eb; border-radius: 12px; background: #fff; color: inherit; cursor: pointer; transition: border-color .2s ease, transform .2s ease; }

.cs-application-card:hover { border-color: #b9c9d3; transform: translateY(-2px); }

.cs-application-card:focus-visible { outline: 3px solid rgba(37, 70, 95, .25); outline-offset: 3px; }

.cs-application-media { aspect-ratio: 16 / 10; overflow: hidden; background: #f3f6f8; }

.cs-application-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .22s ease; }

.cs-application-card:hover .cs-application-media img { transform: scale(1.02); }

.cs-application-info { position: relative; min-height: 112px; padding: 18px 48px 18px 20px; }

.cs-application-info h3 { margin-bottom: 7px; color: var(--brand-dark); font-size: 19px; line-height: 1.25; }

.cs-application-info p { margin: 0; color: #687884; font-size: 14px; line-height: 1.5; }

.cs-application-arrow { position: absolute; right: 20px; bottom: 19px; color: var(--brand); font-size: 19px; line-height: 1; transition: transform .2s ease; }

.cs-application-card:hover .cs-application-arrow { transform: translateX(3px); }

.cs-product-section.is-highlighted { animation: cs-series-highlight .85s ease-out; }

@keyframes cs-series-highlight { 0%, 100% { box-shadow: inset 0 0 0 0 rgba(37, 70, 95, 0); } 25%, 70% { box-shadow: inset 0 0 0 2px rgba(37, 70, 95, .13); } }

.cs-section-heading { max-width: 800px; margin: 0 auto 46px; text-align: center; }

.cs-section-heading .eyebrow { margin-bottom: 12px; color: var(--brand); font-size: 12px; font-weight: 800; letter-spacing: .14em; }

.cs-section-heading h2 { margin-bottom: 16px; color: var(--brand-dark); font-size: clamp(34px, 3vw, 44px); letter-spacing: -.025em; }

.cs-section-heading > p:last-child { max-width: 680px; margin: 0 auto; color: #60717e; font-size: 16px; line-height: 1.7; }

.cs-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 2.4vw, 36px); }

.cs-product-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid #e1e7eb; border-radius: 15px; background: #fff; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }

.cs-product-card:hover { border-color: #c5d0d8; box-shadow: 0 14px 32px rgba(21, 45, 63, .08); transform: translateY(-3px); }

.cs-product-card:focus-visible { outline: 3px solid rgba(37, 70, 95, .25); outline-offset: 3px; }

.cs-product-media { display: flex; height: clamp(390px, 28vw, 420px); align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid #e8ecef; background: #fff; }

.cs-product-media img { width: 100%; height: 100%; padding: 0; object-fit: contain; transform: scale(1.12); transition: transform .25s ease; }

.cs-product-card:hover .cs-product-media img { transform: scale(1.14); }

.cs-product-card--compact .cs-product-media img,
.cs-product-card--compact:hover .cs-product-media img { width: 88%; height: 88%; align-self: flex-end; transform: none; }

.cs-product-info { padding: 21px 22px 22px; }

.cs-product-info h3 { margin-bottom: 5px; color: var(--brand-dark); font-size: 19px; font-weight: 700; letter-spacing: -.01em; }

.cs-product-info > p { margin-bottom: 20px; color: #687884; font-size: 14px; line-height: 1.5; }

.cs-product-info > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid #edf0f2; color: #60717e; font-size: 14px; }

.cs-product-link { color: var(--brand-dark); font-weight: 700; }

.cs-product-link span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }

.cs-product-card:hover .cs-product-link span { transform: translateX(3px); }

.cs-cta-section { padding: 0 0 52px; background: #fff; }

.cs-cta { display: flex; min-height: 210px; align-items: center; justify-content: space-between; gap: 48px; padding: 42px clamp(34px, 5vw, 68px); border-radius: 16px; background: var(--brand-dark); }

.cs-cta .eyebrow { margin-bottom: 10px; color: #a9bdca; font-size: 11px; font-weight: 800; letter-spacing: .14em; }

.cs-cta h2 { max-width: 760px; margin-bottom: 10px; color: #fff; font-size: clamp(29px, 2.5vw, 38px); letter-spacing: -.02em; }

.cs-cta p { margin: 0; color: #d3dee5; font-size: 16px; }

.cs-cta .btn { flex: 0 0 auto; border-color: #fff; background: #fff; color: var(--brand-dark); }

.continuous-spray-detail { padding-top: 58px; }

.continuous-spray-detail { width: min(100% - 48px, 1420px); margin-inline: auto; padding: 64px 0 0; }

.continuous-spray-detail-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: clamp(44px, 5vw, 78px); align-items: start; }

.continuous-spray-gallery { min-width: 0; }

.continuous-spray-gallery { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 24px; align-items: start; }

.continuous-spray-series-nav { grid-row: 1 / span 2; display: flex; width: 140px; min-width: 0; flex-direction: column; gap: 10px; padding-top: 8px; }

.continuous-spray-series-nav p { margin: 0 0 8px; color: #718391; font-size: 10px; font-weight: 700; letter-spacing: .14em; }

.continuous-spray-series-card { position: relative; display: flex; min-height: 112px; flex-direction: column; justify-content: flex-start; gap: 6px; padding: 6px 7px 7px 9px; border: 1px solid #e1e8ed; border-left: 2px solid transparent; border-radius: 8px; background: #fff; color: #637684; transition: border-color .2s ease, color .2s ease, background-color .2s ease; }

.continuous-spray-series-card:hover { border-color: #b8c9d3; color: var(--brand-dark); }

.continuous-spray-series-card:focus-visible { outline: 3px solid rgba(37, 70, 95, .24); outline-offset: 2px; }

.continuous-spray-series-card.is-active { border-left-color: var(--brand); background: #f3f6f8; color: var(--brand-dark); }

.continuous-spray-series-card__thumb { display: flex; height: 76px; align-items: center; justify-content: center; overflow: hidden; background: #fbfcfd; }

.continuous-spray-series-card__thumb img { width: 100%; height: 100%; object-fit: contain; }

.continuous-spray-series-card strong { font-size: 13px; font-weight: 700; line-height: 1.2; }

.continuous-spray-series-card__arrow { position: absolute; right: 7px; bottom: 7px; font-size: 15px; transition: transform .2s ease; }

.continuous-spray-series-card:hover .continuous-spray-series-card__arrow { transform: translateX(3px); }

.continuous-spray-main-image { width: 100%; height: clamp(520px, 43vw, 620px); padding: 18px; border: 1px solid #e4e8ec; border-radius: 15px; background: #f7f8fa; object-fit: contain; }

.continuous-spray-thumbnails, .continuous-spray-colors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.continuous-spray-selector { margin: 24px 0 0; }

.continuous-spray-selector h2 { margin-bottom: 10px; color: var(--brand-dark); font-size: 18px; }

.continuous-spray-capacity-buttons { display: flex; flex-wrap: wrap; gap: 10px; }

.continuous-spray-capacity-button { min-height: 46px; padding: 9px 18px; border: 1px solid #cbd7df; border-radius: 7px; background: #fff; color: var(--brand-dark); font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: border-color .2s ease, background-color .2s ease, color .2s ease; }

.continuous-spray-capacity-button:hover { border-color: #8fa6b5; }

.continuous-spray-capacity-button.is-active { border-color: var(--brand); background: #f1f5f7; color: var(--brand-dark); box-shadow: inset 0 0 0 1px rgba(37, 70, 95, .08); }

.continuous-spray-colors { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.continuous-spray-thumbnails button, .continuous-spray-color-button { border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--text); cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }

.continuous-spray-thumbnails button { width: 82px; padding: 5px; }

.continuous-spray-thumbnails button.is-active, .continuous-spray-color-button.is-active { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(37, 70, 95, .12); }

.continuous-spray-thumbnails button:hover, .continuous-spray-color-button:hover { border-color: #9bb0be; transform: translateY(-1px); }

.continuous-spray-thumbnails img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }

.continuous-spray-color-button { display: inline-flex; width: 100%; min-width: 0; min-height: 64px; align-items: center; gap: 9px; padding: 6px 9px 6px 6px; font-size: 13px; text-align: left; }

.continuous-spray-color-button img { width: 58px; height: 58px; object-fit: contain; }

.continuous-spray-detail-copy h1 { font-size: clamp(34px, 4.5vw, 58px); }

.continuous-spray-detail-copy .eyebrow { margin-bottom: 10px; }

.continuous-spray-detail-copy > p:not(.eyebrow) { max-width: 500px; color: #5c6d79; font-size: 16px; line-height: 1.7; }

.continuous-spray-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 28px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.continuous-spray-specs div { padding: 17px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.continuous-spray-specs dt { color: var(--text); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.continuous-spray-specs dd { margin: 3px 0 0; color: var(--brand-dark); font-size: 15px; font-weight: 700; }

.continuous-spray-capacities { display: flex; flex-wrap: wrap; gap: 6px 10px; }

.continuous-spray-capacities span { display: inline-block; }

.continuous-spray-options { margin: 26px 0; }

.continuous-spray-options h2 { margin-bottom: 12px; font-size: 21px; }

.continuous-spray-detail-copy > .btn { min-height: 48px; min-width: 190px; }

.continuous-spray-back { display: block; width: fit-content; margin-top: 22px; color: var(--brand); font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.continuous-spray-series-pager { display: flex; min-height: 48px; align-items: flex-start; justify-content: space-between; gap: 20px; margin-top: 24px; }

.continuous-spray-series-pager a { display: flex; flex-direction: column; gap: 2px; color: #657987; transition: color .2s ease; }

.continuous-spray-series-pager a:hover { color: var(--brand-dark); }

.continuous-spray-series-pager small { color: #8796a0; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.continuous-spray-series-pager strong { font-size: 14px; font-weight: 700; }

.cs-detail-support { margin-top: 76px; }

.cs-detail-container { width: min(100% - 48px, 1420px); margin-inline: auto; }

.cs-detail-options { padding: 72px 0 78px; background: #f5f7f9; }

.cs-detail-options .eyebrow, .cs-related-section .eyebrow, .cs-detail-cta .eyebrow { margin-bottom: 10px; color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .14em; }

.cs-detail-options h2, .cs-related-section h2 { margin-bottom: 24px; color: var(--brand-dark); font-size: clamp(29px, 3vw, 40px); letter-spacing: -.02em; }

.cs-options-list { display: flex; flex-wrap: wrap; gap: 10px; }

.cs-options-list span { padding: 11px 15px; border: 1px solid #d8e1e7; border-radius: 999px; background: #fff; color: #506574; font-size: 14px; }

.cs-related-section { padding: 78px 0 82px; background: #fff; }

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

.cs-related-card { display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; gap: 15px; align-items: center; padding: 11px 15px 11px 11px; border: 1px solid #e1e7eb; border-radius: 12px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }

.cs-related-card:hover { border-color: #b9c9d3; box-shadow: 0 10px 24px rgba(21, 45, 63, .07); transform: translateY(-2px); }

.cs-related-card:focus-visible { outline: 3px solid rgba(37, 70, 95, .25); outline-offset: 3px; }

.cs-related-card img { width: 92px; height: 92px; object-fit: contain; border-radius: 8px; background: #f7f9fa; }

.cs-related-card span { min-width: 0; }

.cs-related-card strong, .cs-related-card small { display: block; }

.cs-related-card strong { overflow-wrap: anywhere; color: var(--brand-dark); font-size: 14px; }

.cs-related-card small { margin-top: 5px; color: #667782; font-size: 13px; }

.cs-related-card b { color: var(--brand); font-size: 20px; }

.cs-detail-cta { padding: 0 0 82px; background: #fff; }

.cs-detail-cta .cs-detail-container { display: flex; min-height: 190px; align-items: center; justify-content: space-between; gap: 36px; padding: 38px clamp(28px, 5vw, 62px); border-radius: 15px; background: var(--brand-dark); }

.cs-detail-cta h2 { max-width: 700px; margin-bottom: 9px; color: #fff; font-size: clamp(27px, 2.6vw, 38px); letter-spacing: -.02em; }

.cs-detail-cta p:last-child { margin: 0; color: #d4e0e6; }

.cs-detail-cta .eyebrow { color: #a9bdca; }

.cs-detail-cta .btn { flex: 0 0 auto; min-height: 48px; border-color: #fff; background: #fff; color: var(--brand-dark); }
}

@media (max-width: 919px) {
.cs-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .cs-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
  .cs-product-media { height: 340px; }
}

@media (max-width: 919px) and (min-width: 621px) {
.cs-hero-copy { width: min(100%, 540px); max-width: 540px; }
  .cs-hero-copy h1 { max-width: 540px; font-size: clamp(42px, 5.6vw, 52px); white-space: normal; }
  .cs-hero-copy .cs-hero-subtitle { font-size: 20px; }
  .cs-hero-copy .cs-hero-description { max-width: 520px; font-size: 16px; }
}

@media (max-width: 919px) {
.cs-container { width: min(100% - 40px, 1420px); }
  .cs-hero { min-height: max(620px, calc(88svh - var(--header-height))); padding-top: 48px; }
  .cs-hero-layout { grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); gap: 30px; }
  .cs-hero-copy h1 { font-size: clamp(44px, 5.6vw, 58px); }
  .cs-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .cs-product-stage { height: clamp(420px, 49vw, 540px); }
  .cs-cta { align-items: flex-start; flex-direction: column; gap: 26px; }
  .continuous-spray-detail { width: min(100% - 40px, 1420px); }
  .continuous-spray-detail-layout { display: flex; flex-direction: column; }
  .continuous-spray-gallery { order: 1; width: 100%; }
  .continuous-spray-detail-copy { order: 2; width: 100%; }
  .continuous-spray-gallery { display: flex; flex-direction: column; gap: 0; }
  .continuous-spray-series-nav { order: 3; width: 100%; flex-direction: row; align-items: stretch; gap: 8px; margin-top: 16px; padding: 10px 0 0; border-top: 1px solid var(--line); overflow-x: auto; }
  .continuous-spray-series-nav p { flex: 0 0 auto; margin: 0 8px 0 0; }
  .continuous-spray-series-card { flex: 0 0 112px; min-height: 96px; border-left: 1px solid #e1e8ed; border-bottom: 2px solid transparent; padding: 5px 6px; }
  .continuous-spray-series-card.is-active { border-bottom-color: var(--brand); border-left-color: #e1e8ed; }
  .continuous-spray-series-card__thumb { height: 58px; }
  .continuous-spray-main-image { height: 540px; }
  .cs-related-grid { grid-template-columns: 1fr; }
  .cs-detail-cta .cs-detail-container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 919px) and (max-width: 620px) {
.cs-container { width: min(100% - 32px, 1420px); }
  .cs-hero { min-height: 0; padding: 58px 0 54px; }
  .cs-hero-layout { grid-template-columns: 1fr; gap: 30px; }
  .cs-hero-copy { max-width: none; }
  .cs-hero-copy { width: 100%; }
  .cs-hero-copy .eyebrow { margin-bottom: 15px; font-size: 12px; }
  .cs-hero-copy h1 { max-width: 100%; font-size: clamp(40px, 11vw, 46px); white-space: normal; }
  .cs-hero-copy .cs-hero-subtitle { margin-bottom: 24px; font-size: 20px; }
  .cs-hero-copy .cs-hero-description { margin-bottom: 28px; font-size: 16px; line-height: 1.65; }
  .cs-hero-copy .button-row { align-items: stretch; flex-wrap: wrap; }
  .cs-hero-copy .btn { flex: 1 1 145px; padding-inline: 20px; }
  .cs-product-stage { height: min(88vw, 360px); }
  .cs-product-section { padding: 72px 0 0; }
  .cs-applications { padding: 56px 0 48px; }
  .cs-applications .cs-section-heading { text-align: center; }
  .cs-section-heading { margin-bottom: 34px; text-align: left; }
  .cs-section-heading > p:last-child { margin-left: 0; }
  .cs-application-grid { grid-template-columns: 1fr; gap: 18px; }
  .cs-application-info { min-height: 0; }
  .cs-product-grid { grid-template-columns: 1fr; gap: 18px; }
    .cs-product-media { height: min(86vw, 330px); }
  .cs-product-info { padding: 19px 19px 20px; }
  .cs-cta-section { padding: 0 0 48px; }
  .cs-cta { min-height: 0; padding: 32px 26px; border-radius: 13px; }
  .cs-cta .btn { width: 100%; }
  .continuous-spray-detail { width: min(100% - 32px, 1420px); padding-top: 44px; }
    .continuous-spray-detail-copy { grid-row: 1; }
  .continuous-spray-gallery { grid-row: 2; }
  .continuous-spray-main-image { height: min(112vw, 430px); padding: 10px; border-radius: 12px; }
  .continuous-spray-thumbnails button { width: 74px; }
  .continuous-spray-color-button { min-width: 0; flex: 1 1 145px; }
    .continuous-spray-colors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .continuous-spray-specs { grid-template-columns: 1fr; }
  .cs-detail-support { margin-top: 58px; }
  .cs-detail-container { width: min(100% - 32px, 1420px); }
  .cs-detail-options, .cs-related-section { padding: 58px 0 64px; }
  .cs-detail-cta { padding-bottom: 64px; }
  .cs-detail-cta .cs-detail-container { min-height: 0; padding: 30px 24px; border-radius: 12px; }
  .cs-detail-cta .btn { width: 100%; }
}

@media (max-width: 919px) {
.product-category-tags a { min-height: 32px; align-items: center; display: inline-flex; font-size: 13px; }

.manufacturing-strength-inner { max-width: var(--content-max); column-gap: clamp(40px, 4vw, 64px); }

.manufacturing-collage { height: auto; aspect-ratio: 4 / 3; }

.manufacturing-collage img { object-fit: contain; background: #edf1f4; }

.manufacturing-feature-grid article { min-height: 170px; padding: 24px; }

.manufacturing-feature-grid h3 { font-size: 18px; }

.manufacturing-feature-grid p { font-size: 15px; line-height: 1.65; }

.home-oem-section .card-grid.five { width: min(100%, var(--content-max)); }

.home-oem-section .mini-card { min-height: 164px; padding: 26px 22px; }

.home-oem-section .mini-card p { font-size: 15px; line-height: 1.65; }

.home-inspection-grid { width: min(100%, var(--content-max)); }
.home-inspection-grid .inspection-card > img { height: 200px; object-fit: cover; }
.inspection-card-content p { font-size: 15px; line-height: 1.65; }



.faq-list,
.faq-section .faq-list { max-width: 900px; }

.faq-list details { padding: 0; overflow: hidden; }

.faq-list details summary {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 13px 52px 13px 18px;
  list-style: none;
  line-height: 1.45;
}

.faq-list details summary::-webkit-details-marker { display: none; }

.faq-list details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9d7e2;
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-list details[open] summary::after { content: "−"; background: var(--brand-dark); color: #fff; }

.faq-list details > p { margin: 0; padding: 0 18px 17px; font-size: 14px; line-height: 1.65; }

.inquiry-band { padding-inline: var(--section-inline); }

.home-inquiry-band { width: 100%; }

.corporate-footer p,
.corporate-footer a,
.corporate-footer li,
.corporate-footer dd { font-size: 14px; line-height: 1.7; }

.corporate-footer-grid { max-width: var(--content-max); }

.corporate-footer-bottom { max-width: var(--content-max); }

.section-anchor { display: block; position: relative; height: 0; scroll-margin-top: 96px; }

/* Homepage Products category layout */
.home-products-section { padding-top: 58px; padding-bottom: 72px; }

.home-products-section .section-heading { width: min(100%, 1560px); max-width: 1560px; margin: 0 auto 26px; }

.home-products-section .section-heading .eyebrow { margin-bottom: 9px; }

.home-products-section .section-heading h2 { margin-bottom: 11px; }

.home-product-grid {
  width: min(1560px, calc(100vw - 64px));
  max-width: 1560px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-inline: auto;
  align-items: stretch;
}

.home-product-grid .product-card {
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dfe6ec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 35, 55, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-product-grid .product-card:hover { border-color: #c7d3dc; box-shadow: 0 9px 22px rgba(15, 35, 55, 0.075); transform: translateY(-3px); }

.home-product-grid .product-image-link { flex: 0 0 auto; min-height: 250px; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 6px 6px 4px 4px; background: #edf1f4; }

.home-product-grid .product-image-link img { width: 100%; height: 100%; margin: 0; padding: 0; object-fit: contain; object-position: center; background: #edf1f4; }

.home-product-grid .product-card-content { display: flex; min-height: 0; flex: 1; flex-direction: column; padding: 18px 18px 20px; }

.home-product-grid .product-card h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 17px; font-weight: 650; line-height: 1.3; }

.home-product-grid .product-card h3 a { color: inherit; }

.home-product-grid .product-card > .product-card-content > p { display: -webkit-box; min-height: calc(1.55em * 3); max-height: calc(1.55em * 3); margin: 0 0 12px; overflow: hidden; color: #4b6475; font-size: 13.5px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

.home-product-grid .product-category-tags { min-height: 24px; gap: 6px; margin: 0 0 14px; }

.home-product-grid .product-category-tags a { min-height: 24px; padding: 3px 7px; border-radius: 5px; background: #edf2f6; color: #526b7c; font-size: 11.5px; line-height: 1.2; }

.home-product-grid .product-card-actions { gap: 0; margin-top: auto; padding-top: 6px; }

.home-product-grid .product-card-actions .btn { min-height: 36px; padding: 7px 12px; border-color: var(--brand); color: var(--brand-dark); font-size: 13px; font-weight: 600; }

.home-product-grid .product-card-actions .btn span { display: inline-block; margin-left: 3px; transition: transform 0.2s ease; }

.home-product-grid .product-card-actions .btn:hover,
.home-product-grid .product-card-actions .btn:focus-visible { background: var(--brand); color: #fff; }

.home-product-grid .product-card:hover .product-card-actions .btn span,
.home-product-grid .product-card-actions .btn:focus-visible span { transform: translateX(3px); }
}

@media (max-width: 919px) {
.home-products-section { padding-top: 58px; padding-bottom: 66px; }
  .home-products-section .section-heading { width: min(100%, calc(100% - 40px)); margin-bottom: 30px; }
  .home-product-grid { width: min(100%, calc(100% - 40px)); grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 919px) {
.site-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px clamp(20px, 5vw, 40px);
  }
  .site-nav {
    top: 100%;
    padding: 16px clamp(20px, 5vw, 40px) 20px;
  }
  .logo img { width: 48px; height: 48px; }
}

@media (max-width: 919px) {
.home-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .home-hero .hero-text {
    width: 100%;
    margin: 0;
    padding: 40px var(--section-inline) 34px;
  }
  .home-hero h1 { max-width: 680px; font-size: clamp(34px, 9vw, 40px); line-height: 1.08; letter-spacing: -0.8px; }
  .home-hero .hero-title-line, .home-hero .hero-description-line { display: inline; }
  .home-hero .hero-description { font-size: 15px; line-height: 1.6; }
  .home-hero .hero-media img { aspect-ratio: 8 / 5; object-fit: contain; }
  .hero-stats { row-gap: 18px; }
  .hero-stats div { padding-right: 14px; }
  .hero-stats div:nth-child(2n) { padding-right: 0; border-right: 0; }
  .hero-stats div:nth-child(n + 3) { padding-top: 18px; border-top: 1px solid var(--line); }
  .home-product-grid .product-card { min-height: 0; }
  .manufacturing-collage { aspect-ratio: 4 / 3; }
  .manufacturing-collage img { object-fit: contain; }
  .about-snapshot-section { grid-template-columns: minmax(0, 1fr); }
  .corporate-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 919px) and (min-width: 521px) {
.home-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 0 1 320px; }
}

@media (max-width: 919px) and (max-width: 520px) {
.nav-toggle-label { display: none; }
  .nav-toggle { padding-inline: 11px; }
  .hero-purchase-info { font-size: 12px; }
  .home-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 1 1 100%; }
  .home-inspection-grid .inspection-card > img { height: auto; aspect-ratio: 4 / 3; }
  .contact-qr-grid { grid-template-columns: minmax(0, 260px); }
  .contact-qr-section { padding: 26px 18px; }
  .contact-qr-card img { width: min(200px, 100%); }
  .corporate-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 919px) and (max-width: 340px) {
.site-header { column-gap: 8px; padding-inline: 16px; }
  .logo { gap: 6px; font-size: 18px; }
  .logo img { width: 40px; height: 40px; }
  .header-cta { padding-inline: 10px; font-size: 12px; }
}

@media (max-width: 919px) {
/* Lotion pump searchable product catalog */
.lotion-catalog { background: var(--muted); overflow-anchor: none; }

.lotion-catalog-inner { width: min(100%, 1520px); margin: 0 auto; scroll-margin-top: calc(var(--header-height) + 20px); }

.lotion-filter-toggle { display: none; }

.lotion-catalog-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: start; }

.lotion-filter-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  max-height: calc(100vh - var(--header-height) - 40px);
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

.lotion-filter-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }

.lotion-filter-header h2 { margin: 0; color: var(--brand-dark); font-size: 20px; }

.lotion-clear-filters { padding: 4px 0; border: 0; background: transparent; color: var(--brand); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }

.lotion-clear-filters:hover { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }

.lotion-filter-group { min-width: 0; margin: 0; padding: 0; border: 0; }

.lotion-filter-group + .lotion-filter-group { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }

.lotion-filter-group > label:first-child,
.lotion-filter-group legend { display: block; width: 100%; margin-bottom: 11px; color: var(--brand-dark); font-size: 14px; font-weight: 800; }

.lotion-filter-group input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.lotion-filter-group input[type="search"]::placeholder { color: #8493a0; }

.lotion-filter-group[data-filter-group] > label { display: flex; align-items: center; gap: 9px; min-height: 34px; margin: 0; color: var(--text); font-size: 14px; cursor: pointer; }

.lotion-filter-group input[type="checkbox"] { width: 17px; height: 17px; margin: 0; accent-color: var(--brand); }

.lotion-filter-close { display: none; }

.lotion-product-listing { min-width: 0; }

.lotion-product-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }

.lotion-product-header .eyebrow { margin-bottom: 7px; }

.lotion-product-header h2 { margin: 0; color: var(--brand-dark); font-size: clamp(30px, 3vw, 40px); }

.lotion-product-description { max-width: 660px; margin: 9px 0 0; color: #6f8798; font-size: 14px; line-height: 1.55; }

.lotion-product-count { flex: 0 0 auto; margin: 0; color: var(--brand); font-size: 15px; font-weight: 800; }

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

.lotion-product-grid .series-block,
.lotion-product-grid .catalog-grid { display: contents; }

.lotion-product-grid .catalog-card { height: 390px; }

.lotion-product-grid .catalog-card[hidden] { display: none; }

.catalog-filter-anchor { grid-column: 1 / -1; height: 0; scroll-margin-top: calc(var(--header-height) + 20px); }

.lotion-no-results { padding: 64px 24px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }

.lotion-no-results p { margin-bottom: 18px; color: var(--brand-dark); font-size: 19px; font-weight: 700; }

.lotion-no-results .btn { min-width: 150px; }
}

@media (max-width: 919px) {
.lotion-filter-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 11px 16px;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    background: #fff;
    color: var(--brand-dark);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }
  .lotion-active-filter-count:not(:empty) { display: inline-flex; min-width: 24px; min-height: 24px; align-items: center; justify-content: center; padding: 2px 7px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 12px; }
  .lotion-catalog-layout { display: block; }
  .lotion-filter-sidebar { display: none; position: static; max-height: none; margin-bottom: 28px; overflow: visible; }
  .lotion-filter-sidebar.is-open { display: block; }
  .lotion-filter-close { display: inline-flex; width: 100%; margin-top: 22px; }
  .lotion-product-header { align-items: flex-start; }
  .lotion-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 919px) and (max-width: 520px) {
.lotion-catalog { padding-top: 54px; padding-bottom: 64px; }
  .lotion-filter-sidebar { padding: 20px; }
  .lotion-product-header { flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .lotion-product-header h2 { font-size: 29px; }
  .lotion-product-grid { grid-template-columns: 1fr; }
  .lotion-product-grid .catalog-card { height: 390px; }
}

@media (max-width: 919px) and (min-width: 521px) {
.series-page .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 919px) and (max-width: 520px) {
.series-page .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .series-page .product-image-box { flex-basis: 180px; height: 180px; }
  .series-page .catalog-card h4 { font-size: 16px; }
  .series-page .catalog-card p { font-size: 12px; }
  .series-page .catalog-card .catalog-series { font-size: 12px; }
}

@media (max-width: 919px) and (max-width: 340px) {
.series-page .catalog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 919px) {
/* Homepage Hero: editorial product composition cluster */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  align-items: stretch;
  height: calc(100svh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(115deg, #9eafbf 0%, #a9b9c9 50%, #b6c4d1 100%);
}

/* Lotion Pump page Hero */
.lotion-hero { display: flex; min-height: max(680px, calc(100svh - var(--header-height))); align-items: center; overflow: hidden; background: radial-gradient(circle at 72% 42%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .05) 28%, transparent 52%), linear-gradient(105deg, #526f82 0%, #7f98aa 48%, #b9c8d1 100%); }

.lotion-hero-inner { display: grid; width: min(100% - 48px, 1480px); min-height: inherit; margin-inline: auto; grid-template-columns: minmax(0, 43fr) minmax(0, 57fr); gap: clamp(36px, 5vw, 88px); align-items: center; }

.lotion-hero-copy { position: relative; z-index: 2; width: min(100%, 620px); color: #fff; }

.lotion-hero-copy .eyebrow { margin-bottom: 24px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 600; letter-spacing: .16em; }

.lotion-hero-copy h1 { max-width: 620px; margin-bottom: 27px; color: #fff; font-size: clamp(44px, 3.15vw, 56px); font-weight: 700; line-height: 1.06; letter-spacing: -1.5px; text-wrap: balance; }

.lotion-hero-description { max-width: 590px; margin: 0 0 31px; color: rgba(255, 255, 255, .88); font-size: 16px; line-height: 1.72; }

.lotion-hero-copy .button-row { gap: 12px; margin-top: 0; }

.lotion-hero-copy .btn { min-height: 54px; padding: 14px 28px; border-radius: 7px; font-size: 14px; font-weight: 600; }

.lotion-hero-copy .btn.primary { background: #25465f; border-color: #25465f; color: #fff; box-shadow: 0 10px 24px rgba(21, 45, 63, .16); }

.lotion-hero-copy .btn.primary:hover, .lotion-hero-copy .btn.primary:focus-visible { background: #17364d; border-color: #17364d; }

.lotion-hero-copy .btn.secondary { background: transparent; border-color: rgba(255, 255, 255, .72); color: #fff; }

.lotion-hero-copy .btn.secondary:hover, .lotion-hero-copy .btn.secondary:focus-visible { background: rgba(255, 255, 255, .14); border-color: #fff; }

.lotion-hero-visual { position: relative; z-index: 1; min-width: 0; }

.lotion-hero-stage { --visual-height: clamp(220px, 16.67vw, 320px); position: relative; width: 106%; height: clamp(520px, 44vw, 680px); overflow: visible; transform: translate(-10%, -85px) scale(1.05); transform-origin: 0 bottom; }

.lotion-hero-product { position: absolute; bottom: 3%; display: block; width: auto; height: var(--product-box-height); aspect-ratio: 1086 / 1448; margin: 0; transform: translateY(14px); opacity: 0; animation: lotion-product-enter .7s cubic-bezier(.22, .61, .36, 1) forwards; animation-delay: var(--product-delay); }

.lotion-hero-product::after { content: ""; position: absolute; left: 15%; bottom: 3%; z-index: 0; width: 70%; height: 2.5%; border-radius: 50%; background: rgba(34, 52, 65, .13); filter: blur(12px); transform: scaleX(1.12); }

.lotion-hero-product img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain; background: transparent; }

.lotion-hero-product--01 { --product-box-height: calc(var(--visual-height) * 1.0586); --product-delay: 80ms; z-index: 1; left: 0; }

.lotion-hero-product--02 { --product-box-height: calc(var(--visual-height) * 1.1568); --product-delay: 150ms; z-index: 2; left: calc(var(--visual-height) * .532 + 50px); bottom: calc(3% - clamp(13px, .95vw, 18px)); }

.lotion-hero-product--03 { --product-box-height: calc(var(--visual-height) * 1.151); --product-delay: 220ms; z-index: 3; left: calc(var(--visual-height) * 1.116 + 100px); bottom: calc(3% - clamp(10px, .75vw, 14px)); }

.lotion-hero-product--04 { --product-box-height: calc(var(--visual-height) * 1.065); --product-delay: 290ms; z-index: 4; left: calc(var(--visual-height) * 1.699 + 162px); bottom: calc(3% + clamp(2px, .15vw, 3px)); }

@keyframes lotion-product-enter { to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 919px) {
.lotion-hero { min-height: 0; padding: 58px 0 54px; }
  .lotion-hero-inner { width: min(100% - 40px, 720px); min-height: 0; grid-template-columns: 1fr; gap: 34px; }
  .lotion-hero-copy { width: 100%; }
  .lotion-hero-copy h1 { max-width: 680px; font-size: clamp(40px, 8vw, 52px); }
  .lotion-hero-description { max-width: 680px; }
  .lotion-hero-stage { width: 100%; height: clamp(420px, 58vw, 540px); transform: none; }
}

@media (max-width: 919px) and (max-width: 520px) {
.lotion-hero { padding: 48px 0 42px; }
  .lotion-hero-inner { width: min(100% - 32px, 420px); gap: 28px; }
  .lotion-hero-copy .eyebrow { margin-bottom: 16px; font-size: 12px; }
  .lotion-hero-copy h1 { font-size: clamp(36px, 11vw, 46px); }
  .lotion-hero-description { font-size: 15px; line-height: 1.65; }
  .lotion-hero-copy .button-row { align-items: stretch; flex-wrap: wrap; }
  .lotion-hero-copy .btn { flex: 1 1 145px; padding-inline: 20px; }
  .lotion-hero-stage { --visual-height: clamp(128px, 34vw, 146px); height: clamp(330px, 82vw, 360px); }
  .lotion-hero-product--01 { left: 0; top: 0; bottom: auto; }
  .lotion-hero-product--02 { left: 50%; top: 0; bottom: auto; }
  .lotion-hero-product--03 { left: 0; top: clamp(170px, 44vw, 190px); bottom: auto; }
  .lotion-hero-product--04 { left: 50%; top: clamp(170px, 44vw, 190px); bottom: auto; }
}

@media (max-width: 919px) {
.home-hero .hero-text { position: relative; z-index: 3; align-self: center; width: min(100% - clamp(48px, 8vw, 128px), 620px); margin-left: clamp(32px, 7vw, 112px); padding: clamp(26px, 4vh, 56px) 0; }

.home-hero .eyebrow { margin-bottom: 20px; color: rgba(21, 45, 63, .72); font-weight: 700; letter-spacing: .15em; }

.home-hero h1 { max-width: 610px; margin-bottom: 20px; color: var(--brand-dark); font-size: clamp(48px, 4.05vw, 74px); line-height: .99; letter-spacing: -2.8px; text-wrap: balance; }

.home-hero .hero-description { max-width: 540px; color: rgba(21, 45, 63, .78); font-size: 16px; line-height: 1.58; }

.home-hero .button-row { margin-top: 24px; }

.home-hero .btn.primary { background: var(--brand-dark); border-color: var(--brand-dark); }

.home-hero .btn.primary:hover, .home-hero .btn.primary:focus-visible { background: #0d2231; border-color: #0d2231; }

.home-hero .btn.secondary { background: rgba(255, 255, 255, .15); border-color: rgba(21, 45, 63, .42); color: var(--brand-dark); }

.home-hero .btn.secondary:hover, .home-hero .btn.secondary:focus-visible { background: rgba(255, 255, 255, .34); border-color: var(--brand-dark); }

.hero-purchase-info { color: var(--brand-dark); }

.hero-stats { border-top-color: rgba(21, 45, 63, .24); }

.hero-stats div { border-right-color: rgba(21, 45, 63, .2); }

.hero-stats strong { color: var(--brand-dark); }

.hero-stats span { color: rgba(21, 45, 63, .7); }

.home-hero .hero-media { position: relative; z-index: 2; min-width: 0; height: 100%; }

.home-hero .hero-product-stage {
  position: relative;
  width: clamp(650px, 52vw, 920px);
  max-width: calc(100% - clamp(48px, 7vw, 132px));
  height: 100%;
  margin-right: clamp(48px, 7vw, 132px);
  margin-left: auto;
  isolation: isolate;
}

.home-hero .hero-product-stage::before {
  content: "";
  position: absolute;
  left: 22%;
  top: 13%;
  z-index: 0;
  width: 76%;
  height: 72%;
  border-radius: 50%;
  background: none;
  filter: blur(12px);
  pointer-events: none;
}

.home-hero .hero-product-stage::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 4.5%;
  z-index: 1;
  width: 84%;
  height: 9%;
  border-radius: 50%;
  background: rgba(43, 62, 76, .15);
  filter: blur(38px);
  transform: scaleY(.42);
  pointer-events: none;
}

.home-hero .hero-product {
  position: absolute;
  display: block;
  margin: 0;
  background: transparent;
  border: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: home-product-enter .82s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: var(--product-delay);
}

.home-hero .hero-product::after {
  content: "";
  position: absolute;
  left: 27%;
  bottom: -.5%;
  z-index: 0;
  width: 46%;
  height: 3.5%;
  border-radius: 50%;
  background: rgba(35, 51, 63, .11);
  filter: blur(7px);
}

.home-hero .hero-product img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; max-width: none; aspect-ratio: auto; object-fit: contain; object-position: center bottom; border-radius: 0; background: transparent; box-shadow: none; filter: drop-shadow(0 14px 18px rgba(38, 52, 64, .1)); }

.home-hero .hero-product--pump-a { left: 2%; bottom: 6%; z-index: 4; width: clamp(104px, 8.5vw, 158px); height: clamp(180px, 22vh, 248px); --product-delay: 100ms; }

.home-hero .hero-product--green { left: 34%; bottom: 5%; z-index: 6; width: clamp(226px, 16vw, 316px); height: clamp(226px, 29vh, 316px); --product-delay: 260ms; }

.home-hero .hero-product--spray { left: 43%; bottom: 13%; z-index: 4; width: clamp(270px, 19vw, 380px); height: clamp(270px, 36vh, 380px); --product-delay: 340ms; }

.home-hero .hero-product--anchor { right: 1%; bottom: 8%; z-index: 2; width: clamp(246px, 18vw, 346px); height: clamp(370px, 48vh, 560px); --product-delay: 420ms; }

@keyframes home-product-enter { to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 919px) and (min-width: 621px) {
.home-hero { grid-template-columns: minmax(0, 43fr) minmax(0, 57fr); }
  .home-hero .hero-text { margin-left: 5vw; }
  .home-hero h1 { font-size: clamp(44px, 5vw, 62px); }
  .home-hero .hero-product-stage { width: 100%; max-width: calc(100% - 32px); margin-right: 32px; }
  .home-hero .hero-product-stage::after { right: 0; width: 90%; }
  .home-hero .hero-product--pump-a { left: 0; width: clamp(84px, 10vw, 122px); height: clamp(150px, 20vh, 210px); }
  .home-hero .hero-product--green { left: 29%; width: clamp(184px, 21vw, 250px); height: clamp(184px, 27vh, 250px); }
  .home-hero .hero-product--spray { left: 40%; bottom: 12%; width: clamp(216px, 25vw, 292px); height: clamp(216px, 33vh, 292px); }
  .home-hero .hero-product--anchor { right: 0; width: clamp(198px, 22vw, 264px); height: clamp(308px, 44vh, 430px); }
}

@media (max-width: 919px) and (max-width: 620px) {
.home-hero { display: block; height: auto; min-height: 0; }
  .home-hero .hero-text { width: min(100% - 40px, 700px); margin: 0 auto; padding: 40px 0 30px; }
  .home-hero h1 { max-width: 680px; font-size: clamp(36px, 10vw, 49px); line-height: 1.02; letter-spacing: -1.4px; }
  .home-hero .hero-description { font-size: 15px; line-height: 1.6; }
  .home-hero .button-row { align-items: stretch; flex-wrap: wrap; }
  .home-hero .button-row .btn { flex: 1 1 145px; }
  .hero-purchase-info { font-size: 12px; }
  .home-hero .hero-media { height: auto; padding: 0 16px 32px; }
  .home-hero .hero-product-stage { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: 64px 228px; align-items: end; width: min(100%, 520px); max-width: none; height: auto; margin: 0 auto; }
  .home-hero .hero-product-stage::before { left: 16%; top: 2%; width: 84%; height: 90%; }
  .home-hero .hero-product-stage::after { right: 2%; bottom: 0; width: 94%; height: 14%; filter: blur(24px); }
  .home-hero .hero-product { position: relative; inset: auto; justify-self: center; align-self: end; max-width: 100%; }
  .home-hero .hero-product--pump-a { grid-column: 1 / 4; grid-row: 2; z-index: 5; width: 72px; height: 112px; }
  .home-hero .hero-product--green { grid-column: 5 / 9; grid-row: 2; z-index: 6; width: 152px; height: 152px; }
  .home-hero .hero-product--spray { grid-column: 7 / 11; grid-row: 1 / 3; z-index: 4; width: 184px; height: 184px; margin-bottom: 24px; }
  .home-hero .hero-product--anchor { grid-column: 9 / 13; grid-row: 1 / 3; z-index: 2; width: 160px; height: 240px; margin-bottom: 8px; }
}

@media (max-width: 919px) {
/* Homepage Hero: reuse the Continuous Spray visual language while keeping the home-only content scope. */
.home-page .header-cta:hover, .home-page .header-cta:focus-visible { background: #575260; border-color: #575260; }

.home-hero { grid-template-columns: minmax(0, 42fr) minmax(0, 58fr); min-height: max(680px, calc(100svh - var(--header-height))); height: auto; align-items: center; padding: clamp(56px, 6vw, 92px) 0 clamp(64px, 7vw, 104px); background: linear-gradient(115deg, #9eafbf 0%, #a9b9c9 50%, #b6c4d1 100%); }

.home-hero .hero-text { width: min(100% - 48px, 660px); max-width: 660px; margin-left: max(0px, calc((100vw - 1440px) / 2 - 40px)); padding: 0; }

.home-hero .eyebrow { margin-bottom: 26px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 600; letter-spacing: .16em; }

.home-hero h1 { max-width: 660px; margin-bottom: 26px; color: #fff; font-size: clamp(42px, 3.2vw, 52px); line-height: 1.05; letter-spacing: -1.5px; }

.home-hero .hero-description { max-width: 500px; color: rgba(255, 255, 255, .9); font-size: 17px; line-height: 1.65; }

.home-hero .button-row { gap: 12px; margin-top: 30px; }

.home-hero .btn { min-height: 54px; padding: 14px 30px; border-radius: 11px; font-size: 15px; font-weight: 600; }

.home-hero .btn.primary { background: #6c6674; border-color: #6c6674; color: #fff; }

.home-hero .btn.primary:hover, .home-hero .btn.primary:focus-visible { background: #575260; border-color: #575260; }

.home-hero .btn.secondary { background: transparent; border-color: rgba(255, 255, 255, .72); color: #fff; }

.home-hero .btn.secondary:hover, .home-hero .btn.secondary:focus-visible { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }

.home-hero .hero-media { position: relative; z-index: 1; min-width: 0; height: 100%; }

.home-hero .hero-product-stage { position: relative; width: 100%; max-width: 920px; height: clamp(500px, 43vw, 650px); margin: 0; transform: translateX(-16px) scale(1.1); transform-origin: center bottom; isolation: isolate; }

.home-hero .hero-product-stage::before { display: none; }

.home-hero .hero-product-stage::after { right: 2%; bottom: 4.5%; z-index: 1; width: 84%; height: 9%; border-radius: 50%; background: rgba(57, 70, 82, .18); filter: blur(30px); transform: scaleY(.42); }

.home-hero .hero-product { bottom: 0; width: var(--product-width); height: auto; aspect-ratio: 1; margin: 0; transform: translateY(14px); animation: cs-product-enter .7s cubic-bezier(.22, .61, .36, 1) forwards; animation-delay: var(--product-delay); }

.home-hero .hero-product::after { left: 24%; bottom: 5%; width: 52%; height: 4.5%; background: rgba(57, 70, 82, .2); filter: blur(9px); transform: scaleX(1.12); }

.home-hero .hero-product img { filter: brightness(.97) saturate(.97) contrast(.99); }

.home-hero .hero-product--pump-a { --product-width: 72%; --product-left: 0%; --product-delay: 80ms; bottom: 0; z-index: 1; }

.home-hero .hero-product--green { --product-width: 52%; --product-left: 51.5%; --product-delay: 220ms; bottom: 0; z-index: 3; }

.home-hero .hero-product--spray { --product-width: 43%; --product-left: 74.5%; --product-delay: 290ms; bottom: 0; z-index: 4; }

.home-hero .hero-product--anchor { --product-width: 35%; --product-left: 93.8%; --product-delay: 360ms; bottom: 0; z-index: 5; }

.home-trust-strip { padding: 24px 0; background: #f5f7f9; border-bottom: 1px solid #e1e7eb; }

.home-trust-inner { display: flex; width: min(100% - 48px, 1440px); align-items: center; justify-content: space-between; gap: 40px; margin-inline: auto; }

.home-trust-inner > p { margin: 0; color: #60717e; font-size: 14px; white-space: nowrap; }

.home-trust-inner .hero-stats { display: grid; grid-template-columns: repeat(4, minmax(90px, 1fr)); min-width: min(100%, 560px); border-top: 0; }

.home-trust-inner .hero-stats div { padding: 0 18px; border-right-color: #d9e1e8; }

.home-trust-inner .hero-stats div:first-child { padding-left: 0; }

.home-trust-inner .hero-stats div:last-child { padding-right: 0; border-right: 0; }

.home-trust-inner .hero-stats strong { color: var(--brand-dark); }

.home-trust-inner .hero-stats span { color: #6f8798; }
}

@media (max-width: 919px) {
.home-hero { display: block; min-height: 0; padding: 0; }
  .home-hero .hero-text { width: min(100% - 40px, 700px); margin: 0 auto; padding: 56px 0 34px; }
  .home-hero h1 { max-width: 680px; font-size: clamp(34px, 7vw, 46px); }
  .home-hero .hero-description { font-size: 15px; line-height: 1.6; }
  .home-hero .hero-media { height: auto; padding: 0 16px 40px; }
  .home-hero .hero-product-stage { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: 64px 228px; align-items: end; width: min(100%, 520px); max-width: none; height: auto; margin: 0 auto; transform: none; }
  .home-hero .hero-product-stage::after { right: 2%; bottom: 0; width: 94%; height: 14%; filter: blur(24px); }
  .home-hero .hero-product { position: relative; inset: auto; justify-self: center; align-self: end; max-width: 100%; }
  .home-hero .hero-product--pump-a { grid-column: 1 / 4; grid-row: 2; width: 72px; height: 112px; }
  .home-hero .hero-product--green { grid-column: 5 / 9; grid-row: 2; width: 152px; height: 152px; }
  .home-hero .hero-product--spray { grid-column: 7 / 11; grid-row: 1 / 3; width: 184px; height: 184px; margin-bottom: 24px; }
  .home-hero .hero-product--anchor { grid-column: 9 / 13; grid-row: 1 / 3; width: 160px; height: 240px; margin-bottom: 8px; }
  .home-trust-inner { display: block; width: min(100% - 40px, 700px); }
  .home-trust-inner > p { margin-bottom: 18px; white-space: normal; }
  .home-trust-inner .hero-stats { min-width: 0; }
}

@media (max-width: 919px) and (max-width: 520px) {
.home-hero .hero-text { padding-top: 42px; }
  .home-hero .button-row { align-items: stretch; flex-wrap: wrap; }
  .home-hero .button-row .btn { flex: 1 1 145px; }
  .home-hero .hero-product-stage { grid-template-rows: 54px 190px; }
  .home-hero .hero-product--pump-a { width: 58px; height: 92px; }
  .home-hero .hero-product--green { width: 126px; height: 126px; }
  .home-hero .hero-product--spray { width: 154px; height: 154px; }
  .home-hero .hero-product--anchor { width: 132px; height: 198px; }
  .home-trust-inner .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  .home-trust-inner .hero-stats div { padding-right: 14px; }
  .home-trust-inner .hero-stats div:nth-child(2n) { padding-right: 0; border-right: 0; }
  .home-trust-inner .hero-stats div:nth-child(n + 3) { padding-top: 18px; border-top: 1px solid #d9e1e8; }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.home-hero .hero-product { opacity: 1; transform: none; animation: none; }
}

/* Mobile-only UI refinement: keep the approved desktop cascade untouched at 920px and above. */
@media (max-width: 919px) {
html { scroll-padding-top: calc(76px + env(safe-area-inset-top)); }
  body.menu-open { overflow: hidden; }
  .site-header { position: sticky; top: env(safe-area-inset-top); z-index: 100; width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)); min-height: 64px; margin: 8px auto 0; padding: 8px 10px 8px 14px; grid-template-columns: minmax(0, 1fr) auto auto; column-gap: 8px; border: 1px solid rgba(255,255,255,.72); border-radius: 24px; background: rgba(248,251,253,.84); box-shadow: 0 10px 28px rgba(21,45,63,.10); -webkit-backdrop-filter: blur(18px) saturate(1.08); backdrop-filter: blur(18px) saturate(1.08); }
  .site-header.is-scrolled { border-bottom-color: rgba(203,215,224,.9); box-shadow: 0 10px 28px rgba(21,45,63,.14); }
  .logo { min-width: 0; font-size: 19px; } .logo img { width: 38px; height: 38px; }
  .header-cta { display: inline-flex; min-height: 44px; max-width: 116px; align-items: center; justify-content: center; overflow: hidden; padding: 9px 12px; border: 1px solid #173f59; border-radius: 999px; font-size: 11px; letter-spacing: .02em; text-overflow: ellipsis; }
  .nav-toggle { position: relative; z-index: 121; display: inline-flex; width: 48px; min-width: 48px; height: 48px; min-height: 48px; padding: 8px; flex-direction: column; gap: 4px; border: 1px solid rgba(37,70,95,.24); border-radius: 16px; background: #173f59; color: #fff; }
  .nav-toggle-icon { gap: 4px; } .nav-toggle-label { font-size: 10px; line-height: 1; }
  .nav-toggle:active, .mobile-nav-close:active, .header-cta:active, .btn:active, .floating-contact-button:active { transform: scale(.97); }
  .mobile-nav-backdrop { display: block; position: fixed; z-index: 105; inset: 0; visibility: hidden; opacity: 0; background: rgba(15,31,44,.28); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); transition: opacity .22s ease, visibility .22s ease; }
  .mobile-nav-backdrop.is-visible { visibility: visible; opacity: 1; }
  .site-nav { position: fixed; z-index: 110; top: calc(12px + env(safe-area-inset-top)); right: calc(12px + env(safe-area-inset-right)); bottom: calc(12px + env(safe-area-inset-bottom)); left: auto; display: flex; width: min(380px, calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right))); max-height: none; padding: 12px; overflow-y: auto; overscroll-behavior: contain; border: 1px solid rgba(255,255,255,.76); border-radius: 28px; background: rgba(248,251,253,.94); box-shadow: 0 24px 70px rgba(15,31,44,.28); -webkit-backdrop-filter: blur(24px) saturate(1.12); backdrop-filter: blur(24px) saturate(1.12); -webkit-clip-path: inset(0 0 0 100%); clip-path: inset(0 0 0 100%); opacity: 0; visibility: hidden; pointer-events: none; transition: clip-path .26s cubic-bezier(.22,1,.36,1), opacity .22s ease, visibility .22s ease; }
  .site-nav.is-open { display: flex; opacity: 1; visibility: visible; pointer-events: auto; -webkit-clip-path: inset(0); clip-path: inset(0); }
  .mobile-nav-close { display: inline-flex; width: 100%; min-height: 48px; align-items: center; justify-content: space-between; margin-bottom: 6px; padding: 8px 12px; border: 1px solid rgba(37,70,95,.14); border-radius: 16px; background: rgba(255,255,255,.56); color: var(--brand-dark); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
  .mobile-nav-close span:first-child { font-size: 27px; font-weight: 400; line-height: 1; }
  .nav-list { gap: 4px; } .nav-item { width: 100%; }
  .nav-list > .nav-item > a, .nav-primary > a { min-height: 54px; align-items: center; padding: 12px; border-radius: 14px; font-size: 16px; }
  .nav-list > .nav-item > a:active, .nav-primary > a:active { background: rgba(37,70,95,.10); }
  .nav-primary { min-height: 54px; } .nav-primary > a { flex: 1; }
  .dropdown-toggle { width: 48px; height: 48px; margin-left: 2px; border-radius: 14px; } .dropdown-toggle:active { background: rgba(37,70,95,.12); }
  .product-dropdown { padding-left: 12px; transition: max-height .26s ease, padding .26s ease, opacity .26s ease; }
  .has-dropdown:not(.is-open) .product-dropdown { opacity: 0; } .has-dropdown.is-open .product-dropdown { opacity: 1; }
  .dropdown-category { min-height: 48px; padding: 10px 12px; border-radius: 12px; } .dropdown-series a { min-height: 44px; align-items: center; padding: 9px 12px; border-radius: 10px; }
  .hero, .page-hero { min-width: 0; padding-inline: 20px; }
  .home-hero .hero-text { width: min(100% - 40px, 700px); padding: 38px 0 24px; }
  .home-hero .eyebrow, .lotion-hero-copy .eyebrow, .cs-hero-copy .eyebrow { margin-bottom: 14px; font-size: 12px; letter-spacing: .16em; }
  .home-hero h1, .lotion-hero-copy h1, .cs-hero-copy h1 { max-width: 100%; font-size: clamp(38px,11vw,48px); line-height: 1.02; letter-spacing: -.035em; overflow-wrap: anywhere; }
  .home-hero .hero-description, .lotion-hero-description, .cs-hero-copy .cs-hero-description { max-width: 38rem; font-size: 17px; line-height: 1.58; }
  .home-hero .button-row, .lotion-hero-copy .button-row, .cs-hero-copy .button-row { display: flex; gap: 10px; margin-top: 22px; }
  .home-hero .button-row .btn, .lotion-hero-copy .button-row .btn, .cs-hero-copy .button-row .btn { min-height: 56px; flex: 1 1 0; padding: 13px 16px; border-radius: 19px; font-size: 13px; }
  .home-hero .btn.primary, .lotion-hero-copy .btn.primary, .cs-hero-copy .btn.primary { background: var(--brand-dark); border-color: var(--brand-dark); }
  .home-hero .btn.secondary, .lotion-hero-copy .btn.secondary, .cs-hero-copy .btn.secondary { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .home-hero .hero-media { padding: 0 16px 26px; } .home-hero .hero-product-stage { grid-template-rows: 44px 198px; }
  .lotion-hero { padding: 42px 0 34px; } .lotion-hero-inner { width: min(calc(100% - 40px), 720px); gap: 22px; } .lotion-hero-stage { height: clamp(300px,78vw,350px); }
  .page-hero .lotion-hero-image, .page-hero .foam-hero-image { max-height: 360px; }
  .plastic-hero { min-height: 0; padding-block: 36px 28px; } .plastic-hero-shell { width: min(calc(100% - 40px), 700px); gap: 12px; } .plastic-hero-stage { height: min(72vw,300px); min-height: 260px; }
  .cs-hero { min-height: 0; padding: 42px 20px 34px; } .cs-hero-layout { gap: 22px; } .cs-hero-copy .cs-hero-subtitle { font-size: 18px; } .cs-hero-visual { min-height: 280px; }
  .floating-contact { right: calc(12px + env(safe-area-inset-right)); bottom: calc(12px + env(safe-area-inset-bottom)); gap: 8px; } .floating-contact-button { width: 54px; height: 54px; border-radius: 18px; } .floating-contact-button svg { width: 26px; height: 26px; } .floating-contact-popup { right: calc(100% + 10px); width: min(230px, calc(100vw - 88px)); }
  .site-footer { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
}

@media (max-width: 919px) and (max-width: 390px) {
.home-hero .button-row, .lotion-hero-copy .button-row, .cs-hero-copy .button-row { flex-direction: column; } .home-hero .button-row .btn, .lotion-hero-copy .button-row .btn, .cs-hero-copy .button-row .btn { width: 100%; flex-basis: auto; }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
  .mobile-nav-backdrop, .site-nav, .product-dropdown { transition: none; } .site-nav.is-open { -webkit-clip-path: inset(0); clip-path: inset(0); }
}

@media (max-width: 919px) {
/* Home and Lotion Pump Hero copy reveal: restrained, page-scoped typography motion. */
@keyframes reborn-hero-copy-reveal {
  from { opacity: 0; transform: translateY(var(--hero-copy-reveal-y, 20px)); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero .hero-text > .eyebrow,
.home-hero .hero-text > h1,
.home-hero .hero-text > .hero-description,
.home-hero .hero-text > .button-row,
.lotion-hero-copy > .eyebrow,
.lotion-hero-copy > h1,
.lotion-hero-copy > .lotion-hero-description,
.lotion-hero-copy > .button-row {
  --hero-copy-reveal-y: 20px;
  animation: reborn-hero-copy-reveal .65s cubic-bezier(.22, 1, .36, 1) both;
}

.home-hero .hero-text > .eyebrow,
.lotion-hero-copy > .eyebrow { animation-delay: 80ms; }

.home-hero .hero-text > h1,
.lotion-hero-copy > h1 { animation-delay: 160ms; }

.home-hero .hero-text > .hero-description,
.lotion-hero-copy > .lotion-hero-description { animation-delay: 300ms; }

.home-hero .hero-text > .button-row,
.lotion-hero-copy > .button-row { animation-delay: 420ms; }
}

@media (max-width: 919px) {
.home-hero .hero-text > .eyebrow,
  .home-hero .hero-text > h1,
  .home-hero .hero-text > .hero-description,
  .home-hero .hero-text > .button-row,
  .lotion-hero-copy > .eyebrow,
  .lotion-hero-copy > h1,
  .lotion-hero-copy > .lotion-hero-description,
  .lotion-hero-copy > .button-row {
    --hero-copy-reveal-y: 14px;
    animation-duration: .6s;
  }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.home-hero .hero-text > .eyebrow,
  .home-hero .hero-text > h1,
  .home-hero .hero-text > .hero-description,
  .home-hero .hero-text > .button-row,
  .lotion-hero-copy > .eyebrow,
  .lotion-hero-copy > h1,
  .lotion-hero-copy > .lotion-hero-description,
  .lotion-hero-copy > .button-row {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 919px) {
/* Plastic Bottle full-screen Hero */
.plastic-hero {
  display: flex;
  box-sizing: border-box;
  min-height: max(680px, calc(100svh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(35, 54, 68, .12) 0%, rgba(35, 54, 68, .06) 36%, transparent 54%),
    radial-gradient(ellipse at 77% 45%, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, .12) 29%, transparent 58%),
    linear-gradient(108deg, #9ba6af 0%, #bac2c8 49%, #d9dee2 100%);
}

.plastic-hero-shell {
  display: grid;
  width: min(calc(100% - 96px), 1480px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: clamp(34px, 4.5vw, 76px);
  align-items: center;
}

.plastic-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 630px);
  color: #fff;
  animation: cs-copy-enter .65s ease-out both;
}

.plastic-hero-copy .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.plastic-hero-copy h1 {
  width: 700px;
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 2.7vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.plastic-hero-copy h1 span { display: inline; }

.plastic-hero-description {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.plastic-hero-copy .button-row { gap: 13px; margin-top: 28px; }

.plastic-hero-copy .btn {
  min-height: 52px;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}

.plastic-hero-copy .btn.primary {
  background: #173f59;
  border-color: #173f59;
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 45, 63, .14);
}

.plastic-hero-copy .btn.primary:hover,
.plastic-hero-copy .btn.primary:focus-visible {
  background: #17364d;
  border-color: #17364d;
}

.plastic-hero-copy .btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
}

.plastic-hero-copy .btn.secondary:hover,
.plastic-hero-copy .btn.secondary:focus-visible {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  color: #fff;
}

.plastic-hero-visual { position: relative; z-index: 1; min-width: 0; }

.plastic-hero-stage {
  position: relative;
  width: 100%;
  height: clamp(520px, 43vw, 690px);
}

.plastic-hero-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 11%;
  bottom: calc(9% - 7px);
  z-index: 0;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(48, 63, 73, .10) 0%, rgba(48, 63, 73, .045) 48%, transparent 76%);
  filter: blur(7px);
}

.plastic-hero-product-row {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 28px), 760px);
  align-items: flex-end;
  gap: clamp(16px, 1.6vw, 28px);
  transform: translateX(-50%);
}

.plastic-hero-product {
  --product-grow: 24;
  --product-ratio: 1 / 3;
  --image-height: 102.46%;
  --image-shift-x: -34.29%;
  --image-shift-y: 1.28%;
  --image-crop: 1.12% 33.17% 1.28% 34.29%;
  position: relative;
  flex: var(--product-grow) 1 0;
  min-width: 0;
  aspect-ratio: var(--product-ratio);
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: cs-product-enter .7s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--product-delay);
}

.plastic-hero-product::after {
  content: "";
  position: absolute;
  left: 13%;
  bottom: -3px;
  z-index: 0;
  width: 74%;
  height: 8px;
  border-radius: 50%;
  background: rgba(42, 56, 66, .16);
  filter: blur(6px);
}

.plastic-hero-product img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: auto;
  max-width: none;
  height: var(--image-height);
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  clip-path: inset(var(--image-crop));
  filter: drop-shadow(0 6px 7px rgba(48, 63, 73, .08));
  transform: translate(var(--image-shift-x), var(--image-shift-y));
}

.plastic-hero-product--01 { --product-grow: 24; --product-ratio: 408 / 1224; --product-delay: 0ms; }

.plastic-hero-product--02 { --product-grow: 30.5; --product-ratio: 478 / 1196; --image-height: 104.85%; --image-shift-x: -32.38%; --image-shift-y: 3.03%; --image-crop: 1.59% 29.51% 3.03% 32.38%; --product-delay: 90ms; }

.plastic-hero-product--03 { --product-grow: 24.2; --product-ratio: 415 / 1191; --image-height: 105.29%; --image-shift-x: -35.09%; --image-shift-y: 2.55%; --image-crop: 2.47% 31.82% 2.55% 35.09%; --product-delay: 180ms; }

.plastic-hero-product--04 { --product-grow: 21.3; --product-ratio: 382 / 1215; --image-height: 103.21%; --image-shift-x: -34.45%; --image-shift-y: 2.07%; --image-crop: 1.04% 35.09% 2.07% 34.45%; --product-delay: 270ms; }

#pet-bottle-products { scroll-margin-top: calc(var(--header-height) + 18px); }
}

@media (max-width: 919px) {
.plastic-hero {
    min-height: calc(100svh - var(--header-height));
    padding: 46px 0 34px;
    overflow: hidden;
  }
  .plastic-hero-shell {
    width: min(calc(100% - 40px), 700px);
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .plastic-hero-copy { width: 100%; max-width: 670px; }
  .plastic-hero-copy .eyebrow { margin-bottom: 14px; font-size: 12px; }
  .plastic-hero-copy h1 { width: 100%; max-width: 670px; margin-bottom: 20px; font-size: clamp(42px, 7vw, 52px); line-height: 1.04; letter-spacing: -1.4px; white-space: normal; }
  .plastic-hero-description { max-width: 620px; margin-bottom: 26px; font-size: 16px; line-height: 1.62; }
  .plastic-hero-stage { width: min(100%, 680px); height: min(53vw, 430px); min-height: 330px; margin-inline: auto; }
  .plastic-hero-product-row { width: min(calc(100% - 24px), 560px); gap: clamp(14px, 2.4vw, 20px); }
}

@media (max-width: 919px) and (max-width: 520px) {
.plastic-hero { padding: 38px 0 28px; }
  .plastic-hero-shell { width: min(calc(100% - 32px), 480px); gap: 14px; }
  .plastic-hero-copy h1 { margin-bottom: 18px; font-size: clamp(38px, 10.3vw, 44px); line-height: 1.035; letter-spacing: -1.2px; }
  .plastic-hero-description { margin-bottom: 24px; font-size: 15px; line-height: 1.58; }
  .plastic-hero-copy .button-row { align-items: stretch; flex-wrap: wrap; gap: 10px; }
  .plastic-hero-copy .btn { flex: 1 1 145px; min-height: 50px; padding-inline: 18px; }
  .plastic-hero-stage { width: 100%; height: min(77vw, 310px); min-height: 280px; }
  .plastic-hero-product-row { bottom: 10%; width: min(calc(100% - 8px), 400px); gap: 10px; }
  .plastic-hero-stage::after { bottom: calc(10% - 6px); }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.plastic-hero-copy { opacity: 1; transform: none; animation: none; transition: none; }
  .plastic-hero-product { opacity: 1; transform: none; animation: none; }
  .plastic-hero *, .plastic-hero *::before, .plastic-hero *::after { transition: none; }
}

@media (max-width: 919px) {
/* Final homepage Hero refinement: preserve the established composition and tune only its visual balance. */
.home-hero .hero-text,
.home-hero .hero-media { transform: translateY(-24px); }

.home-hero .hero-text { width: min(100% - 48px, 760px); max-width: 760px; }

.home-hero h1 { max-width: 760px; }

.home-hero .hero-product-stage { transform: translateX(-68px) scale(1.2); }

.home-hero .hero-product--pump-a { --product-size: 54%; --product-left: 0%; }

.home-hero .hero-product--green { --product-size: 50%; --product-left: 32%; }

.home-hero .hero-product--spray { --product-size: 64%; --product-left: 36%; }

.home-hero .hero-product--anchor { --product-size: 64%; --product-left: 53%; }

.home-hero .hero-product img { filter: drop-shadow(0 16px 18px rgba(30, 45, 60, .08)) drop-shadow(0 5px 8px rgba(30, 45, 60, .05)); }

.home-hero .btn.secondary { border-color: rgba(255, 255, 255, .76); }

.home-hero .btn.secondary:hover, .home-hero .btn.secondary:focus-visible { background: rgba(255, 255, 255, .1); }
}

@media (max-width: 919px) {
.home-hero .hero-text,
  .home-hero .hero-media { transform: none; }
  .home-hero .hero-text { width: min(100% - 40px, 700px); max-width: 700px; }
  .home-hero h1 { max-width: 680px; }
}

@media (max-width: 919px) {
/* Incremental product-family balance: explicit visual tiers for the five real assets. */
.home-hero .hero-product-stage { transform: translateX(-32px) scale(1.296); }

.home-hero .hero-product { width: var(--product-size); height: var(--product-size); aspect-ratio: 1; }

.home-hero .hero-product--pump-a { --product-size: 52%; --product-left: 13%; left: var(--product-left); bottom: 0; z-index: 1; }

.home-hero .hero-product--green { --product-size: 50%; --product-left: 30%; left: var(--product-left); bottom: 0; z-index: 4; }

.home-hero .hero-product--spray { --product-size: 62%; --product-left: 40%; left: var(--product-left); bottom: 0; z-index: 5; }

.home-hero .hero-product--anchor { --product-size: 62%; --product-left: 58%; left: var(--product-left); bottom: 0; z-index: 6; }
}

@media (max-width: 919px) {
.home-hero .hero-product-stage { transform: none; }
  .home-hero .hero-product { left: auto; }
  .home-hero .hero-product--pump-a { width: 76px; height: 118px; margin-bottom: 0; }
  .home-hero .hero-product--green { width: 152px; height: 152px; }
  .home-hero .hero-product--spray { width: 184px; height: 184px; }
  .home-hero .hero-product--anchor { width: 160px; height: 240px; }
}

@media (max-width: 919px) and (max-width: 520px) {
.home-hero .hero-product--pump-a { width: 61px; height: 96px; margin-bottom: 0; }
  .home-hero .hero-product--green { width: 126px; height: 126px; }
  .home-hero .hero-product--spray { width: 154px; height: 154px; }
  .home-hero .hero-product--anchor { width: 132px; height: 198px; }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.home-hero .hero-product { opacity: 1; transform: none; animation: none; }
}

@media (max-width: 919px) {
/* Foam Pump full-screen Hero: page-scoped to prevent cross-page layout changes. */
.foam-pump-page .foam-hero {
  display: flex;
  box-sizing: border-box;
  min-height: max(680px, calc(100svh - var(--header-height)));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(35, 59, 73, .11) 0%, rgba(35, 59, 73, .045) 39%, transparent 57%),
    radial-gradient(ellipse at 78% 44%, rgba(255, 255, 255, .30) 0%, rgba(255, 255, 255, .11) 30%, transparent 59%),
    linear-gradient(108deg, #718a99 0%, #9bafb9 50%, #cbd6da 100%);
}

.foam-pump-page .foam-hero__inner {
  display: grid;
  width: min(calc(100% - 96px), 1480px);
  min-height: inherit;
  margin-inline: auto;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
}

.foam-pump-page .foam-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  color: #fff;
}

.foam-pump-page .foam-hero__content > .eyebrow {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .16em;
}

.foam-pump-page .foam-hero__content > h1 {
  max-width: 780px;
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(48px, 2.65vw, 56px);
  font-weight: 700;
  line-height: 1.055;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.foam-pump-page .foam-hero__description {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.62;
}

.foam-pump-page .foam-hero__content > .button-row { gap: 12px; margin-top: 0; }

.foam-pump-page .foam-hero__content .btn {
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}

.foam-pump-page .foam-hero__content .btn.primary {
  background: #25465f;
  border-color: #25465f;
  color: #fff;
  box-shadow: 0 10px 24px rgba(21, 45, 63, .16);
}

.foam-pump-page .foam-hero__content .btn.primary:hover,
.foam-pump-page .foam-hero__content .btn.primary:focus-visible { background: #17364d; border-color: #17364d; }

.foam-pump-page .foam-hero__content .btn.secondary { background: transparent; border-color: rgba(255, 255, 255, .72); color: #fff; }

.foam-pump-page .foam-hero__content .btn.secondary:hover,
.foam-pump-page .foam-hero__content .btn.secondary:focus-visible { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }

.foam-pump-page .foam-hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: clamp(540px, 44vw, 690px);
}

.foam-pump-page .foam-hero__products {
  --foam-product-height: clamp(370px, 29vw, 500px);
  position: absolute;
  right: clamp(12px, 1.4vw, 24px);
  bottom: 10%;
  display: flex;
  align-items: flex-end;
  gap: clamp(15px, 1.25vw, 23px);
}

.foam-pump-page .foam-hero__product {
  position: relative;
  flex: 0 0 auto;
  width: calc(var(--foam-product-height) * var(--foam-visible-ratio));
  height: var(--foam-product-height);
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: lotion-product-enter .7s cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--foam-product-delay);
}

.foam-pump-page .foam-hero__product::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: -4px;
  z-index: 0;
  width: 76%;
  height: 9px;
  border-radius: 50%;
  background: rgba(42, 61, 72, .14);
  filter: blur(7px);
}

.foam-pump-page .foam-hero__product img {
  position: absolute;
  left: var(--foam-image-left);
  top: var(--foam-image-top);
  z-index: 1;
  display: block;
  width: auto;
  max-width: none;
  height: var(--foam-image-height);
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: drop-shadow(0 13px 16px rgba(36, 56, 69, .10));
}

.foam-pump-page .foam-hero__product--01 { --foam-visible-ratio: .3722; --foam-image-height: 100.94%; --foam-image-left: -47.20%; --foam-image-top: -.44%; --foam-product-delay: 80ms; }

.foam-pump-page .foam-hero__product--02 { --foam-visible-ratio: .4334; --foam-image-height: 102.11%; --foam-image-left: -39.33%; --foam-image-top: -2.04%; --foam-product-delay: 150ms; }

.foam-pump-page .foam-hero__product--03 { --foam-visible-ratio: .3893; --foam-image-height: 103.21%; --foam-image-left: -83.30%; --foam-image-top: -1.48%; --foam-product-delay: 220ms; }

.foam-pump-page .foam-hero__product--04 { --foam-visible-ratio: .3317; --foam-image-height: 102.20%; --foam-image-left: -104.18%; --foam-image-top: -1.63%; --foam-product-delay: 290ms; }

.foam-pump-page .foam-hero__content > .eyebrow,
.foam-pump-page .foam-hero__content > h1,
.foam-pump-page .foam-hero__content > .foam-hero__description,
.foam-pump-page .foam-hero__content > .button-row {
  --hero-copy-reveal-y: 20px;
  animation: reborn-hero-copy-reveal .65s cubic-bezier(.22, 1, .36, 1) both;
}

.foam-pump-page .foam-hero__content > .eyebrow { animation-delay: 80ms; }

.foam-pump-page .foam-hero__content > h1 { animation-delay: 160ms; }

.foam-pump-page .foam-hero__content > .foam-hero__description { animation-delay: 300ms; }

.foam-pump-page .foam-hero__content > .button-row { animation-delay: 420ms; }
}

@media (max-width: 919px) {
.foam-pump-page .foam-hero { min-height: calc(100svh - var(--header-height)); padding: 48px 0 34px; }
  .foam-pump-page .foam-hero__inner { width: min(calc(100% - 40px), 700px); min-height: 0; grid-template-columns: 1fr; gap: 24px; }
  .foam-pump-page .foam-hero__content { width: 100%; max-width: 680px; }
  .foam-pump-page .foam-hero__content > .eyebrow { margin-bottom: 16px; font-size: 12px; }
  .foam-pump-page .foam-hero__content > h1 { max-width: 680px; margin-bottom: 22px; font-size: clamp(38px, 7.4vw, 50px); white-space: normal; }
  .foam-pump-page .foam-hero__description { max-width: 670px; margin-bottom: 26px; font-size: 15px; line-height: 1.65; }
  .foam-pump-page .foam-hero__visual { width: 100%; height: clamp(310px, 66vw, 500px); }
  .foam-pump-page .foam-hero__products { --foam-product-height: clamp(235px, 54vw, 380px); right: 50%; bottom: 5%; gap: clamp(8px, 1.7vw, 13px); transform: translateX(50%); }
}

@media (max-width: 919px) and (max-width: 520px) {
.foam-pump-page .foam-hero { min-height: 0; padding: 40px 0 28px; }
  .foam-pump-page .foam-hero__inner { width: min(calc(100% - 32px), 480px); gap: 18px; }
  .foam-pump-page .foam-hero__content > h1 { margin-bottom: 20px; font-size: clamp(34px, 9.8vw, 43px); line-height: 1.045; letter-spacing: -1.2px; }
  .foam-pump-page .foam-hero__content > .button-row { align-items: stretch; flex-wrap: wrap; gap: 10px; }
  .foam-pump-page .foam-hero__content .btn { flex: 1 1 145px; min-height: 50px; padding-inline: 18px; }
  .foam-pump-page .foam-hero__visual { height: clamp(250px, 72vw, 350px); }
  .foam-pump-page .foam-hero__products { --foam-product-height: clamp(170px, 52vw, 270px); bottom: 4%; gap: clamp(7px, 1.8vw, 10px); }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.foam-pump-page .foam-hero__content > .eyebrow,
  .foam-pump-page .foam-hero__content > h1,
  .foam-pump-page .foam-hero__content > .foam-hero__description,
  .foam-pump-page .foam-hero__content > .button-row,
  .foam-pump-page .foam-hero__product { opacity: 1; transform: none; animation: none; transition: none; }
  .foam-pump-page .foam-hero *,
  .foam-pump-page .foam-hero *::before,
  .foam-pump-page .foam-hero *::after { transition: none; }
}

/* Final mobile cascade guard: these rules intentionally apply below the desktop breakpoint only. */
@media (max-width: 919px) {
 html { overflow-x: clip; }
  .home-hero .hero-text { padding-top: 38px; padding-bottom: 24px; }
  .home-hero h1, .lotion-hero-copy h1, .cs-hero-copy h1, .foam-pump-page .foam-hero__content > h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1.02; letter-spacing: -.035em; overflow-wrap: anywhere; }
  .home-hero .hero-description, .lotion-hero-description, .cs-hero-copy .cs-hero-description, .foam-pump-page .foam-hero__description { font-size: 17px; line-height: 1.58; }
  .home-hero .button-row .btn, .lotion-hero-copy .button-row .btn, .cs-hero-copy .button-row .btn, .foam-pump-page .foam-hero__content .btn { min-height: 56px; border-radius: 19px; }
  .home-hero .hero-product-stage { grid-template-rows: 44px 198px; }
}

@media (max-width: 919px) and (max-width: 390px) {
.home-hero .button-row, .lotion-hero-copy .button-row, .cs-hero-copy .button-row, .foam-pump-page .foam-hero__content > .button-row { flex-direction: column; }
  .home-hero .button-row .btn, .lotion-hero-copy .button-row .btn, .cs-hero-copy .button-row .btn, .foam-pump-page .foam-hero__content .btn { width: 100%; flex-basis: auto; }
}

/* Mobile UI system: content surfaces stay solid; glass is reserved for functional controls. */
@media (max-width: 919px) {
:root { --mobile-page-pad: 20px; --mobile-surface: #f5f7f9; --mobile-surface-alt: #f1f5f7; --mobile-card-radius: 26px; --mobile-button-radius: 19px; }
  body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Arial, sans-serif; background: #f5f7f9; }
  .section { padding: 64px var(--mobile-page-pad); } .section-heading { margin-bottom: 32px; text-align: left; }
  .section-heading h2, .about-section-intro h2, .factory-process-heading h2 { font-size: clamp(28px,8.5vw,34px); line-height: 1.12; letter-spacing: -.035em; }
  .section-heading > p:last-child, .about-section-intro > p:last-child { font-size: 16px; line-height: 1.6; } .eyebrow { font-size: 12px; letter-spacing: .14em; }
  .home-products-section { padding-top: 64px; padding-bottom: 72px; background: var(--mobile-surface); }
  .home-products-section .section-heading, .home-product-grid { width: 100%; } .home-product-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .home-product-grid .product-card { min-height: 390px; border: 1px solid #dfe7ec; border-radius: var(--mobile-card-radius); background: #fff; box-shadow: 0 8px 24px rgba(21,45,63,.06); }
  .home-product-grid .product-image-link { min-height: 230px; aspect-ratio: 4 / 3; border-radius: 25px 25px 0 0; background: var(--mobile-surface-alt); }
  .home-product-grid .product-card-content { padding: 20px 20px 22px; } .home-product-grid .product-card h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.25; }
  .home-product-grid .product-card > .product-card-content > p { min-height: 0; max-height: none; font-size: 16px; line-height: 1.55; }
  .home-product-grid .product-category-tags a { min-height: 32px; padding: 6px 10px; border-radius: 999px; font-size: 12px; } .home-product-grid .product-card-actions .btn { min-height: 44px; border-radius: 14px; font-size: 14px; }
  .home-oem-section .card-grid.five { display: grid; grid-template-columns: 1fr; gap: 12px; } .home-oem-section .mini-card, .manufacturing-feature-grid article { min-height: 0; padding: 22px; border-radius: 22px; background: #fff; box-shadow: 0 6px 20px rgba(21,45,63,.045); }
  .home-oem-section .mini-card p, .manufacturing-feature-grid article p { font-size: 16px; line-height: 1.6; }
  .home-inspection-section { background: #fff; }
  .home-inspection-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .home-inspection-grid .inspection-card { overflow: hidden; border: 1px solid #dfe7ec; border-radius: var(--mobile-card-radius); background: #fff; box-shadow: 0 8px 24px rgba(21,45,63,.055); }
  .home-inspection-grid .inspection-card > img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
  .inspection-card-content { padding: 20px 20px 22px; }
  .inspection-card-content h3 { font-size: 20px; line-height: 1.25; }
  .inspection-card-content p { font-size: 16px; line-height: 1.55; }
  .manufacturing-strength-section { padding: 64px var(--mobile-page-pad); background: var(--mobile-surface-alt); } .manufacturing-strength-inner { display: grid; grid-template-columns: 1fr; gap: 28px; }
  .manufacturing-collage { display: flex; height: auto; aspect-ratio: auto; gap: 12px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; scrollbar-width: none; } .manufacturing-collage::-webkit-scrollbar { display: none; }
  .manufacturing-collage img { flex: 0 0 84vw; width: 84vw; height: 270px; aspect-ratio: 4 / 3; border-radius: 28px; object-fit: cover; scroll-snap-align: start; background: #eaf0f3; }
  .manufacturing-feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; } .manufacturing-feature-grid article { padding: 18px; } .manufacturing-feature-grid article h3 { font-size: 18px; } .manufacturing-feature-grid article p { font-size: 14px; }
  .hero-stats, .factory-hero-stats, .factory-capability-data { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; } .hero-stats div, .factory-hero-stats div, .factory-capability-data li { min-height: 88px; padding: 16px; border: 0; border-radius: 20px; background: rgba(255,255,255,.62); } .hero-stats strong, .factory-hero-stats strong { font-size: 24px; } .hero-stats span, .factory-hero-stats span, .factory-capability-data span { font-size: 13px; line-height: 1.45; } .factory-capability-data { display: grid; margin-top: 24px; } .factory-capability-data li:first-child { padding-left: 16px; border-top: 0; }
  .site-footer.corporate-footer { padding: 52px var(--mobile-page-pad) 0; } .corporate-footer-grid { display: block; } .footer-brand-block { padding-bottom: 28px; } .footer-brand-block h3 { font-size: 18px; }
  .footer-accordion-trigger { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; padding: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.16); background: transparent; color: #fff; font: inherit; font-size: 16px; font-weight: 700; text-align: left; cursor: pointer; }
  .footer-accordion-trigger span:last-child { font-size: 24px; font-weight: 400; transition: transform .24s ease; } .footer-accordion-panel { display: none; padding: 12px 0 18px; } .footer-accordion-panel > h4 { display: none; } .footer-accordion-panel > * { margin-top: 8px; } .footer-accordion-panel > dl { margin-top: 8px; }
  .footer-accordion-panel > .footer-location-item + .footer-location-item { margin-top: 16px; } .footer-accordion-panel > .footer-company-links { margin-top: 14px; } .footer-accordion-panel > .footer-whatsapp-link { margin-top: 0; } .footer-accordion-panel > a, .footer-accordion-panel > ul, .footer-accordion-panel > dl { margin-bottom: 0; }
  .corporate-footer-grid > section, .corporate-footer-grid > nav { border-bottom: 1px solid rgba(255,255,255,.16); } .corporate-footer-grid > section.footer-brand-block { border-bottom: 0; } .corporate-footer-grid > section.footer-brand-block h4 { display: none; }
  .corporate-footer-grid > section:not(.footer-brand-block) > .footer-accordion-trigger, .corporate-footer-grid > nav > .footer-accordion-trigger { display: flex; } .corporate-footer-grid > section.is-expanded > .footer-accordion-panel, .corporate-footer-grid > nav.is-expanded > .footer-accordion-panel { display: block; }
  .corporate-footer-grid > section.is-expanded .footer-accordion-trigger span:last-child, .corporate-footer-grid > nav.is-expanded .footer-accordion-trigger span:last-child { transform: rotate(45deg); } .corporate-footer-bottom { flex-direction: column; gap: 7px; margin-top: 24px; padding-bottom: calc(18px + env(safe-area-inset-bottom)); font-size: 12px; }
  .floating-contact { right: 12px; left: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 64px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.68); border-radius: 26px; background: rgba(245,248,250,.80); box-shadow: 0 12px 32px rgba(15,31,44,.16); -webkit-backdrop-filter: blur(24px) saturate(1.6); backdrop-filter: blur(24px) saturate(1.6); }
  .floating-contact-item { flex: 0 0 auto; } .floating-contact-button { width: 48px; height: 48px; border-radius: 18px; border-color: rgba(37,70,95,.16); background: rgba(255,255,255,.55); color: var(--brand-dark); box-shadow: none; } .floating-contact-button svg { width: 23px; height: 23px; }
  .floating-contact-popup { bottom: calc(100% + 10px); right: 0; width: min(230px, calc(100vw - 40px)); } .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

@media (max-width: 919px) and (max-width: 390px) {
:root { --mobile-page-pad: 16px; } .home-product-grid .product-image-link { min-height: 210px; } .manufacturing-feature-grid { grid-template-columns: 1fr; } .floating-contact { gap: 5px; } .floating-contact-button { width: 46px; height: 46px; }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.footer-accordion-trigger span:last-child { transition: none; }
}

/* Migrated homepage mobile editorial layer. */
@media (max-width: 919px) {
:root:has(body.home-page) {
    --rb-bg: #f4f2ee;
    --rb-surface: #ffffff;
    --rb-text: #172126;
    --rb-muted: #6f777a;
    --rb-navy: #163746;
    --rb-navy-dark: #102b35;
    --rb-footer: #0e252e;
    --rb-line: rgba(23, 33, 38, 0.12);
    --rb-line-light: rgba(255, 255, 255, 0.16);
    --rb-gutter: 18px;
    --rb-content-max: 620px;
  }

  html:has(body.home-page) {
    max-width: 100%;
    overflow-x: hidden;
    scroll-padding-top: calc(66px + env(safe-area-inset-top));
  }

  body.home-page {
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: var(--rb-bg);
    color: var(--rb-text);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  body.home-page.menu-open { overflow: hidden; }

  .home-page :where(a, button, summary) {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .home-page :where(a, button, summary):focus-visible {
    outline: 2px solid rgba(22, 55, 70, 0.42);
    outline-offset: 3px;
  }

  .home-page img { max-width: 100%; }

  .mobile-language[hidden],
  .mobile-only-nav-item[hidden],
  .mobile-only-copy[hidden],
  .mobile-manufacturing-stat[hidden],
  .mobile-contact-actions[hidden] { display: revert !important; }

  .desktop-only-copy { display: none !important; }

  /* Premium minimal navigation */
  .home-page > .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    width: 100%;
    min-height: calc(64px + env(safe-area-inset-top));
    margin: 0;
    padding: env(safe-area-inset-top) var(--rb-gutter) 0;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    column-gap: 8px;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    background: rgba(244, 242, 238, 0.97);
    box-shadow: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .home-page > .site-header.is-scrolled {
    border-bottom-color: rgba(23, 33, 38, 0.08);
    box-shadow: 0 4px 16px rgba(23, 33, 38, 0.05);
  }

  .home-page .site-header .logo {
    display: inline-flex;
    min-width: 0;
    max-width: calc(100vw - 110px);
    grid-column: 1;
    align-items: center;
    justify-self: start;
    gap: 7px;
    margin: 0;
    color: var(--rb-text);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .home-page .site-header .logo img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
  }

  .home-page .mobile-language {
    display: inline-flex !important;
    min-width: 44px;
    min-height: 44px;
    grid-column: 2;
    align-items: center;
    justify-content: center;
    color: var(--rb-text);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.04em;
  }

  .home-page .header-cta { display: none !important; }
  .home-page .desktop-menu-toggle { display: none !important; }
  .home-page .desktop-nav { display: none !important; }

  .home-page .mobile-menu-toggle {
    display: inline-flex;
    width: auto;
    min-width: 52px;
    height: 44px;
    min-height: 44px;
    grid-column: 3;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-text);
    box-shadow: none;
    transition: opacity 160ms ease;
  }

  .home-page .mobile-menu-toggle:active { opacity: 0.58; transform: none; }
  .home-page .mobile-menu-toggle-icon { display: grid; gap: 4px; order: 2; }
  .home-page .mobile-menu-toggle-icon span { display: block; width: 21px; height: 1.5px; border-radius: 0; background: currentColor; }
  .home-page .mobile-menu-toggle-label { position: static; width: auto; height: auto; overflow: visible; clip-path: none; color: currentColor; font-size: 11.5px; font-weight: 600; line-height: 1; white-space: nowrap; }

  /* Full-screen editorial menu */
  .home-page .mobile-nav-backdrop { display: none !important; }

  .home-page .mobile-editorial-nav {
    position: fixed;
    z-index: 110;
    inset: 0;
    display: flex;
    width: 100%;
    max-height: none;
    padding: calc(20px + env(safe-area-inset-top)) var(--rb-gutter) calc(24px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    background: var(--rb-bg);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 260ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
    overscroll-behavior: contain;
  }

  .home-page .mobile-editorial-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page .mobile-editorial-menu-brand {
    display: inline-flex !important;
    max-width: 100%;
    min-height: 44px;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    color: var(--rb-text);
    font-size: 17px;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .home-page .mobile-editorial-menu-brand img { width: 34px; height: 34px; object-fit: contain; }

  .home-page .mobile-editorial-nav-close {
    position: absolute;
    top: calc(20px + env(safe-area-inset-top));
    right: var(--rb-gutter);
    display: inline-flex;
    width: auto;
    min-width: 64px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-text);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
  }

  .home-page .mobile-editorial-nav-close span:first-child { order: 2; font-size: 24px; font-weight: 300; line-height: 1; }
  .home-page .mobile-editorial-nav-close:active { opacity: 0.58; transform: none; }

  .home-page .mobile-editorial-nav-list {
    display: block;
    width: 100%;
    margin: clamp(58px, 9vh, 86px) 0 0;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .home-page .mobile-editorial-nav-list > li {
    width: 100%;
    border: 0;
  }

  .home-page .mobile-editorial-nav-list > li > a,
  .home-page .mobile-editorial-products-primary > a {
    position: static;
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 7px 0;
    border: 0;
    border-radius: 0;
    color: var(--rb-text);
    font-size: clamp(28px, 8.2vw, 32px);
    font-weight: 575;
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .home-page .mobile-editorial-nav-list > li > a::after,
  .home-page .mobile-editorial-products-primary > a::after { display: none; }

  .home-page .mobile-editorial-products-primary { display: grid; min-height: 58px; grid-template-columns: minmax(0, 1fr) 52px; align-items: center; }
  .home-page .mobile-editorial-products-primary > a { min-width: 0; }

  .home-page .mobile-editorial-products-toggle {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-text);
  }

  .home-page .mobile-editorial-products-toggle .dropdown-chevron { width: 20px; height: 20px; transition: transform 220ms ease; }
  .home-page .mobile-editorial-products-toggle:active { background: transparent; opacity: 0.55; }
  .home-page .mobile-editorial-products-item.is-open .dropdown-chevron { transform: rotate(180deg); }

  .home-page .mobile-editorial-products-list {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 34px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 260ms ease, padding-bottom 260ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .home-page .mobile-editorial-products-item.is-open .mobile-editorial-products-list {
    max-height: 330px;
    padding-bottom: 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .home-page .mobile-editorial-products-list li { margin: 0; border: 0; }
  .home-page .mobile-editorial-products-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    color: var(--rb-muted);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.3;
  }

  .home-page .mobile-editorial-menu-contact {
    display: flex !important;
    width: 100%;
    max-width: 360px;
    gap: 26px;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--rb-line);
  }

  .home-page .mobile-editorial-menu-contact a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: var(--rb-navy);
    font-size: 13px;
    font-weight: 650;
  }

  /* Editorial hero */
  .home-page main.home-page { width: 100%; min-width: 0; }

  .home-page .home-hero {
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: 62px var(--rb-gutter) 34px;
    overflow: hidden;
    background: var(--rb-bg);
  }

  .home-page .home-hero .hero-text {
    position: relative;
    z-index: 3;
    width: min(100%, var(--rb-content-max));
    max-width: var(--rb-content-max);
    margin: 0 auto;
    padding: 0;
    transform: none;
  }

  .home-page .home-hero .eyebrow {
    margin: 0 0 12px;
    color: #778286;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.16em;
  }

  .home-page .home-hero h1 {
    max-width: 470px;
    margin: 0 0 18px;
    color: var(--rb-text);
    font-size: clamp(39px, 10.4vw, 44px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .home-page .home-hero .hero-title-line { display: inline; }

  .home-page .home-hero .hero-description {
    display: -webkit-box;
    max-width: 360px;
    margin: 0;
    overflow: hidden;
    color: var(--rb-muted);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .home-page .home-hero .hero-description-line { display: inline; }

  .home-page .home-hero .button-row {
    display: flex;
    width: auto;
    max-width: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
  }

  .home-page .home-hero .button-row .btn {
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .home-page .home-hero .btn.secondary {
    order: -1;
    background: var(--rb-navy);
    border: 1px solid var(--rb-navy);
    color: #fff;
  }

  .home-page .home-hero .btn.secondary::after { content: "→"; margin-left: 8px; font-size: 14px; }

  .home-page .home-hero .btn.primary {
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-navy);
  }

  .home-page .home-hero .btn.primary::after { content: "→"; margin-left: 7px; }
  .home-page .home-hero .btn:active { opacity: 0.64; transform: none; }

  .home-page .home-hero .hero-media {
    position: relative;
    z-index: 2;
    width: min(100%, var(--rb-content-max));
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 30px auto 0;
    padding: 0;
    transform: none;
  }

  .home-page .home-hero .hero-product-stage {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    width: calc(100% + 36px);
    max-width: 660px;
    height: clamp(326px, 91vw, 392px);
    margin: 0 0 0 -18px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1fr;
    align-items: end;
    isolation: isolate;
    transform: none;
  }

  .home-page .home-hero .hero-product-stage::before { display: none; }

  .home-page .home-hero .hero-product-stage::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: 1%;
    left: 7%;
    z-index: 0;
    width: auto;
    height: 20px;
    border-radius: 50%;
    background: rgba(23, 33, 38, 0.12);
    filter: blur(15px);
    transform: scaleY(0.34);
  }

  .home-page .home-hero .hero-product {
    position: relative;
    inset: auto;
    display: block;
    justify-self: center;
    align-self: end;
    max-width: none;
    margin: 0;
    opacity: 1;
    aspect-ratio: auto;
  }

  .home-page .home-hero .hero-product::after { display: none; }

  .home-page .home-hero .hero-product img {
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 10px 13px rgba(23, 33, 38, 0.08));
  }

  .home-page .home-hero .hero-product--pump-a { grid-column: 1 / 4; grid-row: 1; z-index: 1; width: clamp(82px, 23vw, 102px); height: clamp(136px, 38vw, 166px); }
  .home-page .home-hero .hero-product--green { grid-column: 4 / 9; grid-row: 1; z-index: 4; width: clamp(166px, 45vw, 198px); height: clamp(166px, 45vw, 198px); }
  .home-page .home-hero .hero-product--spray { grid-column: 7 / 11; grid-row: 1; z-index: 5; width: clamp(190px, 52vw, 224px); height: clamp(190px, 52vw, 224px); margin-bottom: 36px; }
  .home-page .home-hero .hero-product--anchor { grid-column: 9 / 13; grid-row: 1; z-index: 6; width: clamp(168px, 46vw, 202px); height: clamp(252px, 69vw, 302px); margin-bottom: 6px; }

  /* Manufacturing credibility metrics */
  .home-page .home-trust-strip {
    width: 100%;
    padding: 38px var(--rb-gutter) 40px;
    border: 0;
    background: var(--rb-surface);
  }

  .home-page .home-trust-inner { display: block; width: min(100%, var(--rb-content-max)); margin: 0 auto; }

  .home-page .home-trust-inner > p {
    margin: 0 0 20px;
    color: var(--rb-muted);
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .home-page .home-trust-inner .hero-stats {
    display: grid;
    min-width: 0;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 0;
  }

  .home-page .home-trust-inner .hero-stats div {
    min-height: 82px;
    padding: 14px 13px;
    border: 0;
    border-right: 1px solid var(--rb-line);
    border-bottom: 1px solid var(--rb-line);
    border-radius: 0;
    background: transparent;
  }

  .home-page .home-trust-inner .hero-stats div:nth-child(2n) { border-right: 0; }
  .home-page .home-trust-inner .hero-stats div:nth-child(n + 3) { border-bottom: 0; }

  .home-page .home-trust-inner .hero-stats strong {
    display: block;
    margin: 0 0 7px;
    color: var(--rb-text);
    font-size: clamp(24px, 7vw, 28px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: nowrap;
  }

  .home-page .home-trust-inner .hero-stats span { color: var(--rb-muted); font-size: 12px; line-height: 1.35; white-space: normal; }

  /* Shared editorial section rhythm */
  .home-page main > .section {
    width: 100%;
    padding: 76px var(--rb-gutter);
  }

  .home-page main > .section > :where(.section-heading, .card-grid, .faq-list, .center),
  .home-page .manufacturing-strength-inner {
    width: min(100%, var(--rb-content-max));
    margin-right: auto;
    margin-left: auto;
  }

  .home-page main > .section .section-heading {
    max-width: none;
    margin: 0 auto 30px;
    text-align: left;
  }

  .home-page main > .section .section-heading .eyebrow,
  .home-page .manufacturing-heading .eyebrow,
  .home-page .home-inquiry-band .eyebrow {
    margin: 0 0 11px;
    color: #778286;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .home-page main > .section .section-heading h2,
  .home-page .manufacturing-heading h2,
  .home-page .home-inquiry-band h2 {
    margin: 0 0 15px;
    color: var(--rb-text);
    font-size: clamp(29px, 7.8vw, 34px);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .home-page main > .section .section-heading > p:last-child,
  .home-page .manufacturing-heading > p:last-child {
    max-width: 360px;
    margin: 0;
    color: var(--rb-muted);
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* Product range: the only horizontal story */
  .home-page .home-products-section {
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    background: var(--rb-bg);
  }

  .home-page .home-products-section .section-heading { width: min(calc(100% - (2 * var(--rb-gutter))), var(--rb-content-max)); }

  .home-page .home-product-grid {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--rb-gutter) 6px;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: stretch;
    scroll-padding-inline: var(--rb-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .home-page .home-product-grid::-webkit-scrollbar { display: none; }

  .home-page .home-product-grid .product-card {
    display: flex;
    width: min(84vw, 360px);
    min-width: min(84vw, 360px);
    min-height: 0;
    height: auto;
    flex: 0 0 min(84vw, 360px);
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 23px;
    background: var(--rb-surface);
    box-shadow: 0 10px 28px rgba(22, 55, 70, 0.05);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-page .home-product-grid .product-image-link {
    display: flex;
    width: 100%;
    min-height: clamp(270px, 74vw, 290px);
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 23px 23px 0 0;
    background: #f7f5f1;
  }

  .home-page .home-product-grid .product-image-link img {
    width: 100%;
    height: 100%;
    max-height: 290px;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transform: scale(1.04);
  }

  .home-page .home-product-grid .product-card-content {
    display: flex;
    min-height: 158px;
    flex: 1;
    flex-direction: column;
    padding: 18px 18px 20px;
  }

  .home-page .home-product-grid .product-card h3 { margin: 0 0 7px; color: var(--rb-text); font-size: 18px; font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }

  .home-page .home-product-grid .product-card > .product-card-content > p {
    display: -webkit-box;
    min-height: 0;
    max-height: none;
    margin: 0 0 11px;
    overflow: hidden;
    color: var(--rb-muted);
    font-size: 13px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .home-page .home-product-grid .product-category-tags { display: flex; min-height: 0; flex-wrap: wrap; gap: 5px 12px; margin: 0 0 10px; }
  .home-page .home-product-grid .product-category-tags a { min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; color: #7a8285; font-size: 11.5px; line-height: 1.35; }
  .home-page .home-product-grid .product-category-tags a + a::before { content: "/"; margin-right: 12px; color: rgba(23, 33, 38, 0.22); }

  .home-page .home-product-grid .product-card-actions { margin-top: auto; padding: 0; }
  .home-page .home-product-grid .product-card-actions .btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-navy);
    font-size: 13px;
    font-weight: 600;
  }

  .mobile-swipe-indicator {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 15px auto 0;
  }

  .mobile-swipe-dot {
    width: 4px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 33, 38, 0.24);
    cursor: pointer;
    transition: width 180ms ease, height 180ms ease, background-color 180ms ease;
  }

  .mobile-swipe-dot.is-active { width: 20px; height: 3px; background: var(--rb-text); }

  /* Manufacturing photography and data */
  .home-page .manufacturing-strength-section {
    padding: 80px var(--rb-gutter);
    background: var(--rb-surface);
  }

  .home-page .manufacturing-strength-inner {
    display: grid;
    max-width: var(--rb-content-max);
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "visual" "details";
    gap: 0;
  }

  .home-page .manufacturing-heading { grid-area: heading; }
  .home-page .manufacturing-visual { grid-area: visual; margin-top: 30px; }
  .home-page .manufacturing-details { grid-area: details; }
  .home-page .manufacturing-heading h2 { max-width: 340px; }

  .home-page .manufacturing-collage {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 21px;
    background: transparent;
  }

  .home-page .manufacturing-collage img { display: none; }

  .home-page .manufacturing-collage .factory-building-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.32 / 1;
    border-radius: 21px;
    object-fit: cover;
    object-position: center 64%;
    filter: none;
  }

  .home-page .manufacturing-feature-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rb-line);
    border-bottom: 1px solid var(--rb-line);
  }

  .home-page .manufacturing-feature-grid article {
    min-height: 94px;
    padding: 17px 13px;
    border: 0;
    border-right: 1px solid var(--rb-line);
    border-bottom: 1px solid var(--rb-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .manufacturing-feature-grid article:nth-child(2n) { border-right: 0; }
  .home-page .manufacturing-feature-grid article:nth-child(n + 3) { border-bottom: 0; }
  .home-page .manufacturing-feature-grid article > :not(.mobile-manufacturing-stat) { display: none; }
  .home-page .mobile-manufacturing-stat { display: block !important; }
  .home-page .mobile-manufacturing-stat strong { display: block; margin: 0 0 7px; color: var(--rb-text); font-size: 22px; font-weight: 650; line-height: 1.05; letter-spacing: -0.03em; }
  .home-page .mobile-manufacturing-stat small { display: block; color: var(--rb-muted); font-size: 12px; line-height: 1.35; }

  .home-page .manufacturing-actions { display: block; margin-top: 24px; }
  .home-page .manufacturing-actions .btn.primary {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-navy);
    font-size: 13px;
    font-weight: 600;
  }

  .home-page .manufacturing-actions .btn.primary::after { content: "→"; margin-left: 8px; }
  .home-page .manufacturing-actions .text-link { display: none; }

  /* OEM/ODM editorial service index */
  .home-page .home-oem-section { background: var(--rb-bg); }
  .home-page .home-oem-section .section-heading > p:last-child { max-width: 330px; }

  .home-page .home-oem-section .card-grid.five {
    display: block;
    width: min(100%, var(--rb-content-max));
    margin: 0 auto;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-reset: oem-service;
  }

  .home-page .home-oem-section .mini-card {
    position: relative;
    display: grid;
    min-height: 0;
    padding: 23px 0;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    grid-template-rows: auto auto;
    align-items: start;
    column-gap: 8px;
    border: 0;
    border-bottom: 1px solid var(--rb-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-increment: oem-service;
  }

  .home-page .home-oem-section .mini-card:first-child { border-top: 1px solid var(--rb-line); }

  .home-page .home-oem-section .mini-card::before {
    content: counter(oem-service, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 3px;
    color: #899093;
    font-size: 10.5px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .home-page .home-oem-section .mini-card::after {
    content: "→";
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--rb-navy);
    font-size: 15px;
    line-height: 1;
  }

  .home-page .home-oem-section .mini-card h3 { grid-column: 2; grid-row: 1; margin: 0 0 5px; color: var(--rb-text); font-size: 16.5px; font-weight: 600; line-height: 1.25; }
  .home-page .home-oem-section .mini-card p { grid-column: 2; grid-row: 2; margin: 0; color: var(--rb-muted); font-size: 13px; line-height: 1.45; }
  .home-page .home-oem-section .center { margin-top: 22px; text-align: left; }
  .home-page .home-oem-section .center .btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rb-navy);
    font-size: 13px;
    font-weight: 600;
  }

  .home-page .home-oem-section .center .btn::after { content: "→"; margin-left: 8px; }


  /* Inspection photography story */
  .home-page .home-inspection-section {
    padding: 80px var(--rb-gutter);
    background: var(--rb-surface);
  }

  .home-page .home-inspection-grid {
    display: block;
    width: min(100%, var(--rb-content-max));
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    counter-reset: inspection-story;
  }

  .home-page .home-inspection-grid .inspection-card {
    display: block;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    margin: 0 0 52px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-increment: inspection-story;
  }

  .home-page .home-inspection-grid .inspection-card:last-child { margin-bottom: 0; }

  .home-page .home-inspection-grid .inspection-card > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 21px;
    object-fit: cover;
    object-position: center;
    filter: none;
  }

  .home-page .inspection-card-content { min-height: 0; padding: 17px 0 0; }

  .home-page .inspection-card-content h3 {
    margin: 0 0 8px;
    color: var(--rb-text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .home-page .inspection-card-content h3::before {
    content: counter(inspection-story, decimal-leading-zero) " — ";
    color: #7e8689;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .home-page .inspection-card-content p {
    max-width: 390px;
    margin: 0;
    color: var(--rb-muted);
    font-size: 13.5px;
    line-height: 1.55;
  }

  .home-page .home-inspection-section + .faq-section {
    padding: 76px var(--rb-gutter);
    background: var(--rb-bg);
  }


  .home-page .faq-section .faq-list {
    display: block;
    width: min(100%, var(--rb-content-max));
    max-width: var(--rb-content-max);
    margin: 0 auto;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--rb-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .faq-list details {
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid var(--rb-line);
    border-radius: 0;
    background: transparent;
  }

  .home-page .faq-list details summary {
    position: relative;
    display: flex;
    min-height: 60px;
    align-items: center;
    padding: 18px 34px 18px 0;
    color: var(--rb-text);
    font-size: 14px;
    font-weight: 575;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
  }

  .home-page .faq-list details summary::-webkit-details-marker { display: none; }

  .home-page .faq-list details summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--rb-text);
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 230ms ease;
  }

  .home-page .faq-list details[open] summary::after { content: "+"; background: transparent; color: var(--rb-text); transform: translateY(-50%) rotate(45deg); }

  .home-page .faq-list details > p {
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0 26px 0 0;
    overflow: hidden;
    color: var(--rb-muted);
    font-size: 13.5px;
    line-height: 1.55;
    opacity: 0;
    transition: max-height 240ms ease, padding-bottom 240ms ease, opacity 200ms ease;
  }

  .home-page .faq-list details[open] > p { max-height: 260px; padding-bottom: 18px; opacity: 1; }

  /* Deep navy conversion peak */
  .home-page .home-inquiry-band {
    display: block;
    width: 100%;
    margin: 0;
    padding: 84px var(--rb-gutter);
    background: #e8eef2;
    color: #fff;
  }

  .home-page .home-inquiry-band > div,
  .home-page .home-inquiry-band > .contact-qr-section { width: min(100%, var(--rb-content-max)); margin-right: auto; margin-left: auto; }
  .home-page .home-inquiry-band > div { max-width: var(--rb-content-max); }
  .home-page .home-inquiry-band .eyebrow { color: #173f59; }
  .home-page .home-inquiry-band .eyebrow { font-size: 0; }
  .home-page .home-inquiry-band .eyebrow::after { content: "LET'S WORK TOGETHER"; font-size: 10px; }
  .home-page .home-inquiry-band h2 { max-width: 430px; margin-bottom: 16px; color: #16384d; font-size: clamp(32px, 8.8vw, 36px); font-weight: 625; line-height: 1.02; letter-spacing: -0.035em; }
  .home-page .home-inquiry-band > div > p:last-of-type { max-width: 330px; margin: 0; color: #526875; font-size: 14.5px; line-height: 1.55; }

  .home-page .mobile-contact-actions {
    display: flex !important;
    max-width: 350px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 28px;
  }

  .home-page .mobile-contact-actions > :where(a, button) {
    display: inline-flex;
    width: auto;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font: inherit;
    font-size: 12.5px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  .home-page .mobile-whatsapp-cta {
    min-height: 52px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: var(--rb-navy) !important;
  }

  .home-page .mobile-contact-actions > :where(a, button):active { opacity: 0.64; transform: none; }
  .home-page .mobile-qr-toggle span { display: inline-block; font-size: 16px; font-weight: 300; transition: transform 220ms ease; }
  .home-page .mobile-qr-toggle[aria-expanded="true"] span { transform: rotate(45deg); }

  .home-page .home-inquiry-band .contact-qr-section {
    display: none;
    margin-top: 30px;
    padding: 24px 0 0;
    border: 0;
    border-top: 1px solid var(--rb-line-light);
    border-radius: 0;
    background: transparent;
  }

  .home-page .home-inquiry-band[data-mobile-qr-open="true"] .contact-qr-section { display: flex; }
  .home-page .home-inquiry-band .contact-qr-heading { margin-bottom: 18px; }
  .home-page .home-inquiry-band .contact-qr-heading h3 { margin-bottom: 6px; color: #16384d; font-size: 18px; font-weight: 600; }
  .home-page .home-inquiry-band .contact-qr-heading p { color: #526875; font-size: 13px; }
  .home-page .home-inquiry-band .contact-qr-grid { grid-template-columns: repeat(2, minmax(0, 150px)); justify-content: start; gap: 12px; }
  .home-page .home-inquiry-band .contact-qr-card { padding: 10px; border: 0; border-radius: 16px; background: #fff; box-shadow: none; }
  .home-page .home-inquiry-band .contact-qr-card img { width: 100%; max-width: 140px; }
  .home-page .home-inquiry-band .contact-qr-card figcaption { margin-top: 7px; color: var(--rb-navy); font-size: 12px; }

  /* Keep both floating contact channels as compact circular icon buttons. */
  .home-page .floating-contact {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: auto;
    z-index: 40;
    display: grid;
    gap: 8px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-page .floating-contact-wechat,
  .home-page .floating-contact-whatsapp { display: block; }

  .home-page .floating-contact-whatsapp .floating-contact-button,
  .home-page .floating-contact-wechat .floating-contact-button {
    display: grid;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: var(--rb-navy);
    color: #fff;
    box-shadow: 0 6px 18px rgba(14, 37, 46, 0.12);
  }

  .home-page .floating-contact-whatsapp .floating-contact-button::after { content: none; }
  .home-page .floating-contact-whatsapp .floating-contact-button svg,
  .home-page .floating-contact-wechat .floating-contact-button svg { width: 23px; height: 23px; }
  .home-page .floating-contact-whatsapp .floating-contact-button:active,
  .home-page .floating-contact-wechat .floating-contact-button:active { opacity: 0.7; transform: none; }
  .home-page .floating-contact-popup { display: none !important; }

  /* Minimal deep footer */
  .home-page .site-footer.corporate-footer {
    display: block;
    padding: 50px var(--rb-gutter) 0;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
    background: #102a3a;
  }

  .home-page .corporate-footer-grid,
  .home-page .corporate-footer-bottom { width: min(100%, var(--rb-content-max)); margin-right: auto; margin-left: auto; }
  .home-page .corporate-footer-grid { display: block; }
  .home-page .footer-brand-block { padding: 0 0 28px; border: 0; }
  .home-page .footer-brand-block h3 { max-width: 330px; margin: 0 0 9px; color: #fff; font-size: 17px; font-weight: 600; line-height: 1.3; }
  .home-page .footer-brand-block .footer-positioning { margin: 0; color: #aebec8; font-size: 12.5px; }
  .home-page .footer-brand-block p:not(.footer-positioning) { display: none; }

  .home-page .corporate-footer-grid > :is(section, nav):not(.footer-brand-block) { border-bottom: 1px solid rgba(255,255,255,0.12); }

  .home-page .footer-accordion-trigger {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f2f6f8;
    font: inherit;
    font-size: 14px;
    font-weight: 550;
    text-align: left;
    cursor: pointer;
  }

  .home-page .footer-accordion-trigger span:last-child { font-size: 21px; font-weight: 300; transition: transform 220ms ease; }
  .home-page .footer-accordion-panel { display: none; padding: 3px 0 18px; }
  .home-page .corporate-footer-grid > :is(section, nav).is-expanded > .footer-accordion-panel { display: block; }
  .home-page .corporate-footer-grid > :is(section, nav).is-expanded .footer-accordion-trigger span:last-child { transform: rotate(45deg); }
  .home-page .footer-accordion-panel :where(a, li, dt, dd, p) { color: #cfd9df; font-size: 13px; line-height: 1.55; }
  .home-page .footer-accordion-panel > :where(a, ul, dl, div) { margin-top: 8px; }
  .home-page .mobile-footer-locations { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); }
  .home-page .corporate-footer-bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 25px; padding: 17px 0 18px; border-top-color: rgba(255,255,255,0.12); color: #aebec8; font-size: 11.5px; }

  @media (min-width: 403px) {
    :root:has(body.home-page) { --rb-gutter: 20px; }
    .home-page .home-product-grid .product-card { width: min(83vw, 360px); min-width: min(83vw, 360px); flex-basis: min(83vw, 360px); }
  }

  @media (min-width: 481px) {
    .home-page .home-hero h1 { font-size: 46px; }
    .home-page main > .section .section-heading h2,
    .home-page .manufacturing-heading h2 { font-size: 36px; }
    .home-page .home-hero .hero-product-stage { width: min(calc(100% + 40px), 660px); margin-left: max(-20px, calc((100% - 660px) / 2)); }
    .home-page .home-product-grid .product-card { width: 360px; min-width: 360px; flex-basis: 360px; }
    .home-page .manufacturing-collage .factory-building-image { max-height: 430px; }
    .home-page .home-inspection-grid .inspection-card > img { max-height: 440px; }
  }
}

/* Migrated homepage mobile editorial layer. */
@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
.home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
+

/* Mobile CTA palette: color-only brand layer. */
@media (max-width: 919px) {
  .nav-cta, .site-header .header-cta,
  .btn.primary, .about-hero-actions .btn.primary,
  .home-hero .btn.primary, .lotion-hero-copy .btn.primary,
  .cs-hero-copy .btn.primary, .plastic-hero-copy .btn.primary,
  .foam-pump-page .foam-hero__content .btn.primary {
    background: #405a68;
    border-color: #405a68;
    color: #ffffff;
  }

  .nav-cta:hover, .nav-cta:focus-visible,
  .site-header .header-cta:hover, .site-header .header-cta:focus-visible,
  .btn.primary:hover, .btn.primary:focus-visible,
  .about-hero-actions .btn.primary:hover, .about-hero-actions .btn.primary:focus-visible,
  .home-hero .btn.primary:hover, .home-hero .btn.primary:focus-visible,
  .lotion-hero-copy .btn.primary:hover, .lotion-hero-copy .btn.primary:focus-visible,
  .cs-hero-copy .btn.primary:hover, .cs-hero-copy .btn.primary:focus-visible,
  .plastic-hero-copy .btn.primary:hover, .plastic-hero-copy .btn.primary:focus-visible,
  .foam-pump-page .foam-hero__content .btn.primary:hover,
  .foam-pump-page .foam-hero__content .btn.primary:focus-visible {
    background: #314b58;
    border-color: #314b58;
    color: #ffffff;
  }

  .nav-cta:active, .site-header .header-cta:active,
  .btn.primary:active, .about-hero-actions .btn.primary:active,
  .home-hero .btn.primary:active, .lotion-hero-copy .btn.primary:active,
  .cs-hero-copy .btn.primary:active, .plastic-hero-copy .btn.primary:active,
  .foam-pump-page .foam-hero__content .btn.primary:active {
    background: #263e49;
    border-color: #263e49;
    color: #ffffff;
  }

  .nav-cta:focus-visible,
  .site-header .header-cta:focus-visible, .btn.primary:focus-visible,
  .about-hero-actions .btn.primary:focus-visible,
  .home-hero .btn.primary:focus-visible, .lotion-hero-copy .btn.primary:focus-visible,
  .cs-hero-copy .btn.primary:focus-visible, .plastic-hero-copy .btn.primary:focus-visible,
  .foam-pump-page .foam-hero__content .btn.primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(64,90,104,0.20);
  }

  .btn.secondary, .about-hero-actions .btn.secondary, .home-hero .btn.secondary {
    background: transparent;
    border-color: #405a68;
    color: #405a68;
  }

  .btn.secondary:hover, .btn.secondary:focus-visible,
  .about-hero-actions .btn.secondary:hover, .about-hero-actions .btn.secondary:focus-visible,
  .home-hero .btn.secondary:hover, .home-hero .btn.secondary:focus-visible {
    background: #405a68;
    border-color: #405a68;
    color: #ffffff;
  }

  /* Final site-wide WhatsApp CTA overrides for pages with later mobile layers. */
  body .floating-contact {
    right: 5%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 5%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body .floating-contact .floating-contact-whatsapp { flex: 1 1 auto; }
  body .floating-contact .floating-contact-whatsapp .floating-contact-button {
    width: 100%;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
  }

  body .floating-contact .floating-contact-whatsapp .floating-contact-button svg {
    width: 23px;
    height: 23px;
  }

  body .floating-contact .floating-contact-whatsapp-label { display: inline; }
  body .floating-contact .floating-contact-wechat { flex: 0 0 auto; }
}

/* Mobile-only Hero first-paint stability. */
@media (max-width: 919px) {
  .cs-hero-product { opacity: 1; transform: translate(-50%, 0); animation: none; animation-delay: 0s; }
  .lotion-hero-product,
  .foam-pump-page .foam-hero__product,
  .home-hero .hero-product,
  .plastic-hero-product { opacity: 1; transform: translateY(0); animation: none; animation-delay: 0s; }
}
