/* Desktop visual layer; compact Header navigation is the only responsive exception. */

@media (min-width: 920px) {
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);
}

/* Continuous Spray B2B Project Support CTA: desktop color-only treatment. */
@media (min-width: 920px) {
  .continuous-spray-page .cs-cta {
    background: #e3eaee;
    border: 1px solid #cbd8de;
  }

  .continuous-spray-page .cs-cta .eyebrow {
    color: #405a68;
  }

  .continuous-spray-page .cs-cta h2 {
    color: #15384d;
  }

  .continuous-spray-page .cs-cta p {
    color: #586d78;
  }

  .continuous-spray-page .cs-cta .btn {
    border-color: #405a68;
    background: #405a68;
    color: #ffffff;
  }

  .continuous-spray-page .cs-cta .btn:hover,
  .continuous-spray-page .cs-cta .btn:focus-visible {
    border-color: #314b58;
    background: #314b58;
    color: #ffffff;
  }
}

.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 #d3dee5;
  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 (min-width: 920px) and (min-width: 1181px) {
.has-dropdown:hover .product-dropdown,
  .has-dropdown:focus-within .product-dropdown,
  .has-dropdown.is-open .product-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
}

@media (min-width: 920px) {
[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 (min-width: 920px) {
.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 (min-width: 920px) and (min-width: 1201px) {
.factory-process-grid .process-card:not(:last-child)::before { content: ""; position: absolute; z-index: 2; top: 50%; right: -25px; width: 26px; height: 1px; background: #aebfcb; pointer-events: none; }
  .factory-process-grid .process-card:not(:last-child)::after { content: ""; position: absolute; z-index: 3; top: calc(50% - 4px); right: -25px; width: 8px; height: 8px; border-top: 1px solid #aebfcb; border-right: 1px solid #aebfcb; transform: rotate(45deg); pointer-events: none; }
}

@media (min-width: 920px) {
.inquiry-band {
  margin: 0;
  padding: 24px max(24px, calc((100% - 1320px) / 2));
  background: #d9e2e7;
  color: #15384d;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.inquiry-band p { color: #586d78; }
.inquiry-band .eyebrow { color: #20495f; }

.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: 8px 24px;
}

.contact-qr-heading { margin-bottom: 10px; text-align: center; }

.contact-qr-heading h2,
.contact-qr-heading h3 { margin-bottom: 9px; color: #15384d; }

.contact-qr-heading p { margin: 0; color: #586d78; }

.contact-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  justify-content: center;
  gap: 20px;
}

.contact-qr-card {
  min-width: 0;
  margin: 0;
  padding: 12px 12px 10px;
  border: 1px solid #cbd7de;
  border-radius: 10px;
  background: #f8fafb;
  box-shadow: 0 8px 22px rgba(20, 52, 71, 0.05);
  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: #15384d;
  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: none;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.contact-qr-section-dark .contact-qr-heading h3 { color: #15384d; }

.contact-qr-section-dark .contact-qr-heading p { color: #586d78; }

.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(32px, 3vw, 48px); margin-bottom: 0; padding-top: 24px; padding-bottom: 24px; }

.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: #173447;
  color: #fff;
}

.site-footer p, .site-footer a { color: #d5dee3; }

.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-whatsapp .floating-contact-button { color: #25d366; }
.floating-contact-whatsapp-label { display: none; }
.floating-contact-whatsapp .floating-contact-button:hover,
.floating-contact-whatsapp .floating-contact-button:focus-visible { transform: scale(1.04) translateY(-2px); }

.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 (min-width: 920px) 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 (min-width: 920px) {
.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: #173447; 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: #d5dee3; 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.11); }

.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: #fff; 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.11); }

.footer-location-item strong { display: block; margin-bottom: 5px; color: #fff; 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.11); color: #b8c6ce; font-size: 13px; line-height: 1.5; }
}

@media (min-width: 920px) and (max-width: 1250px) {
.corporate-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 42px; }
  .footer-brand-block { grid-column: span 2; }
}

@media (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1100px) {
.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 (min-width: 920px) {
.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: #d5dee3; 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: #d5dee3; 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.11); }

.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.11); color: #b8c6ce; font-size: 13px; line-height: 1.5; }
}

@media (min-width: 920px) and (max-width: 1100px) {
.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 (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1100px) {
.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 (min-width: 920px) {
:root {
  --content-max: 1280px;
  --section-inline: clamp(20px, 3vw, 32px);
  --header-height: 76px;
}

html { scroll-behavior: smooth; }

html:has(body.continuous-spray-page) { scroll-padding-top: 96px; }

body { overflow-x: hidden; }

img { height: auto; 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 (min-width: 920px) {
.cs-product-stage { transform: translateX(92px) scale(1.10); }
}

@media (min-width: 920px) {
.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 (min-width: 920px) and (max-width: 1180px) {
.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 (min-width: 920px) and (max-width: 1080px) {
.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 (min-width: 920px) {
.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: max(24px, calc((100% - 1320px) / 2)); }

.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 (min-width: 920px) and (min-width: 1200px) {
.home-page .home-products-section .section-heading,
  .home-page .home-products-section .home-product-grid { width: min(1560px, calc(100vw - 64px)); max-width: 1560px; }
  .home-page .home-products-section .home-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
}

@media (min-width: 920px) and (max-width: 1199px) {
.home-products-section .section-heading,
  .home-product-grid { width: min(100%, calc(100% - 40px)); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Homepage desktop width: keep the wider layout scoped to the homepage. */
@media (min-width: 920px) and (min-width: 1200px) {
.home-page {
    --home-content-max: min(1520px, 100%);
  }
.home-page .home-product-grid,
  .home-page .home-oem-section .card-grid.five,
  .home-page .home-inspection-grid,
  .home-page .manufacturing-strength-inner {
    width: 100%;
    max-width: var(--home-content-max);
  }
.home-page .home-products-section .section-heading,
  .home-page .home-oem-section .section-heading,
  .home-page .home-inspection-section .section-heading {
    max-width: var(--home-content-max);
  }
.home-page .home-product-grid,
  .home-page .home-inspection-grid {
    gap: 24px;
  }

  .home-page .home-oem-section .card-grid.five {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }

  .home-page .manufacturing-strength-inner {
    grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
    column-gap: 48px;
  }

  .home-page .faq-section .faq-list {
    max-width: 960px;
  }
}

@media (min-width: 920px) and (max-width: 1100px) {
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    height: auto;
    min-height: 600px;
    max-height: none;
    gap: 28px;
    padding: 56px 5vw;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fbfc, #eef2f5);
  }
  .home-hero::after { display: none; }
  .home-hero .hero-text { width: 100%; margin: 0; padding: 0; align-self: center; }
  .home-hero .hero-media { position: relative; inset: auto; align-self: stretch; }
  .home-hero .hero-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: contain; }
  .home-hero h1 { max-width: 100%; font-size: clamp(42px, 5.6vw, 54px); }
  .home-hero .hero-title-line, .home-hero .hero-description-line { display: inline; }
  .home-hero .hero-description { max-width: 520px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 18px; }
  .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-oem-section .card-grid.five { justify-content: center; }
  .home-oem-section .card-grid.five .mini-card { flex: 0 1 270px; }
  .manufacturing-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 920px) and (max-width: 1300px) {
.corporate-footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 32px; }
  .footer-brand-block { grid-column: span 2; }
}

@media (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1180px) {
.lotion-catalog-layout { grid-template-columns: minmax(230px, 250px) minmax(0, 1fr); gap: 24px; }
  .lotion-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 920px) and (max-width: 1200px) {
.series-page .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 920px) 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 (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1100px) {
.lotion-hero-inner { gap: 28px; }
  .lotion-hero-copy h1 { font-size: clamp(40px, 4.3vw, 50px); }
  .lotion-hero-description { font-size: 15px; }
  .lotion-hero-stage { --visual-height: clamp(170px, 14.5vw, 185px); width: 104%; transform: translate(-12%, -85px) scale(1.05); }
}

@media (min-width: 920px) and (max-width: 1600px) and (min-width: 1401px) {
.lotion-hero-stage { transform: translate(-12%, -85px) scale(1.05); }
}

@media (min-width: 920px) {
.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 (min-width: 920px) and (max-width: 1199px) {
.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 (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1180px) {
.home-hero .hero-text { margin-left: 5vw; }
  .home-hero .hero-product-stage { transform: translateX(-8px) scale(1.02); }
  .home-hero .hero-product--pump-a { --product-width: 66%; --product-left: 0%; }
  .home-hero .hero-product--green { --product-width: 52%; --product-left: 49%; }
  .home-hero .hero-product--spray { --product-width: 43%; --product-left: 71%; }
  .home-hero .hero-product--anchor { --product-width: 35%; --product-left: 91%; }
}

@media (min-width: 920px) and (max-width: 1180px) {
.home-trust-inner { display: block; width: min(100% - 48px, 760px); }
  .home-trust-inner > p { margin-bottom: 18px; }
}

@media (min-width: 920px) and (max-height: 820px) {
.home-hero { box-sizing: border-box; min-height: calc(100svh - var(--header-height)); padding-top: 32px; padding-bottom: 32px; }
  .home-hero .hero-product-stage { height: min(587px, calc(100svh - var(--header-height) - 64px)); }
}

@media (min-width: 920px) and (prefers-reduced-motion: reduce) {
.home-hero .hero-product { opacity: 1; transform: none; animation: none; }
}

@media (min-width: 920px) and (prefers-reduced-motion: reduce) {
.mobile-nav-backdrop, .site-nav, .product-dropdown { transition: none; } .site-nav.is-open { transform: none; }
}

@media (min-width: 920px) {
/* 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 (min-width: 920px) 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 (min-width: 920px) {
/* Plastic Bottle full-screen Hero */
.plastic-hero {
  display: flex;
  box-sizing: border-box;
  min-height: max(680px, calc(100svh - var(--header-height)));
  align-items: start;
  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: start;
}

.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); }

.plastic-bottle-page .plastic-hero-copy { padding-top: 227px; }
}

@media (min-width: 920px) and (max-width: 1180px) {
.plastic-hero-shell { width: min(calc(100% - 56px), 1180px); grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); gap: 28px; }
  .plastic-hero-copy h1 { font-size: clamp(42px, 2.7vw, 50px); }
  .plastic-hero-description { font-size: 16px; }
  .plastic-hero-product-row { bottom: 8%; width: min(calc(100% - 20px), 650px); gap: clamp(12px, 1.5vw, 20px); }
  .plastic-hero-stage::after { bottom: calc(8% - 7px); }
}

@media (min-width: 920px) and (max-height: 820px) {
.plastic-hero-shell { transform: translateY(-8px); }
  .plastic-hero-stage { height: min(580px, calc(100svh - var(--header-height) - 44px)); }
}

@media (min-width: 920px) 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 (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1180px) {
.home-hero .hero-text,
  .home-hero .hero-media { transform: translateY(-22px); }
  .home-hero .hero-text { width: min(100% - 48px, 660px); max-width: 660px; }
  .home-hero h1 { max-width: 660px; }
  .home-hero .hero-product-stage { transform: translateX(-8px) scale(1.02); }
}

@media (min-width: 920px) and (max-height: 820px) and (min-width: 1181px) {
.home-hero .hero-text,
  .home-hero .hero-media { transform: translateY(-22px); }
  .home-hero .hero-product-stage { transform: translateX(-62px) scale(1.08); }
  .home-hero .hero-product--green { --product-left: 22%; }
  .home-hero .hero-product--spray { --product-size: 58%; --product-left: 29%; }
  .home-hero .hero-product--anchor { --product-size: 58%; --product-left: 38%; }
}

@media (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1180px) {
.home-hero .hero-product-stage { transform: translateX(-14px) scale(1.02); }
  .home-hero .hero-product--pump-a { --product-size: 50%; --product-left: 0%; bottom: 0; }
  .home-hero .hero-product--green { --product-size: 48%; --product-left: 23%; }
  .home-hero .hero-product--spray { --product-size: 55%; --product-left: 36%; }
  .home-hero .hero-product--anchor { --product-size: 55%; --product-left: 51%; }
}

@media (min-width: 920px) and (max-height: 820px) and (min-width: 1181px) {
.home-hero .hero-product-stage { transform: translateX(-32px) scale(1.1664); }
  .home-hero .hero-product--pump-a { --product-size: 50%; --product-left: 13%; bottom: 0; }
  .home-hero .hero-product--green { --product-left: 30%; }
  .home-hero .hero-product--spray { --product-size: 58%; --product-left: 40%; }
  .home-hero .hero-product--anchor { --product-size: 58%; --product-left: 58%; }
}

@media (min-width: 920px) and (prefers-reduced-motion: reduce) {
.home-hero .hero-product { opacity: 1; transform: none; animation: none; }
}

/* Desktop-only Hero spacing pass: page-scoped position tuning only. */
@media (min-width: 920px) and (min-width: 1200px) {
.home-hero .hero-product-stage {
    transform: translateX(62px) scale(1.296);
  }
  .home-hero .hero-product--pump-a { --product-left: 13%; left: calc(var(--product-left) + 112px); }
  .home-hero .hero-product--green { --product-left: 32%; left: calc(var(--product-left) + 118px); }
  .home-hero .hero-product--spray { --product-left: 45%; left: calc(var(--product-left) + 150px); }
  .home-hero .hero-product--anchor { --product-left: 61%; left: calc(var(--product-left) + 165px); }

  .plastic-hero .plastic-hero-product-row {
    left: calc(50% + 48px);
    gap: clamp(22px, 1.8vw, 30px);
  }
  .plastic-hero .plastic-hero-product--01 { left: 45px; margin-right: 3px; }
  .plastic-hero .plastic-hero-product--02 { left: 70px; margin-right: -2px; }
  .plastic-hero .plastic-hero-product--03 { left: 60px; margin-right: 1px; }
  .plastic-hero .plastic-hero-product--04 { left: 45px; }
}

@media (min-width: 920px) {
/* 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 (min-width: 920px) and (max-width: 1300px) {
.foam-pump-page .foam-hero__inner { width: min(calc(100% - 56px), 1180px); grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); gap: 30px; }
  .foam-pump-page .foam-hero__content > h1 { font-size: clamp(39px, 4vw, 47px); }
  .foam-pump-page .foam-hero__description { font-size: 15px; }
  .foam-pump-page .foam-hero__visual { height: clamp(470px, 50vw, 590px); }
  .foam-pump-page .foam-hero__products { --foam-product-height: clamp(290px, 30vw, 350px); right: clamp(12px, 2vw, 24px); gap: clamp(10px, 1.2vw, 15px); }
}

@media (min-width: 920px) and (max-height: 820px) {
.foam-pump-page .foam-hero__inner { transform: translateY(-8px); }
  .foam-pump-page .foam-hero__visual { height: min(590px, calc(100svh - var(--header-height) - 50px)); }
  .foam-pump-page .foam-hero__products { --foam-product-height: min(430px, calc(100svh - var(--header-height) - 170px)); }
}

@media (min-width: 920px) 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; }
}

@media (min-width: 920px) and (prefers-reduced-motion: reduce) {
.footer-accordion-trigger span:last-child { transition: none; }
}

/* Desktop Header load state: enter stable; keep hover color and dropdown transitions only. */
@media (min-width: 920px) {
.site-header {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .site-header .logo {
    max-width: 360px;
    font-size: clamp(12px, 1.1vw, 17px);
    line-height: 1.1;
    white-space: nowrap;
  }

  .site-header > .logo,
  .site-header > .site-nav,
  .site-header > .header-cta,
  .site-header .nav-list > .nav-item > a,
  .site-header .nav-primary > a {
    animation: none;
  }

  .site-header > .logo,
  .site-header > .header-cta {
    opacity: 1;
  }

  @media (min-width: 1440px) {
    /* Full Desktop safety guard: compact navigation must never escape into the full header. */
    .mobile-menu-toggle,
    .mobile-editorial-nav,
    .mobile-editorial-nav-close,
    .mobile-editorial-menu-brand,
    .mobile-editorial-nav-list,
    .mobile-editorial-menu-contact,
    .mobile-editorial-products-toggle,
    .mobile-editorial-products-list,
    .mobile-nav-close,
    .mobile-nav-backdrop,
    .mobile-language,
    .mobile-only-nav-item,
    .mobile-contact-actions {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    body.menu-open,
    body.mobile-menu-open,
    html.menu-open {
      overflow: auto !important;
    }
  }

  .site-header .nav-list > .nav-item > a,
  .site-header .nav-primary > a {
    font-weight: 500;
    transform: none !important;
  }

  .site-header .nav-list > .nav-item > a.is-active::after,
  .site-header .nav-list > .nav-item > a[aria-current="page"]::after,
  .site-header .nav-primary > a.is-active::after,
  .site-header .nav-primary > a[aria-current="page"]::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* Desktop Hero copy load state: show all page-intro text at its final position. */
@media (min-width: 920px) {
.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,
  .lotion-hero-copy > .eyebrow,
  .lotion-hero-copy > h1,
  .lotion-hero-copy > .lotion-hero-description,
  .lotion-hero-copy > .button-row,
  .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,
  .plastic-hero-copy,
.cs-hero-copy {
    opacity: 1;
    transform: none;
    visibility: visible;
    animation: none;
    animation-delay: 0s;
  }
}
/* Desktop CTA palette: color-only brand layer. */
@media (min-width: 920px) {
  .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;
  }
}

/* Compact Desktop / Tablet navigation: header controls only; page layout remains desktop. */
@media (min-width: 920px) and (max-width: 1439px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: clamp(14px, 2vw, 28px);
    padding: 10px clamp(20px, 4vw, 56px);
  }

  .site-header > .logo {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
    max-width: 360px;
    margin-right: 0;
  }

  .site-header > .header-cta {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-items: center;
    white-space: nowrap;
  }

  .site-header > .nav-toggle {
    display: inline-flex !important;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-items: center;
  }

  body.mobile-redesign-site > .site-header > .nav-toggle {
    display: none !important;
  }

  body.mobile-redesign-site > .site-header > .mobile-menu-toggle {
    display: inline-flex !important;
    grid-column: 3;
    grid-row: 1;
    width: auto;
    min-width: 64px;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--brand-dark);
    box-shadow: none;
    cursor: pointer;
  }

  body.mobile-redesign-site .mobile-menu-toggle-icon {
    display: grid;
    width: 24px;
    gap: 4px;
  }

  body.mobile-redesign-site .mobile-menu-toggle-icon span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  body.mobile-redesign-site .mobile-menu-toggle-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip-path: none;
    color: currentColor;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    z-index: 40;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    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;
    pointer-events: auto;
  }

  .site-header > .site-nav {
    position: fixed;
    z-index: 110;
    top: calc(var(--header-height) + 12px);
    right: clamp(20px, 4vw, 56px);
    bottom: auto;
    left: auto;
    display: flex !important;
    width: min(520px, calc(100vw - 40px));
    max-height: calc(100vh - var(--header-height) - 36px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #d3dee5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .16);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header > .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header > .site-nav .nav-list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-header > .site-nav .nav-item {
    width: 100%;
  }

  .site-header > .site-nav .nav-list > .nav-item > a,
  .site-header > .site-nav .nav-primary > a {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 15px;
  }

  .site-header > .site-nav .nav-primary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .site-header > .site-nav .dropdown-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .site-header > .site-nav .product-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
  }

  .site-header > .site-nav .has-dropdown.is-open .product-dropdown {
    max-height: 520px;
    padding-top: 6px;
    padding-bottom: 8px;
    pointer-events: auto;
  }

  .site-header > .site-nav .dropdown-category,
  .site-header > .site-nav .dropdown-series a {
    min-height: 40px;
    align-items: center;
  }

  .mobile-nav-close {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    padding: 8px 12px;
    border: 1px solid rgba(37, 70, 95, .14);
    border-radius: 10px;
    background: #f7fafb;
    color: var(--brand-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-close span:first-child {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
  }

  body.mobile-redesign-site .mobile-editorial-nav {
    position: fixed;
    z-index: 110;
    top: calc(var(--header-height) + 12px);
    right: clamp(20px, 4vw, 56px);
    bottom: auto;
    left: auto;
    display: flex !important;
    width: min(520px, calc(100vw - 40px));
    max-height: calc(100vh - var(--header-height) - 36px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid #d3dee5;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 24, 39, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  body.mobile-redesign-site .mobile-editorial-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.mobile-redesign-site .mobile-editorial-menu-brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 700;
  }

  body.mobile-redesign-site .mobile-editorial-menu-brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
  }

  body.mobile-redesign-site .mobile-editorial-nav-close {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 6px;
    padding: 8px 12px;
    border: 1px solid rgba(37, 70, 95, .14);
    border-radius: 10px;
    background: #f7fafb;
    color: var(--brand-dark);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  body.mobile-redesign-site .mobile-editorial-nav-close span:first-child {
    order: 2;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }

  body.mobile-redesign-site .mobile-editorial-nav-list {
    display: block;
    width: 100%;
    margin: 12px 0 20px;
    padding: 0;
  }

  body.mobile-redesign-site .mobile-editorial-nav-list > li {
    width: 100%;
    border-bottom: 1px solid #d8e0e4;
  }

  body.mobile-redesign-site .mobile-editorial-nav-list > li > a,
  body.mobile-redesign-site .mobile-editorial-products-primary > a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 8px 0;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }

  body.mobile-redesign-site .mobile-editorial-products-primary {
    display: grid;
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  body.mobile-redesign-site .mobile-editorial-products-toggle,
  body.mobile-redesign-site .mobile-redesign-lotion-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--brand-dark);
    cursor: pointer;
  }

  body.mobile-redesign-site .mobile-editorial-products-toggle .dropdown-chevron {
    width: 18px;
    height: 18px;
  }

  body.mobile-redesign-site .mobile-editorial-products-list {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    border: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .2s ease, padding-bottom .2s ease, opacity .18s ease;
  }

  body.mobile-redesign-site .mobile-editorial-products-item.is-open .mobile-editorial-products-list {
    max-height: 520px;
    padding-bottom: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-redesign-site .mobile-editorial-products-list > li {
    margin: 0;
    border-top: 1px solid rgba(23, 36, 43, .08);
  }

  body.mobile-redesign-site .mobile-editorial-products-list > li > a,
  body.mobile-redesign-site .mobile-redesign-product-primary > a,
  body.mobile-redesign-site .mobile-redesign-lotion-list a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 0;
    color: #344951;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
  }

  body.mobile-redesign-site .mobile-redesign-product-primary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-toggle span {
    font-size: 20px;
    font-weight: 300;
    transition: transform .18s ease;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-group.is-open .mobile-redesign-lotion-toggle span {
    transform: rotate(45deg);
  }

  body.mobile-redesign-site .mobile-redesign-lotion-list {
    max-height: 0;
    margin: 0;
    padding: 0 0 0 14px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height .2s ease, opacity .18s ease;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-group.is-open .mobile-redesign-lotion-list {
    max-height: 120px;
    padding-bottom: 6px;
    opacity: 1;
    visibility: visible;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-list a {
    min-height: 40px;
    color: #586d78;
    font-size: 14px;
    font-weight: 400;
  }

  body.mobile-redesign-site .mobile-editorial-menu-contact {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #d8e0e4;
  }

  body.mobile-redesign-site .mobile-editorial-menu-contact a {
    min-height: 44px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 700;
  }
}

/* Pre-release desktop fit: compact only the 1440-1599 full-navigation range. */
@media (min-width: 1440px) and (max-width: 1599px) {
  body.mobile-redesign-site > .site-header {
    display: flex;
    column-gap: clamp(8px, .75vw, 12px);
    padding-inline: clamp(18px, 1.5vw, 24px);
  }

  body.mobile-redesign-site > .site-header > .logo {
    flex: 0 1 auto;
    max-width: 286px;
    gap: 7px;
    font-size: 12.5px;
  }

  body.mobile-redesign-site > .site-header > .logo img {
    width: 46px;
    height: 46px;
  }

  body.mobile-redesign-site > .site-header > .site-nav {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 13px;
  }

  body.mobile-redesign-site > .site-header .nav-list {
    gap: clamp(8px, .65vw, 10px);
  }

  body.mobile-redesign-site > .site-header .nav-list > .nav-item > a,
  body.mobile-redesign-site > .site-header .nav-primary > a {
    font-size: 13px;
  }

  body.mobile-redesign-site > .site-header .dropdown-toggle {
    width: 28px;
    height: 40px;
    margin-left: 2px;
  }

  body.mobile-redesign-site > .site-header > .header-cta {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
  }
}

/* Pre-release desktop Hero fit: keep every product inside the viewport below 1600px. */
@media (min-width: 1200px) and (max-width: 1599px) {
  .home-hero .hero-product-stage {
    width: calc(100% - 16px);
    max-width: 920px;
    transform: translateX(-24px) scale(1.04);
    transform-origin: left center;
  }

  .home-hero .hero-product--pump-a { --product-size: 46%; --product-left: 0%; left: var(--product-left); }
  .home-hero .hero-product--green { --product-size: 46%; --product-left: 20%; left: var(--product-left); }
  .home-hero .hero-product--spray { --product-size: 54%; --product-left: 31%; left: var(--product-left); }
  .home-hero .hero-product--anchor { --product-size: 54%; --product-left: 43%; left: var(--product-left); }

  .plastic-hero .plastic-hero-product-row {
    left: 50%;
    width: min(calc(100% - 40px), 660px);
    gap: clamp(16px, 1.4vw, 22px);
  }

  .plastic-hero .plastic-hero-product--01,
  .plastic-hero .plastic-hero-product--02,
  .plastic-hero .plastic-hero-product--03,
  .plastic-hero .plastic-hero-product--04 {
    left: 0;
    margin-right: 0;
  }
}
