:root {
  --black: #101010;
  --ink: #202020;
  --muted: #6d6d6d;
  --line: #e5e0d8;
  --soft: #f7f4ef;
  --paper: #ffffff;
  --accent: #d5a253;
  --accent-dark: #ad7f35;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --container: 1180px;
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 70px;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  text-transform: uppercase;
}

h3 {
  font-size: 21px;
  text-transform: uppercase;
}

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

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

.top-strip {
  color: #d8d8d8;
  background: var(--black);
  font-size: 13px;
}

.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.top-strip a:hover {
  color: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  display: block;
  width: 150px;
  height: auto;
  filter: invert(1);
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--black);
  border-radius: 50%;
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  color: var(--black);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.brand__text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta,
.button--dark {
  color: var(--paper);
  background: var(--black);
}

.header-cta:hover,
.button--dark:hover {
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.1) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-items: center;
  min-height: 650px;
  padding: 78px 0;
}

.hero__copy h1 {
  color: var(--paper);
}

.hero__copy h2 {
  margin-top: 8px;
  color: var(--accent);
  font-size: 34px;
}

.hero__lead {
  max-width: 580px;
  margin: 24px 0 32px;
  color: #d8d8d8;
  font-size: 20px;
}

.hero .button--dark {
  color: var(--black);
  background: var(--paper);
}

.hero .button--dark:hover {
  color: var(--paper);
  background: var(--accent-dark);
}

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

.image-slot {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #b8afa1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      135deg,
      #d9d3c8 0,
      #d9d3c8 16px,
      #c8c0b3 16px,
      #c8c0b3 32px
    );
  color: #3c3934;
  text-align: center;
}

.image-slot::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  content: "";
}

.image-slot span {
  position: relative;
  z-index: 1;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stats-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  min-height: 120px;
  padding: 26px 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.stat-item:last-child {
  border-right: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  color: var(--black);
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.stat-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

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

.section-title {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-title--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

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

.category-card,
.product-card,
.feature-card,
.factory-card,
.certificate-card,
.advantage-item,
.process-step,
.contact-card,
.inquiry-panel {
  background: var(--paper);
  border: 1px solid var(--line);
}

.category-card {
  display: grid;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.category-card--wide {
  grid-column: span 3;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 300px;
}

.category-card .image-slot {
  min-height: 260px;
  border: 0;
  border-radius: 0;
}

.category-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.arrow-link,
.text-link {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrow-link::after,
.text-link::after {
  margin-left: 8px;
  content: ">";
}

.product-grid,
.feature-grid,
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
}

.product-card .image-slot {
  min-height: 250px;
  border: 0;
  border-radius: 0;
}

.product-card__body {
  padding: 24px;
}

.product-card__body h3 {
  margin: 8px 0 12px;
}

.product-card__body p:not(.product-tag) {
  margin-bottom: 20px;
  color: var(--muted);
}

.product-tag {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-choose {
  background: var(--black);
}

.why-choose h2,
.why-choose h3 {
  color: var(--paper);
}

.why-choose .eyebrow {
  color: var(--accent);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.advantage-item {
  min-height: 168px;
  padding: 24px;
  background: #181818;
  border: 0;
}

.advantage-item span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.advantage-item h3 {
  margin-top: 50px;
  font-size: 18px;
}

.feature-card {
  overflow: hidden;
}

.feature-card .image-slot {
  min-height: 240px;
  border: 0;
  border-radius: 0;
}

.feature-card h3,
.factory-card h3,
.certificate-card h3 {
  padding: 20px;
  font-size: 18px;
}

.factory-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}

.factory-card {
  overflow: hidden;
}

.factory-card--large {
  grid-row: span 2;
}

.factory-card .image-slot {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.factory-card--large .image-slot {
  min-height: 540px;
}

.process-section {
  background: var(--paper);
}

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

.process-step {
  min-height: 150px;
  padding: 22px;
  position: relative;
}

.process-step span {
  color: var(--accent-dark);
  font-weight: 800;
}

.process-step h3 {
  margin-top: 48px;
  font-size: 18px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 52px;
}

.image-slot--profile {
  min-height: 440px;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.profile-copy .button {
  margin-top: 28px;
}

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

.certificate-card .image-slot {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.certificate-card h3 {
  font-size: 15px;
  text-align: center;
}

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

.team-grid .image-slot {
  min-height: 340px;
}

.team-panel h2 {
  margin-bottom: 24px;
  color: #333;
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  text-transform: none;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.inquiry-panel,
.contact-card {
  padding: 34px;
  box-shadow: var(--shadow);
}

.inquiry-panel > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.mock-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.mock-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

.mock-form .button {
  justify-self: start;
}

.contact-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-card a {
  color: var(--accent-dark);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 62px 0 22px;
  color: #d7d7d7;
  background: var(--black);
}

.site-footer h3,
.site-footer .brand__text strong {
  color: var(--paper);
}

.site-footer .brand__mark {
  color: var(--black);
  background: var(--paper);
}

.site-footer .brand__text em,
.site-footer p {
  color: #a6a6a6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 38px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid a {
  color: #d7d7d7;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  font-size: 13px;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 34px;
  }

  .header-main {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: 121px 0 auto;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .profile-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .category-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

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

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

  .factory-card--large {
    grid-row: auto;
  }

  .factory-card--large .image-slot {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-strip__inner {
    flex-direction: column;
    gap: 4px;
  }

  .primary-nav {
    inset: 143px 0 auto;
  }

  h1 {
    font-size: 38px;
  }

  h2,
  .hero__copy h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 18px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.36) 100%),
      url("../images/hero-car-interior.webp") 62% center / cover no-repeat;
  }

  .hero__grid {
    min-height: 560px;
    padding: 58px 0;
  }

  .hero__lead {
    font-size: 17px;
  }

  .image-slot--profile {
    min-height: 300px;
  }

  .stats-bar__grid,
  .category-grid,
  .product-grid,
  .feature-grid,
  .advantage-grid,
  .factory-grid,
  .process-grid,
  .certificate-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .category-card--wide {
    grid-column: span 1;
  }

  .section {
    padding: 64px 0;
  }

  .inquiry-panel,
  .contact-card {
    padding: 24px;
  }
}

/* Old-site replica tuning: keep this block at the end for easy comparison edits. */
.site-header {
  position: relative;
  background: var(--paper);
}

.header-main {
  grid-template-columns: auto 1fr;
  min-height: 86px;
}

.brand__text--logo strong {
  display: inline-block;
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.primary-nav {
  gap: 34px;
}

.primary-nav a {
  color: #111;
  font-size: 15px;
  font-weight: 800;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 33%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.02) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  min-height: 540px;
  padding: 84px 0;
}

.hero-logo {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero__copy h1 {
  color: var(--paper);
  font-size: 27px;
  font-style: italic;
  font-weight: 900;
  text-transform: none;
}

.hero__copy h2 {
  margin-top: 7px;
  color: var(--paper);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  text-transform: none;
}

.hero__lead {
  max-width: 420px;
  margin: 4px 0 22px;
  color: var(--paper);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.hero .button--dark {
  min-height: 42px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--black);
}

.section {
  padding: 84px 0;
}

.section-title {
  margin-bottom: 42px;
}

.section-title h2 {
  color: #333;
  font-size: 44px;
  font-weight: 900;
}

.section-title .eyebrow,
.product-categories .eyebrow,
.why-choose .eyebrow,
.product-features .eyebrow,
.factory-capability .eyebrow,
.process-section .eyebrow,
.certificates-section .eyebrow,
.team-exhibition .eyebrow {
  display: none;
}

.product-categories {
  background: #f4f4f4;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.category-card--wide {
  grid-column: auto;
  grid-template-columns: 1fr;
  min-height: 430px;
}

.category-card .image-slot {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.category-card .image-slot::after,
.feature-card .image-slot::after,
.factory-card .image-slot::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.45));
  content: "";
}

.category-card .image-slot span,
.feature-card .image-slot span,
.factory-card .image-slot span,
.certificate-card .image-slot span,
.team-grid .image-slot span {
  display: none;
}

.category-card .image-slot::before,
.feature-card .image-slot::before,
.factory-card .image-slot::before,
.certificate-card .image-slot::before,
.team-grid .image-slot::before {
  display: none;
}

.category-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px 30px;
  background: rgba(0, 0, 0, 0.54);
}

.category-card__body h3 {
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
}

.category-card__body .arrow-link {
  color: var(--paper);
  font-size: 0;
}

.category-card__body .arrow-link::after {
  color: var(--paper);
  font-size: 42px;
  line-height: 1;
  content: "→";
}

.category-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/oubiaomat_texture_fixed_500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC05285_original_color_under500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/%E8%84%9A%E5%9E%AB_3%E6%AF%944_%E7%99%BD%E5%BA%95%E5%B1%85%E4%B8%AD_%E9%AB%98%E6%B8%85-600x800.webp") center / cover no-repeat;
}

.category-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/vehicle_interior_fixed_under_500kb.webp") center / cover no-repeat;
}

.category-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/1.png") center / cover no-repeat;
}

.category-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/%E2%80%A6%E2%80%A6_%E5%89%AF%E6%9C%AC.png") center / cover no-repeat;
}

.category-card:nth-child(7) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC02486_under500kb.webp") center / cover no-repeat;
}

.why-choose {
  background: var(--paper);
}

.why-choose h2,
.why-choose h3 {
  color: #333;
}

.advantage-grid {
  gap: 22px;
  background: transparent;
}

.advantage-item {
  min-height: 170px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.advantage-item span {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  font-size: 15px;
  line-height: 52px;
}

.advantage-item h3 {
  margin-top: 24px;
  font-size: 17px;
  font-weight: 900;
}

.feature-grid,
.factory-grid,
.certificate-grid {
  gap: 26px;
}

.feature-card,
.factory-card,
.certificate-card {
  border: 0;
  box-shadow: none;
}

.feature-card .image-slot {
  min-height: 275px;
}

.feature-card h3,
.factory-card h3,
.certificate-card h3 {
  color: #333;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.feature-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/offroad_allweather_bw.webp") center / cover no-repeat;
}

.feature-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/orange_structure.webp") center / cover no-repeat;
}

.feature-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/mud_cleaning_mat.webp") center / cover no-repeat;
}

.feature-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp") center / cover no-repeat;
}

.feature-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/blue_grid_mat.webp") center / cover no-repeat;
}

.feature-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/anti_slip_texture.webp") center / cover no-repeat;
}

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

.factory-card--large {
  grid-row: auto;
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  min-height: 255px;
}

.factory-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp") center / cover no-repeat;
}

.factory-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp") center / cover no-repeat;
}

.factory-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_panorama_2to1_under500kb.webp") center / cover no-repeat;
}

.process-grid {
  gap: 22px;
}

.process-step {
  min-height: 170px;
  border: 0;
  text-align: center;
}

.process-step span {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border: 2px solid #333;
  border-radius: 50%;
  color: #333;
  font-weight: 900;
  line-height: 66px;
}

.process-step h3 {
  margin-top: 22px;
  color: #333;
  font-size: 17px;
  font-weight: 900;
}

.profile-grid {
  display: block;
  max-width: 920px;
  text-align: center;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: #555;
  font-size: 17px;
}

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

.certificate-card .image-slot {
  min-height: 270px;
  background-size: contain;
  background-color: #f8f8f8;
}

.certificate-card:nth-child(1) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/8.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(2) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/7.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(3) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/6.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(4) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/5.png") center / contain no-repeat #f8f8f8;
}

.certificate-card:nth-child(5) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4-768x1024.png") center / contain no-repeat #f8f8f8;
}

.team-grid .image-slot:first-child {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5;
}

.team-grid .image-slot:last-child {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4_4x3.webp") center / cover no-repeat;
}

.team-panel:first-child .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_panorama_2to1_500kb.webp") center / cover no-repeat;
}

.team-panel:last-child .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/4_4x3.webp") center / cover no-repeat;
}

.contact-section {
  background: #f4f4f4;
}

@media (max-width: 1020px) {
  .header-main {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    inset: 86px 0 auto;
  }

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

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

@media (max-width: 640px) {
  .primary-nav {
    inset: 86px 0 auto;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.12) 100%),
      url("../images/hero-car-interior.webp") center center / cover no-repeat;
  }

  .hero__grid {
    min-height: 350px;
    padding: 58px 0;
  }

  .hero-logo {
    font-size: 24px;
  }

  .hero__copy h1 {
    font-size: 20px;
  }

  .hero__copy h2,
  .hero__lead {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 380px;
  }
}

/* Screenshot replica pass: closer to the May 14 old homepage capture. */
.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: transparent;
  border: 0;
}

.header-main {
  width: min(100% - 240px, 1420px);
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.header-main .brand__logo {
  width: 150px;
}

.brand__text--logo strong {
  color: var(--paper);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  justify-content: center;
  gap: 22px;
}

.primary-nav a {
  color: var(--paper);
  font-size: 11px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  padding: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown__toggle span {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid var(--paper);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateY(1px);
}

.products-menu {
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: 330px;
  padding: 24px 40px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
}

.nav-dropdown.is-open .products-menu,
.nav-dropdown:focus-within .products-menu,
.nav-dropdown:hover .products-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.products-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.12;
  text-transform: none;
}

.products-menu a:hover {
  color: var(--paper);
}

.site-search {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  width: 230px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  overflow: hidden;
}

.site-search input {
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 4px 0 15px;
  color: var(--paper);
  background: transparent;
  font-size: 11px;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.site-search button {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 25px;
  line-height: 1;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat;
}

.hero__grid {
  width: min(100% - 240px, 1420px);
  min-height: 585px;
  padding: 125px 0 125px;
}

.hero-logo {
  margin-bottom: 12px;
  font-size: 58px;
  letter-spacing: 0.02em;
}

.hero__copy h1 {
  font-size: 42px;
}

.hero__copy h2 {
  margin-top: 9px;
  font-size: 28px;
  font-weight: 500;
}

.hero__lead {
  margin-top: 15px;
  font-size: 22px;
}

.hero .button--dark {
  min-height: 31px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: inline-grid;
  gap: 10px;
  justify-items: start;
}

.hero-actions .button {
  min-width: 118px;
  justify-content: center;
}

.hero .button--outline {
  min-height: 31px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: var(--paper);
  background: transparent;
  font-size: 11px;
}

.hero .button--outline:hover {
  color: var(--black);
  background: var(--paper);
}

.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -92px;
  background: transparent;
  border: 0;
}

.stats-bar__grid {
  width: min(100% - 40px, 760px);
  grid-template-columns: repeat(5, 1fr);
  border: 0;
}

.stat-item {
  min-height: 74px;
  padding: 0 10px 12px;
  border: 0;
  color: var(--paper);
}

.stat-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 5px;
  object-fit: contain;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.stat-item span {
  margin-top: 0;
  color: var(--paper);
  font-size: 7px;
}

.product-categories,
.product-features,
.process-section,
.certificates-section {
  background: #eeeeee;
}

.product-categories {
  padding-top: 36px;
  padding-bottom: 54px;
}

.section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.section-title h2::after,
.team-panel h2::after {
  display: block;
  width: 48px;
  height: 2px;
  margin: 8px auto 0;
  background: #222;
  content: "";
}

.product-categories .container,
.product-features .container,
.factory-capability .container,
.process-section .container,
.company-profile .container,
.certificates-section .container,
.team-exhibition .container,
.contact-section .container,
.site-footer .container {
  width: min(100% - 40px, 930px);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 20px;
}

.category-card,
.category-card--wide {
  min-height: 248px;
}

.category-card__body {
  min-height: 42px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.5);
}

.category-card__body h3 {
  font-size: 14px;
}

.category-card__body .arrow-link::after {
  font-size: 24px;
}

.category-card--more {
  display: grid;
  place-items: center;
  background: var(--paper);
  box-shadow: none;
}

.category-card--more::before,
.category-card--more::after {
  display: none;
}

.category-more__content {
  display: grid;
  gap: 10px;
  color: #111;
  text-align: center;
}

.category-more__content span {
  font-size: 24px;
  letter-spacing: 0.08em;
}

.category-more__content strong {
  font-size: 21px;
  font-style: italic;
}

.why-choose {
  padding: 38px 0 32px;
  background: var(--black);
}

.why-choose .container {
  width: min(100% - 40px, 920px);
}

.why-choose h2 {
  color: var(--paper);
  font-size: 14px;
}

.why-choose h2::after {
  background: var(--paper);
}

.advantage-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.advantage-item {
  min-height: 58px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.advantage-item span {
  display: block;
}

.icon {
  display: block;
  width: auto;
  height: 31px;
  margin: 0 auto;
  border: 0;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 31px;
  object-fit: contain;
  text-align: center;
}

.icon::before {
  display: block;
}

.icon-oem::before {
  content: "✂";
}

.icon-factory::before {
  content: "▤";
}

.icon-production::before {
  content: "▥";
}

.icon-rd::before {
  content: "✧";
}

.icon-design::before {
  content: "✎";
}

.icon-assets::before {
  content: "▦";
}

.icon-quality::before {
  content: "◇";
}

.icon-time::before {
  content: "◷";
}

.icon-inquiry::before {
  content: "▱";
}

.icon-confirm::before {
  content: "☷";
}

.icon-sample::before {
  content: "✎";
}

.icon-inspection::before {
  content: "◈";
}

.icon-package::before {
  content: "⬡";
}

.icon-shipment::before {
  content: "▭";
}

.icon-support::before {
  content: "◔";
}

.advantage-item .icon {
  width: auto;
  height: 31px;
  border: 0;
  border-radius: 0;
  color: var(--paper);
  font-size: 24px;
  line-height: 31px;
}

.advantage-item h3 {
  margin-top: 9px;
  color: var(--paper);
  font-size: 8px;
  line-height: 1.2;
}

.product-features {
  padding: 26px 0 34px;
}

.feature-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.feature-card .image-slot {
  min-height: 70px;
}

.feature-card h3 {
  padding: 9px 0 0;
  font-size: 9px;
  line-height: 1.18;
}

.factory-capability {
  padding: 38px 0 44px;
  background: var(--paper);
}

.factory-capability .section-title {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.factory-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  min-height: 126px;
}

.factory-card h3 {
  padding: 9px 0 0;
  font-size: 9px;
}

.factory-card:nth-child(6) .image-slot {
  background: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_panorama_2to1_500kb.webp") center / cover no-repeat;
}

.process-section {
  padding: 34px 0;
}

.process-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 74px;
  padding: 0;
  background: transparent;
}

.process-step .icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  color: #283d50;
  font-size: 32px;
  line-height: 36px;
}

.process-step h3 {
  margin-top: 10px;
  font-size: 9px;
  line-height: 1.18;
}

.company-profile {
  padding: 38px 0 50px;
  background: var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  text-align: left;
}

.profile-video {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  aspect-ratio: 16 / 9;
  background: transparent;
}

.profile-video video {
  display: block;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-height: 234px;
  margin: -2px;
  border: 0;
  background: transparent;
  object-fit: cover;
}

.profile-copy h2 {
  margin-bottom: 10px;
  font-size: 33px;
  text-transform: none;
}

.profile-copy p:not(.eyebrow) {
  margin-top: 10px;
  color: #222;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.profile-copy .button {
  min-height: 38px;
  margin-top: 16px;
  padding: 0 18px;
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.certificates-section {
  padding: 34px 0 44px;
}

.certificate-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.certificate-card .image-slot {
  min-height: 160px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.certificate-card h3 {
  padding: 12px 0 0;
  font-size: 9px;
}

.team-exhibition {
  padding: 34px 0 58px;
}

.team-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-panel h2 {
  margin-bottom: 18px;
  font-size: 14px;
}

.team-panel .image-slot {
  min-height: 190px;
}

.team-panel:first-child .image-slot {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5;
}

.contact-section {
  display: none;
}

.site-footer {
  padding: 52px 0 22px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.88)),
    repeating-linear-gradient(135deg, #121212 0, #121212 14px, #171717 14px, #171717 28px);
}

.footer-grid {
  grid-template-columns: 0.85fr 1.15fr 1.1fr;
  gap: 54px;
}

.footer-grid h3 {
  margin-bottom: 9px;
  font-size: 20px;
  text-transform: none;
}

.footer-grid a,
.footer-grid p {
  font-size: 11px;
  line-height: 1.75;
}

.footer-inquiry {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  text-align: center;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 16px;
  text-align: left;
}

.footer-form label {
  display: grid;
  gap: 4px;
  color: #d8d8d8;
  font-size: 10px;
}

.footer-form label:nth-child(3),
.footer-form a {
  grid-column: span 2;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 7px 8px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.footer-form a {
  display: block;
  padding: 8px;
  border-radius: 4px;
  color: #111;
  background: var(--paper);
  font-weight: 900;
  text-align: center;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.footer-socials a {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--paper);
  font-size: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 52px;
  padding-top: 17px;
}

.footer-bottom a {
  color: #d7d7d7;
  font-size: 10px;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    background: var(--paper);
  }

  .header-main {
    width: min(100% - 28px, var(--container));
    grid-template-columns: auto auto;
  }

  .brand__text--logo strong {
    color: var(--black);
  }

  .menu-toggle {
    display: block;
  }

  .site-search {
    display: none;
  }

  .primary-nav {
    inset: 86px 0 auto;
  }

  .primary-nav a {
    color: var(--black);
  }

  .nav-dropdown__toggle {
    color: var(--black);
  }

  .nav-dropdown__toggle span {
    border-top-color: var(--black);
  }

  .products-menu {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 18px 22px;
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.9);
    transform: none;
  }

  .nav-dropdown.is-open .products-menu {
    transform: none;
  }

  .products-menu a {
    color: var(--paper);
    font-size: 22px;
  }

  .hero__grid {
    width: min(100% - 28px, var(--container));
    min-height: 430px;
    padding: 70px 0 110px;
  }

  .hero-logo {
    font-size: 30px;
  }

  .hero__copy h1 {
    font-size: 24px;
  }

  .hero__copy h2,
  .hero__lead {
    font-size: 14px;
  }

  .stats-bar {
    margin-top: -84px;
  }

  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .category-grid,
  .feature-grid,
  .factory-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item strong {
    font-size: 10px;
  }
}

/* Current static-site pages: product catalog, blog, contact, and aligned header/footer. */
.site-header .header-main {
  align-items: center;
}

.brand,
.brand__text,
.brand__text--logo strong {
  white-space: nowrap;
}

.brand {
  min-width: max-content;
}

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

.primary-nav > a,
.nav-dropdown,
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  line-height: 1;
}

.nav-dropdown__toggle {
  justify-content: center;
}

.nav-dropdown__toggle span {
  flex: 0 0 auto;
  transform: translateY(0);
}

.site-search {
  align-self: center;
  flex: 0 0 auto;
}

.site-header--solid,
.catalog-page .site-header,
.contact-page .site-header,
.blog-page .site-header {
  position: relative;
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--solid .header-main,
.catalog-page .header-main,
.contact-page .header-main,
.blog-page .header-main {
  width: min(100% - 72px, 1780px);
}

.site-header--solid .brand__text--logo strong,
.catalog-page .brand__text--logo strong,
.contact-page .brand__text--logo strong,
.blog-page .brand__text--logo strong,
.site-header--solid .primary-nav a,
.catalog-page .primary-nav a,
.contact-page .primary-nav a,
.blog-page .primary-nav a {
  color: var(--paper);
}

.site-header--solid .site-search,
.contact-page .site-search,
.blog-page .site-search {
  width: 330px;
}

.site-header--solid .site-search input,
.contact-page .site-search input,
.blog-page .site-search input {
  color: var(--paper);
}

.catalog-page,
.contact-page,
.blog-page {
  background: #f6f6f6;
}

/* Product catalog page */
.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  width: 300px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
}

.catalog-search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.catalog-search input::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.catalog-search button {
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 30px;
}

.catalog-inquiry-list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.92)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/anti_slip_texture.webp") center / cover no-repeat;
}

.catalog-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  min-height: 184px;
  gap: 36px;
  width: min(100% - 72px, 1780px);
}

.catalog-hero h1 {
  color: var(--paper);
  font-size: 44px;
  letter-spacing: 0.02em;
}

.catalog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  min-width: 190px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-button--light {
  color: #050505;
  background: var(--paper);
}

.catalog-button--dark {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.34);
}

.catalog-hero__note {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.65;
  text-align: right;
}

.catalog-shell {
  background: var(--paper);
}

.catalog-shell__inner {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  width: min(100% - 72px, 1780px);
  min-height: 800px;
}

.catalog-sidebar {
  padding: 38px 34px 70px 0;
  border-right: 1px solid #e6e6e6;
}

.catalog-sidebar h2 {
  margin-bottom: 28px;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.catalog-category-list {
  display: grid;
}

.catalog-category-toggle {
  display: none;
}

.catalog-category-toggle__icon {
  display: inline-grid;
  gap: 4px;
}

.catalog-category-toggle__icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.catalog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  color: #111;
  font-size: 16px;
}

.catalog-category-list a:nth-child(2) {
  padding-bottom: 18px;
  border-bottom: 1px solid #dfdfdf;
}

.catalog-category-list a:nth-child(3) {
  margin-top: 18px;
}

.catalog-category-list a span {
  font-size: 30px;
  line-height: 1;
}

.catalog-category-list a:hover,
.catalog-category-list a:target {
  color: #777;
}

.catalog-results {
  padding: 38px 0 70px 44px;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.catalog-toolbar p {
  color: #333;
  font-size: 16px;
}

.catalog-toolbar select {
  min-width: 220px;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 16px;
  color: #333;
  background: var(--paper);
  font: inherit;
}

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

.catalog-card {
  position: relative;
  min-height: 318px;
  padding: 22px 18px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: var(--paper);
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-card__image {
  display: grid;
  height: 166px;
  place-items: center;
  overflow: hidden;
}

.catalog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  border-color: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.catalog-card:hover .catalog-card__image img,
.catalog-card:focus-within .catalog-card__image img {
  filter: contrast(1.04);
  transform: scale(1.08);
}

.catalog-card h3 {
  margin-top: 10px;
  color: #050505;
  font-size: 16px;
  font-weight: 900;
}

.catalog-card p {
  color: #111;
  font-size: 15px;
  line-height: 1.25;
}

.catalog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 2px;
  color: var(--paper);
  background: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.catalog-pagination a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #111;
  background: var(--paper);
  font-weight: 800;
}

.catalog-pagination a.is-active {
  color: var(--paper);
  background: #050505;
  border-color: #050505;
}

.catalog-pagination__next {
  border-color: transparent !important;
  font-size: 32px;
}

.catalog-inquiry {
  padding: 30px 0;
  color: var(--paper);
  background: #050505;
}

.catalog-inquiry__inner {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(420px, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(100% - 72px, 1500px);
}

.catalog-inquiry h2 {
  color: var(--paper);
  font-size: 28px;
  text-transform: none;
}

.catalog-inquiry p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.catalog-inquiry__contact {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.catalog-inquiry__contact p {
  margin-top: 4px;
}

.catalog-inquiry__contact strong {
  color: var(--paper);
}

.catalog-inquiry__contact a {
  color: var(--paper);
}

.catalog-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.catalog-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.catalog-footer a {
  color: var(--paper);
}

.catalog-footer p {
  margin: 0;
}

.catalog-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

/* Homepage footer / inquiry area */
.site-footer {
  padding: 110px 0 70px;
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 86% 50%, transparent 0, transparent 240px, rgba(255, 255, 255, 0.06) 241px, transparent 242px, transparent 300px, rgba(255, 255, 255, 0.04) 301px, transparent 302px),
    linear-gradient(180deg, #050505, #030303);
}

.site-footer .container {
  width: min(100% - 72px, 1500px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 1fr;
  align-items: start;
  gap: 86px;
}

.footer-grid h3 {
  color: var(--paper);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.62;
}

.footer-products {
  display: grid;
  gap: 17px;
}

.footer-products h3 {
  margin-bottom: 18px;
}

.footer-products a {
  position: relative;
  padding-left: 34px;
}

.footer-products a::before {
  position: absolute;
  left: 0;
  content: "›";
  font-size: 33px;
  line-height: 0.9;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-inquiry {
  padding: 42px 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  text-align: center;
}

.footer-inquiry__title {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-inquiry__title::before,
.footer-inquiry__title::after {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.footer-inquiry__title span {
  font-size: 34px;
}

.footer-inquiry__title h3 {
  font-size: 24px;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 420px;
  margin: 0 auto 34px;
  font-size: 17px;
}

.footer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

.footer-form label {
  display: grid;
  gap: 8px;
  color: var(--paper);
  font-size: 16px;
}

.footer-form label:nth-child(3),
.footer-form a {
  grid-column: span 2;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 13px 15px;
  color: var(--paper);
  background: transparent;
  font: inherit;
}

.footer-form textarea {
  min-height: 140px;
}

.footer-form a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 4px;
  color: #050505;
  background: var(--paper);
  font-size: 22px;
  font-weight: 900;
}

.footer-success {
  margin-top: 20px;
  color: #58df67 !important;
  font-size: 17px !important;
  text-align: left;
}

.footer-contact {
  display: grid;
  gap: 22px;
}

.footer-contact h3 + p,
.footer-contact p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.footer-contact p span {
  font-size: 26px;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 44px;
}

.footer-socials {
  display: flex;
  gap: 22px;
}

.footer-socials a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 74px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-bottom a,
.footer-bottom span {
  color: var(--paper);
  font-size: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
}

/* Contact / inquiry page */
.contact-workspace {
  padding: 28px 0 70px;
  background: #f7f7f7;
}

.contact-workspace__card {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  width: min(100% - 36px, 1520px);
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.contact-info-panel {
  padding: 86px 72px;
  border-right: 1px solid #e0e0e0;
}

.contact-info-panel h1 {
  color: #050505;
  font-size: 54px;
  text-transform: none;
}

.contact-rule {
  display: block;
  width: 76px;
  height: 4px;
  margin: 38px 0;
  background: #050505;
}

.contact-info-panel > p {
  max-width: 360px;
  color: #343944;
  font-size: 23px;
  line-height: 1.48;
}

.contact-methods {
  display: grid;
  gap: 28px;
  margin-top: 54px;
}

.contact-methods div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 24px;
}

.contact-methods span {
  color: #050505;
  font-size: 28px;
  line-height: 1.1;
}

.contact-methods p,
.contact-methods a {
  color: #303541;
  font-size: 19px;
  line-height: 1.46;
}

.contact-methods strong {
  display: block;
  margin-bottom: 2px;
  color: #050505;
  font-size: 20px;
}

.privacy-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  margin-top: 54px;
  padding: 22px;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  color: #303541;
  background: #fafafa;
}

.privacy-note span {
  font-size: 22px;
}

.privacy-note p {
  font-size: 17px;
  line-height: 1.5;
}

.contact-form-panel {
  padding: 76px 72px 66px;
}

.contact-form-panel h2 {
  color: #050505;
  font-size: 44px;
  text-transform: none;
}

.contact-form-panel > p {
  margin-top: 8px;
  color: #4d5360;
  font-size: 22px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 38px;
  margin-top: 42px;
}

.contact-form label {
  display: grid;
  gap: 12px;
  color: #050505;
  font-size: 18px;
  font-weight: 900;
}

.contact-form__wide {
  grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcfd3;
  border-radius: 8px;
  padding: 18px 20px;
  color: #343944;
  background: var(--paper);
  font: inherit;
  font-weight: 400;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  gap: 12px;
}

.phone-input-group input {
  min-width: 0;
}

.contact-form textarea {
  resize: vertical;
}

.message-count {
  justify-self: end;
  color: #6a6f7a;
  font-weight: 400;
}

.contact-submit {
  grid-column: span 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 230px;
  border: 0;
  border-radius: 7px;
  color: var(--paper);
  background: #050505;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.oubiao-inquiry-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.oubiao-inquiry-form__status,
.oubiao-turnstile {
  grid-column: span 2;
}

.oubiao-inquiry-form__status {
  min-height: 1.4em;
  margin: 0;
  color: #6a6f7a;
  font-size: 15px;
  font-weight: 500;
}

.oubiao-inquiry-form__status.is-error {
  color: #9f1d1d;
}

.oubiao-inquiry-form__status.is-success {
  color: #17643a;
}

.simple-page-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #050505;
}

.simple-page-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.simple-page-footer a {
  color: var(--paper);
}

/* Blog page */
.blog-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/oubiaomat_texture_fixed_500kb.webp") center / cover no-repeat;
}

.blog-hero__inner {
  width: min(100% - 72px, 1500px);
  padding: 94px 0;
}

.blog-hero p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 820px;
  color: var(--paper);
  font-size: 58px;
  text-transform: none;
}

.blog-hero span {
  display: block;
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.blog-shell {
  padding: 58px 0 88px;
  background: #f6f6f6;
}

.blog-shell__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  width: min(100% - 72px, 1500px);
}

.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
}

.blog-sidebar h2 {
  margin-bottom: 12px;
  color: #050505;
  font-size: 20px;
}

.blog-sidebar > a {
  padding: 15px 0;
  border-bottom: 1px solid #dedede;
  color: #111;
  font-weight: 800;
}

.blog-inquiry-box {
  margin-top: 28px;
  padding: 26px;
  color: var(--paper);
  background: #050505;
}

.blog-inquiry-box h3 {
  color: var(--paper);
  font-size: 22px;
  text-transform: none;
}

.blog-inquiry-box p {
  margin: 12px 0 20px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-inquiry-box a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: #050505;
  background: var(--paper);
  font-weight: 900;
}

.blog-list {
  display: grid;
  gap: 26px;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: var(--paper);
}

.blog-card__media {
  min-height: 230px;
  background: #111 center / cover no-repeat;
}

.blog-card__media--mold {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp");
}

.blog-card__media--material {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/blue_grid_mat.webp");
}

.blog-card__media--qc {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp");
}

.blog-card__media--models {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/vehicle_interior_fixed_under_500kb.webp");
}

.blog-card__media--export {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp");
}

.blog-card__body {
  padding: 34px;
}

.blog-card__body p {
  color: #777;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blog-card__body h2 {
  margin-top: 10px;
  color: #050505;
  font-size: 30px;
  text-transform: none;
}

.blog-card__body span {
  display: block;
  margin-top: 14px;
  color: #4b4f57;
  font-size: 17px;
}

.blog-card__body a {
  display: inline-flex;
  margin-top: 22px;
  color: #050505;
  font-weight: 900;
}

@media (max-width: 1240px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-inquiry {
    max-width: 620px;
  }
}

@media (max-width: 980px) {
  .site-header--solid .header-main,
  .catalog-page .header-main,
  .contact-page .header-main,
  .blog-page .header-main {
    width: min(100% - 28px, var(--container));
  }

  .site-header--solid .menu-toggle,
  .catalog-page .menu-toggle,
  .contact-page .menu-toggle,
  .blog-page .menu-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
  }

  .site-header--solid .menu-toggle span:not(.sr-only),
  .catalog-page .menu-toggle span:not(.sr-only),
  .contact-page .menu-toggle span:not(.sr-only),
  .blog-page .menu-toggle span:not(.sr-only) {
    background: var(--paper);
  }

  .site-header--solid .primary-nav,
  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav {
    inset: 86px 0 auto;
    background: #050505;
    border-bottom-color: rgba(255, 255, 255, 0.16);
  }

  .site-header--solid .primary-nav a,
  .catalog-page .primary-nav a,
  .contact-page .primary-nav a,
  .blog-page .primary-nav a {
    color: var(--paper);
  }

  .catalog-tools,
  .site-header--solid .site-search,
  .contact-page .site-search,
  .blog-page .site-search {
    display: none;
  }

  .catalog-hero__inner,
  .catalog-shell__inner,
  .catalog-inquiry__inner,
  .blog-shell__inner,
  .contact-workspace__card {
    grid-template-columns: 1fr;
  }

  .catalog-hero__inner,
  .catalog-shell__inner,
  .catalog-inquiry__inner,
  .blog-shell__inner {
    width: min(100% - 28px, var(--container));
  }

  .catalog-inquiry__inner {
    gap: 20px;
  }

  .catalog-inquiry__contact {
    padding-left: 0;
    border-left: 0;
  }

  .catalog-hero__note {
    text-align: left;
  }

  .catalog-sidebar {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #e6e6e6;
  }

  .catalog-results {
    padding: 34px 0 60px;
  }

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

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .catalog-inquiry__inner {
    display: grid;
  }

  .contact-info-panel {
    padding: 48px 34px;
    border-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .contact-form-panel {
    padding: 48px 34px;
  }

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

@media (max-width: 640px) {
  .header-main {
    gap: 16px;
  }

  .brand__logo {
    width: 126px;
  }

  .brand__text--logo strong {
    font-size: 20px;
  }

  .catalog-hero h1,
  .blog-hero h1,
  .contact-info-panel h1 {
    font-size: 38px;
  }

  .catalog-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__wide,
  .oubiao-inquiry-form__status,
  .oubiao-turnstile,
  .contact-submit {
    grid-column: span 1;
  }

  .contact-submit {
    justify-self: stretch;
  }

  .phone-input-group {
    grid-template-columns: minmax(112px, 0.46fr) minmax(0, 1fr);
    gap: 10px;
  }

  .site-footer .container,
  .blog-hero__inner {
    width: min(100% - 28px, var(--container));
  }

  .footer-grid h3 {
    font-size: 26px;
  }

  .footer-grid a,
  .footer-grid p,
  .footer-bottom a,
  .footer-bottom span {
    font-size: 16px;
  }

  .footer-inquiry {
    padding: 28px 20px;
  }

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

  .footer-form label:nth-child(3),
  .footer-form a {
    grid-column: span 1;
  }

  .simple-page-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Latest product catalog refinements. */
.catalog-toolbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.catalog-inline-search {
  display: grid;
  grid-template-columns: 1fr 44px;
  justify-self: end;
  width: min(100%, 380px);
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: var(--paper);
}

.catalog-inline-search input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  color: #111;
  background: transparent;
  font: inherit;
}

.catalog-inline-search input::placeholder {
  color: #777;
}

.catalog-inline-search button {
  border: 0;
  color: #111;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.catalog-toolbar label {
  justify-self: end;
}

.catalog-pagination {
  align-items: center;
}

.catalog-pagination a,
.catalog-pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.catalog-pagination__next {
  width: 38px;
  height: 38px;
  border-color: transparent !important;
  font-size: 28px;
  font-weight: 900;
  padding-bottom: 2px;
}

/* Blog history page, matched to the first visual reference. */
.blog-page {
  background: #f7f7f7;
}

.history-section {
  overflow: hidden;
  padding: 32px 0 48px;
  background: #f7f7f7;
}

.history-heading {
  width: min(100% - 40px, 1180px);
  margin-bottom: 26px;
  text-align: center;
}

.history-heading p,
.development-copy p {
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.history-heading h1 {
  margin-top: 8px;
  color: #111;
  font-size: 34px;
  font-weight: 900;
  text-transform: none;
}

.history-heading span {
  display: block;
  margin-top: 10px;
  color: #222;
  font-size: 15px;
}

.history-stage {
  position: relative;
  width: min(100% - 170px, 1220px);
  margin: 0 auto;
}

.history-card {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.15fr;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.history-card__image {
  min-height: 300px;
  background: #111 center / cover no-repeat;
  filter: grayscale(1);
}

.history-card__image--left {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp");
}

.history-card__image--right {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp");
}

.history-card__copy {
  display: grid;
  align-content: center;
  padding: 42px 48px;
}

.history-card__copy p {
  color: #969696;
  font-size: 20px;
  font-weight: 900;
}

.history-card__copy h2 {
  margin-top: 12px;
  color: #111;
  font-size: 25px;
  text-transform: none;
}

.history-card__copy span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 18px 0;
  background: #111;
}

.history-card__copy strong {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.68;
}

.history-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--paper);
  background: #202020;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.history-arrow--left {
  left: -28px;
}

.history-arrow--right {
  right: -28px;
}

.history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  width: min(100% - 170px, 1220px);
  margin: 28px auto 0;
}

.history-timeline::before {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  height: 1px;
  background: #c9c9c9;
  content: "";
}

.history-timeline a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #111;
  text-align: center;
}

.history-timeline strong {
  color: #777;
  font-size: 13px;
}

.history-timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background: #f7f7f7;
}

.history-timeline em {
  max-width: 120px;
  color: #111;
  font-size: 12px;
  font-style: normal;
  line-height: 1.25;
}

.history-timeline a.is-active strong {
  color: #111;
}

.history-timeline a.is-active span {
  border-color: #111;
  background: #111;
}

.development-section {
  padding: 32px 0 70px;
  background: var(--paper);
}

.development-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 56px;
  width: min(100% - 90px, 1440px);
}

.development-copy {
  padding-top: 26px;
}

.development-copy h2 {
  margin-top: 20px;
  color: #111;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.development-copy span {
  display: block;
  margin-top: 30px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
}

.development-copy a {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 4px;
  color: var(--paper);
  background: #111;
  font-size: 14px;
  font-weight: 900;
}

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

.development-card {
  position: relative;
  display: grid;
  min-height: 178px;
  align-content: end;
  overflow: hidden;
  border-radius: 7px;
  padding: 24px;
  background: #111 center / cover no-repeat;
  filter: grayscale(1);
}

.development-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.76));
  content: "";
}

.development-card span,
.development-card h3 {
  position: relative;
  z-index: 1;
}

.development-card span {
  display: block;
  width: 18px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--paper);
}

.development-card h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

.development-card--design {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/DSC05285_original_color_under500kb.webp");
}

.development-card--testing {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/gray_mat_closeup.webp");
}

.development-card--manufacturing {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/factory_machine_panorama_500kb.webp");
}

.development-card--materials {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/storage_panorama_500kb.webp");
}

.development-card--durability {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/mud_cleaning_mat.webp");
}

.development-card--packaging {
  background-image: url("https://oubiaomat.com/wp-content/uploads/2026/05/warehouse_500kb.webp");
}

@media (max-width: 980px) {
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-inline-search,
  .catalog-toolbar label {
    justify-self: stretch;
  }

  .catalog-inline-search,
  .catalog-toolbar select {
    width: 100%;
  }

  .history-stage,
  .history-timeline,
  .development-grid {
    width: min(100% - 28px, var(--container));
  }

  .history-card,
  .development-grid {
    grid-template-columns: 1fr;
  }

  .history-card__copy {
    padding: 34px;
  }

  .history-timeline {
    overflow-x: auto;
    grid-template-columns: repeat(8, 140px);
    padding-bottom: 12px;
  }

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

@media (max-width: 640px) {
  .history-heading h1 {
    font-size: 30px;
  }

  .history-stage {
    width: min(100% - 36px, var(--container));
  }

  .history-arrow {
    display: none;
  }

  .development-cards {
    grid-template-columns: 1fr;
  }
}

/* About page: story, clickable Oubiao history, and placeholder-only media. */
.about-page {
  background: #f8f8f8;
}

.about-story {
  padding: 58px 0 36px;
  background: #f8f8f8;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.74fr);
  gap: 92px;
  width: min(100% - 120px, 1450px);
  align-items: start;
}

.about-story__copy > p,
.about-history__heading p,
.about-capability__copy p {
  color: #838383;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-story h1 {
  margin-top: 12px;
  color: #101010;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}

.about-story__text {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: #111;
  font-size: 15px;
  line-height: 1.72;
}

.about-story__text strong {
  color: #101010;
  font-size: 18px;
}

.about-story__copy > a,
.about-capability__copy a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 22px;
  border: 1px solid #101010;
  border-radius: 4px;
  color: var(--paper);
  background: #101010;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(15, 35, 70, 0);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-story__copy > a span,
.about-capability__copy a span,
.about-page .about-extra-action span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
  transition: transform 220ms ease;
}

.about-story__copy > a:hover,
.about-story__copy > a:focus-visible,
.about-capability__copy a:hover,
.about-capability__copy a:focus-visible,
.about-page .about-extra-action:hover,
.about-page .about-extra-action:focus-visible {
  color: #101010;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 35, 70, 0.14);
  transform: translateY(-1px);
}

.about-story__copy > a:hover span,
.about-story__copy > a:focus-visible span,
.about-capability__copy a:hover span,
.about-capability__copy a:focus-visible span,
.about-page .about-extra-action:hover span,
.about-page .about-extra-action:focus-visible span {
  transform: translateX(4px);
}

.about-image-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 46% 38%, #cfcfcf 0 15px, transparent 16px),
    linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.45) 47% 54%, transparent 55%),
    linear-gradient(135deg, #eeeeee, #dddddd);
  color: #9a9a9a;
}

.about-image-placeholder::before {
  width: 132px;
  height: 78px;
  clip-path: polygon(0 100%, 32% 38%, 48% 70%, 66% 14%, 100% 100%);
  background: #c8c8c8;
  content: "";
}

.about-image-placeholder span {
  position: absolute;
  bottom: 18px;
  left: 50%;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.about-image-placeholder--hero {
  min-height: 350px;
}

.about-history {
  padding: 24px 0 52px;
  background: #f8f8f8;
}

.about-history__heading {
  width: min(100% - 120px, 1450px);
  margin-bottom: 24px;
  text-align: center;
}

.about-history__heading h2 {
  margin-top: 8px;
  color: #101010;
  font-size: 38px;
  text-transform: none;
}

.about-history__heading span {
  display: block;
  margin-top: 9px;
  color: #333;
  font-size: 15px;
}

.about-history__stage {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 22px;
  width: min(100% - 120px, 1450px);
  margin: 0 auto;
  align-items: center;
}

.about-history__card {
  display: grid;
  grid-template-columns: 0.95fr 0.94fr 1.08fr;
  overflow: hidden;
  min-height: 245px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-image-placeholder--history {
  min-height: 245px;
  border-radius: 0;
}

.about-image-placeholder--history::before {
  width: 96px;
  height: 58px;
}

.about-history__copy {
  display: grid;
  align-content: center;
  padding: 30px 42px;
}

.about-history__copy p {
  color: #8f8f8f;
  font-size: 19px;
  font-weight: 900;
}

.about-history__copy h3 {
  margin-top: 12px;
  color: #101010;
  font-size: 25px;
  line-height: 1.18;
  text-transform: none;
}

.about-history__copy span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 16px 0;
  background: #101010;
}

.about-history__copy strong {
  color: #151515;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.about-history__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: #101010;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 22px;
  line-height: 1;
}

.about-history__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(96px, 1fr));
  gap: 0;
  width: min(100% - 120px, 1450px);
  margin: 30px auto 0;
}

.about-history__timeline::before {
  position: absolute;
  top: 31px;
  right: 0;
  left: 0;
  height: 1px;
  background: #cccccc;
  content: "";
}

.about-history__timeline button {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  padding: 0 6px;
  color: #111;
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.about-history__timeline strong {
  color: #7e7e7e;
  font-size: 13px;
  font-weight: 900;
}

.about-history__timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #aaaaaa;
  border-radius: 50%;
  background: #f8f8f8;
}

.about-history__timeline em {
  color: #111;
  font-size: 11px;
  font-style: normal;
  line-height: 1.25;
}

.about-history__timeline button.is-active strong {
  color: #111;
}

.about-history__timeline button.is-active span {
  border-color: #111;
  background: #111;
}

.about-capability {
  padding: 42px 0 74px;
  background: var(--paper);
}

.about-capability__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 0.72fr);
  gap: 56px;
  width: min(100% - 120px, 1450px);
}

.about-capability__copy {
  padding-top: 14px;
}

.about-capability__copy h2 {
  margin-top: 18px;
  color: #101010;
  font-size: 31px;
  line-height: 1.15;
  text-transform: none;
}

.about-capability__copy span {
  display: block;
  margin-top: 24px;
  color: #222;
  font-size: 15px;
  line-height: 1.8;
}

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

.about-capability__cards article {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  overflow: hidden;
  border-radius: 6px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.74)),
    linear-gradient(135deg, #d8d8d8, #b8b8b8);
}

.about-capability__cards article::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 18px);
  content: "";
}

.about-capability__cards span,
.about-capability__cards h3 {
  position: relative;
  z-index: 1;
}

.about-capability__cards span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--paper);
}

.about-capability__cards h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.25;
  text-transform: none;
}

@media (max-width: 1180px) {
  .about-story__grid,
  .about-history__heading,
  .about-history__stage,
  .about-history__timeline,
  .about-capability__grid {
    width: min(100% - 40px, var(--container));
  }

  .about-story__grid,
  .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-history__timeline {
    overflow-x: auto;
    grid-template-columns: repeat(12, 124px);
    padding-bottom: 14px;
  }
}

@media (max-width: 760px) {
  .about-story {
    padding-top: 40px;
  }

  .about-story h1,
  .about-history__heading h2 {
    font-size: 32px;
  }

  .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-history__arrow {
    display: none;
  }

  .about-history__card,
  .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-history__copy {
    padding: 30px;
  }
}

/* Homepage annotation fixes: section backgrounds and factory image framing. */
.why-choose {
  background: #050505 !important;
}

.why-choose .section-title h2,
.why-choose .advantage-item h3 {
  color: var(--paper) !important;
}

.why-choose .section-title h2::after {
  background: var(--paper) !important;
}

.why-choose .advantage-item .icon {
  color: var(--paper) !important;
}

.factory-capability,
.company-profile,
.team-exhibition {
  background: var(--paper) !important;
}

.factory-card {
  display: grid;
  background: var(--paper);
}

.factory-card .image-slot,
.factory-card--large .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 2 / 1;
  border: 1px solid #e8e8e8;
  background-color: var(--paper) !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.factory-card h3 {
  padding: 10px 0 0 !important;
  color: #111;
  background: var(--paper);
  text-align: center;
}

.team-panel .media-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #111 #e6e6e6;
  scrollbar-width: thin;
}

.team-panel .media-scroll::-webkit-scrollbar {
  height: 6px;
}

.team-panel .media-scroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}

.team-panel .media-scroll::-webkit-scrollbar-thumb {
  background: #111;
}

.team-panel .media-scroll .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 2 / 1;
  border: 1px dashed #b8b8b8;
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(135deg, transparent 48%, #eef4f7 49%),
    #d8e0e5 !important;
  background-position: center !important;
  background-size: cover !important;
  scroll-snap-align: start;
}

.team-panel:last-child .media-scroll .image-slot:nth-child(1) {
  background: url("../images/展会/trade_show_team_1_4x3.webp") center / cover no-repeat !important;
}

.team-panel:last-child .media-scroll .image-slot:nth-child(2) {
  background: url("../images/展会/trade_show_team_2_4x3.webp") center / cover no-repeat !important;
}

.team-panel .media-scroll .image-slot::before,
.team-panel .media-scroll .image-slot::after {
  display: none !important;
}

.team-panel .media-scroll .image-slot span {
  display: inline-flex !important;
  padding: 8px 12px;
  color: #333;
  background: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-panel:last-child .media-scroll .image-slot span {
  display: none !important;
}

@media (max-width: 640px) {
  .factory-card .image-slot,
  .factory-card--large .image-slot,
  .team-panel .media-scroll .image-slot {
    aspect-ratio: 2 / 1;
  }
}

/* Homepage annotation fixes: separate image frames from captions. */
.feature-card,
.certificate-card {
  display: grid;
  overflow: visible !important;
  background: transparent !important;
}

.feature-card .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  border: 0 !important;
  border-radius: 0 !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.product-features .feature-card .image-slot,
.factory-capability .factory-card .image-slot,
.certificates-section .certificate-card .image-slot,
.team-exhibition .team-panel .media-scroll .image-slot {
  isolation: isolate;
  overflow: hidden;
}

.product-features .feature-card .image-slot::before,
.factory-capability .factory-card .image-slot::before,
.certificates-section .certificate-card .image-slot::before,
.team-exhibition .team-panel .media-scroll .image-slot::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  border: 0;
  background: inherit;
  content: "";
  pointer-events: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 520ms ease, filter 420ms ease;
  will-change: transform;
}

.product-features .feature-card:hover .image-slot::before,
.factory-capability .factory-card:hover .image-slot::before,
.certificates-section .certificate-card:hover .image-slot::before,
.team-exhibition .team-panel .media-scroll .image-slot:hover::before {
  filter: contrast(1.035) brightness(1.025);
  transform: scale(1.045);
}

.feature-card .image-slot::after,
.certificate-card .image-slot::after {
  display: none !important;
}

.feature-card h3 {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.certificate-grid {
  align-items: start;
}

.certificate-card .image-slot {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 3 / 4;
  border: 1px solid #eeeeee !important;
  border-radius: 0 !important;
  background-color: #f8f8f8 !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.certificate-card h3 {
  margin: 9px 0 0 !important;
  padding: 0 !important;
  color: #111 !important;
  background: transparent !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-align: center !important;
}

.category-card--more {
  isolation: isolate;
  display: grid !important;
  overflow: hidden;
  min-height: 248px;
  place-items: center;
  border: 1px solid #dedede !important;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3f3f3 52%, #ffffff 100%) !important;
}

.category-card--more::before,
.category-card--more::after {
  position: absolute;
  display: block !important;
  content: "";
}

.category-card--more::before {
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.category-card--more::after {
  right: -44px;
  bottom: -44px;
  z-index: -1;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow:
    -22px -22px 0 -21px rgba(0, 0, 0, 0.25),
    -44px -44px 0 -43px rgba(0, 0, 0, 0.2);
}

.category-more__content {
  position: relative;
  display: grid !important;
  justify-items: center;
  gap: 9px;
  color: #111;
  text-align: center;
  text-transform: uppercase;
}

.category-more__content::before,
.category-more__content::after {
  display: block;
  width: 54px;
  height: 2px;
  background: #111;
  content: "";
}

.category-more__content span {
  color: #777;
  font-size: 11px !important;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.28em !important;
}

.category-more__content strong {
  color: #111;
  font-size: 36px !important;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.category-more__content em {
  color: #111;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
}

/* Product category interactions: image motion and clearer click target. */
.category-card:not(.category-card--more) {
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.category-card:not(.category-card--more) .image-slot {
  transform: scale(1);
  transition: filter 420ms ease, transform 520ms ease;
  will-change: transform;
}

.category-card:not(.category-card--more)::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-75%);
  transition: opacity 240ms ease, transform 620ms ease;
}

.category-card:not(.category-card--more):hover,
.category-card:not(.category-card--more):focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.category-card:not(.category-card--more):hover .image-slot,
.category-card:not(.category-card--more):focus-visible .image-slot {
  filter: contrast(1.08) brightness(1.08);
  transform: scale(1.075);
}

.category-card:not(.category-card--more):hover::before,
.category-card:not(.category-card--more):focus-visible::before {
  opacity: 1;
  transform: translateX(75%);
}

.category-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  transition: background 220ms ease;
}

.category-card:not(.category-card--more):hover .category-card__body,
.category-card:not(.category-card--more):focus-visible .category-card__body {
  background: rgba(0, 0, 0, 0.72);
}

.category-card__body .arrow-link {
  display: inline-grid;
  width: 34px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0 !important;
  transition: background 180ms ease, transform 180ms ease;
}

.category-card__body .arrow-link::after {
  font-size: 18px !important;
  line-height: 1;
}

.category-card:not(.category-card--more):hover .arrow-link,
.category-card:not(.category-card--more):focus-visible .arrow-link {
  background: var(--paper);
  transform: translateX(4px);
}

.category-card:not(.category-card--more):hover .arrow-link::after,
.category-card:not(.category-card--more):focus-visible .arrow-link::after {
  color: #111;
}

.category-card__body {
  grid-template-columns: 1fr !important;
}

.category-card__body .arrow-link {
  display: none !important;
}

/* About page annotation refinements. */
.about-story {
  padding: 58px 0 42px;
}

.about-story__grid {
  display: block;
  width: min(100% - 96px, 1180px);
}

.about-story__copy {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.about-story h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.05;
}

.about-story__text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 980px;
  margin-top: 0;
  color: #202020;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.about-story__text p {
  margin: 0;
}

.about-story__text p:last-child {
  justify-self: center;
  margin-top: 2px;
  text-align: center;
}

.about-story__copy > a,
.about-image-placeholder--hero {
  display: none !important;
}

.about-history {
  padding: 38px 0 64px;
}

.about-history__heading {
  margin-bottom: 28px;
}

.about-history__stage {
  position: relative;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 12px;
  width: min(100% - 80px, 1500px);
}

.about-history__card {
  grid-template-columns: 1.16fr 1fr 0.82fr;
  min-height: 315px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.about-image-placeholder--history {
  min-height: 315px;
}

.about-history__copy {
  padding: 44px 52px;
}

.about-history__copy p {
  font-size: 22px;
}

.about-history__copy h3 {
  font-size: 30px;
}

.about-history__copy strong {
  font-size: 15px;
}

.about-history__arrow {
  width: 38px;
  height: 74px;
  border: 0;
  border-radius: 0;
  color: #111;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: 34px;
  font-weight: 400;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.about-history__arrow:hover,
.about-history__arrow:focus-visible {
  opacity: 1;
}

.about-history__arrow:first-child:hover,
.about-history__arrow:first-child:focus-visible {
  transform: translateX(-4px);
}

.about-history__arrow:last-child:hover,
.about-history__arrow:last-child:focus-visible {
  transform: translateX(4px);
}

.about-history__preview {
  opacity: 0.42;
  filter: blur(1.4px) grayscale(1);
  transform: scale(0.985);
}

.about-history__preview span {
  opacity: 0.38;
}

.about-capability {
  padding: 72px 0 96px;
}

.about-capability__grid {
  grid-template-columns: minmax(270px, 0.25fr) minmax(0, 0.75fr);
  gap: 72px;
  width: min(100% - 90px, 1540px);
}

.about-capability__copy h2 {
  font-size: 38px;
}

.about-capability__copy span {
  font-size: 16px;
}

.about-capability__cards {
  gap: 18px;
}

.about-capability__cards article {
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  padding: 30px;
}

.about-capability__cards h3 {
  font-size: 20px;
}

@media (max-width: 980px) {
  .about-story__grid,
  .about-history__stage,
  .about-history__timeline,
  .about-capability__grid {
    width: min(100% - 36px, var(--container));
  }

  .about-story__copy,
  .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-story__text {
    grid-template-columns: 1fr;
  }

  .about-history__card {
    grid-template-columns: 1fr 1fr;
  }

  .about-history__preview {
    display: none;
  }

  .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-capability__cards article {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 760px) {
  .about-story h1,
  .about-history__heading h2 {
    font-size: 34px;
  }

  .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-history__arrow {
    display: none;
  }

  .about-history__card,
  .about-capability__cards {
    grid-template-columns: 1fr;
  }
}

/* Homepage footer compact pass. */
.site-footer {
  padding: 56px 0 32px !important;
}

.site-footer .container {
  width: min(100% - 72px, 1360px) !important;
}

.footer-grid {
  grid-template-columns: 0.86fr 0.88fr 1fr !important;
  gap: 58px !important;
}

.footer-grid h3 {
  font-size: 24px !important;
}

.footer-grid a,
.footer-grid p {
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.footer-products {
  gap: 9px !important;
}

.footer-products h3 {
  margin-bottom: 10px !important;
}

.footer-products a {
  padding-left: 22px !important;
}

.footer-products a::before {
  font-size: 24px !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 8px !important;
  padding-bottom: 12px !important;
}

.footer-inquiry {
  padding: 24px 28px 22px !important;
  border-radius: 10px !important;
}

.footer-inquiry__title {
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.footer-inquiry__title span {
  font-size: 20px !important;
}

.footer-inquiry__title h3 {
  font-size: 20px !important;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 330px !important;
  margin-bottom: 18px !important;
  font-size: 13px !important;
}

.footer-form {
  gap: 10px !important;
}

.footer-form label {
  gap: 5px !important;
  font-size: 12px !important;
}

.footer-form input,
.footer-form textarea {
  padding: 9px 10px !important;
  font-size: 12px !important;
}

.footer-form textarea {
  min-height: 74px !important;
}

.footer-form a {
  min-height: 42px !important;
  font-size: 16px !important;
}

.footer-success {
  margin-top: 12px !important;
  font-size: 13px !important;
}

.footer-contact {
  gap: 14px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 22px 1fr !important;
  gap: 12px !important;
}

.footer-contact p span {
  font-size: 18px !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 20px !important;
}

.footer-socials {
  gap: 12px !important;
}

.footer-socials a {
  width: 40px !important;
  height: 40px !important;
  font-size: 18px !important;
}

.footer-bottom {
  gap: 10px !important;
  margin-top: 34px !important;
  padding-top: 22px !important;
}

.footer-bottom nav {
  gap: 20px !important;
}

.footer-bottom a,
.footer-bottom span {
  font-size: 14px !important;
}

.footer-bottom p {
  font-size: 13px !important;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Header products dropdown: old-site glass panel style. */
.products-menu {
  top: 42px !important;
  left: -20px !important;
  width: 280px !important;
  padding: 20px 24px 22px 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  background: rgba(0, 0, 0, 0.58) !important;
  box-shadow: none !important;
  transform: translateY(8px) !important;
  backdrop-filter: blur(12px) saturate(0.9);
}

.nav-dropdown.is-open .products-menu,
.nav-dropdown:focus-within .products-menu,
.nav-dropdown:hover .products-menu {
  transform: translateY(0) !important;
}

.products-menu a {
  padding: 7px 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.16 !important;
}

.products-menu a:hover {
  color: var(--paper) !important;
  transform: translateX(8px);
}

@media (max-width: 980px) {
  .products-menu {
    width: 100% !important;
    padding: 16px 20px !important;
  }

  .products-menu a {
    font-size: 18px !important;
    letter-spacing: 0.12em !important;
  }
}

/* Latest annotation pass: calmer category hover, media carousel controls, header and footer alignment. */
.category-card:not(.category-card--more)::before,
.category-card:not(.category-card--more):hover::before,
.category-card:not(.category-card--more):focus-visible::before {
  display: none !important;
  opacity: 0 !important;
}

.category-card:not(.category-card--more):hover .image-slot,
.category-card:not(.category-card--more):focus-visible .image-slot {
  filter: contrast(1.04) brightness(1.03) !important;
  transform: scale(1.045) !important;
}

.media-carousel {
  position: relative;
}

.team-panel .media-scroll {
  padding: 0 !important;
  scrollbar-width: none;
}

.team-panel .media-scroll::-webkit-scrollbar {
  display: none;
}

.team-panel .media-scroll .image-slot {
  border: 0 !important;
  border-radius: 0 !important;
}

.team-panel .media-scroll .image-slot {
  aspect-ratio: auto !important;
  height: 282px !important;
}

.team-panel:first-child .media-scroll .image-slot {
  background:
    radial-gradient(circle at 25% 30%, #ffffff 0 18px, transparent 19px),
    linear-gradient(90deg, #d8e0e5, #edf4f7) !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(1) {
  background: url("../images/团队/office_meeting_4x3.webp") center / cover no-repeat !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(2) {
  background: url("../images/团队/team_waiting_room_4x3.webp") center / cover no-repeat !important;
}

.team-panel:first-child .media-scroll .image-slot:nth-child(3) {
  background: url("../images/团队/team_selfie_4x3.webp") center / cover no-repeat !important;
}

.media-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.media-carousel__button:hover,
.media-carousel__button:focus-visible {
  background: rgba(0, 0, 0, 0.78);
}

.media-carousel__button--prev {
  left: 10px;
}

.media-carousel__button--next {
  right: 10px;
}

.site-header--solid .header-main,
.about-page .header-main {
  grid-template-columns: 190px minmax(0, 1fr) 250px !important;
  width: min(100% - 72px, 1500px) !important;
  gap: 26px !important;
}

.site-header--solid .primary-nav,
.about-page .primary-nav {
  justify-content: center !important;
  gap: 28px !important;
}

.site-header--solid .site-search,
.about-page .site-search {
  justify-self: end;
  width: 250px !important;
  height: 36px !important;
}

.site-header--solid .site-search input,
.about-page .site-search input {
  font-size: 11px !important;
}

.site-footer {
  color: var(--paper) !important;
  background:
    radial-gradient(circle at 82% 48%, transparent 0, transparent 250px, rgba(255, 255, 255, 0.055) 251px, transparent 252px, transparent 322px, rgba(255, 255, 255, 0.035) 323px, transparent 324px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #040404 !important;
}

.site-footer .container {
  width: min(100% - 72px, 1040px) !important;
}

.footer-grid {
  grid-template-columns: 210px 290px 260px !important;
  justify-content: center !important;
  gap: 70px !important;
}

.footer-products a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 42px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 18px 1fr !important;
}

.footer-bottom {
  width: min(100% - 72px, 1040px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 980px) {
  .site-header--solid .header-main,
  .about-page .header-main {
    grid-template-columns: auto auto !important;
    width: min(100% - 28px, var(--container)) !important;
  }

  .site-header--solid .primary-nav,
  .about-page .primary-nav {
    justify-content: flex-start !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Footer annotation pass: match the larger reference layout. */
.site-footer {
  padding: 24px 0 0 !important;
  color: var(--paper) !important;
  background:
    radial-gradient(circle at 83% 51%, transparent 0, transparent 265px, rgba(255, 255, 255, 0.055) 266px, transparent 267px, transparent 354px, rgba(255, 255, 255, 0.034) 355px, transparent 356px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px),
    #040404 !important;
}

.site-footer .container,
.footer-bottom {
  width: min(100% - 72px, 1400px) !important;
}

.footer-grid {
  grid-template-columns:
    minmax(180px, 220px)
    minmax(70px, 220px)
    minmax(360px, 490px)
    minmax(50px, 100px)
    minmax(280px, 360px) !important;
  justify-content: center !important;
  gap: 0 !important;
}

.footer-products {
  grid-column: 1 !important;
  gap: 14px !important;
}

.footer-inquiry {
  grid-column: 3 !important;
  min-height: 365px !important;
  padding: 6px 28px 18px !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  border-radius: 14px !important;
}

.footer-contact {
  grid-column: 5 !important;
}

.footer-grid h3 {
  font-size: 28px !important;
  line-height: 1.12 !important;
}

.footer-grid a,
.footer-grid p {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.footer-products h3 {
  margin-bottom: 4px !important;
}

.footer-products a {
  padding-left: 28px !important;
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.footer-products a::before {
  font-size: 30px !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 5px !important;
  padding-bottom: 13px !important;
}

.footer-inquiry__title {
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.footer-inquiry__title span {
  font-size: 25px !important;
}

.footer-inquiry__title h3 {
  font-size: 20px !important;
  line-height: 1.2 !important;
}

.footer-inquiry > p:not(.footer-success) {
  max-width: 390px !important;
  margin-bottom: 6px !important;
  font-size: 14px !important;
  line-height: 1.24 !important;
}

.footer-form {
  gap: 8px 14px !important;
  margin-top: 0 !important;
}

.footer-form label {
  gap: 5px !important;
  font-size: 14px !important;
}

.footer-form input,
.footer-form textarea {
  min-height: 36px !important;
  padding: 7px 10px !important;
  font-size: 14px !important;
}

.footer-form textarea {
  min-height: 68px !important;
}

.footer-form a {
  min-height: 38px !important;
  font-size: 19px !important;
}

.footer-success {
  display: none !important;
}

.footer-contact {
  gap: 13px !important;
}

.footer-contact h3 + p,
.footer-contact p {
  grid-template-columns: 26px 1fr !important;
  gap: 12px !important;
}

.footer-contact p span {
  font-size: 20px !important;
}

.footer-contact h3:nth-of-type(2) {
  margin-top: 54px !important;
}

.footer-socials {
  gap: 14px !important;
}

.footer-socials a {
  width: 48px !important;
  height: 48px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: #000 !important;
  font-size: 22px !important;
}

.footer-bottom {
  gap: 6px !important;
  margin-top: 18px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 16px 0 20px !important;
}

.footer-bottom nav {
  gap: 34px !important;
}

.footer-bottom a,
.footer-bottom span {
  font-size: 17px !important;
  font-style: italic !important;
}

.footer-bottom p {
  font-size: 12px !important;
}

@media (max-width: 980px) {
  .site-footer .container,
  .footer-bottom {
    width: min(100% - 28px, var(--container)) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .footer-products,
  .footer-inquiry,
  .footer-contact {
    grid-column: 1 !important;
  }

  .footer-inquiry {
    max-width: 620px !important;
    min-height: 0 !important;
  }

  .footer-contact h3:nth-of-type(2) {
    margin-top: 38px !important;
  }
}

@media (max-width: 640px) {
  .footer-grid h3 {
    font-size: 30px !important;
  }

  .footer-grid a,
  .footer-grid p,
  .footer-bottom a,
  .footer-bottom span {
    font-size: 16px !important;
  }

  .footer-inquiry {
    padding: 30px 20px 34px !important;
  }

  .footer-form {
    grid-template-columns: 1fr !important;
  }

  .footer-form label:nth-child(3),
  .footer-form a {
    grid-column: span 1 !important;
  }
}

/* Product category images: remove the full-image gray overlay. */
.category-card:not(.category-card--more) .image-slot::after {
  display: none !important;
  opacity: 0 !important;
}

/* Homepage header annotation pass: smaller search, nudge nav right. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .primary-nav {
  transform: translateX(48px) !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search {
  justify-self: end !important;
  width: 165px !important;
  height: 32px !important;
  grid-template-columns: 1fr 28px !important;
  transform: translateX(90px) !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search input {
  padding-left: 12px !important;
  font-size: 9px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search button {
  width: 28px !important;
  height: 28px !important;
  font-size: 20px !important;
}

/* Blog page B2B resource layout. */
.blog-page .blog-hero {
  min-height: 300px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.42)),
    url("../images/bw_clean_car_outline_banner.webp") center / cover no-repeat !important;
}

.blog-page .blog-hero__inner,
.blog-page .blog-shell__inner {
  width: min(100% - 72px, 1400px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.blog-page .blog-hero__inner {
  min-height: 300px;
  padding: 32px 0 24px !important;
}

.blog-page .blog-hero p {
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 13px !important;
  letter-spacing: 0.2em !important;
}

.blog-page .blog-hero h1 {
  max-width: 760px !important;
  font-size: 42px !important;
  line-height: 1 !important;
}

.blog-page .blog-hero span {
  max-width: 760px !important;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.blog-hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-hero__metrics strong {
  padding: 11px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero__metrics strong:last-child {
  border-right: 0;
}

.blog-page .blog-shell {
  padding: 50px 0 78px !important;
  background: #f2f2f2 !important;
}

.blog-page .blog-shell__inner {
  grid-template-columns: 340px minmax(0, 1fr) !important;
  gap: 48px !important;
}

.blog-page .blog-sidebar {
  position: sticky;
  top: 24px;
  display: block !important;
  padding: 28px 30px 30px !important;
  border: 1px solid #dedede !important;
  background: var(--paper) !important;
}

.blog-page .blog-sidebar h2 {
  margin-bottom: 18px !important;
  font-size: 18px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.blog-page .blog-sidebar > a {
  display: flex !important;
  align-items: center !important;
  min-height: 42px;
  padding: 13px 0 !important;
  color: #111 !important;
  font-size: 14px !important;
}

.blog-page .blog-inquiry-box {
  margin-top: 28px !important;
  padding: 26px !important;
  border: 1px solid #1c1c1c !important;
}

.blog-page .blog-inquiry-box h3 {
  font-size: 20px !important;
}

.blog-page .blog-inquiry-box p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.blog-page .blog-list {
  gap: 18px !important;
}

.blog-page .blog-card {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  min-height: 210px !important;
  border-color: #dedede !important;
  box-shadow: none !important;
}

.blog-page .blog-card--featured {
  grid-template-columns: 360px minmax(0, 1fr) !important;
  min-height: 260px !important;
}

.blog-page .blog-card__media {
  min-height: 210px !important;
  filter: grayscale(0.08) contrast(1.04);
}

.blog-page .blog-card--featured .blog-card__media {
  min-height: 260px !important;
}

.blog-page .blog-card__body {
  display: grid;
  align-content: center;
  padding: 28px 32px !important;
}

.blog-page .blog-card__body p {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
}

.blog-page .blog-card__body h2 {
  max-width: 760px;
  font-size: 25px !important;
  line-height: 1.18 !important;
}

.blog-page .blog-card--featured .blog-card__body h2 {
  font-size: 34px !important;
}

.blog-page .blog-card__body span {
  max-width: 760px;
  color: #515151 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

@media (max-width: 980px) {
  .blog-page .blog-hero__inner,
  .blog-page .blog-shell__inner {
    width: min(100% - 28px, var(--container)) !important;
  }

  .blog-page .blog-shell__inner,
  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    grid-template-columns: 1fr !important;
  }

  .blog-page .blog-sidebar {
    position: static;
  }

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

@media (max-width: 640px) {
  .blog-page .blog-hero h1 {
    font-size: 38px !important;
  }

  .blog-hero__metrics {
    grid-template-columns: 1fr;
  }

  .blog-hero__metrics strong {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .blog-hero__metrics strong:last-child {
    border-bottom: 0;
  }
}

/* About story background: company building hero treatment. */
.about-page .about-story {
  padding: 42px 0 40px !important;
  color: var(--paper) !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.64)),
    url("https://oubiaomat.com/wp-content/uploads/2026/05/ultrawide_clean_2to1.webp") center / cover no-repeat !important;
}

.about-page .about-story h1 {
  color: var(--paper) !important;
}

.about-page .about-story__text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.about-page .about-story__text strong {
  color: var(--paper) !important;
}

/* Contact page: contact details, socials, and map-first layout. */
.contact-page .contact-hero {
  min-height: 330px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.64)),
    url("../images/bw_clean_car_outline_banner.webp") center / cover no-repeat !important;
}

.contact-page .contact-hero__inner {
  display: grid;
  align-content: start;
  width: min(100% - 72px, 1400px);
  min-height: 330px;
  padding: 54px 0 42px;
}

.contact-page .contact-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-page .contact-hero h1 {
  max-width: 820px;
  margin-top: 12px;
  color: var(--paper);
  font-size: 42px;
  line-height: 1.12;
  text-transform: none;
}

.contact-page .contact-hero span {
  display: block;
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.contact-directory {
  padding: 54px 0;
  background: #f2f2f2;
}

.contact-directory__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 36px;
  width: min(100% - 72px, 1400px);
}

.contact-directory__info {
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-info-list,
.contact-social-block,
.contact-map-card {
  border: 1px solid #dedede;
  background: var(--paper);
}

.contact-info-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 22px;
  padding: 30px;
}

.contact-info-card > span,
.contact-info-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: #050505;
  font-size: 22px;
}

.contact-info-card p,
.contact-map-card__footer p {
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-card h2 {
  margin-top: 8px;
  color: #050505;
  font-size: 24px;
  line-height: 1.35;
  text-transform: none;
}

.contact-info-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-info-list a,
.contact-info-list div {
  display: grid;
  gap: 14px;
  min-height: 158px;
  padding: 24px;
  border-right: 1px solid #dedede;
}

.contact-info-list a:last-child,
.contact-info-list div:last-child {
  border-right: 0;
}

.contact-info-list p {
  color: #303030;
  font-size: 15px;
  line-height: 1.45;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 4px;
  color: #050505;
  font-size: 16px;
}

.contact-social-block {
  padding: 28px 30px;
}

.contact-social-block h2 {
  color: #050505;
  font-size: 24px;
  text-transform: none;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-socials a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--paper);
  background: #050505;
  font-size: 22px;
  font-weight: 900;
}

.contact-map-card {
  display: grid;
  min-height: 500px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.contact-map-card__surface {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background:
    radial-gradient(circle at 74% 46%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #eaf5fd 0%, #d9ebf8 55%, #c8e1f2 100%);
}

.contact-map-card__surface::before,
.contact-map-card__surface::after {
  display: none;
}

.contact-map-card__world {
  position: absolute;
  inset: -2% -2% -1%;
  z-index: 1;
  display: block;
  width: 104%;
  height: 103%;
}

.contact-map-card__world rect {
  fill: transparent;
}

.contact-map-card__land path {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(181, 196, 207, 0.58);
  stroke-width: 2;
  stroke-linejoin: round;
}

.contact-map-card__continent,
.contact-map-card__ocean {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.22;
  text-transform: uppercase;
}

.contact-map-card__continent {
  color: rgba(40, 45, 50, 0.68);
  font-size: 13px;
}

.contact-map-card__ocean {
  color: rgba(73, 111, 162, 0.64);
  font-size: 14px;
}

.contact-map-card__continent--north-america {
  top: 28%;
  left: 5%;
}

.contact-map-card__continent--south-america {
  top: 66%;
  left: 15%;
}

.contact-map-card__continent--europe {
  top: 31%;
  left: 42%;
}

.contact-map-card__continent--africa {
  top: 58%;
  left: 45%;
}

.contact-map-card__continent--asia {
  top: 24%;
  left: 67%;
}

.contact-map-card__continent--australia {
  right: 8%;
  bottom: 12%;
}

.contact-map-card__ocean--arctic {
  top: 5%;
  left: 49%;
}

.contact-map-card__ocean--atlantic {
  top: 47%;
  left: 26%;
}

.contact-map-card__ocean--indian {
  right: 30%;
  bottom: 18%;
}

.contact-map-card__ocean--pacific {
  top: 49%;
  right: 3%;
}

.contact-map-card__pin {
  position: absolute;
  top: 39%;
  left: 71%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50% 50% 50% 0;
  background: #e3342f;
  box-shadow: 0 8px 16px rgba(91, 26, 22, 0.28);
  transform: rotate(-45deg);
}

.contact-map-card__pin::after {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.contact-map-card__label {
  position: absolute;
  right: 84px;
  bottom: 96px;
  z-index: 3;
  max-width: 290px;
  padding: 16px 18px 18px;
  color: #050505;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 5px;
  box-shadow: 0 14px 34px rgba(36, 71, 99, 0.16);
}

.contact-map-card__label::before {
  position: absolute;
  top: -9px;
  left: 46px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.94);
  content: "";
  transform: rotate(45deg);
}

.contact-map-card__label p {
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-map-card__label strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.36;
  text-transform: none;
}

.contact-map-card__label span {
  display: block;
  margin-top: 6px;
  color: #555;
  font-size: 15px;
}

.contact-map-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-top: 1px solid #dedede;
}

.contact-map-card__footer strong {
  color: #050505;
  font-size: 17px;
  text-align: right;
}

.contact-workspace--compact {
  padding: 0 0 72px !important;
  background: #f2f2f2 !important;
}

.contact-workspace--compact .contact-form-panel {
  width: min(100% - 72px, 1400px);
  padding: 42px 48px 48px !important;
  border: 1px solid #dedede;
  background: var(--paper);
}

.contact-workspace--compact .contact-form-panel h2 {
  font-size: 34px !important;
}

.contact-workspace--compact .contact-form-panel > p {
  max-width: 780px;
  font-size: 17px !important;
}

.contact-workspace--compact .contact-form {
  gap: 20px 26px !important;
  margin-top: 28px !important;
}

.contact-workspace--compact .contact-form label {
  gap: 8px !important;
  font-size: 15px !important;
}

.contact-workspace--compact .contact-form input,
.contact-workspace--compact .contact-form textarea {
  border-radius: 0 !important;
  padding: 13px 15px !important;
}

@media (max-width: 980px) {
  .contact-page .contact-hero__inner,
  .contact-directory__grid,
  .contact-workspace--compact .contact-form-panel {
    width: min(100% - 56px, var(--container));
  }

  .contact-directory__grid,
  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-info-list a,
  .contact-info-list div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .contact-info-list div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero h1 {
    font-size: 38px;
  }

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

  .contact-map-card__label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .contact-form,
  .contact-form__wide,
  .oubiao-inquiry-form__status,
  .oubiao-turnstile,
  .contact-submit {
    grid-column: span 1 !important;
  }
}

/* Product page header: align with other inner pages and remove right tools. */
.catalog-page .header-main {
  grid-template-columns: 190px minmax(0, 1fr) 250px !important;
  width: min(100% - 72px, 1500px) !important;
  gap: 26px !important;
}

.catalog-page .primary-nav {
  justify-content: center !important;
  gap: 28px !important;
}

.catalog-page .catalog-tools {
  display: none !important;
}

.catalog-page .site-search {
  justify-self: end !important;
  width: 250px !important;
  height: 36px !important;
}

@media (max-width: 980px) {
  .catalog-page .header-main {
    grid-template-columns: auto auto !important;
    width: min(100% - 28px, var(--container)) !important;
  }

  .catalog-page .site-search {
    display: none !important;
  }
}

/* Homepage hero: keep the banner filling each desktop viewport. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
  min-height: 750px !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
    url("../images/hero-car-interior.webp") center center / cover no-repeat,
    #050505 !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
  min-height: 750px !important;
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

@media (max-width: 980px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
    min-height: 430px !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 42%, rgba(0, 0, 0, 0.28) 100%),
      url("../images/hero-car-interior.webp") 62% center / cover no-repeat,
      #050505 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    min-height: 430px !important;
    padding-top: 70px !important;
    padding-bottom: 110px !important;
  }
}

/* About history: keep carousel card height stable between years. */
.about-history__card {
  align-items: stretch;
  min-height: 0 !important;
  height: auto !important;
}

.about-image-placeholder--history {
  aspect-ratio: 4 / 3;
  min-height: 0 !important;
  height: auto !important;
}

.about-history__copy {
  min-height: 0 !important;
  height: auto !important;
}

.about-history__copy {
  align-content: center !important;
  overflow: hidden;
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.about-history__copy h3 {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.about-history__copy strong {
  display: block;
  min-height: 78px;
  max-height: 104px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .about-history__card {
    height: auto !important;
  }

  .about-image-placeholder--history {
    height: auto !important;
  }

  .about-history__copy {
    height: auto !important;
  }
}

@media (max-width: 760px) {
  .about-history__card,
  .about-image-placeholder--history,
  .about-history__copy {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* Catalog category selected state: color fill instead of outline. */
.catalog-category-list a {
  position: relative;
  margin: 2px 0;
  padding: 0 12px 0 16px;
  transition: color 160ms ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.catalog-category-list a::before {
  display: none;
}

.catalog-category-list a:hover,
.catalog-category-list a.is-active,
.catalog-category-list a:target,
.catalog-category-list a:focus,
.catalog-category-list a:focus-visible {
  color: #050505 !important;
  background: transparent !important;
  border-bottom: 2px solid #050505;
  box-shadow: none !important;
  outline: 0 !important;
  transform: none !important;
}

.catalog-category-list a:hover::before,
.catalog-category-list a.is-active::before,
.catalog-category-list a:target::before,
.catalog-category-list a:focus::before,
.catalog-category-list a:focus-visible::before {
  display: none;
}

.catalog-category-list a:hover span,
.catalog-category-list a.is-active span,
.catalog-category-list a:target span,
.catalog-category-list a:focus span,
.catalog-category-list a:focus-visible span {
  color: #050505;
}

.catalog-empty {
  margin-top: 28px;
  padding: 34px 28px;
  border: 1px solid #e2e2e2;
  color: #444;
  background: #fafafa;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* Unified inner-page header: match the homepage navigation layout. */
.catalog-page .header-main,
.contact-page .header-main,
.blog-page .header-main,
.about-page .header-main,
.site-header--solid .header-main {
  width: min(100% - 240px, 1420px) !important;
  min-height: 74px !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  gap: 32px !important;
}

.catalog-page .header-main .brand__logo,
.contact-page .header-main .brand__logo,
.blog-page .header-main .brand__logo,
.about-page .header-main .brand__logo,
.site-header--solid .header-main .brand__logo {
  width: 150px !important;
}

.catalog-page .primary-nav,
.contact-page .primary-nav,
.blog-page .primary-nav,
.about-page .primary-nav,
.site-header--solid .primary-nav {
  justify-content: center !important;
  gap: 22px !important;
  transform: translateX(48px) !important;
}

.catalog-page .site-search,
.contact-page .site-search,
.blog-page .site-search,
.about-page .site-search,
.site-header--solid .site-search {
  justify-self: end !important;
  width: 165px !important;
  height: 32px !important;
  grid-template-columns: 1fr 28px !important;
  transform: translateX(90px) !important;
}

.catalog-page .site-search input,
.contact-page .site-search input,
.blog-page .site-search input,
.about-page .site-search input,
.site-header--solid .site-search input {
  padding-left: 12px !important;
  font-size: 9px !important;
}

.catalog-page .site-search button,
.contact-page .site-search button,
.blog-page .site-search button,
.about-page .site-search button,
.site-header--solid .site-search button {
  width: 28px !important;
  height: 28px !important;
  font-size: 20px !important;
}

@media (max-width: 980px) {
  .catalog-page .header-main,
  .contact-page .header-main,
  .blog-page .header-main,
  .about-page .header-main,
  .site-header--solid .header-main {
    width: min(100% - 28px, var(--container)) !important;
    grid-template-columns: auto auto !important;
  }

  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav,
  .about-page .primary-nav,
  .site-header--solid .primary-nav {
    transform: none !important;
  }

  .catalog-page .site-search,
  .contact-page .site-search,
  .blog-page .site-search,
  .about-page .site-search,
  .site-header--solid .site-search {
    display: none !important;
    transform: none !important;
  }
}

/* Homepage factory stats: wider spacing and slightly larger labels. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
  width: min(100% - 120px, 940px) !important;
  column-gap: 34px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item {
  min-height: 86px !important;
  padding: 0 12px 14px !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 auto 7px !important;
  object-fit: contain !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
  font-size: 14px !important;
  letter-spacing: 0.02em !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
  margin-top: 2px !important;
  font-size: 8px !important;
}

@media (max-width: 760px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 28px, 620px) !important;
    column-gap: 10px !important;
  }
}

/* Header search: remove the browser focus box. */
.site-search,
.site-search:focus-within,
.site-search input,
.site-search input:focus,
.site-search input:focus-visible,
.site-search button,
.site-search button:focus,
.site-search button:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
}

.site-search:focus-within {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

/* Header nav hover: keep every page consistent with the homepage. */
.primary-nav > a,
.nav-dropdown__toggle {
  position: relative;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
  outline: 0 !important;
}

.primary-nav > a::after,
.nav-dropdown__toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible {
  color: var(--paper) !important;
  opacity: 1;
  transform: translateY(-1px);
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after {
  opacity: 0.9;
  transform: scaleX(1);
}

/* Footer inquiry title: align the envelope, text, and divider lines. */
.footer-inquiry__title {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 12px !important;
  column-gap: 12px !important;
}

.footer-inquiry__title::before,
.footer-inquiry__title::after {
  flex: 1 1 0 !important;
  align-self: center !important;
  min-width: 46px !important;
}

.footer-inquiry__title span {
  display: grid !important;
  width: 30px !important;
  height: 30px !important;
  place-items: center !important;
  line-height: 1 !important;
  transform: translateY(0);
}

.footer-inquiry__title span svg {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.footer-inquiry__title h3 {
  display: flex !important;
  min-height: 30px !important;
  align-items: center !important;
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.05 !important;
  transform: none;
}

/* Product categories: make the More card match the product-image cards. */
.category-card--more {
  position: relative !important;
  display: grid !important;
  overflow: hidden !important;
  min-height: 248px !important;
  place-items: stretch !important;
  border: 0 !important;
  background: #101010 !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.category-card--more::before,
.category-card--more::after {
  display: none !important;
}

.category-card--more .image-slot {
  position: absolute !important;
  inset: 0 !important;
  min-height: 100% !important;
  border: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42)),
    url("../images/3比4竖版杂乱拼接组合图_约500KB.webp") center / cover no-repeat !important;
  transform: scale(1);
  transition: filter 420ms ease, transform 520ms ease;
  will-change: transform;
}

.category-card--more .image-slot::after {
  position: absolute;
  inset: 0;
  display: block !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.5));
  content: "";
}

.category-card--more .category-card__body {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  display: grid !important;
  min-height: 42px !important;
  padding: 10px 12px !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.5) !important;
  transition: background 220ms ease;
}

.category-card--more .category-card__body h3 {
  color: var(--paper) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

.category-card--more:hover,
.category-card--more:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18) !important;
  transform: translateY(-4px);
}

.category-card--more:hover .image-slot,
.category-card--more:focus-visible .image-slot {
  filter: contrast(1.08) brightness(1.08);
  transform: scale(1.075);
}

.category-card--more:hover .category-card__body,
.category-card--more:focus-visible .category-card__body {
  background: rgba(0, 0, 0, 0.72) !important;
}

/* Homepage hero buttons: align text and use the same hover treatment. */
.hero-actions .button {
  display: inline-flex !important;
  width: 118px !important;
  height: 31px !important;
  min-height: 31px !important;
  padding: 0 18px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 999px !important;
  color: var(--paper) !important;
  background: transparent !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-align: center !important;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  color: var(--black) !important;
  background: var(--paper) !important;
  border-color: var(--paper) !important;
}

/* Footer product links: add a light hover motion. */
.footer-products a {
  transition: color 170ms ease, transform 170ms ease, opacity 170ms ease;
}

.footer-products a::before {
  transition: transform 170ms ease, color 170ms ease;
}

.footer-products a:hover,
.footer-products a:focus-visible {
  color: var(--paper) !important;
  opacity: 1;
  transform: translateX(6px);
}

.footer-products a:hover::before,
.footer-products a:focus-visible::before {
  color: var(--paper) !important;
  transform: translateX(4px);
}

/* Social links: use larger real SVG icons instead of text glyphs. */
.footer-socials a,
.contact-socials a {
  color: var(--paper) !important;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.footer-socials a {
  width: 52px !important;
  height: 52px !important;
}

.footer-socials svg,
.contact-socials svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:hover,
.footer-socials a:focus-visible,
.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: #050505 !important;
  background: var(--paper) !important;
  transform: translateY(-3px);
}

/* Footer quick contact: use image icons from the contact icon set. */
.footer-contact p img {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  object-fit: contain;
}

/* Footer type rhythm: lighter text and tighter product list spacing. */
.site-footer {
  font-weight: 400 !important;
}

.footer-grid h3 {
  font-weight: 800 !important;
}

.footer-grid a,
.footer-grid p,
.footer-form label,
.footer-form input,
.footer-form textarea {
  font-weight: 400 !important;
}

.footer-products {
  gap: 9px !important;
}

.footer-products h3 {
  margin-bottom: 2px !important;
}

.footer-products a {
  padding-left: 24px !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
}

.footer-products a::before {
  font-size: 26px !important;
  line-height: 0.88 !important;
}

.footer-products a:nth-of-type(2) {
  margin-bottom: 3px !important;
  padding-bottom: 9px !important;
}

/* Blog article cards: subtle image zoom on hover. */
.blog-page .blog-card {
  cursor: pointer;
}

.blog-page .blog-card__media {
  transform: scale(1);
  transform-origin: center;
  transition: filter 360ms ease, transform 520ms ease;
  will-change: transform;
}

.blog-page .blog-card:hover .blog-card__media,
.blog-page .blog-card:focus-within .blog-card__media {
  filter: grayscale(0) contrast(1.08) brightness(1.04);
  transform: scale(1.055);
}

/* Blog cards: keep the featured image ratio consistent and animate CTAs. */
.blog-page .blog-card--featured {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  min-height: 210px !important;
}

.blog-page .blog-card--featured .blog-card__media {
  min-height: 210px !important;
}

.blog-page .blog-card--featured .blog-card__body h2 {
  font-size: 25px !important;
  line-height: 1.18 !important;
}

.blog-page .blog-card__body a {
  width: max-content;
  transition: color 170ms ease, transform 170ms ease;
}

.blog-page .blog-card__body a b {
  display: inline-block;
  transition: transform 170ms ease;
}

.blog-page .blog-card__body a:hover,
.blog-page .blog-card__body a:focus-visible {
  color: #333 !important;
  transform: translateX(5px);
}

.blog-page .blog-card__body a:hover b,
.blog-page .blog-card__body a:focus-visible b {
  transform: translateX(4px);
}

/* Product cards: show product names directly, without detail buttons. */
.catalog-card {
  min-height: 276px !important;
  padding: 20px 14px 18px !important;
}

.catalog-card h3 {
  min-height: 40px !important;
  margin-top: 10px !important;
  padding: 0 2px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-wrap: balance;
}

.catalog-card p:empty {
  display: none !important;
}

.catalog-card p {
  font-size: 12px !important;
  line-height: 1.18 !important;
}

.catalog-card__button {
  display: none !important;
}

/* Product detail page: B2B inquiry-oriented layout. */
.product-detail-page {
  --detail-blue: #0b5ed7;
  --detail-blue-dark: #0748b5;
  --detail-icon: #050505;
  color: #0d0f14;
  background: #f5f7fb;
}

.product-detail-page main {
  padding-bottom: 48px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 22px 0 16px;
  color: #6a7180;
  font-size: 13px;
}

.product-breadcrumb a:hover {
  color: var(--detail-blue);
}

.product-breadcrumb strong {
  color: #111;
  font-weight: 700;
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.product-gallery__main,
.product-summary,
.product-info-panel,
.product-services,
.product-factory article,
.product-bottom-cta {
  border: 1px solid #e2e7f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 70, 0.06);
}

.product-gallery__main {
  position: relative;
  display: grid;
  min-height: 580px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-gallery__zoom {
  --zoom-x: 50%;
  --zoom-y: 50%;
  display: grid;
  width: min(100%, 760px);
  max-height: 580px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  cursor: zoom-in;
}

.product-gallery__image {
  width: min(100%, 760px);
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 180ms ease;
}

.product-gallery__zoom:hover .product-gallery__image {
  transform: scale(1.85);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
  gap: 12px;
  justify-content: start;
  margin-top: 14px;
}

.product-gallery__thumbs button {
  min-height: 70px;
  padding: 8px;
  border: 1px solid #dce3ef;
  border-radius: 8px;
  color: #4b5566;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.product-gallery__thumbs img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--detail-blue);
  box-shadow: inset 0 0 0 1px var(--detail-blue);
}

.product-summary {
  padding: 34px 34px 32px;
}

.product-summary h1 {
  max-width: 560px;
  color: #050505;
  font-size: 38px;
  line-height: 1.08;
  text-transform: none;
}

.product-summary__meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #d7dde8;
}

.product-summary__meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}

.product-summary__meta dt {
  font-weight: 900;
}

.product-summary__meta dd {
  margin: 0;
  color: #1f2937;
}

.product-summary__contact {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 24px;
  border-radius: 10px;
  background: #f7f9fd;
}

.product-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--detail-blue);
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-action svg,
.product-contact-row svg,
.product-feature-grid svg {
  width: 22px;
  height: 22px;
  color: var(--detail-icon);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-action--primary {
  color: #fff;
  background: var(--detail-blue);
}

.product-action--outline {
  color: #08142c;
  background: #fff;
}

.product-action:hover,
.product-action:focus-visible {
  transform: translateY(-2px);
}

.product-action--primary:hover,
.product-action--primary:focus-visible {
  background: var(--detail-blue-dark);
}

.product-action--outline:hover,
.product-action--outline:focus-visible {
  color: #fff;
  background: var(--detail-blue);
}

.product-contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #dfe5ef;
}

.product-contact-row > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--detail-icon);
  background: #eef1f6;
}

.product-contact-row p {
  margin: 0;
  line-height: 1.35;
}

.product-contact-row strong {
  display: block;
  color: #4b5566;
  font-size: 13px;
}

.product-contact-row a {
  color: #050505;
  font-weight: 900;
}

.product-info-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 42px;
  margin-top: 40px;
  padding: 30px 34px;
}

.product-info-panel h2,
.product-section-copy h2,
.product-services h2 {
  color: #050505;
  font-size: 24px;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-info-panel h2::after,
.product-section-copy h2::after,
.product-services h2::after,
.product-factory h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 12px;
  background: var(--detail-blue);
  content: "";
}

.product-details-copy {
  padding-right: 34px;
  border-right: 1px solid #dce2ed;
}

.product-details-copy p {
  margin: 18px 0 0;
  color: #253044;
  line-height: 1.75;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.product-feature-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.product-feature-grid span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: #f0f3f8;
}

.product-feature-grid h3 {
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
}

.product-protection {
  padding: 38px 0;
}

.product-protection__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
}

.product-section-copy h2 {
  font-size: 40px;
  text-transform: none;
}

.product-section-copy p {
  margin-top: 24px;
  color: #253044;
  font-size: 17px;
  line-height: 1.75;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
}

.product-showcase-grid article,
.product-services__media,
.product-factory article div {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.68), rgba(11, 94, 215, 0.42)),
    repeating-linear-gradient(45deg, #1a1f27 0 12px, #252d38 12px 24px);
}

.product-showcase-grid article {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.product-showcase-grid img,
.product-services__media img,
.product-factory article div img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 8, 17, 0.02) 38%, rgba(2, 8, 17, 0.76) 100%);
  content: "";
  pointer-events: none;
}

.product-showcase-grid span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  max-width: 260px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.54);
}

.product-services {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  padding: 10px;
}

.product-services__media {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-services__content {
  padding: 24px 24px 20px 0;
}

.product-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 0;
  margin-top: 20px;
}

.product-service-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: min-content 1fr;
  column-gap: 20px;
  row-gap: 10px;
  align-items: start;
  min-height: 136px;
  padding: 18px 0;
  border-bottom: 1px solid #dde4ef;
}

.product-service-grid article > span {
  display: grid;
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(11, 94, 215, 0.28);
  border-radius: 12px;
  color: var(--detail-icon);
  font-size: 25px;
}

.product-service-grid h3 {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.25;
  text-transform: none;
}

.product-service-grid em {
  color: #555f70;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.product-service-grid p {
  grid-column: 2;
  margin: 0;
  color: #4c5565;
  font-size: 13px;
  line-height: 1.45;
}

.product-factory {
  padding: 34px 0 22px;
}

.product-factory__grid {
  display: grid;
  grid-template-columns: 0.72fr repeat(4, 1fr);
  gap: 16px;
}

.product-factory article {
  overflow: hidden;
}

.product-factory article div {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 10px 10px 0 0;
}

.product-factory article h3 {
  padding: 16px 16px 18px;
  font-size: 15px;
  line-height: 1.18;
  text-transform: none;
}

.product-bottom-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding: 24px 34px;
  background: linear-gradient(90deg, #fff, #eef4ff);
}

.product-bottom-cta > div {
  display: flex;
  gap: 18px;
  align-items: center;
}

.product-bottom-cta > div > span {
  color: var(--detail-icon);
  font-size: 42px;
}

.product-bottom-cta h2 {
  color: #050505;
  font-size: 24px;
  text-transform: none;
}

.product-bottom-cta p {
  margin: 4px 0 0;
}

.product-bottom-cta .product-action {
  min-width: 280px;
}

@media (max-width: 1180px) {
  .product-detail-hero__grid,
  .product-info-panel,
  .product-protection__grid,
  .product-services {
    grid-template-columns: 1fr;
  }

  .product-details-copy {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #dce2ed;
    padding-bottom: 26px;
  }

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

  .product-factory__grid > .product-section-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .product-gallery__main {
    min-height: 360px;
  }

  .product-gallery__image {
    padding: 10px;
  }

  .product-summary h1,
  .product-section-copy h2 {
    font-size: 30px;
  }

  .product-gallery__thumbs,
  .product-feature-grid,
  .product-showcase-grid,
  .product-service-grid,
  .product-factory__grid {
    grid-template-columns: 1fr;
  }

  .product-summary,
  .product-info-panel,
  .product-bottom-cta {
    padding: 24px 20px;
  }

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

  .product-services__content {
    padding: 20px;
  }

  .product-bottom-cta,
  .product-bottom-cta > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-bottom-cta .product-action {
    width: 100%;
    min-width: 0;
  }
}

/* About story: editorial split layout with factory image and value strip. */
.about-page .about-story {
  overflow: hidden;
  padding: 0 !important;
  color: #111 !important;
  background: #f2f2f2 !important;
}

.about-story__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.52fr) minmax(0, 0.48fr);
  min-height: 458px;
  isolation: isolate;
}

.about-story__copy {
  position: relative;
  z-index: 2;
  display: block !important;
  justify-items: start !important;
  gap: 0 !important;
  padding: 22px clamp(54px, 4.6vw, 78px) 16px 5.1vw !important;
  background: transparent !important;
  text-align: left !important;
}

.about-story__copy::before {
  position: absolute;
  inset: 0 -140px 0 0;
  z-index: -1;
  background:
    linear-gradient(104deg, rgba(255, 255, 255, 0.98) 0 78%, rgba(247, 249, 252, 0.92) 78.2%, rgba(247, 249, 252, 0) 78.5%),
    #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 160px) 100%, 0 100%);
  box-shadow: 28px 0 54px rgba(12, 23, 38, 0.12);
  content: "";
}

.about-story__ghost {
  position: absolute;
  top: -18px;
  left: 5.1vw;
  z-index: -1;
  color: rgba(0, 0, 0, 0.032);
  font-size: clamp(70px, 8.8vw, 130px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.about-page .about-story h1 {
  color: #17191d !important;
  margin: 0 !important;
  font-size: clamp(34px, 3.5vw, 52px) !important;
  line-height: 0.95 !important;
  text-align: left !important;
  text-transform: none !important;
}

.about-story__rule {
  display: block;
  width: 190px;
  height: 2px;
  margin: 9px 0 0 !important;
  background: linear-gradient(90deg, #111 0 58px, #cfcfcf 58px 100%);
}

.about-story__kicker {
  margin: 8px 0 10px !important;
  color: #8c8f95 !important;
  font-size: 13px !important;
  letter-spacing: 0.2em;
  text-align: left !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.about-page .about-story__text {
  display: block !important;
  gap: 0 !important;
  max-width: 640px !important;
  margin-top: 0 !important;
  color: #111 !important;
  font-size: 12.2px !important;
  line-height: 1.36 !important;
  text-align: left !important;
}

.about-page .about-story__text p {
  margin: 0 0 8px !important;
}

.about-page .about-story__text p:last-child {
  justify-self: auto !important;
  margin-top: 0 !important;
  text-align: left !important;
}

.about-page .about-story__text strong {
  color: #111 !important;
  font-weight: 900;
}

.about-story__visual {
  position: relative;
  z-index: 1;
  min-height: 458px;
  margin-left: -96px;
  background: #d8dde2;
}

.about-story__building {
  position: absolute;
  inset: 0;
  background: url("../images/building_no_text_4x3_500kb.webp") 50% center / cover no-repeat;
  filter: none;
}

.about-story__stats {
  position: absolute;
  right: 3.4vw;
  bottom: 16px;
  left: clamp(124px, 11vw, 190px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(45, 45, 45, 0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.about-story__stats article {
  display: grid;
  min-height: 92px;
  place-items: center;
  align-content: center;
  padding: 10px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

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

.about-story__stats span {
  margin-bottom: 6px;
  font-size: 23px;
  line-height: 1;
}

.about-story__stats strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}

.about-story__stats em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.35;
}

.about-story__values {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 14px 5.1vw;
  color: #fff;
  background:
    radial-gradient(circle at 92% 58%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(110deg, #111, #232323);
}

.about-story__quote {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 8px 30px 8px 0;
}

.about-story__quote::before {
  position: absolute;
  inset: 10px 30px 10px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  content: "";
}

.about-story__quote > span {
  color: #fff;
  font-size: 52px;
  line-height: 1;
}

.about-story__quote strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.about-story__quote p,
.about-story__values article p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.48;
}

.about-story__values article {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 72px;
  padding: 8px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.about-story__values article span {
  font-size: 24px;
  line-height: 1;
}

.about-story__values article strong {
  color: #fff;
  font-size: 16px;
}

.about-story__values article p {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .about-story__hero {
    grid-template-columns: 1fr;
  }

  .about-story__copy {
    clip-path: none;
    padding: 34px 8vw 28px !important;
  }

  .about-story__copy::before {
    inset: 0;
    clip-path: none;
  }

  .about-story__visual {
    margin-left: 0;
    min-height: 440px;
  }

  .about-story__stats {
    right: 8vw;
    left: 8vw;
  }

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

  .about-story__quote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .about-page .about-story h1 {
    font-size: 48px !important;
  }

  .about-story__rule {
    width: 220px;
  }

  .about-story__visual {
    min-height: 520px;
  }

  .about-story__stats {
    grid-template-columns: 1fr;
    bottom: 26px;
  }

  .about-story__stats article {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .about-story__stats article:last-child {
    border-bottom: 0;
  }

  .about-story__values {
    grid-template-columns: 1fr;
    padding: 30px 8vw;
  }

  .about-story__values article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-inline: 0;
  }
}

/* Comment pass: 2009 history image, looser history copy, and product detail black accents. */
.about-history__media {
  isolation: isolate;
}

.about-history__media img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-history__media.is-loaded {
  background: #e8edf2;
}

.about-history__media.is-loaded::before,
.about-history__media.is-loaded span {
  display: none;
}

.about-history__media.is-loaded img {
  display: block;
}

.about-history__copy {
  align-content: start !important;
  overflow: visible !important;
  padding: 30px 40px 20px !important;
}

.about-history__copy h3 {
  display: block !important;
  min-height: 0 !important;
  margin-top: 8px !important;
  font-size: 28px !important;
  line-height: 1.12 !important;
}

.about-history__copy strong {
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  font-size: 14px !important;
  line-height: 1.46 !important;
}

.about-history__copy span {
  margin: 12px 0 !important;
}

/* History carousel drag and next image preview. */
.about-history__card {
  --history-drag-x: 0px;
  cursor: grab;
  touch-action: pan-y;
  transform: translateX(var(--history-drag-x));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
  user-select: none;
  will-change: transform;
}

.about-history__card.is-dragging {
  cursor: grabbing;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.12);
  transition: none;
}

.about-history__card img {
  -webkit-user-drag: none;
  user-select: none;
}

.about-history__card.is-sliding-forward {
  animation: history-slide-forward 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-history__card.is-sliding-back {
  animation: history-slide-back 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes history-slide-forward {
  from {
    opacity: 0.72;
    transform: translateX(56px);
  }

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

@keyframes history-slide-back {
  from {
    opacity: 0.72;
    transform: translateX(-56px);
  }

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

.about-history__preview {
  isolation: isolate;
  opacity: 1;
  background: #eef4fb;
  filter: none;
  transform: none;
}

.about-history__preview::before {
  display: none;
  content: none;
}

.about-history__preview::after {
  display: none;
  content: none;
}

.about-history__preview img {
  position: absolute;
  inset: -20px;
  z-index: 0;
  display: block;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: blur(2px) saturate(1.08) contrast(1.02);
  transform: scale(1.025);
  transition: opacity 220ms ease, transform 220ms ease;
}

.about-history__preview span {
  display: none;
}

.product-detail-page .product-action--primary {
  border-color: #050505;
  color: #fff;
  background: #050505;
}

.product-detail-page .product-action--primary svg {
  color: #fff;
}

.product-detail-page .product-action--primary:hover,
.product-detail-page .product-action--primary:focus-visible {
  background: #202020;
}

.product-detail-page .product-action--outline {
  border-color: #050505;
  color: #050505;
}

.product-detail-page .product-action--outline svg {
  color: #050505;
}

.product-detail-page .product-action--outline:hover,
.product-detail-page .product-action--outline:focus-visible {
  color: #fff;
  background: #050505;
}

.product-detail-page .product-action--outline:hover svg,
.product-detail-page .product-action--outline:focus-visible svg {
  color: #fff;
}

.product-detail-page .product-info-panel h2::after,
.product-detail-page .product-section-copy h2::after,
.product-detail-page .product-services h2::after,
.product-detail-page .product-factory h3::after {
  background: #050505;
}

/* About page balance pass: tighter history carousel and coordinated capability section. */
.about-page .about-history {
  padding: 50px 0 48px;
  background: #f7f8fb;
}

.about-page .about-history__heading,
.about-page .about-history__stage,
.about-page .about-history__timeline,
.about-page .about-capability__grid {
  width: min(100% - 96px, 1180px);
}

.about-page .about-history__heading {
  margin-bottom: 22px;
}

.about-page .about-history__heading h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.14;
}

.about-page .about-history__heading span {
  margin-top: 8px;
  font-size: 15px;
}

.about-page .about-history__stage {
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 12px;
}

.about-page .about-history__card {
  grid-template-columns: minmax(300px, 0.95fr) minmax(310px, 0.85fr) minmax(220px, 0.58fr);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.about-page .about-history__copy {
  align-content: center !important;
  padding: 30px 34px !important;
  background: #fff;
}

.about-page .about-history__copy p {
  font-size: 20px;
}

.about-page .about-history__copy h3 {
  margin-top: 8px !important;
  font-size: 25px !important;
  line-height: 1.16 !important;
}

.about-page .about-history__copy strong {
  font-size: 15.5px !important;
  line-height: 1.55 !important;
}

.about-page .about-history__copy span {
  margin: 12px 0 !important;
}

.about-page .about-history__arrow {
  width: 32px;
  height: 60px;
  font-size: 28px;
}

.about-page .about-history__timeline {
  margin-top: 24px;
}

.about-page .about-history__timeline button {
  gap: 7px;
}

.about-page .about-history__timeline strong {
  font-size: 13px;
}

.about-page .about-history__timeline em {
  font-size: 12px;
}

.about-page .about-capability {
  padding: 54px 0 76px;
}

.about-page .about-capability__grid {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 48px;
}

.about-page .about-capability__copy {
  padding-top: 58px;
}

.about-page .about-capability__copy h2 {
  font-size: 34px;
  line-height: 1.14;
}

.about-page .about-capability__copy > span {
  font-size: 15.5px;
  line-height: 1.72;
}

.about-page .about-capability__copy a span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin: 0;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.about-page .about-capability__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-page .about-capability__cards article {
  aspect-ratio: 3 / 4;
  padding: 24px;
  transition: filter 620ms ease, transform 620ms ease, box-shadow 620ms ease;
}

.about-page .about-capability__cards article::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
}

.about-page .about-capability__cards article:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/版型测量.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/产品开发.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/研发创新.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/精准尺寸.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(5) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/高标准扫描.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:nth-child(6) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76)),
    url("../images/开发背后/裁切测试.webp") center / cover no-repeat;
}

.about-page .about-capability__cards article:hover,
.about-page .about-capability__cards article:focus-within {
  box-shadow: 0 10px 24px rgba(15, 35, 70, 0.1);
  filter: brightness(1.035) saturate(1.02);
  transform: scale(1.012);
}

.about-page .about-capability__cards h3 {
  font-size: 18px;
}

.about-page .about-extra-showcase {
  padding: 0 0 82px;
  background: #fff;
}

.about-page .about-extra-showcase__inner {
  display: grid;
  gap: 30px;
  width: min(100% - 96px, 1180px);
}

.about-page .about-extra-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: start;
  padding: 0;
}

.about-page .about-extra-copy {
  display: grid;
  gap: 14px;
}

.about-page .about-extra-copy h2 {
  margin: 0;
  color: #101010;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: none;
}

.about-page .about-extra-copy p {
  margin: 0;
  color: #243047;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.72;
}

.about-page .about-extra-action {
  display: inline-flex;
  width: fit-content;
  min-width: 190px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 14px 20px;
  border: 1px solid #101010;
  border-radius: 4px;
  color: #fff;
  background: #101010;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: none;
  box-shadow: 0 0 0 rgba(15, 35, 70, 0);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-page .about-extra-action:hover,
.about-page .about-extra-action:focus-visible {
  color: #101010;
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 35, 70, 0.14);
  transform: translateY(-1px);
}

.about-page .about-extra-block--landscape .about-extra-copy {
  order: 2;
  padding-top: 58px;
}

.about-page .about-extra-block--landscape .about-extra-copy h2 {
  font-size: 30px;
}

.about-page .about-extra-block--landscape .about-extra-copy p {
  font-size: 15.5px;
}

.about-page .about-extra-block--landscape .about-extra-media-grid {
  order: 1;
}

.about-page .about-extra-block--landscape {
  grid-template-columns: minmax(0, 0.58fr) minmax(260px, 0.42fr);
  gap: 28px;
}

.about-page .about-extra-media-grid {
  display: grid;
  gap: 16px;
}

.about-page .about-extra-media-grid--landscape {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(1) {
  background: url("../images/整齐有序/1.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(2) {
  background: url("../images/整齐有序/2.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(3) {
  background: url("../images/整齐有序/3.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--landscape .about-extra-media:nth-child(4) {
  background: url("../images/整齐有序/4.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--portrait {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 780px;
  justify-self: end;
}

.about-page .about-extra-media-grid--portrait .about-extra-media:nth-child(1) {
  background: url("../images/高自动化/factory_overview_single_500kb.webp") center / cover no-repeat;
}

.about-page .about-extra-media-grid--portrait .about-extra-media:nth-child(2) {
  background: url("../images/高自动化/factory_pipe_single_500kb.webp") center / cover no-repeat;
}

.about-page .about-extra-block--portrait {
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
}

.about-page .about-extra-block--portrait .about-extra-copy {
  padding-top: 28px;
}

@media (min-width: 981px) {
  .about-page .about-extra-block--portrait .about-extra-copy {
    padding-top: 64px !important;
  }
}

/* Browser comment fix: beat narrow-desktop homepage header overrides. */
@media (min-width: 981px) and (max-width: 1180px) {
  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .header-main.header-main.container.container,
  html body.home-page.home-page > header.site-header.site-header:not(.site-header--solid) .header-main.header-main.container.container {
    grid-template-columns: 150px minmax(0, 1fr) 132px !important;
    gap: 16px !important;
    width: min(100% - 80px, 980px) !important;
    max-width: 980px !important;
  }

  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .site-search.site-search,
  html body.home-page.home-page > header.site-header.site-header:not(.site-header--solid) .site-search.site-search {
    width: 132px !important;
    transform: none !important;
  }
}

/* Browser comment fix: override page-specific desktop header container rules. */
@media (min-width: 981px) {
  html body > header.site-header .header-main.container,
  html body > header.site-header.site-header--solid .header-main.container,
  html body.home-page > header.site-header .header-main.container,
  html body.catalog-page > header.site-header .header-main.container,
  html body.product-detail-page > header.site-header .header-main.container,
  html body.contact-page > header.site-header .header-main.container,
  html body.blog-page > header.site-header .header-main.container,
  html body.about-page > header.site-header .header-main.container {
    grid-template-columns: 150px minmax(0, 1fr) clamp(132px, 13vw, 170px) !important;
    gap: 16px !important;
    width: min(100% - 80px, 1180px) !important;
    max-width: 1180px !important;
  }

  html body > header.site-header .brand,
  html body.home-page > header.site-header .brand,
  html body.catalog-page > header.site-header .brand,
  html body.product-detail-page > header.site-header .brand,
  html body.contact-page > header.site-header .brand,
  html body.blog-page > header.site-header .brand,
  html body.about-page > header.site-header .brand {
    transform: none !important;
  }

  html body > header.site-header nav#primary-nav.primary-nav,
  html body.home-page > header.site-header nav#primary-nav.primary-nav,
  html body.catalog-page > header.site-header nav#primary-nav.primary-nav,
  html body.product-detail-page > header.site-header nav#primary-nav.primary-nav,
  html body.contact-page > header.site-header nav#primary-nav.primary-nav,
  html body.blog-page > header.site-header nav#primary-nav.primary-nav,
  html body.about-page > header.site-header nav#primary-nav.primary-nav {
    gap: 16px !important;
    transform: translateX(30px) !important;
  }

  html body > header.site-header .site-search,
  html body.home-page > header.site-header .site-search,
  html body.catalog-page > header.site-header .site-search,
  html body.product-detail-page > header.site-header .site-search,
  html body.contact-page > header.site-header .site-search,
  html body.blog-page > header.site-header .site-search,
  html body.about-page > header.site-header .site-search {
    width: 100% !important;
    transform: none !important;
  }
}

.about-page .about-extra-media {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(12, 30, 56, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(0, 0, 0, 0.3)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #d3dae2, #647184);
  background-position: center;
  background-size: cover;
  transition: filter 620ms ease, transform 620ms ease, box-shadow 620ms ease;
}

.about-page .about-extra-media:hover,
.about-page .about-extra-media:focus-within {
  box-shadow: 0 10px 24px rgba(15, 35, 70, 0.1);
  filter: brightness(1.035) saturate(1.02);
  transform: scale(1.012);
}

.about-page .about-extra-media span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(15, 28, 45, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-page .about-extra-media-grid--landscape .about-extra-media {
  aspect-ratio: 4 / 3;
}

.about-page .about-extra-media-grid--portrait .about-extra-media {
  aspect-ratio: 3 / 4;
}

@media (max-width: 980px) {
  .about-page .about-history__heading,
  .about-page .about-history__stage,
  .about-page .about-history__timeline,
  .about-page .about-capability__grid,
  .about-page .about-extra-showcase__inner {
    width: min(100% - 36px, var(--container));
  }

  .about-page .about-history__card {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-history__copy {
    padding: 26px 28px !important;
  }

  .about-page .about-capability__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-page .about-capability__copy {
    padding-top: 0;
  }

  .about-page .about-capability__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .about-page .about-capability__cards article {
    aspect-ratio: 3 / 4;
  }

  .about-page .about-extra-block {
    grid-template-columns: 1fr;
  }

  .about-page .about-extra-block--landscape .about-extra-copy,
  .about-page .about-extra-block--landscape .about-extra-media-grid {
    order: initial;
  }

  .about-page .about-extra-block--landscape .about-extra-copy {
    padding-top: 0;
  }

  .about-page .about-extra-block--portrait .about-extra-copy {
    padding-top: 0;
  }

  .about-page .about-extra-media-grid--portrait {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .about-page .about-history {
    padding: 38px 0 42px;
  }

  .about-page .about-history__heading h2,
  .about-page .about-capability__copy h2 {
    font-size: 30px;
  }

  .about-page .about-history__stage {
    grid-template-columns: 1fr;
  }

  .about-page .about-history__card,
  .about-page .about-capability__cards {
    grid-template-columns: 1fr;
  }

  .about-page .about-extra-block {
    padding: 0;
  }

  .about-page .about-extra-copy h2 {
    font-size: 26px;
  }

  .about-page .about-extra-copy p {
    font-size: 15px;
  }

  .about-page .about-extra-media-grid--landscape,
  .about-page .about-extra-media-grid--portrait {
    grid-template-columns: 1fr;
  }
}

/* Local mobile review pass: scale the desktop composition instead of making oversized single-column blocks. */
@media (max-width: 640px) {
  .product-categories .category-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .product-categories .category-card,
  .product-categories .category-card--wide,
  .product-categories .category-card--more {
    display: grid !important;
    grid-column: auto !important;
    grid-template-columns: 1fr !important;
    min-height: 128px !important;
    aspect-ratio: 1 / 0.86 !important;
    padding: 0 !important;
  }

  .product-categories .category-card .image-slot,
  .product-categories .category-card--more .image-slot {
    position: absolute !important;
    inset: 0 !important;
    min-height: 100% !important;
  }

  .product-categories .category-card__body,
  .product-categories .category-card--more .category-card__body {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    min-height: 28px !important;
    padding: 7px 8px !important;
  }

  .product-categories .category-card__body h3,
  .product-categories .category-card--more .category-card__body h3 {
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .factory-capability .factory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .factory-capability .factory-card,
  .factory-capability .factory-card--large {
    grid-row: auto !important;
    grid-column: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .factory-capability .factory-card .image-slot,
  .factory-capability .factory-card--large .image-slot {
    min-height: 0 !important;
    aspect-ratio: 2 / 1 !important;
  }

  .factory-capability .factory-card h3 {
    padding-top: 6px !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
  }

  .product-features .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .product-features .feature-card {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .product-features .feature-card .image-slot {
    min-height: 0 !important;
    aspect-ratio: 2 / 1 !important;
  }

  .product-features .feature-card h3 {
    padding: 6px 2px 0 !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
  }

  .certificates-section .certificate-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  .certificates-section .certificate-card {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .certificates-section .certificate-card .image-slot {
    min-height: 0 !important;
    aspect-ratio: 3 / 4 !important;
  }

  .certificates-section .certificate-card h3 {
    min-height: 24px !important;
    padding: 5px 2px 0 !important;
    font-size: 6.6px !important;
    line-height: 1.08 !important;
  }

  .team-exhibition .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .team-exhibition .team-panel {
    padding: 0 !important;
  }

  .team-exhibition .team-panel h2 {
    margin-bottom: 6px !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
  }

  .team-exhibition .media-carousel__button {
    display: none !important;
  }

  .team-exhibition .team-panel .media-scroll {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 8px) / 3) !important;
    gap: 4px !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  .team-exhibition .team-panel:last-child .media-scroll {
    grid-auto-columns: calc((100% - 4px) / 2) !important;
  }

  .team-exhibition .team-panel .media-scroll .image-slot {
    width: auto !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    background-size: cover !important;
    scroll-snap-align: none !important;
  }

  .contact-grid {
    grid-template-columns: 0.98fr 1.02fr !important;
    gap: 10px !important;
  }

  .inquiry-panel,
  .contact-card {
    padding: 14px !important;
  }

  .inquiry-panel h2,
  .contact-card h2 {
    font-size: 16px !important;
    line-height: 1.1 !important;
  }

  .mock-form {
    gap: 8px !important;
    margin-top: 12px !important;
  }

  .mock-form input,
  .mock-form textarea {
    padding: 7px 8px !important;
    font-size: 10px !important;
  }

  .site-footer {
    padding-top: 18px !important;
  }

  .site-footer .container,
  .site-footer .footer-bottom {
    width: min(100% - 18px, 1040px) !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 0.8fr 1.05fr 0.95fr !important;
    justify-content: stretch !important;
    gap: 9px !important;
  }

  .site-footer .footer-grid > div {
    grid-column: auto !important;
  }

  .footer-grid h3 {
    margin-bottom: 5px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .footer-products {
    gap: 3px !important;
  }

  .footer-products a {
    padding-left: 9px !important;
    font-size: 6.7px !important;
    line-height: 1.2 !important;
  }

  .footer-products a::before {
    font-size: 12px !important;
  }

  .footer-inquiry {
    padding: 8px !important;
    border-radius: 4px !important;
  }

  .footer-inquiry__title {
    gap: 5px !important;
    margin-bottom: 7px !important;
  }

  .footer-inquiry__title span {
    width: 16px !important;
    height: 16px !important;
  }

  .footer-inquiry__title span svg {
    width: 14px !important;
    height: 14px !important;
  }

  .footer-inquiry__title h3 {
    min-height: 16px !important;
    font-size: 9px !important;
  }

  .footer-inquiry > p:not(.footer-success) {
    margin-bottom: 7px !important;
    font-size: 6.8px !important;
    line-height: 1.28 !important;
  }

  .footer-form {
    gap: 5px !important;
  }

  .footer-form label {
    gap: 2px !important;
    font-size: 6.6px !important;
  }

  .footer-form input,
  .footer-form textarea {
    min-height: 22px !important;
    padding: 4px 5px !important;
    font-size: 7px !important;
  }

  .footer-form textarea {
    min-height: 42px !important;
  }

  .footer-form button,
  .footer-form a {
    min-height: 24px !important;
    font-size: 8px !important;
  }

  .footer-contact {
    gap: 6px !important;
  }

  .footer-contact p {
    grid-template-columns: 10px 1fr !important;
    gap: 5px !important;
    font-size: 6.8px !important;
    line-height: 1.25 !important;
  }

  .footer-contact p img {
    width: 9px !important;
    height: 9px !important;
  }

  .footer-contact h3:nth-of-type(2) {
    margin-top: 8px !important;
  }

  .footer-socials {
    gap: 4px !important;
  }

  .footer-socials a {
    width: 20px !important;
    height: 20px !important;
  }

  .footer-socials svg {
    width: 12px !important;
    height: 12px !important;
  }

  .footer-bottom {
    gap: 5px !important;
    margin-top: 14px !important;
    padding-top: 9px !important;
  }

  .footer-bottom nav {
    gap: 8px !important;
  }

  .footer-bottom a,
  .footer-bottom span,
  .footer-bottom p {
    font-size: 7px !important;
    line-height: 1.25 !important;
  }

  .blog-page .blog-hero,
  .contact-page .contact-hero,
  .about-page .about-story,
  .about-page .about-history,
  .about-page .about-capability,
  .contact-workspace,
  .contact-directory {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  .blog-page .blog-hero__inner,
  .contact-page .contact-hero__inner,
  .contact-directory__grid,
  .contact-workspace--compact .contact-form-panel,
  .about-story__hero,
  .about-history__stage,
  .about-capability__grid {
    gap: 14px !important;
  }

  .blog-page .blog-hero h1,
  .contact-page .contact-hero h1,
  .about-page .about-story h1,
  .about-page .about-history__heading h2,
  .about-page .about-capability__copy h2 {
    font-size: 24px !important;
    line-height: 1.08 !important;
  }
}

/* Local review tweak: keep team/exhibition as swipeable media panels on mobile. */
@media (max-width: 640px) {
  .team-exhibition {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .team-exhibition .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .team-exhibition .team-panel h2 {
    margin-bottom: 8px !important;
    font-size: 15px !important;
  }

  .team-exhibition .media-carousel {
    overflow: hidden !important;
  }

  .team-exhibition .team-panel .media-scroll,
  .team-exhibition .team-panel:last-child .media-scroll {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 100% !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overscroll-behavior-x: contain !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }

  .team-exhibition .team-panel .media-scroll::-webkit-scrollbar {
    display: none !important;
  }

  .team-exhibition .team-panel .media-scroll .image-slot {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    scroll-snap-align: start !important;
  }

  .team-exhibition .media-carousel__button {
    display: grid !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 13px !important;
  }

  .team-exhibition .media-carousel__button--prev {
    left: 6px !important;
  }

  .team-exhibition .media-carousel__button--next {
    right: 6px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 0.7fr 1fr 1.25fr !important;
    gap: 12px !important;
  }

  .site-footer .footer-contact {
    gap: 8px !important;
  }

  .site-footer .footer-contact h3 {
    font-size: 12px !important;
    line-height: 1.08 !important;
  }

  .site-footer .footer-contact p {
    grid-template-columns: 13px 1fr !important;
    gap: 7px !important;
    font-size: 7.6px !important;
    line-height: 1.34 !important;
  }

  .site-footer .footer-contact p img {
    width: 12px !important;
    height: 12px !important;
  }

  .site-footer .footer-contact h3:nth-of-type(2) {
    margin-top: 10px !important;
  }

  .site-footer .footer-socials {
    gap: 7px !important;
  }

  .site-footer .footer-socials a {
    width: 28px !important;
    height: 28px !important;
  }

  .site-footer .footer-socials svg {
    width: 16px !important;
    height: 16px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 0.9fr 1fr 1.2fr !important;
    gap: 14px !important;
  }

  .site-footer .footer-products {
    gap: 5px !important;
  }

  .site-footer .footer-products h3 {
    margin-bottom: 8px !important;
    font-size: 12px !important;
  }

  .site-footer .footer-products a {
    padding-left: 12px !important;
    font-size: 8px !important;
    line-height: 1.45 !important;
  }

  .site-footer .footer-products a::before {
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .site-footer .footer-products a:nth-of-type(2) {
    margin-bottom: 7px !important;
    padding-bottom: 9px !important;
  }
}

/* Local review tweak: compact mobile Products dropdown inside the hamburger menu. */
@media (max-width: 640px) {
  .primary-nav .nav-dropdown {
    position: relative !important;
  }

  .primary-nav .nav-dropdown__toggle,
  body.home-page .primary-nav .nav-dropdown__toggle {
    min-height: 34px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }

  .primary-nav .products-menu {
    width: auto !important;
    margin: 6px 0 8px !important;
    padding: 8px 10px !important;
    gap: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    background: #f4f4f4 !important;
    box-shadow: none !important;
  }

  .primary-nav .products-menu a {
    min-height: 24px !important;
    padding: 5px 6px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: #111 !important;
    font-size: 9px !important;
    font-style: normal !important;
    font-weight: 650 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.15 !important;
    transform: none !important;
  }

  .primary-nav .products-menu a:last-child {
    border-bottom: 0 !important;
  }

  .primary-nav .products-menu a:hover,
  .primary-nav .products-menu a:focus-visible {
    color: #111 !important;
    background: rgba(0, 0, 0, 0.045) !important;
    transform: none !important;
  }

  body .primary-nav,
  .site-header--solid .primary-nav,
  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav,
  .about-page .primary-nav,
  body.home-page .primary-nav {
    top: 56px !important;
    right: 14px !important;
    left: auto !important;
    width: min(255px, calc(100vw - 28px)) !important;
    max-height: calc(100vh - 74px) !important;
    padding: 10px 12px !important;
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .primary-nav > a,
  .primary-nav .nav-dropdown,
  .primary-nav .nav-dropdown__toggle,
  body.home-page .primary-nav > a,
  body.home-page .primary-nav .nav-dropdown__toggle {
    width: 100% !important;
  }

  .primary-nav > a,
  body.home-page .primary-nav > a,
  .primary-nav .nav-dropdown__toggle,
  body.home-page .primary-nav .nav-dropdown__toggle {
    min-height: 34px !important;
    justify-content: space-between !important;
    padding: 0 8px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
    font-size: 10px !important;
    letter-spacing: 0.11em !important;
    text-align: left !important;
  }

  .primary-nav .nav-dropdown {
    display: grid !important;
  }

  .primary-nav .products-menu {
    position: static !important;
    display: none !important;
    margin: 7px 0 9px !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .primary-nav .nav-dropdown.is-open .products-menu {
    display: grid !important;
  }
}

/* Local review tweak: Products menu opens as an overlay box without stretching the mobile nav. */
@media (max-width: 640px) {
  .primary-nav .nav-dropdown {
    position: relative !important;
  }

  .primary-nav .products-menu {
    position: absolute !important;
    top: 36px !important;
    right: 0 !important;
    left: auto !important;
    z-index: 10 !important;
    width: 176px !important;
    margin: 0 !important;
    padding: 7px 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.14) !important;
    background: rgba(246, 246, 246, 0.98) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
  }

  .primary-nav .products-menu a {
    min-height: 22px !important;
    padding: 4px 5px !important;
    font-size: 8.5px !important;
    line-height: 1.1 !important;
  }
}

/* Local review tweak: keep About story close to the desktop split layout on mobile. */
@media (max-width: 640px) {
  .about-page .about-story {
    padding: 0 !important;
  }

  .about-page .about-story__hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr) !important;
    min-height: 360px !important;
  }

  .about-page .about-story__copy {
    padding: 26px 14px 18px 18px !important;
  }

  .about-page .about-story__copy::before {
    inset: 0 -42px 0 0 !important;
    clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 0 100%) !important;
  }

  .about-page .about-story__ghost {
    top: 8px !important;
    left: 18px !important;
    font-size: 56px !important;
  }

  .about-page .about-story h1 {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .about-page .about-story__rule {
    width: 116px !important;
    margin-top: 7px !important;
  }

  .about-page .about-story__kicker {
    margin: 7px 0 8px !important;
    font-size: 8.8px !important;
    letter-spacing: 0.16em !important;
  }

  .about-page .about-story__text {
    max-width: none !important;
    font-size: 7.4px !important;
    line-height: 1.32 !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 5px !important;
  }

  .about-page .about-story__text strong {
    font-size: 9.5px !important;
  }

  .about-page .about-story__visual {
    min-height: 360px !important;
    margin-left: -34px !important;
  }

  .about-page .about-story__building {
    background-position: center !important;
    background-size: cover !important;
  }

  .about-page .about-story__stats {
    right: 10px !important;
    bottom: 12px !important;
    left: 42px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 4px !important;
  }

  .about-page .about-story__stats article {
    min-height: 48px !important;
    padding: 5px 4px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  .about-page .about-story__stats article:nth-child(even) {
    border-right: 0 !important;
  }

  .about-page .about-story__stats article:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }

  .about-page .about-story__stats span {
    margin-bottom: 3px !important;
    font-size: 12px !important;
  }

  .about-page .about-story__stats strong {
    font-size: 10px !important;
  }

  .about-page .about-story__stats em {
    margin-top: 2px !important;
    font-size: 6px !important;
    line-height: 1.18 !important;
  }

  .about-page .about-story__values {
    grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr)) !important;
    padding: 10px 18px !important;
  }

  .about-page .about-story__quote {
    grid-column: auto !important;
    grid-template-columns: 18px 1fr !important;
    min-height: 56px !important;
    gap: 6px !important;
    padding: 6px 10px 6px 0 !important;
  }

  .about-page .about-story__quote::before {
    inset: 6px 8px 6px 4px !important;
  }

  .about-page .about-story__quote > span {
    font-size: 28px !important;
  }

  .about-page .about-story__quote strong,
  .about-page .about-story__values article strong {
    font-size: 8.5px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-story__quote p,
  .about-page .about-story__values article p {
    margin-top: 4px !important;
    font-size: 6.2px !important;
    line-height: 1.25 !important;
  }

  .about-page .about-story__values article {
    min-height: 56px !important;
    padding: 6px 6px !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
  }

  .about-page .about-story__values article span {
    font-size: 13px !important;
  }
}

/* Local review tweak: center the three footer columns with even side spacing on mobile. */
@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1.08fr 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    justify-content: center !important;
  }

  .site-footer .footer-products,
  .site-footer .footer-contact {
    width: 100% !important;
    max-width: none !important;
  }

  .site-footer .footer-inquiry {
    width: 100% !important;
    max-width: 196px !important;
    justify-self: center !important;
  }

  .site-footer .footer-products {
    justify-self: end !important;
    transform: translateX(26px) !important;
  }

  .site-footer .footer-products h3 {
    font-size: 13.5px !important;
  }

  .site-footer .footer-products a {
    font-size: 8.8px !important;
    line-height: 1.5 !important;
  }

  .site-footer .footer-contact {
    justify-self: start !important;
  }
}

/* Local review tweak: keep About history as a compact desktop-style carousel on mobile. */
@media (max-width: 640px) {
  .about-page .about-history {
    padding: 32px 0 36px !important;
  }

  .about-page .about-history__heading,
  .about-page .about-history__stage,
  .about-page .about-history__timeline {
    width: min(100% - 24px, 1180px) !important;
  }

  .about-page .about-history__heading {
    margin-bottom: 16px !important;
  }

  .about-page .about-history__heading p {
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }

  .about-page .about-history__heading h2 {
    margin-top: 6px !important;
    font-size: 21px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-history__heading span {
    margin-top: 6px !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
  }

  .about-page .about-history__stage {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) 24px !important;
    gap: 7px !important;
    align-items: center !important;
  }

  .about-page .about-history__arrow {
    display: grid !important;
    width: 24px !important;
    height: 44px !important;
    min-width: 24px !important;
    place-items: center !important;
    font-size: 18px !important;
    opacity: 1 !important;
  }

  .about-page .about-history__card {
    display: grid !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.86fr) minmax(0, 0.46fr) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    touch-action: pan-y !important;
  }

  .about-page .about-image-placeholder--history,
  .about-page .about-history__media,
  .about-page .about-history__preview {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  .about-page .about-history__media img,
  .about-page .about-history__preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .about-page .about-history__copy {
    padding: 12px 14px !important;
  }

  .about-page .about-history__copy p {
    font-size: 11px !important;
    line-height: 1.05 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 5px !important;
    font-size: 14px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-history__copy span {
    width: 22px !important;
    height: 2px !important;
    margin: 7px 0 !important;
  }

  .about-page .about-history__copy strong {
    display: block !important;
    font-size: 7.6px !important;
    line-height: 1.36 !important;
  }

  .about-page .about-history__preview {
    display: block !important;
  }

  .about-page .about-history__timeline {
    display: flex !important;
    gap: 14px !important;
    margin-top: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 2px 12px !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .about-page .about-history__timeline::before {
    top: 30px !important;
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    min-width: 720px !important;
  }

  .about-page .about-history__timeline button {
    flex: 0 0 62px !important;
    min-width: 62px !important;
    gap: 5px !important;
    scroll-snap-align: start !important;
  }

  .about-page .about-history__timeline strong {
    font-size: 10px !important;
  }

  .about-page .about-history__timeline span {
    width: 10px !important;
    height: 10px !important;
  }

  .about-page .about-history__timeline em {
    font-size: 7px !important;
    line-height: 1.16 !important;
  }
}

/* Local review tweak: make About capability compact and closer to the desktop composition. */
@media (max-width: 640px) {
  .about-page .about-capability {
    padding: 34px 0 42px !important;
  }

  .about-page .about-capability__grid {
    width: min(100% - 24px, 1180px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr) !important;
    gap: 16px !important;
    align-items: start !important;
  }

  .about-page .about-capability__copy {
    padding-top: 8px !important;
  }

  .about-page .about-capability__copy p {
    font-size: 9px !important;
    letter-spacing: 0.16em !important;
  }

  .about-page .about-capability__copy h2 {
    margin-top: 8px !important;
    font-size: 17px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-capability__copy > span {
    margin-top: 10px !important;
    font-size: 8.4px !important;
    line-height: 1.45 !important;
  }

  .about-page .about-capability__copy a {
    min-height: 28px !important;
    margin-top: 14px !important;
    padding: 0 10px !important;
    font-size: 8px !important;
  }

  .about-page .about-capability__copy a span {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
  }

  .about-page .about-capability__cards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .about-page .about-capability__cards article {
    aspect-ratio: 3 / 4 !important;
    min-height: 0 !important;
    padding: 9px !important;
  }

  .about-page .about-capability__cards span {
    width: 16px !important;
    height: 2px !important;
  }

  .about-page .about-capability__cards h3 {
    font-size: 7.6px !important;
    line-height: 1.16 !important;
  }
}

/* Local review tweak: make product catalog less crowded and center product images on mobile. */
@media (max-width: 640px) {
  .catalog-page .catalog-hero {
    padding: 0 !important;
  }

  .catalog-page .catalog-hero__inner {
    width: min(100% - 24px, 1780px) !important;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr) !important;
    min-height: 136px !important;
    gap: 14px !important;
    padding: 18px 0 !important;
  }

  .catalog-page .catalog-hero h1 {
    font-size: 22px !important;
    line-height: 1.06 !important;
  }

  .catalog-page .catalog-hero__actions {
    gap: 7px !important;
    margin-top: 10px !important;
  }

  .catalog-page .catalog-button {
    min-width: 92px !important;
    min-height: 30px !important;
    padding: 0 9px !important;
    font-size: 8px !important;
  }

  .catalog-page .catalog-hero__note {
    gap: 4px !important;
    font-size: 8.8px !important;
    line-height: 1.32 !important;
    text-align: left !important;
  }

  .catalog-page .catalog-shell__inner {
    width: min(100% - 24px, 1780px) !important;
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 13px !important;
    min-height: 0 !important;
  }

  .catalog-page .catalog-sidebar {
    padding: 18px 9px 34px 0 !important;
    border-right: 1px solid #e6e6e6 !important;
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-sidebar h2 {
    margin-bottom: 13px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .catalog-page .catalog-category-list a {
    min-height: 28px !important;
    font-size: 8.6px !important;
    line-height: 1.12 !important;
  }

  .catalog-page .catalog-category-list a span {
    font-size: 13px !important;
  }

  .catalog-page .catalog-category-list a:nth-child(2) {
    padding-bottom: 8px !important;
  }

  .catalog-page .catalog-category-list a:nth-child(3) {
    margin-top: 8px !important;
  }

  .catalog-page .catalog-results {
    padding: 18px 0 38px !important;
  }

  .catalog-page .catalog-toolbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .catalog-page .catalog-toolbar p {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }

  .catalog-page .catalog-inline-search,
  .catalog-page .catalog-search {
    height: 32px !important;
  }

  .catalog-page .catalog-inline-search input,
  .catalog-page .catalog-search input,
  .catalog-page .catalog-toolbar select {
    height: 32px !important;
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .catalog-page .catalog-card {
    display: flex !important;
    min-height: 190px !important;
    padding: 10px 8px 11px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .catalog-page .catalog-card__image {
    display: grid !important;
    height: 102px !important;
    min-height: 102px !important;
    place-items: center !important;
    overflow: hidden !important;
  }

  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    display: block !important;
    width: 100% !important;
    height: 102px !important;
    max-width: none !important;
    max-height: none !important;
    margin: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
  }

  .catalog-page .catalog-card:hover .catalog-card__image img,
  .catalog-page .catalog-card:focus-within .catalog-card__image img {
    transform: scale(1.04) !important;
  }

  .catalog-page .catalog-card h3 {
    min-height: 34px !important;
    margin-top: 7px !important;
    font-size: 9.4px !important;
    line-height: 1.18 !important;
    -webkit-line-clamp: 3 !important;
  }

  .catalog-page .catalog-card p {
    margin-top: 4px !important;
    font-size: 8.6px !important;
    line-height: 1.2 !important;
  }

  .catalog-page .catalog-card__button {
    min-height: 25px !important;
    margin-top: auto !important;
    padding: 0 9px !important;
    font-size: 7.8px !important;
  }
}

@media (max-width: 430px) {
  .catalog-page .catalog-shell__inner {
    grid-template-columns: 94px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .catalog-page .catalog-card {
    min-height: 170px !important;
    padding: 8px 6px 9px !important;
  }

  .catalog-page .catalog-card__image {
    height: 84px !important;
    min-height: 84px !important;
  }

  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    height: 84px !important;
  }

  .catalog-page .catalog-category-list a {
    min-height: 25px !important;
    font-size: 7.6px !important;
  }
}

/* Local review tweak: keep product, inquiry, blog, and contact pages desktop-like on mobile. */
@media (max-width: 640px) {
  .contact-page .contact-workspace:not(.contact-workspace--compact) {
    padding: 18px 0 42px !important;
  }

  .contact-page .contact-workspace__card {
    width: min(100% - 24px, 1780px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    align-items: stretch !important;
    border: 1px solid #dedede !important;
  }

  .contact-page .contact-info-panel {
    padding: 20px 15px !important;
    border-right: 1px solid #e0e0e0 !important;
    border-bottom: 0 !important;
  }

  .contact-page .contact-info-panel h1 {
    font-size: 23px !important;
    line-height: 1.04 !important;
  }

  .contact-page .contact-rule {
    width: 42px !important;
    margin: 10px 0 13px !important;
  }

  .contact-page .contact-info-panel > p {
    font-size: 10px !important;
    line-height: 1.42 !important;
  }

  .contact-page .contact-methods {
    gap: 9px !important;
    margin-top: 16px !important;
  }

  .contact-page .contact-methods div {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 10px !important;
  }

  .contact-page .contact-methods span {
    display: flex !important;
    width: 30px !important;
    height: 30px !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    line-height: 1 !important;
    text-align: center !important;
    transform: translateY(-1px) !important;
  }

  .contact-page .contact-methods div:nth-child(1) span {
    font-size: 17px !important;
  }

  .contact-page .contact-methods div:nth-child(2) span {
    font-size: 20px !important;
  }

  .contact-page .contact-methods div:nth-child(3) span {
    font-size: 18px !important;
  }

  .contact-page .contact-methods div:nth-child(4) span {
    font-size: 19px !important;
  }

  .contact-page .contact-methods p,
  .contact-page .contact-methods a {
    font-size: 10.6px !important;
    line-height: 1.38 !important;
    word-break: break-word !important;
  }

  .contact-page .contact-methods strong {
    margin-bottom: 2px !important;
    font-size: 14px !important;
    line-height: 1.12 !important;
  }

  .contact-page .privacy-note {
    margin-top: 16px !important;
    padding: 12px !important;
  }

  .contact-page .privacy-note h3 {
    font-size: 13px !important;
  }

  .contact-page .privacy-note p {
    font-size: 9.4px !important;
    line-height: 1.4 !important;
  }

  .contact-page .contact-form-panel {
    padding: 20px 15px !important;
  }

  .contact-page .contact-form-panel h2 {
    font-size: 21px !important;
    line-height: 1.08 !important;
  }

  .contact-page .contact-form-panel > p {
    margin-top: 8px !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  .contact-page .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px 10px !important;
    margin-top: 14px !important;
  }

  .contact-page .contact-form label {
    align-self: start !important;
    gap: 5px !important;
    font-size: 9px !important;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    min-height: 31px !important;
    padding: 7px 8px !important;
    font-size: 10px !important;
  }

  .contact-page .contact-form textarea {
    min-height: 84px !important;
  }

  .contact-page .phone-input-group {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 6px !important;
  }

  .contact-page .phone-input-group input {
    height: 31px !important;
    min-height: 31px !important;
  }

  .contact-page .message-count,
  .contact-page .oubiao-inquiry-form__status {
    font-size: 8.5px !important;
  }

  .contact-page .contact-submit {
    min-height: 32px !important;
    align-self: start !important;
    padding: 0 12px !important;
    font-size: 10px !important;
  }

  .blog-page .blog-hero,
  .contact-page .contact-hero {
    min-height: 190px !important;
    padding: 0 !important;
  }

  .blog-page .blog-hero__inner,
  .contact-page .contact-hero__inner {
    width: min(100% - 24px, 1780px) !important;
    min-height: 190px !important;
    padding: 22px 0 18px !important;
  }

  .blog-page .blog-hero p,
  .contact-page .contact-hero p {
    font-size: 8.6px !important;
    letter-spacing: 0.16em !important;
  }

  .blog-page .blog-hero h1,
  .contact-page .contact-hero h1 {
    max-width: 520px !important;
    font-size: 25px !important;
    line-height: 1.05 !important;
  }

  .blog-page .blog-hero span,
  .contact-page .contact-hero span {
    max-width: 520px !important;
    margin-top: 9px !important;
    font-size: 10px !important;
    line-height: 1.42 !important;
  }

  .blog-hero__metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 520px !important;
    margin-top: 12px !important;
  }

  .blog-hero__metrics strong {
    padding: 8px 6px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-bottom: 0 !important;
    font-size: 7.4px !important;
    line-height: 1.25 !important;
  }

  .blog-page .blog-shell {
    padding: 22px 0 46px !important;
  }

  .blog-page .blog-shell__inner {
    width: min(100% - 24px, 1780px) !important;
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .blog-page .blog-sidebar {
    padding: 15px 12px !important;
  }

  .blog-page .blog-sidebar h2 {
    margin-bottom: 10px !important;
    font-size: 12px !important;
  }

  .blog-page .blog-sidebar > a {
    min-height: 28px !important;
    padding: 8px 0 !important;
    font-size: 9.4px !important;
    line-height: 1.2 !important;
  }

  .blog-page .blog-inquiry-box {
    margin-top: 14px !important;
    padding: 13px 11px !important;
  }

  .blog-page .blog-inquiry-box h3 {
    font-size: 12px !important;
  }

  .blog-page .blog-inquiry-box p {
    margin: 7px 0 10px !important;
    font-size: 9px !important;
    line-height: 1.35 !important;
  }

  .blog-page .blog-inquiry-box a {
    min-height: 28px !important;
    padding: 0 10px !important;
    font-size: 8.4px !important;
  }

  .blog-page .blog-list {
    gap: 11px !important;
  }

  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    grid-template-columns: 124px minmax(0, 1fr) !important;
    min-height: 132px !important;
  }

  .blog-page .blog-card__media,
  .blog-page .blog-card--featured .blog-card__media {
    min-height: 132px !important;
  }

  .blog-page .blog-card__body {
    padding: 14px 13px !important;
  }

  .blog-page .blog-card__body p {
    font-size: 7.8px !important;
    letter-spacing: 0.12em !important;
  }

  .blog-page .blog-card__body h2,
  .blog-page .blog-card--featured .blog-card__body h2 {
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
  }

  .blog-page .blog-card__body span {
    margin-top: 7px !important;
    font-size: 9.6px !important;
    line-height: 1.35 !important;
  }

  .blog-page .blog-card__body a {
    margin-top: 9px !important;
    font-size: 9px !important;
  }

  .contact-directory {
    padding: 24px 0 !important;
  }

  .contact-directory__grid {
    width: min(100% - 24px, 1780px) !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
    gap: 14px !important;
  }

  .contact-directory__info {
    gap: 10px !important;
  }

  .contact-info-card {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 15px !important;
  }

  .contact-info-card > span,
  .contact-info-list span {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
  }

  .contact-info-card p,
  .contact-map-card__footer p {
    font-size: 7.8px !important;
    letter-spacing: 0.12em !important;
  }

  .contact-info-card h2 {
    margin-top: 6px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .contact-info-list {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .contact-info-list a,
  .contact-info-list div {
    min-height: 94px !important;
    gap: 7px !important;
    padding: 11px 8px !important;
    border-right: 1px solid #dedede !important;
    border-bottom: 0 !important;
  }

  .contact-info-list strong {
    font-size: 9px !important;
  }

  .contact-info-list p {
    font-size: 8px !important;
    line-height: 1.32 !important;
    word-break: break-word !important;
  }

  .contact-social-block {
    padding: 14px 15px !important;
  }

  .contact-social-block h2 {
    font-size: 14px !important;
  }

  .contact-socials {
    gap: 8px !important;
    margin-top: 10px !important;
  }

  .contact-socials a {
    width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
  }

  .contact-map-card {
    min-height: 310px !important;
  }

  .contact-map-card__surface {
    min-height: 250px !important;
  }

  .contact-map-card__continent {
    font-size: 7.6px !important;
  }

  .contact-map-card__ocean {
    font-size: 7.8px !important;
  }

  .contact-map-card__pin {
    width: 26px !important;
    height: 26px !important;
  }

  .contact-map-card__pin::after {
    inset: 7px !important;
  }

  .contact-map-card__label {
    right: 18px !important;
    bottom: 18px !important;
    left: auto !important;
    max-width: 160px !important;
    padding: 9px 10px !important;
  }

  .contact-map-card__label p {
    font-size: 7px !important;
  }

  .contact-map-card__label strong {
    font-size: 10px !important;
  }

  .contact-map-card__label span {
    font-size: 8px !important;
  }

  .contact-map-card__footer {
    gap: 10px !important;
    padding: 11px 12px !important;
  }

  .contact-map-card__footer strong {
    font-size: 9px !important;
  }

  .contact-workspace--compact {
    padding: 0 0 42px !important;
  }

  .contact-workspace--compact .contact-form-panel {
    width: min(100% - 24px, 1780px) !important;
    padding: 20px 18px 18px !important;
  }

  .contact-workspace--compact .contact-form {
    align-items: start !important;
  }

  .contact-workspace--compact .contact-submit {
    align-self: start !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 430px) {
  .contact-page .contact-workspace__card,
  .contact-directory__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
    gap: 9px !important;
  }

  .blog-page .blog-shell__inner {
    grid-template-columns: 122px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    grid-template-columns: 92px minmax(0, 1fr) !important;
    min-height: 116px !important;
  }

  .blog-page .blog-card__media,
  .blog-page .blog-card--featured .blog-card__media {
    min-height: 116px !important;
  }

  .contact-info-list {
    grid-template-columns: 1fr !important;
  }

  .contact-info-list a,
  .contact-info-list div {
    min-height: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dedede !important;
  }
}

/* Local review tweak: keep About operations showcase close to desktop layout on mobile. */
@media (max-width: 640px) {
  .about-page .about-extra-showcase {
    padding: 8px 0 44px !important;
  }

  .about-page .about-extra-showcase__inner {
    width: min(100% - 24px, 1780px) !important;
    gap: 18px !important;
  }

  .about-page .about-extra-block {
    display: grid !important;
    align-items: start !important;
    gap: 14px !important;
    padding: 0 !important;
  }

  .about-page .about-extra-block--landscape {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr) !important;
  }

  .about-page .about-extra-block--portrait {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr) !important;
  }

  .about-page .about-extra-block--landscape .about-extra-media-grid {
    order: 1 !important;
  }

  .about-page .about-extra-block--landscape .about-extra-copy {
    order: 2 !important;
  }

  .about-page .about-extra-block--landscape .about-extra-copy,
  .about-page .about-extra-block--portrait .about-extra-copy {
    padding-top: 8px !important;
  }

  .about-page .about-extra-copy {
    gap: 8px !important;
  }

  .about-page .about-extra-copy h2,
  .about-page .about-extra-block--landscape .about-extra-copy h2 {
    font-size: 16px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-extra-copy p,
  .about-page .about-extra-block--landscape .about-extra-copy p {
    font-size: 9.2px !important;
    line-height: 1.42 !important;
  }

  .about-page .about-extra-action {
    min-width: 96px !important;
    min-height: 30px !important;
    gap: 12px !important;
    margin-top: 4px !important;
    padding: 0 10px !important;
    border-radius: 3px !important;
    font-size: 8.5px !important;
  }

  .about-page .about-extra-media-grid {
    gap: 8px !important;
  }

  .about-page .about-extra-media-grid--landscape,
  .about-page .about-extra-media-grid--portrait {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
  }

  .about-page .about-extra-media-grid--landscape .about-extra-media {
    aspect-ratio: 4 / 3 !important;
  }

  .about-page .about-extra-media-grid--portrait .about-extra-media {
    aspect-ratio: 3 / 4 !important;
  }

  .about-page .about-extra-media {
    border-radius: 5px !important;
  }
}

@media (max-width: 430px) {
  .about-page .about-extra-showcase__inner {
    gap: 14px !important;
  }

  .about-page .about-extra-block {
    gap: 9px !important;
  }

  .about-page .about-extra-block--landscape {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr) !important;
  }

  .about-page .about-extra-block--portrait {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr) !important;
  }

  .about-page .about-extra-copy h2,
  .about-page .about-extra-block--landscape .about-extra-copy h2 {
    font-size: 13px !important;
  }

  .about-page .about-extra-copy p,
  .about-page .about-extra-block--landscape .about-extra-copy p {
    font-size: 7.8px !important;
    line-height: 1.35 !important;
  }

  .about-page .about-extra-action {
    min-width: 82px !important;
    min-height: 26px !important;
    padding: 0 8px !important;
    font-size: 7.2px !important;
  }

  .about-page .about-extra-media-grid {
    gap: 6px !important;
  }
}

/* Local review tweak: put Phone and Message on their own rows in the inquiry form. */
@media (max-width: 640px) {
  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form label:nth-of-type(5),
  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form label:nth-of-type(6),
  .contact-page .contact-workspace:not(.contact-workspace--compact) .oubiao-inquiry-form__status,
  .contact-page .contact-workspace:not(.contact-workspace--compact) .oubiao-turnstile,
  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-submit {
    grid-column: 1 / -1 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .phone-input-group {
    grid-template-columns: 68px minmax(0, 1fr) !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form textarea {
    min-height: 92px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-submit {
    width: min(100%, 340px) !important;
    justify-self: start !important;
  }
}

/* Local review tweak: make About story stats a compact bottom row and fill the copy column better. */
@media (max-width: 640px) {
  .about-page .about-story__copy {
    padding: 24px 16px 16px 18px !important;
  }

  .about-page .about-story__text {
    font-size: 8.1px !important;
    line-height: 1.48 !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 7px !important;
  }

  .about-page .about-story__text strong {
    font-size: 9.8px !important;
  }

  .about-page .about-story__stats {
    right: 8px !important;
    bottom: 8px !important;
    left: 30px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .about-page .about-story__stats article {
    min-height: 44px !important;
    padding: 5px 3px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-bottom: 0 !important;
  }

  .about-page .about-story__stats article:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  .about-page .about-story__stats article:last-child {
    border-right: 0 !important;
  }

  .about-page .about-story__stats span {
    margin-bottom: 2px !important;
    font-size: 10px !important;
  }

  .about-page .about-story__stats strong {
    font-size: 8px !important;
    line-height: 1.05 !important;
  }

  .about-page .about-story__stats em {
    margin-top: 1px !important;
    font-size: 4.8px !important;
    line-height: 1.12 !important;
  }
}

/* Local review tweak: final footer products position and scale. */
@media (max-width: 640px) {
  .site-footer .footer-products {
    transform: translateX(28px) !important;
  }

  .site-footer .footer-products h3 {
    font-size: 13.5px !important;
  }

  .site-footer .footer-products a {
    font-size: 8.8px !important;
    line-height: 1.5 !important;
  }
}

/* Local review tweak: remove the hairline gap below the homepage stats row. */
@media (max-width: 760px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories {
    margin-top: -2px !important;
    padding-top: 14px !important;
    box-shadow: 0 -3px 0 #eeeeee !important;
  }
}

/* Local review tweak: restore the mobile homepage logo on a black header. */
@media (max-width: 760px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header {
    position: sticky !important;
    top: 0 !important;
    background: #050505 !important;
    border-bottom: 0 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .header-main {
    width: min(100% - 28px, 1780px) !important;
    min-height: 74px !important;
    display: grid !important;
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .brand {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .brand__logo {
    display: block !important;
    width: 150px !important;
    max-height: 34px !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: invert(1) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: transparent !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .menu-toggle span:not(.sr-only) {
    background: #ffffff !important;
  }
}

/* Local review tweak: center carousel arrows inside their circular buttons. */
@media (max-width: 760px) {
  .team-exhibition .media-carousel__button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .team-exhibition .media-carousel__button--prev {
    text-indent: -1px !important;
  }

  .team-exhibition .media-carousel__button--next {
    text-indent: 1px !important;
  }
}

/* Local review tweak: keep the footer inquiry heading on one line. */
@media (max-width: 760px) {
  .site-footer .footer-inquiry {
    max-width: 214px !important;
  }

  .site-footer .footer-inquiry__title {
    gap: 6px !important;
    column-gap: 6px !important;
  }

  .site-footer .footer-inquiry__title::before,
  .site-footer .footer-inquiry__title::after {
    min-width: 28px !important;
  }

  .site-footer .footer-inquiry__title h3 {
    white-space: nowrap !important;
    min-width: max-content !important;
    font-size: 8.6px !important;
    line-height: 1 !important;
  }
}

/* Local review tweak: full-width black mobile navigation panel. */
@media (max-width: 980px) {
  body .primary-nav,
  .site-header--solid .primary-nav,
  .catalog-page .primary-nav,
  .contact-page .primary-nav,
  .blog-page .primary-nav,
  .about-page .primary-nav,
  .product-detail-page .primary-nav,
  body.home-page .primary-nav {
    top: 74px !important;
    right: auto !important;
    left: 50% !important;
    width: calc(100vw - 28px) !important;
    transform: translateX(-50%) !important;
    min-height: 0 !important;
    height: min(33vh, 292px) !important;
    max-height: 292px !important;
    display: none !important;
    align-content: stretch !important;
    justify-content: stretch !important;
    gap: 0 !important;
    padding: 12px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(5, 5, 5, 0.98) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28) !important;
  }

  body.nav-open .primary-nav {
    display: grid !important;
    grid-template-rows: repeat(6, 1fr) !important;
  }

  .primary-nav > a,
  .primary-nav .nav-dropdown,
  .primary-nav .nav-dropdown__toggle,
  .product-detail-page .primary-nav > a,
  .product-detail-page .primary-nav .nav-dropdown__toggle,
  body.home-page .primary-nav > a,
  body.home-page .primary-nav .nav-dropdown__toggle {
    width: 100% !important;
    min-height: 0 !important;
  }

  .primary-nav > a,
  body.home-page .primary-nav > a,
  .product-detail-page .primary-nav > a,
  .primary-nav .nav-dropdown__toggle,
  .product-detail-page .primary-nav .nav-dropdown__toggle,
  body.home-page .primary-nav .nav-dropdown__toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.14em !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .primary-nav > a:last-child {
    border-bottom: 0 !important;
  }

  .primary-nav .nav-dropdown {
    display: flex !important;
    align-items: stretch !important;
  }

  .primary-nav .nav-dropdown__toggle span {
    display: none !important;
  }

  .primary-nav .products-menu,
  .primary-nav .nav-dropdown.is-open .products-menu {
    display: none !important;
  }
}

/* Local review tweak: lock mobile menu panel to the center after older offsets. */
@media (max-width: 980px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .primary-nav,
  body.catalog-page.catalog-page .site-header .primary-nav,
  body.contact-page.contact-page .site-header .primary-nav,
  body.blog-page.blog-page .site-header .primary-nav,
  body.about-page.about-page .site-header .primary-nav,
  body.product-detail-page.product-detail-page .site-header .primary-nav {
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    transform: translateX(-50%) !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown__toggle {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* Local review tweak: make product detail mobile layout feel like a scaled desktop view. */
@media (max-width: 760px) {
  .product-detail-page main {
    padding-bottom: 26px !important;
  }

  .product-detail-page .product-breadcrumb {
    display: none !important;
  }

  .product-detail-page .product-detail-hero {
    padding: 14px 0 18px !important;
  }

  .product-detail-page .product-detail-hero__grid {
    width: min(100% - 28px, 680px) !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .product-detail-page .product-gallery {
    min-width: 0 !important;
  }

  .product-detail-page .product-gallery__main {
    min-height: 0 !important;
    height: 278px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-gallery__zoom {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }

  .product-detail-page .product-gallery__image {
    position: absolute !important;
    inset: 0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 7px !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .product-detail-page .product-gallery__thumbs {
    grid-template-columns: repeat(auto-fit, minmax(58px, 72px)) !important;
    gap: 8px !important;
    margin-top: 8px !important;
  }

  .product-detail-page .product-gallery__thumbs button {
    min-height: 48px !important;
    padding: 5px !important;
    border-radius: 6px !important;
  }

  .product-detail-page .product-gallery__thumbs img {
    height: 38px !important;
  }

  .product-detail-page .product-summary {
    min-width: 0 !important;
    padding: 14px 14px 15px !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 18px rgba(15, 35, 70, 0.05) !important;
  }

  .product-detail-page .product-summary h1 {
    max-width: none !important;
    font-size: 18px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-summary__meta {
    gap: 6px !important;
    margin-top: 12px !important;
    padding-top: 10px !important;
    font-size: 9.6px !important;
    line-height: 1.24 !important;
  }

  .product-detail-page .product-summary__meta div {
    grid-template-columns: 48px minmax(0, 1fr) !important;
    gap: 5px !important;
  }

  .product-detail-page .product-summary__meta dt {
    font-size: 9.6px !important;
  }

  .product-detail-page .product-summary__meta dd {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .product-detail-page .product-summary__contact {
    gap: 8px !important;
    margin-top: 12px !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-action {
    min-height: 34px !important;
    gap: 7px !important;
    border-radius: 5px !important;
    font-size: 9.2px !important;
  }

  .product-detail-page .product-action svg {
    width: 14px !important;
    height: 14px !important;
  }

  .product-detail-page .product-contact-row {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding-top: 8px !important;
    font-size: 9.4px !important;
  }

  .product-detail-page .product-contact-row > span {
    width: 26px !important;
    height: 26px !important;
  }

  .product-detail-page .product-contact-row svg {
    width: 13px !important;
    height: 13px !important;
  }

  .product-detail-page .product-contact-row strong {
    font-size: 8.6px !important;
  }
}

@media (max-width: 480px) {
  .product-detail-page .product-detail-hero__grid {
    width: min(100% - 22px, 440px) !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .product-detail-page .product-gallery__main {
    height: 235px !important;
  }

  .product-detail-page .product-summary h1 {
    font-size: 21px !important;
  }
}

/* Local review tweak: compact the lower product detail sections on mobile. */
@media (max-width: 760px) {
  .product-detail-page .product-info-panel,
  .product-detail-page .product-protection__grid,
  .product-detail-page .product-services,
  .product-detail-page .product-factory__grid,
  .product-detail-page .product-bottom-cta {
    width: min(100% - 28px, 680px) !important;
  }

  .product-detail-page .product-info-panel {
    display: grid !important;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr) !important;
    gap: 14px !important;
    margin-top: 10px !important;
    padding: 16px 18px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-details-copy {
    padding: 0 14px 0 0 !important;
    border-right: 1px solid #dce2ed !important;
    border-bottom: 0 !important;
  }

  .product-detail-page .product-info-panel h2,
  .product-detail-page .product-section-copy h2,
  .product-detail-page .product-services h2 {
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  .product-detail-page .product-info-panel h2::after,
  .product-detail-page .product-section-copy h2::after,
  .product-detail-page .product-services h2::after,
  .product-detail-page .product-factory h3::after {
    width: 28px !important;
    height: 2px !important;
    margin-top: 7px !important;
  }

  .product-detail-page .product-details-copy p,
  .product-detail-page .product-section-copy p {
    margin-top: 9px !important;
    font-size: 10px !important;
    line-height: 1.45 !important;
  }

  .product-detail-page .product-feature-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin-top: 12px !important;
  }

  .product-detail-page .product-feature-grid article {
    gap: 5px !important;
  }

  .product-detail-page .product-feature-grid span {
    width: 34px !important;
    height: 34px !important;
  }

  .product-detail-page .product-feature-grid svg {
    width: 15px !important;
    height: 15px !important;
  }

  .product-detail-page .product-feature-grid h3 {
    font-size: 7.8px !important;
    line-height: 1.15 !important;
  }

  .product-detail-page .product-protection {
    padding: 18px 0 !important;
  }

  .product-detail-page .product-protection__grid {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr) !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .product-detail-page .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    max-width: none !important;
  }

  .product-detail-page .product-showcase-grid span {
    left: 8px !important;
    bottom: 8px !important;
    font-size: 8.5px !important;
  }

  .product-detail-page .product-services {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr) !important;
    gap: 12px !important;
    padding: 8px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-services__media {
    min-height: 160px !important;
    border-radius: 6px !important;
  }

  .product-detail-page .product-services__content {
    padding: 8px 6px 6px 0 !important;
  }

  .product-detail-page .product-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 8px !important;
    margin-top: 8px !important;
  }

  .product-detail-page .product-service-grid article {
    grid-template-columns: 24px minmax(0, 1fr) !important;
    column-gap: 7px !important;
    row-gap: 4px !important;
    min-height: 58px !important;
    padding: 7px 0 !important;
  }

  .product-detail-page .product-service-grid article > span {
    width: 24px !important;
    height: 24px !important;
    border-radius: 7px !important;
    font-size: 13px !important;
  }

  .product-detail-page .product-service-grid h3 {
    font-size: 9px !important;
    line-height: 1.15 !important;
  }

  .product-detail-page .product-service-grid p {
    font-size: 7.8px !important;
    line-height: 1.28 !important;
  }

  .product-detail-page .product-factory {
    padding: 18px 0 12px !important;
  }

  .product-detail-page .product-factory__grid {
    grid-template-columns: minmax(0, 0.34fr) repeat(2, minmax(0, 0.33fr)) !important;
    gap: 10px !important;
    align-items: stretch !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    align-self: center !important;
  }

  .product-detail-page .product-factory article {
    min-height: 150px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-factory article div {
    aspect-ratio: 4 / 2.45 !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .product-detail-page .product-factory article h3 {
    padding: 8px 9px 10px !important;
    font-size: 10px !important;
    line-height: 1.18 !important;
  }

  .product-detail-page .product-bottom-cta {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 12px !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-bottom-cta > div {
    flex-direction: row !important;
    align-items: center !important;
    gap: 9px !important;
  }

  .product-detail-page .product-bottom-cta > div > span {
    font-size: 24px !important;
  }

  .product-detail-page .product-bottom-cta h2 {
    font-size: 15px !important;
    line-height: 1.15 !important;
  }

  .product-detail-page .product-bottom-cta p {
    font-size: 9px !important;
  }

  .product-detail-page .product-bottom-cta .product-action {
    width: auto !important;
    min-width: 150px !important;
  }
}

/* Local review tweak: make the mobile header logo much smaller. */
@media (max-width: 760px) {
  .site-header .brand__logo,
  body.home-page .site-header .brand__logo {
    width: 53px !important;
    max-height: 13px !important;
  }
}

/* Local review tweak: keep mobile menu text centered with separators below the text. */
@media (max-width: 980px) {
  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown,
  .site-header .primary-nav .nav-dropdown__toggle {
    position: relative !important;
    border-bottom: 0 !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown__toggle {
    transform: translateY(-5px) !important;
  }

  .site-header .primary-nav > a::after,
  .site-header .primary-nav .nav-dropdown::after {
    position: absolute !important;
    right: 0 !important;
    bottom: -7px !important;
    left: 0 !important;
    width: auto !important;
    height: 1px !important;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.18) !important;
    opacity: 1 !important;
    transform: none !important;
    content: "" !important;
  }

  .site-header .primary-nav > a:last-child::after {
    display: none !important;
  }
}

/* Local review tweak: keep footer contact icon and text as one aligned row. */
.site-footer .footer-contact p {
  align-items: start !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  column-gap: 10px !important;
}

.site-footer .footer-contact p img {
  grid-column: 1 !important;
  flex: 0 0 auto !important;
}

.site-footer .footer-contact p .footer-contact__text {
  display: block !important;
  grid-column: 2 !important;
  min-width: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.site-footer .footer-contact p .footer-contact__text a {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .site-footer .footer-contact p {
    grid-template-columns: 13px minmax(0, 1fr) !important;
    column-gap: 7px !important;
  }
}

/* Local review tweak: move the desktop homepage navigation slightly right. */
@media (min-width: 981px) {
  .site-header:not(.site-header--solid) .primary-nav {
    transform: translateX(38px) !important;
  }
}

/* Local review tweak: keep homepage navigation sizing aligned with inner pages. */
@media (min-width: 981px) {
  .site-header:not(.site-header--solid) .header-main {
    width: min(100% - 240px, 1420px) !important;
  }

  .site-header:not(.site-header--solid) .primary-nav {
    gap: 22px !important;
  }

  .site-header:not(.site-header--solid) .primary-nav > a,
  .site-header:not(.site-header--solid) .nav-dropdown__toggle {
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  .site-header:not(.site-header--solid) .products-menu a {
    font-size: 18px !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
  }
}

/* Local review tweak: rebalance the desktop homepage footer columns. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid {
    width: min(100% - 72px, 1304px) !important;
    grid-template-columns: 260px 460px 360px !important;
    column-gap: 80px !important;
    justify-content: center !important;
    align-items: start !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products {
    grid-column: 1 !important;
    justify-self: start !important;
    transform: translateX(28px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 460px !important;
    justify-self: center !important;
    transform: translateX(50px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact {
    grid-column: 3 !important;
    width: 100% !important;
    justify-self: end !important;
    transform: translateX(44px) !important;
  }
}

/* Local review tweak: final override for the mobile header logo size. */
@media (max-width: 760px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .brand .brand__logo,
  body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .brand .brand__logo,
  .site-header.site-header .header-main .brand .brand__logo {
    width: 98px !important;
    max-width: 98px !important;
    height: auto !important;
    max-height: 23px !important;
  }

  body.catalog-page .site-header.site-header--solid .header-main .brand .brand__logo,
  body.product-detail-page .site-header.site-header--solid .header-main .brand .brand__logo,
  body.contact-page .site-header.site-header--solid .header-main .brand .brand__logo,
  body.blog-page .site-header.site-header--solid .header-main .brand .brand__logo,
  body.about-page .site-header.site-header--solid .header-main .brand .brand__logo {
    width: 98px !important;
    max-width: 98px !important;
    max-height: 23px !important;
  }
}

/* Local review tweak: restore product gallery hover zoom after image-centering overrides. */
.product-detail-page .product-gallery__zoom {
  --zoom-x: 50%;
  --zoom-y: 50%;
  position: relative !important;
  overflow: hidden !important;
  cursor: zoom-in !important;
}

.product-detail-page .product-gallery__zoom .product-gallery__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: scale(1) !important;
  transform-origin: var(--zoom-x) var(--zoom-y) !important;
  transition: transform 180ms ease !important;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .product-detail-page .product-gallery__zoom:hover .product-gallery__image {
    transform: scale(1.85) !important;
  }
}

/* Local review tweak: keep product gallery thumbnails in a horizontal strip. */
.product-detail-page .product-gallery__thumbs {
  display: flex !important;
  width: 100% !important;
  max-width: 100% !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 14px auto 0 !important;
  padding: 0 4px 4px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: thin;
}

.product-detail-page .product-gallery__thumbs button {
  flex: 0 0 118px !important;
  width: 118px !important;
  min-width: 118px !important;
  min-height: 82px !important;
}

.product-detail-page .product-gallery__thumbs img {
  width: 100% !important;
  height: 64px !important;
  object-fit: contain !important;
}

@media (max-width: 760px) {
  .product-detail-page .product-gallery__thumbs {
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-top: 8px !important;
    padding-bottom: 3px !important;
  }

  .product-detail-page .product-gallery__thumbs button {
    flex-basis: 64px !important;
    width: 64px !important;
    min-width: 64px !important;
    min-height: 48px !important;
    padding: 5px !important;
  }

  .product-detail-page .product-gallery__thumbs img {
    height: 38px !important;
  }
}

/* Local review tweak: make team/exhibition carousel arrows frameless and heavier. */
.team-exhibition .media-carousel__button {
  width: 36px !important;
  height: 36px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 31px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.62) !important;
}

.team-exhibition .media-carousel__button:hover,
.team-exhibition .media-carousel__button:focus-visible {
  background: transparent !important;
  transform: translateY(-50%) scale(1.08) !important;
}

/* Local review tweak: tighten product factory section and enlarge image cards. */
.product-detail-page .product-factory {
  padding: 26px 0 18px !important;
}

.product-detail-page .product-factory__grid {
  grid-template-columns: minmax(0, 0.7fr) repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.product-detail-page .product-factory__grid > .product-section-copy {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: stretch !important;
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-right: 6px !important;
}

.product-detail-page .product-factory .product-section-copy h2 {
  max-width: 260px !important;
  font-size: 31px !important;
  line-height: 1.08 !important;
}

.product-detail-page .product-factory .product-section-copy p {
  max-width: 270px !important;
  margin-top: 12px !important;
  font-size: 13.5px !important;
  line-height: 1.42 !important;
}

.product-detail-page .product-factory__grid > .product-section-copy {
  transform: translateY(-34px) !important;
}

.product-detail-page .product-factory article {
  min-height: 230px !important;
  border-radius: 8px !important;
}

.product-detail-page .product-factory article div {
  aspect-ratio: 16 / 10 !important;
  border-radius: 8px 8px 0 0 !important;
}

.product-detail-page .product-factory article h3 {
  min-height: 64px !important;
  padding: 12px 14px 14px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
}

@media (max-width: 760px) {
  .product-detail-page .product-factory__grid {
    grid-template-columns: minmax(0, 0.62fr) repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .product-detail-page .product-factory .product-section-copy h2 {
    font-size: 15px !important;
    line-height: 1.12 !important;
  }

  .product-detail-page .product-factory .product-section-copy p {
    margin-top: 7px !important;
    font-size: 8px !important;
    line-height: 1.35 !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    transform: translateY(-12px) !important;
  }

  .product-detail-page .product-factory article {
    min-height: 124px !important;
  }

  .product-detail-page .product-factory article h3 {
    min-height: 38px !important;
    padding: 7px 8px 8px !important;
    font-size: 8px !important;
  }
}

/* Local review tweak: lower the all-weather protection copy to align with media. */
.product-detail-page .product-protection .product-section-copy {
  transform: translateY(30px) !important;
}

@media (max-width: 760px) {
  .product-detail-page .product-protection .product-section-copy {
    transform: translateY(14px) !important;
  }
}

/* Local review tweak: make the mobile navigation rows evenly spaced and centered. */
@media (max-width: 980px) {
  body .site-header .primary-nav {
    height: min(30vh, 258px) !important;
    max-height: 258px !important;
    padding: 0 18px !important;
    align-items: stretch !important;
    align-content: stretch !important;
  }

  body.nav-open .site-header .primary-nav {
    display: grid !important;
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown,
  .site-header .primary-nav .nav-dropdown__toggle {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .site-header .primary-nav > a::after,
  .site-header .primary-nav .nav-dropdown::after,
  .site-header .primary-nav .nav-dropdown__toggle::after {
    display: none !important;
  }

  .site-header .primary-nav > a:last-child {
    border-bottom: 0 !important;
  }
}

/* Local review tweak: add touch and hover feedback to mobile navigation rows. */
@media (max-width: 980px) {
  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown__toggle {
    position: relative !important;
    overflow: hidden !important;
    transition:
      background-color 160ms ease,
      color 160ms ease,
      letter-spacing 160ms ease,
      box-shadow 160ms ease,
      transform 100ms ease !important;
  }

  .site-header .primary-nav > a:hover,
  .site-header .primary-nav > a:focus-visible,
  .site-header .primary-nav .nav-dropdown__toggle:hover,
  .site-header .primary-nav .nav-dropdown__toggle:focus-visible {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    letter-spacing: 0.18em !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14) !important;
  }

  .site-header .primary-nav > a:active,
  .site-header .primary-nav .nav-dropdown__toggle:active {
    background: rgba(255, 255, 255, 0.16) !important;
    transform: scale(0.985) !important;
  }
}

/* Local review tweak: make the mobile hamburger button more compact. */
@media (max-width: 980px) {
  body .site-header .header-main,
  body .site-header--solid .header-main,
  .catalog-page .site-header .header-main,
  .product-detail-page .site-header .header-main,
  .contact-page .site-header .header-main,
  .blog-page .site-header .header-main,
  .about-page .site-header .header-main {
    min-height: 60px !important;
  }

  body .site-header .primary-nav,
  body .site-header--solid .primary-nav,
  .catalog-page .site-header .primary-nav,
  .product-detail-page .site-header .primary-nav,
  .contact-page .site-header .primary-nav,
  .blog-page .site-header .primary-nav,
  .about-page .site-header .primary-nav {
    top: 60px !important;
  }

  .site-header .menu-toggle,
  .site-header--solid .menu-toggle,
  .catalog-page .site-header .menu-toggle,
  .product-detail-page .site-header .menu-toggle,
  .contact-page .site-header .menu-toggle,
  .blog-page .site-header .menu-toggle,
  .about-page .site-header .menu-toggle {
    width: 34px !important;
    height: 34px !important;
  }

  .site-header .menu-toggle span:not(.sr-only),
  .site-header--solid .menu-toggle span:not(.sr-only),
  .catalog-page .site-header .menu-toggle span:not(.sr-only),
  .product-detail-page .site-header .menu-toggle span:not(.sr-only),
  .contact-page .site-header .menu-toggle span:not(.sr-only),
  .blog-page .site-header .menu-toggle span:not(.sr-only),
  .about-page .site-header .menu-toggle span:not(.sr-only) {
    width: 16px !important;
    height: 2px !important;
    margin: 3px auto !important;
  }
}

/* Local review: B2B-oriented project guide page from the blog entry. */
.b2b-project-page {
  background: #f3f5f8;
  color: #08111f;
}

.b2b-project-page .b2b-guide-hero {
  background: #030303;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.42) 100%), url("../images/bw_clean_car_outline_banner.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.b2b-guide-hero__inner,
.b2b-guide-main__inner,
.b2b-guide-cta__inner {
  width: min(1190px, calc(100% - 64px));
  margin: 0 auto;
}

.b2b-guide-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 42px;
  align-items: end;
  min-height: 410px;
  padding: 74px 0 58px;
}

.b2b-guide-hero__copy p,
.b2b-process-card__copy p,
.b2b-guide-cta p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.b2b-guide-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.b2b-guide-hero__copy > span {
  display: block;
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.b2b-guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.b2b-guide-hero__actions a,
.b2b-guide-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #050505;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.b2b-guide-hero__actions a + a {
  color: #ffffff;
  background: transparent;
}

.b2b-guide-hero__panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
}

.b2b-guide-hero__panel strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
}

.b2b-guide-hero__panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-guide-hero__panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.b2b-guide-hero__panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  background: #ffffff;
  content: "";
}

.b2b-guide-main {
  padding: 46px 0 36px;
}

.b2b-guide-main__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.b2b-guide-aside,
.b2b-process-card,
.b2b-visual-grid article,
.b2b-decision-grid article,
.b2b-guide-cta__inner {
  border: 1px solid #dce2ea;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.b2b-guide-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.b2b-guide-aside h2,
.b2b-process-card__copy h2,
.b2b-guide-cta h2 {
  margin: 0;
  color: #050505;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.b2b-guide-aside h2::after,
.b2b-process-card__copy h2::after,
.b2b-visual-grid h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 16px;
  background: #050505;
  content: "";
}

.b2b-guide-aside > p {
  margin: 20px 0 24px;
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.b2b-guide-aside dl,
.b2b-guide-aside dd {
  margin: 0;
}

.b2b-guide-aside dl {
  display: grid;
  gap: 16px;
}

.b2b-guide-aside dl div {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.b2b-guide-aside dt {
  margin-bottom: 6px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.b2b-guide-aside dd {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.b2b-guide-content {
  display: grid;
  gap: 20px;
}

.b2b-process-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
}

.b2b-process-card__copy p {
  color: #64748b;
}

.b2b-process,
.b2b-visual-grid,
.b2b-decision-grid {
  display: grid;
  gap: 14px;
}

.b2b-process {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-process li {
  min-height: 142px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.b2b-process strong,
.b2b-decision-grid span {
  display: block;
  margin-bottom: 12px;
  color: #050505;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-process span,
.b2b-decision-grid p,
.b2b-visual-grid p {
  color: #475569;
  font-size: 14px;
  line-height: 1.58;
}

.b2b-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.b2b-visual-grid article {
  overflow: hidden;
}

.b2b-visual-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.b2b-visual-grid h3 {
  min-height: 66px;
  margin: 0;
  padding: 18px 18px 0;
  color: #050505;
  font-size: 17px;
  line-height: 1.2;
}

.b2b-visual-grid h3::after {
  width: 34px;
  height: 2px;
  margin-top: 12px;
}

.b2b-visual-grid p {
  margin: 0;
  padding: 0 18px 20px;
}

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

.b2b-decision-grid article {
  min-height: 210px;
  padding: 22px;
}

.b2b-decision-grid h3 {
  margin: 0 0 12px;
  color: #050505;
  font-size: 19px;
  line-height: 1.18;
}

.b2b-decision-grid p {
  margin: 0;
}

.b2b-guide-cta {
  padding: 0 0 48px;
}

.b2b-guide-cta__inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 32px;
}

.b2b-guide-cta p {
  margin-bottom: 10px;
  color: #64748b;
}

.b2b-guide-cta h2 {
  max-width: 700px;
  font-size: 26px;
  line-height: 1.18;
}

.b2b-guide-cta a {
  flex: 0 0 auto;
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

@media (max-width: 980px) {
  .b2b-guide-hero__inner,
  .b2b-guide-main__inner,
  .b2b-guide-cta__inner {
    width: min(100% - 32px, 760px);
  }

  .b2b-guide-hero__inner,
  .b2b-guide-main__inner,
  .b2b-process-card {
    grid-template-columns: 1fr;
  }

  .b2b-guide-hero__inner {
    min-height: auto;
    padding: 52px 0 34px;
  }

  .b2b-guide-aside {
    position: static;
  }

  .b2b-visual-grid,
  .b2b-decision-grid,
  .b2b-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2b-guide-cta__inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .b2b-guide-hero__copy h1 {
    font-size: 38px;
  }

  .b2b-guide-hero__copy > span {
    font-size: 15px;
  }

  .b2b-guide-hero__actions a,
  .b2b-guide-cta a {
    width: 100%;
  }

  .b2b-visual-grid,
  .b2b-decision-grid,
  .b2b-process {
    grid-template-columns: 1fr;
  }
}

/* Local review tweak: prevent contact directory text from overflowing cards. */
.contact-page .contact-directory__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
}

.contact-page .contact-info-card,
.contact-page .contact-info-list,
.contact-page .contact-social-block,
.contact-page .contact-map-card {
  min-width: 0 !important;
}

.contact-page .contact-info-card {
  grid-template-columns: 46px minmax(0, 1fr) !important;
}

.contact-page .contact-info-card h2 {
  max-width: 100% !important;
  font-size: 22px !important;
  line-height: 1.34 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.contact-page .contact-info-list {
  grid-template-columns: minmax(165px, 1fr) minmax(205px, 1.14fr) minmax(170px, 1fr) !important;
}

.contact-page .contact-info-list a,
.contact-page .contact-info-list div {
  min-width: 0 !important;
  min-height: 136px !important;
  padding: 18px 16px !important;
}

.contact-page .contact-info-list p,
.contact-page .contact-info-list a {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.contact-page .contact-info-list p {
  font-size: 13px !important;
  line-height: 1.38 !important;
}

.contact-page .contact-info-list a[href^="mailto"] p {
  font-size: 12.5px !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.contact-page .contact-info-list a[href^="mailto"] p strong {
  white-space: normal !important;
}

.contact-page .contact-info-list strong {
  font-size: 14px !important;
}

.contact-page .contact-info-list span {
  width: 40px !important;
  height: 40px !important;
  font-size: 18px !important;
}

.contact-page .contact-map-card__footer {
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr) !important;
}

.contact-page .contact-map-card__footer strong {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

@media (max-width: 1180px) {
  .contact-page .contact-directory__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .contact-page .contact-info-list {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-info-list a,
  .contact-page .contact-info-list div {
    grid-template-columns: 46px minmax(0, 1fr) !important;
    min-height: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dedede !important;
  }

  .contact-page .contact-info-list a:last-child,
  .contact-page .contact-info-list div:last-child {
    border-bottom: 0 !important;
  }

  .contact-page .contact-map-card__footer {
    grid-template-columns: 1fr !important;
  }
}

/* Local review final: keep contact details left and map right on desktop-width previews. */
@media (min-width: 981px) and (max-width: 1180px) {
  .contact-page .contact-directory {
    padding: 44px 0 52px !important;
  }

  .contact-page .contact-directory__grid {
    width: min(100% - 64px, 960px) !important;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .contact-page .contact-directory__info {
    gap: 14px !important;
  }

  .contact-page .contact-info-card {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 22px !important;
  }

  .contact-page .contact-info-card > span,
  .contact-page .contact-info-list span {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .contact-page .contact-info-card h2 {
    margin-top: 7px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
  }

  .contact-page .contact-info-list {
    grid-template-columns: 1fr !important;
  }

  .contact-page .contact-info-list a,
  .contact-page .contact-info-list div {
    grid-template-columns: 40px minmax(0, 1fr) !important;
    gap: 16px !important;
    min-height: 0 !important;
    padding: 16px 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dedede !important;
  }

  .contact-page .contact-info-list a:last-child,
  .contact-page .contact-info-list div:last-child {
    border-bottom: 0 !important;
  }

  .contact-page .contact-social-block {
    padding: 22px !important;
  }

  .contact-page .contact-social-block h2 {
    font-size: 20px !important;
  }

  .contact-page .contact-socials a {
    width: 44px !important;
    height: 44px !important;
  }

  .contact-page .contact-map-card {
    min-height: 100% !important;
  }

  .contact-page .contact-map-card__surface {
    min-height: 470px !important;
  }

  .contact-page .contact-map-card__label {
    right: 34px !important;
    bottom: 72px !important;
    max-width: 245px !important;
  }

  .contact-page .contact-map-card__label strong {
    font-size: 15px !important;
  }
}

/* Local review tweak: enlarge and raise the product factory copy block. */
.product-detail-page .product-factory .product-section-copy h2 {
  max-width: 340px !important;
  font-size: 46px !important;
  line-height: 1.02 !important;
}

.product-detail-page .product-factory .product-section-copy p {
  max-width: 340px !important;
  margin-top: 18px !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

.product-detail-page .product-factory__grid > .product-section-copy {
  transform: translateY(-150px) !important;
}

@media (max-width: 760px) {
  .product-detail-page .product-factory .product-section-copy h2 {
    max-width: 150px !important;
    font-size: 22px !important;
  }

  .product-detail-page .product-factory .product-section-copy p {
    max-width: 160px !important;
    margin-top: 9px !important;
    font-size: 10px !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    transform: translateY(-54px) !important;
  }
}

/* Local review tweak: reduce the product factory image block by about 20%. */
.product-detail-page .product-factory__grid {
  grid-template-columns: minmax(0, 1.32fr) repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.product-detail-page .product-factory__grid > .product-section-copy {
  padding-right: 0 !important;
  padding-left: 34px !important;
  transform: translateY(-120px) !important;
}

.product-detail-page .product-factory .product-section-copy h2 {
  max-width: 390px !important;
}

.product-detail-page .product-factory .product-section-copy p {
  max-width: 390px !important;
}

@media (max-width: 760px) {
  .product-detail-page .product-factory__grid {
    grid-template-columns: minmax(0, 0.9fr) repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .product-detail-page .product-factory .product-section-copy h2,
  .product-detail-page .product-factory .product-section-copy p {
    max-width: 170px !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    padding-left: 10px !important;
    transform: translateY(-42px) !important;
  }
}

/* Local review tweak: make inquiry sidebar copy smaller with intentional line breaks. */
.contact-page .contact-info-panel > p.contact-intro {
  max-width: 330px !important;
  font-size: 17px !important;
  line-height: 1.48 !important;
}

.contact-page .contact-intro span {
  display: block;
}

.contact-page .contact-intro span + span {
  margin-top: 10px;
}

.contact-page .contact-methods p,
.contact-page .contact-methods a {
  font-size: 16px !important;
  line-height: 1.42 !important;
}

.contact-page .contact-methods strong {
  font-size: 18px !important;
}

.contact-page .contact-methods p .contact-address-line {
  display: block;
  color: inherit;
  font-size: inherit !important;
  line-height: inherit !important;
}

.contact-page .contact-address {
  max-width: 285px;
}

@media (max-width: 760px) {
  .contact-page .contact-info-panel > p.contact-intro {
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .contact-page .contact-methods p,
  .contact-page .contact-methods a {
    font-size: 14px !important;
  }
}

/* Local review tweak: compact inquiry sidebar spacing and add social icons. */
.contact-page .contact-info-panel {
  padding-top: 58px !important;
  padding-bottom: 48px !important;
}

.contact-page .contact-rule {
  margin: 24px 0 !important;
}

.contact-page .contact-methods {
  gap: 18px !important;
  margin-top: 28px !important;
}

.contact-page .contact-methods div {
  gap: 16px !important;
}

.contact-page .privacy-note {
  margin-top: 24px !important;
}

.contact-page .inquiry-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-left: 54px;
}

.contact-page .inquiry-socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d5d5;
  color: #050505;
  background: #ffffff;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.contact-page .inquiry-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .inquiry-socials a:hover,
.contact-page .inquiry-socials a:focus-visible {
  border-color: #050505;
  color: #ffffff;
  background: #050505;
}

.contact-page .inquiry-response-note {
  max-width: 285px;
  margin-top: 20px;
  padding: 20px 20px;
  border: 1px solid #d9dfe7;
  background: #f7faff;
}

.contact-page .inquiry-response-note p {
  margin: 0;
  color: #0c2038;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.45;
}

/* Local review tweak: align inquiry contact icons to a consistent visual grid. */
.contact-page .contact-methods div {
  grid-template-columns: 40px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 18px !important;
}

.contact-page .contact-methods p {
  margin: 0 !important;
  padding-top: 1px !important;
}

.contact-page .contact-method-icon {
  display: inline-flex !important;
  width: 36px !important;
  height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #050505 !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.contact-page .contact-method-icon svg {
  display: block;
  width: 22px !important;
  height: 22px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Local review tweak: make the About history carousel transition smoother. */
.about-page .about-story__stats article {
  grid-template-rows: 26px minmax(34px, auto) minmax(26px, auto) !important;
  row-gap: 5px !important;
  min-height: 104px !important;
  padding: 12px 8px 11px !important;
}

.about-page .about-story__stats span {
  display: inline-flex !important;
  width: 26px !important;
  height: 26px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 0 !important;
}

.about-page .about-story__stats span svg {
  display: block;
  width: 22px !important;
  height: 22px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page .about-story__stats strong {
  display: flex !important;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.about-page .about-story__stats em {
  display: block !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 10px !important;
  line-height: 1.28 !important;
}

@media (max-width: 640px) {
  .about-page .about-story__stats article {
    grid-template-rows: 14px minmax(17px, auto) minmax(12px, auto) !important;
    min-height: 52px !important;
    row-gap: 2px !important;
    padding: 5px 3px !important;
  }

  .about-page .about-story__stats span {
    width: 14px !important;
    height: 14px !important;
  }

  .about-page .about-story__stats span svg {
    width: 12px !important;
    height: 12px !important;
    stroke-width: 2.3;
  }

  .about-page .about-story__stats strong {
    min-height: 17px;
    font-size: 8px !important;
    line-height: 1.05 !important;
  }

  .about-page .about-story__stats em {
    font-size: 4.8px !important;
    line-height: 1.12 !important;
  }
}

/* Local review tweak: make the About history carousel transition smoother. */
.about-page .about-history__card {
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease,
    box-shadow 260ms ease !important;
}

.about-page .about-history__card.is-sliding-forward {
  animation: history-slide-forward 520ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.about-page .about-history__card.is-sliding-back {
  animation: history-slide-back 520ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.about-page .about-history__media img,
.about-page .about-history__preview img,
.about-page .about-history__copy {
  will-change: opacity, transform;
}

.about-page .about-history__timeline button {
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-page .about-history__timeline button:hover,
.about-page .about-history__timeline button:focus-visible {
  transform: translateY(-2px);
}

@keyframes history-slide-forward {
  0% {
    opacity: 0;
    transform: translateX(18px);
    filter: blur(2px);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes history-slide-back {
  0% {
    opacity: 0;
    transform: translateX(-18px);
    filter: blur(2px);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@media (max-width: 760px) {
  .contact-page .contact-info-panel {
    padding-top: 34px !important;
    padding-bottom: 28px !important;
  }

  .contact-page .inquiry-socials {
    padding-left: 0;
  }

  .contact-page .inquiry-response-note {
    max-width: none;
  }
}

/* Local review tweak: make inquiry social links larger and lower. */
.contact-page .inquiry-socials {
  max-width: 285px;
  justify-content: center;
  gap: 14px !important;
  margin-top: 34px !important;
  padding-left: 0 !important;
}

.contact-page .inquiry-socials a {
  width: 58px !important;
  height: 58px !important;
}

.contact-page .inquiry-socials svg {
  width: 27px !important;
  height: 27px !important;
}

@media (max-width: 760px) {
  .contact-page .inquiry-socials {
    justify-content: flex-start;
  }

  .contact-page .inquiry-socials a {
    width: 48px !important;
    height: 48px !important;
  }

  .contact-page .inquiry-socials svg {
    width: 22px !important;
    height: 22px !important;
  }
}

/* Local review tweak: improve mobile factory copy typography and position. */
@media (max-width: 760px) {
  .product-detail-page .product-factory__grid {
    grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 1fr)) !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    padding-left: 14px !important;
    transform: translateY(-62px) !important;
  }

  .product-detail-page .product-factory .product-section-copy h2 {
    max-width: 198px !important;
    font-size: 24px !important;
    line-height: 1.04 !important;
  }

  .product-detail-page .product-factory .product-section-copy p {
    max-width: 198px !important;
    margin-top: 9px !important;
    font-size: 11px !important;
    line-height: 1.36 !important;
  }
}

/* Local review tweak: keep the About capability inquiry button compact on mobile. */
@media (max-width: 640px) {
  .about-page .about-capability__copy a {
    width: auto !important;
    min-width: 128px !important;
    max-width: 150px !important;
    min-height: 30px !important;
    margin-top: 14px !important;
    padding: 0 12px !important;
    gap: 16px !important;
    font-size: 8.6px !important;
    line-height: 1 !important;
  }

  .about-page .about-capability__copy a span {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
  }
}

/* Local review tweak: make homepage stats icons visually heavier and consistent. */
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon {
  filter:
    drop-shadow(0.45px 0 0 #ffffff)
    drop-shadow(-0.45px 0 0 #ffffff)
    drop-shadow(0 0.45px 0 #ffffff)
    drop-shadow(0 -0.45px 0 #ffffff) !important;
}

body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:first-child .stat-icon,
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:last-child .stat-icon {
  width: 38px !important;
  height: 38px !important;
  margin-bottom: 5px !important;
}

/* Local review tweak: slightly enlarge and open up factory image labels. */
.factory-capability .factory-card h3 {
  padding-top: 12px !important;
  font-size: 11px !important;
  line-height: 1.12 !important;
  letter-spacing: 0.055em !important;
}

@media (max-width: 760px) {
  .factory-capability .factory-card h3 {
    padding-top: 7px !important;
    font-size: 9.8px !important;
    letter-spacing: 0.035em !important;
  }
}

/* Desktop review pass: give the homepage a fuller, more finished desktop rhythm. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .header-main,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    width: min(100% - 96px, 1180px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .primary-nav {
    gap: 26px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .primary-nav a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .nav-dropdown__toggle {
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    min-height: 660px !important;
    padding-top: 138px !important;
    padding-bottom: 112px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy {
    max-width: 590px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo {
    font-size: 56px !important;
    font-style: normal !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    font-style: normal !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1 {
    margin-top: 8px !important;
    font-size: 40px !important;
    line-height: 1.1 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2 {
    margin-top: 10px !important;
    font-size: 27px !important;
    line-height: 1.2 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    max-width: 520px !important;
    margin-top: 20px !important;
    margin-bottom: 26px !important;
    font-size: 20px !important;
    line-height: 1.45 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions {
    display: flex !important;
    gap: 14px !important;
    align-items: center !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions .button {
    min-width: 136px !important;
    min-height: 40px !important;
    font-size: 12px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar {
    margin-top: -118px !important;
    padding-bottom: 22px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 96px, 980px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
    font-size: 15px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
    margin-top: 3px !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .why-choose .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-features .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-capability .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-section .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .certificates-section .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .team-exhibition .container {
    width: min(100% - 96px, 1120px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories {
    padding-top: 58px !important;
    padding-bottom: 74px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .section-title {
    margin-bottom: 32px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .section-title h2 {
    font-size: 20px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-grid {
    gap: 24px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-card,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-card--wide {
    min-height: 310px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-card__body {
    min-height: 50px !important;
    padding: 14px 16px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-card__body h3 {
    font-size: 16px !important;
    line-height: 1.12 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .why-choose {
    padding-top: 50px !important;
    padding-bottom: 44px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .advantage-grid {
    gap: 22px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .advantage-item .icon {
    height: 36px !important;
    font-size: 29px !important;
    line-height: 36px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .advantage-item h3 {
    margin-top: 12px !important;
    font-size: 10px !important;
    line-height: 1.22 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-features {
    padding-top: 46px !important;
    padding-bottom: 58px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .feature-card .image-slot {
    min-height: 170px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .feature-card h3 {
    padding-top: 14px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-capability {
    padding-top: 56px !important;
    padding-bottom: 64px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-grid {
    gap: 32px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card .image-slot,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card--large .image-slot {
    min-height: 190px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-section {
    padding-top: 48px !important;
    padding-bottom: 54px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 28px 36px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-step {
    min-height: 112px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-step .icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 36px !important;
    line-height: 44px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-step h3 {
    margin-top: 12px !important;
    font-size: 12px !important;
    line-height: 1.24 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile {
    padding-top: 56px !important;
    padding-bottom: 68px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-grid {
    gap: 50px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video {
    min-height: 300px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy h2 {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy p:not(.eyebrow) {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .certificates-section {
    padding-top: 48px !important;
    padding-bottom: 62px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .certificate-card .image-slot {
    min-height: 210px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .certificate-card h3 {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .team-panel .image-slot {
    min-height: 250px !important;
  }
}

/* Desktop review fix: prevent the homepage profile video from colliding with copy. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile .profile-grid {
    display: grid !important;
    max-width: none !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr) !important;
    gap: 58px !important;
    align-items: center !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video video,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy {
    min-width: 0 !important;
  }
}

/* Local review final: match homepage nav and product dropdown to inner pages. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .header-main {
    width: min(100% - 240px, 1420px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .primary-nav {
    gap: 22px !important;
    transform: translateX(48px) !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .primary-nav > a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .nav-dropdown__toggle {
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .products-menu a {
    font-size: 18px !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: keep factory images and labels fully contained. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-capability {
    padding-bottom: 86px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-grid {
    row-gap: 34px !important;
    align-items: start !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card {
    display: grid !important;
    grid-template-rows: auto minmax(34px, auto) !important;
    overflow: visible !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card .image-slot,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card--large .image-slot {
    aspect-ratio: 2 / 1 !important;
    min-height: 0 !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-card h3 {
    min-height: 34px !important;
    padding: 12px 0 8px !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: give the desktop hero heading a sportier italic tone. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2 {
    font-style: italic !important;
  }
}

/* Local review final: make the desktop hero frame scale from the 1600 x 750 design size. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
    width: 100% !important;
    max-width: none !important;
    height: clamp(600px, 46.875vw, 750px) !important;
    min-height: clamp(600px, 46.875vw, 750px) !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    height: clamp(600px, 46.875vw, 750px) !important;
    min-height: clamp(600px, 46.875vw, 750px) !important;
    padding-top: clamp(112px, 8.125vw, 130px) !important;
    padding-bottom: clamp(86px, 6.25vw, 100px) !important;
  }
}

/* Local review final: enlarge the desktop hero copy group by about 30%. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy {
    max-width: 595px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo {
    font-size: 62px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1 {
    font-size: 44px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2 {
    font-size: 30px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    max-width: 560px !important;
    font-size: 22px !important;
    line-height: 1.42 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions {
    gap: 15px !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions .button {
    min-width: 150px !important;
    min-height: 44px !important;
    font-size: 13px !important;
  }
}

/* Local review final: align the wide desktop homepage logo with the hero title. */
@media (min-width: 1420px) and (max-width: 1659px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .brand {
    transform: translateX(calc((100vw - 1420px) / 2)) !important;
  }
}

@media (min-width: 1660px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .brand {
    transform: translateX(120px) !important;
  }
}

/* Local review final: raise the homepage hero copy slightly and keep text starts aligned. */
@media (min-width: 981px) {
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy {
    transform: translateY(-30px) !important;
    text-align: left !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    padding-left: 0 !important;
    text-align: left !important;
    text-indent: 0 !important;
  }

  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions {
    justify-content: flex-start !important;
    padding-left: 0 !important;
  }
}

/* Local review final: sync product/catalog headers and dropdowns with the other inner pages. */
@media (min-width: 981px) {
  body.catalog-page .site-header.site-header--solid .header-main,
  body.product-detail-page .site-header.site-header--solid .header-main,
  body.contact-page .site-header.site-header--solid .header-main,
  body.blog-page .site-header.site-header--solid .header-main,
  body.about-page .site-header.site-header--solid .header-main {
    width: min(100% - 240px, 1420px) !important;
    min-height: 74px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 32px !important;
  }

  body.catalog-page .site-header.site-header--solid .brand,
  body.product-detail-page .site-header.site-header--solid .brand,
  body.contact-page .site-header.site-header--solid .brand,
  body.blog-page .site-header.site-header--solid .brand,
  body.about-page .site-header.site-header--solid .brand {
    transform: none !important;
  }

  body.catalog-page .site-header.site-header--solid .brand__logo,
  body.product-detail-page .site-header.site-header--solid .brand__logo,
  body.contact-page .site-header.site-header--solid .brand__logo,
  body.blog-page .site-header.site-header--solid .brand__logo,
  body.about-page .site-header.site-header--solid .brand__logo {
    width: 150px !important;
    max-height: none !important;
  }

  body.catalog-page .site-header.site-header--solid .primary-nav,
  body.product-detail-page .site-header.site-header--solid .primary-nav,
  body.contact-page .site-header.site-header--solid .primary-nav,
  body.blog-page .site-header.site-header--solid .primary-nav,
  body.about-page .site-header.site-header--solid .primary-nav {
    justify-content: center !important;
    gap: 22px !important;
    transform: translateX(48px) !important;
  }

  body.catalog-page .site-header.site-header--solid .primary-nav > a,
  body.catalog-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.product-detail-page .site-header.site-header--solid .primary-nav > a,
  body.product-detail-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.contact-page .site-header.site-header--solid .primary-nav > a,
  body.contact-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.blog-page .site-header.site-header--solid .primary-nav > a,
  body.blog-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.about-page .site-header.site-header--solid .primary-nav > a,
  body.about-page .site-header.site-header--solid .nav-dropdown__toggle {
    font-size: 11px !important;
    font-style: italic !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    line-height: 1 !important;
  }

  body.catalog-page .site-header.site-header--solid .site-search,
  body.product-detail-page .site-header.site-header--solid .site-search,
  body.contact-page .site-header.site-header--solid .site-search,
  body.blog-page .site-header.site-header--solid .site-search,
  body.about-page .site-header.site-header--solid .site-search {
    justify-self: end !important;
    width: 165px !important;
    height: 32px !important;
    grid-template-columns: 1fr 28px !important;
    transform: translateX(90px) !important;
  }

  body.catalog-page .site-header.site-header--solid .products-menu,
  body.product-detail-page .site-header.site-header--solid .products-menu,
  body.contact-page .site-header.site-header--solid .products-menu,
  body.blog-page .site-header.site-header--solid .products-menu,
  body.about-page .site-header.site-header--solid .products-menu {
    top: 42px !important;
    left: -20px !important;
    width: 280px !important;
    padding: 20px 24px 22px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    background: rgba(0, 0, 0, 0.58) !important;
    box-shadow: none !important;
    transform: translateY(8px) !important;
    backdrop-filter: blur(12px) saturate(0.9) !important;
  }

  body.catalog-page .site-header.site-header--solid .nav-dropdown.is-open .products-menu,
  body.catalog-page .site-header.site-header--solid .nav-dropdown:focus-within .products-menu,
  body.catalog-page .site-header.site-header--solid .nav-dropdown:hover .products-menu,
  body.product-detail-page .site-header.site-header--solid .nav-dropdown.is-open .products-menu,
  body.product-detail-page .site-header.site-header--solid .nav-dropdown:focus-within .products-menu,
  body.product-detail-page .site-header.site-header--solid .nav-dropdown:hover .products-menu,
  body.contact-page .site-header.site-header--solid .nav-dropdown.is-open .products-menu,
  body.contact-page .site-header.site-header--solid .nav-dropdown:focus-within .products-menu,
  body.contact-page .site-header.site-header--solid .nav-dropdown:hover .products-menu,
  body.blog-page .site-header.site-header--solid .nav-dropdown.is-open .products-menu,
  body.blog-page .site-header.site-header--solid .nav-dropdown:focus-within .products-menu,
  body.blog-page .site-header.site-header--solid .nav-dropdown:hover .products-menu,
  body.about-page .site-header.site-header--solid .nav-dropdown.is-open .products-menu,
  body.about-page .site-header.site-header--solid .nav-dropdown:focus-within .products-menu,
  body.about-page .site-header.site-header--solid .nav-dropdown:hover .products-menu {
    transform: translateY(0) !important;
  }

  body.catalog-page .site-header.site-header--solid .products-menu a,
  body.product-detail-page .site-header.site-header--solid .products-menu a,
  body.contact-page .site-header.site-header--solid .products-menu a,
  body.blog-page .site-header.site-header--solid .products-menu a,
  body.about-page .site-header.site-header--solid .products-menu a {
    padding: 7px 0 !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: force product detail to follow the same inner-page header rhythm. */
@media (min-width: 981px) {
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .header-main.container {
    width: min(100% - 240px, 1420px) !important;
    min-height: 74px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 32px !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .header-main .brand.brand {
    transform: none !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav {
    justify-content: center !important;
    gap: 22px !important;
    transform: translateX(48px) !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .site-search {
    justify-self: end !important;
    width: 165px !important;
    height: 32px !important;
    grid-template-columns: 1fr 28px !important;
    transform: translateX(90px) !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .products-menu {
    top: 42px !important;
    left: -20px !important;
    width: 280px !important;
    padding: 20px 24px 22px 20px !important;
    transform: translateY(8px) !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .nav-dropdown.is-open .products-menu,
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .nav-dropdown:focus-within .products-menu,
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .nav-dropdown:hover .products-menu {
    transform: translateY(0) !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .products-menu a {
    padding: 7px 0 !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: center catalog product images inside their card frames. */
.catalog-page .catalog-card__image {
  display: grid !important;
  place-items: center !important;
  justify-items: center !important;
  align-items: center !important;
}

.catalog-page .catalog-card__image img,
.catalog-page .catalog-card__image .woocommerce-placeholder {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform-origin: center center !important;
}

/* Local review final: give the homepage profile block a clean mobile rhythm. */
@media (max-width: 760px) {
  body.home-page .company-profile,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile {
    padding-top: 42px !important;
    padding-bottom: 56px !important;
    overflow: hidden !important;
  }

  body.home-page .company-profile .profile-grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile .profile-grid {
    display: grid !important;
    width: min(100% - 52px, 322px) !important;
    max-width: 322px !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    margin-inline: auto !important;
    text-align: left !important;
  }

  body.home-page .profile-video,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video {
    width: min(100%, 318px) !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    margin-inline: auto !important;
    overflow: hidden !important;
  }

  body.home-page .profile-video video,
  body.home-page .profile-video img,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video video,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-video img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body.home-page .profile-copy,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy {
    width: min(100%, 318px) !important;
    max-width: 318px !important;
    margin-inline: auto !important;
    text-align: left !important;
  }

  body.home-page .profile-copy h2,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy h2 {
    margin: 0 0 11px !important;
    font-size: 29px !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  body.home-page .profile-copy p:not(.eyebrow),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy p:not(.eyebrow) {
    max-width: 100% !important;
    margin: 0 0 11px !important;
    color: #1b2d42 !important;
    font-size: 13.2px !important;
    font-weight: 500 !important;
    line-height: 1.48 !important;
    text-align: left !important;
    text-wrap: pretty !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  body.home-page .profile-copy .button,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .profile-copy .button {
    min-height: 38px !important;
    margin-top: 2px !important;
    padding: 0 18px !important;
    font-size: 10.5px !important;
  }
}

/* Local review final: stack the homepage footer on mobile instead of squeezing columns. */
@media (max-width: 760px) {
  body.home-page .site-footer,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer {
    padding: 34px 0 24px !important;
  }

  body.home-page .site-footer .container,
  body.home-page .site-footer .footer-bottom,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom {
    width: min(100% - 36px, 340px) !important;
    max-width: 340px !important;
  }

  body.home-page .site-footer .footer-grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
  }

  body.home-page .site-footer .footer-grid > div,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid > div {
    width: 100% !important;
    max-width: none !important;
    grid-column: 1 !important;
    justify-self: stretch !important;
    transform: none !important;
  }

  body.home-page .site-footer .footer-grid h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid h3 {
    margin-bottom: 12px !important;
    font-size: 22px !important;
    line-height: 1.12 !important;
  }

  body.home-page .site-footer .footer-products,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px 18px !important;
  }

  body.home-page .site-footer .footer-products h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products h3 {
    grid-column: 1 / -1 !important;
  }

  body.home-page .site-footer .footer-products a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a {
    min-width: 0 !important;
    padding-left: 16px !important;
    color: #dbe8f6 !important;
    font-size: 12.5px !important;
    line-height: 1.28 !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .site-footer .footer-products a::before,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a::before {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  body.home-page .site-footer .footer-products a:nth-of-type(2),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a:nth-of-type(2) {
    margin: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  body.home-page .site-footer .footer-inquiry,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry {
    padding: 18px 18px 20px !important;
    border-radius: 8px !important;
  }

  body.home-page .site-footer .footer-inquiry__title,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title {
    gap: 8px !important;
    margin-bottom: 12px !important;
    justify-content: center !important;
  }

  body.home-page .site-footer .footer-inquiry__title::before,
  body.home-page .site-footer .footer-inquiry__title::after,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title::before,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title::after {
    min-width: 44px !important;
  }

  body.home-page .site-footer .footer-inquiry__title span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title span {
    width: 20px !important;
    height: 20px !important;
  }

  body.home-page .site-footer .footer-inquiry__title h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title h3 {
    min-width: 0 !important;
    white-space: nowrap !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
  }

  body.home-page .site-footer .footer-inquiry > p:not(.footer-success),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry > p:not(.footer-success) {
    max-width: none !important;
    margin-bottom: 14px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  body.home-page .site-footer .footer-form,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.home-page .site-footer .footer-form label,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form label {
    gap: 5px !important;
    font-size: 11px !important;
  }

  body.home-page .site-footer .footer-form input,
  body.home-page .site-footer .footer-form textarea,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form input,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form textarea {
    min-height: 36px !important;
    padding: 9px 10px !important;
    font-size: 12px !important;
  }

  body.home-page .site-footer .footer-form textarea,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form textarea {
    min-height: 88px !important;
  }

  body.home-page .site-footer .footer-form button,
  body.home-page .site-footer .footer-form a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form button,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form a {
    min-height: 40px !important;
    font-size: 13px !important;
  }

  body.home-page .site-footer .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact {
    display: grid !important;
    gap: 12px !important;
  }

  body.home-page .site-footer .footer-contact p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    gap: 9px !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
    overflow: hidden !important;
  }

  body.home-page .site-footer .footer-contact p img,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p img {
    width: 16px !important;
    height: 16px !important;
  }

  body.home-page .site-footer .footer-contact__text,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact__text {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .site-footer .footer-contact h3:nth-of-type(2),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact h3:nth-of-type(2) {
    margin-top: 12px !important;
  }

  body.home-page .site-footer .footer-socials,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials {
    gap: 12px !important;
  }

  body.home-page .site-footer .footer-socials a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials a {
    width: 34px !important;
    height: 34px !important;
  }

  body.home-page .site-footer .footer-socials svg,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials svg {
    width: 18px !important;
    height: 18px !important;
  }

  body.home-page .site-footer .footer-bottom,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom {
    margin-top: 24px !important;
    padding-top: 14px !important;
    gap: 8px !important;
  }

  body.home-page .site-footer .footer-bottom nav,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom nav {
    gap: 8px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  body.home-page .site-footer .footer-bottom a,
  body.home-page .site-footer .footer-bottom span,
  body.home-page .site-footer .footer-bottom p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom p {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
}

/* Local review final: remove the mobile white seam between hero stats and categories. */
@media (max-width: 760px) {
  body.home-page .stats-bar,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar {
    margin-top: -55px !important;
    margin-bottom: -1px !important;
    background: linear-gradient(
      180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.8) 52%,
      #050505 100%
    ) !important;
  }

  body.home-page .product-categories,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories {
    margin-top: 0 !important;
    box-shadow: none !important;
  }
}

/* Local review final: keep the mobile hero stats fully inside the screen. */
@media (max-width: 760px) {
  body.home-page .stats-bar__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 24px, 620px) !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    column-gap: 4px !important;
  }

  body.home-page .stat-item,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item {
    min-width: 0 !important;
    min-height: 68px !important;
    padding: 0 3px 8px !important;
  }

  body.home-page .stat-icon,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 4px !important;
  }

  body.home-page .stat-item strong,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
    white-space: nowrap !important;
    font-size: 9.8px !important;
    line-height: 1.05 !important;
  }

  body.home-page .stat-item:last-child strong,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:last-child strong {
    font-size: 8.8px !important;
  }

  body.home-page .stat-item span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
    margin-top: 1px !important;
    font-size: 5.8px !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: align every mobile hero stat to the same rows. */
@media (max-width: 760px) {
  body.home-page .stats-bar__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    align-items: end !important;
  }

  body.home-page .stat-item,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item {
    display: grid !important;
    grid-template-rows: 22px 11px 14px !important;
    row-gap: 3px !important;
    align-content: start !important;
    justify-items: center !important;
    min-height: 56px !important;
    padding: 0 3px 6px !important;
    text-align: center !important;
  }

  body.home-page .stat-icon,
  body.home-page .stat-item:first-child .stat-icon,
  body.home-page .stat-item:last-child .stat-icon,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:first-child .stat-icon,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:last-child .stat-icon {
    display: block !important;
    grid-row: 1 !important;
    align-self: center !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  body.home-page .stat-item strong,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
    display: block !important;
    grid-row: 2 !important;
    align-self: center !important;
    width: 100% !important;
    height: 11px !important;
    margin: 0 !important;
    font-size: 9.5px !important;
    line-height: 11px !important;
  }

  body.home-page .stat-item:last-child strong,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item:last-child strong {
    font-size: 8.6px !important;
  }

  body.home-page .stat-item span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
    display: block !important;
    grid-row: 3 !important;
    align-self: start !important;
    width: 100% !important;
    min-height: 14px !important;
    margin: 0 !important;
    font-size: 5.8px !important;
    line-height: 7px !important;
  }
}

/* Local review final: place blog topics horizontally above articles on mobile. */
@media (max-width: 760px) {
  .blog-page .blog-shell {
    padding-top: 24px !important;
  }

  .blog-page .blog-shell__inner {
    width: min(100% - 24px, 1780px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .blog-page .blog-sidebar {
    position: static !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    order: 1 !important;
    width: 100% !important;
    padding: 14px 14px 16px !important;
    border: 1px solid #dedede !important;
    background: #ffffff !important;
  }

  .blog-page .blog-sidebar h2 {
    flex: 0 0 100% !important;
    margin: 0 0 2px !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
  }

  .blog-page .blog-sidebar > a {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 999px !important;
    color: #111111 !important;
    background: #f7f7f7 !important;
    font-size: 9.6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .blog-page .blog-inquiry-box {
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px 10px !important;
    align-items: center !important;
    margin-top: 6px !important;
    padding: 12px 12px !important;
    border: 0 !important;
    background: #071a2d !important;
  }

  .blog-page .blog-inquiry-box h3 {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  .blog-page .blog-inquiry-box p {
    grid-column: 1 !important;
    margin: 0 !important;
    font-size: 8.8px !important;
    line-height: 1.32 !important;
  }

  .blog-page .blog-inquiry-box a {
    grid-row: 1 / span 2 !important;
    grid-column: 2 !important;
    min-height: 30px !important;
    padding: 0 11px !important;
    font-size: 8.4px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .blog-page .blog-list {
    order: 2 !important;
    width: 100% !important;
  }
}

/* Local review final: restore blog article image proportions on mobile. */
@media (max-width: 760px) {
  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .blog-page .blog-card__media,
  .blog-page .blog-card--featured .blog-card__media {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .blog-page .blog-card__body {
    padding: 16px 16px 18px !important;
  }
}

/* Local review final: reduce the mobile About story height and compact the value strip. */
@media (max-width: 760px) {
  .about-page .about-story__hero {
    grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr) !important;
    min-height: 220px !important;
    max-height: 220px !important;
    overflow: hidden !important;
  }

  .about-page .about-story__copy {
    height: 220px !important;
    max-height: 220px !important;
    overflow: hidden !important;
    padding: 13px 10px 8px 18px !important;
  }

  .about-page .about-story__copy::before {
    inset: 0 -34px 0 0 !important;
    clip-path: polygon(0 0, 100% 0, calc(100% - 36px) 100%, 0 100%) !important;
  }

  .about-page .about-story__ghost {
    top: 5px !important;
    left: 18px !important;
    font-size: 42px !important;
  }

  .about-page .about-story h1 {
    font-size: 20px !important;
    line-height: 1 !important;
  }

  .about-page .about-story__rule {
    width: 86px !important;
    margin-top: 5px !important;
  }

  .about-page .about-story__kicker {
    margin: 5px 0 6px !important;
    font-size: 6.6px !important;
    letter-spacing: 0.14em !important;
  }

  .about-page .about-story__text {
    max-width: none !important;
    max-height: 142px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 3px !important;
    font-size: 4.85px !important;
    line-height: 1.2 !important;
    scrollbar-width: none !important;
  }

  .about-page .about-story__text::-webkit-scrollbar {
    display: none !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 2.4px !important;
  }

  .about-page .about-story__text p:nth-child(n + 3) {
    display: block !important;
  }

  .about-page .about-story__text strong {
    font-size: 5.5px !important;
  }

  .about-page .about-story__visual {
    min-height: 220px !important;
    max-height: 220px !important;
    margin-left: -26px !important;
    overflow: hidden !important;
  }

  .about-page .about-story__building {
    background-position: center center !important;
  }

  .about-page .about-story__stats {
    right: 5px !important;
    bottom: 3px !important;
    left: 24px !important;
    height: 56px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    border-radius: 3px !important;
  }

  .about-page .about-story__stats article {
    min-height: 0 !important;
    height: 56px !important;
    grid-template-rows: 12px 11px minmax(0, 1fr) !important;
    justify-items: center !important;
    align-content: center !important;
    padding: 5px 1px 4px !important;
    align-content: center !important;
    gap: 1px !important;
  }

  .about-page .about-story__stats span {
    display: inline-flex !important;
    width: 13px !important;
    height: 13px !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .about-page .about-story__stats span svg {
    width: 10px !important;
    height: 10px !important;
    stroke-width: 2.35 !important;
  }

  .about-page .about-story__stats strong {
    display: flex !important;
    min-height: 0 !important;
    max-width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    font-size: 5.8px !important;
    line-height: 1.05 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .about-page .about-story__stats em {
    display: block !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 3.45px !important;
    line-height: 1.12 !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .about-page .about-story__values {
    height: 72px !important;
    min-height: 72px !important;
    overflow: hidden !important;
    grid-template-columns: 1.18fr repeat(4, minmax(0, 1fr)) !important;
    padding: 7px 18px !important;
  }

  .about-page .about-story__quote {
    min-height: 42px !important;
    grid-template-columns: 13px minmax(0, 1fr) !important;
    gap: 4px !important;
    padding: 4px 7px 4px 0 !important;
  }

  .about-page .about-story__quote::before {
    inset: 4px 5px 4px 2px !important;
  }

  .about-page .about-story__quote > span {
    font-size: 18px !important;
  }

  .about-page .about-story__values article {
    min-height: 42px !important;
    gap: 3px !important;
    padding: 4px 7px !important;
  }

  .about-page .about-story__values article span {
    font-size: 12px !important;
  }

  .about-page .about-story__quote strong,
  .about-page .about-story__values article strong {
    font-size: 6.8px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-story__quote p,
  .about-page .about-story__values article p {
    margin-top: 2px !important;
    font-size: 4.7px !important;
    line-height: 1.18 !important;
  }
}

/* Local review final: keep the mobile history card on a fixed scaled ratio. */
@media (max-width: 760px) {
  .about-page .about-history__stage {
    grid-template-columns: 22px minmax(0, 1fr) 22px !important;
    gap: 7px !important;
    align-items: center !important;
  }

  .about-page .about-history__arrow {
    width: 22px !important;
    min-width: 22px !important;
    height: 40px !important;
    font-size: 17px !important;
  }

  .about-page .about-history__card {
    aspect-ratio: 2.34 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.78fr) minmax(0, 0.5fr) !important;
    overflow: hidden !important;
  }

  .about-page .about-image-placeholder--history,
  .about-page .about-history__media,
  .about-page .about-history__preview {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  .about-page .about-history__copy {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 8px 11px !important;
  }

  .about-page .about-history__copy p {
    font-size: 9px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 4px !important;
    font-size: 12px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-history__copy span {
    width: 18px !important;
    margin: 5px 0 !important;
  }

  .about-page .about-history__copy strong {
    max-height: 50px !important;
    overflow: hidden !important;
    font-size: 6.4px !important;
    line-height: 1.24 !important;
  }

  .about-page .about-history__timeline {
    --history-progress-width: 0px;
    position: relative !important;
  }

  .about-page .about-history__timeline::after {
    position: absolute;
    top: 30px;
    left: 8px;
    z-index: 0;
    display: block;
    width: var(--history-progress-width, 0px);
    height: 2px;
    background: #111111;
    content: "";
    pointer-events: none;
  }

  .about-page .about-history__timeline button {
    z-index: 1;
  }
}

/* Local review final: enlarge About capability cards and tighten mobile copy. */
@media (max-width: 760px) {
  .about-page .about-capability {
    padding: 30px 0 16px !important;
  }

  .about-page .about-extra-showcase {
    padding-top: 0 !important;
  }

  .about-page .about-capability__grid {
    width: min(100% - 24px, 1180px) !important;
    grid-template-columns: minmax(0, 0.31fr) minmax(0, 0.69fr) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .about-page .about-capability__copy {
    padding-top: 8px !important;
  }

  .about-page .about-capability__copy p {
    font-size: 7.5px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.14em !important;
  }

  .about-page .about-capability__copy h2 {
    margin-top: 7px !important;
    font-size: 14.2px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-capability__copy > span {
    margin-top: 9px !important;
    font-size: 7px !important;
    line-height: 1.32 !important;
  }

  .about-page .about-capability__copy a {
    min-width: 112px !important;
    max-width: 128px !important;
    min-height: 26px !important;
    margin-top: 12px !important;
    padding: 0 10px !important;
    gap: 12px !important;
    font-size: 7.2px !important;
  }

  .about-page .about-capability__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .about-page .about-capability__cards article {
    aspect-ratio: 3 / 4.22 !important;
    padding: 8px 8px 9px !important;
  }

  .about-page .about-capability__cards span {
    width: 9px !important;
    height: 1.5px !important;
    margin-bottom: 4px !important;
  }

  .about-page .about-capability__cards h3 {
    font-size: 7px !important;
    line-height: 1.06 !important;
  }
}

/* Local review final: collapse mobile catalog categories and use full-width square cards. */
@media (max-width: 760px) {
  .catalog-page .catalog-shell__inner {
    width: min(100% - 28px, 1780px) !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    min-height: 0 !important;
  }

  .catalog-page .catalog-sidebar {
    position: relative !important;
    z-index: 20 !important;
    padding: 14px 0 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-sidebar h2 {
    display: none !important;
  }

  .catalog-page .catalog-category-toggle {
    display: flex !important;
    width: 100% !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 3px !important;
    padding: 0 14px !important;
    color: #111 !important;
    background: #ffffff !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  .catalog-page .catalog-category-toggle__icon {
    display: inline-grid !important;
    gap: 4px !important;
  }

  .catalog-page .catalog-category-toggle__icon span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: currentColor !important;
  }

  .catalog-page .catalog-category-list {
    position: absolute !important;
    top: calc(100% + 7px) !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 50 !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    padding: 7px 14px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 3px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12) !important;
  }

  .catalog-page .catalog-sidebar.is-open .catalog-category-list {
    display: grid !important;
  }

  .catalog-page .catalog-category-list a,
  .catalog-page .catalog-category-list a:nth-child(2),
  .catalog-page .catalog-category-list a:nth-child(3) {
    min-height: 35px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #ececec !important;
    color: #111 !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  .catalog-page .catalog-category-list a:last-child {
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-category-list a span {
    font-size: 17px !important;
  }

  .catalog-page .catalog-results {
    min-width: 0 !important;
    padding: 8px 0 38px !important;
  }

  .catalog-page .catalog-toolbar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin-bottom: 14px !important;
  }

  .catalog-page .catalog-toolbar p {
    font-size: 12px !important;
    line-height: 1.32 !important;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .catalog-page .catalog-card {
    display: grid !important;
    aspect-ratio: auto !important;
    min-height: 0 !important;
    height: auto !important;
    align-content: start !important;
    grid-template-rows: auto auto auto !important;
    padding: 9px 8px 14px !important;
  }

  .catalog-page .catalog-card__image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .catalog-page .catalog-card h3 {
    max-height: none !important;
    min-height: 26px !important;
    margin-top: 9px !important;
    overflow: hidden !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
  }

  .catalog-page .catalog-card p {
    min-height: 12px !important;
    margin-top: 10px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
  }

  .catalog-page .catalog-card__button {
    display: none !important;
  }
}

/* Local review final: compact mobile catalog hero and keep search/sort on one row. */
@media (max-width: 760px) {
  .catalog-page .catalog-hero__inner {
    min-height: 112px !important;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 12px 0 !important;
  }

  .catalog-page .catalog-hero h1 {
    font-size: 18px !important;
    line-height: 1.04 !important;
  }

  .catalog-page .catalog-hero__actions {
    gap: 6px !important;
    margin-top: 8px !important;
  }

  .catalog-page .catalog-button {
    min-width: 76px !important;
    min-height: 24px !important;
    padding: 0 8px !important;
    gap: 10px !important;
    font-size: 6.8px !important;
  }

  .catalog-page .catalog-hero__note {
    gap: 2px !important;
    font-size: 7.6px !important;
    line-height: 1.24 !important;
  }

  .catalog-page .catalog-toolbar {
    grid-template-columns: minmax(0, 1.42fr) minmax(104px, 0.74fr) !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .catalog-page .catalog-toolbar p {
    grid-column: 1 / -1 !important;
  }

  .catalog-page .catalog-inline-search {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-toolbar > label,
  .catalog-page .catalog-sort {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-inline-search,
  .catalog-page .catalog-toolbar select {
    height: 36px !important;
  }

  .catalog-page .catalog-inline-search input {
    min-width: 0 !important;
    padding: 0 34px 0 10px !important;
    font-size: 9.8px !important;
  }

  .catalog-page .catalog-inline-search button {
    width: 34px !important;
    font-size: 16px !important;
  }

  .catalog-page .catalog-toolbar select {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 22px 0 8px !important;
    font-size: 9.8px !important;
  }
}

/* Local review final: rebuild mobile product detail service and factory sections. */
@media (max-width: 760px) {
  .catalog-page .catalog-inquiry h2 {
    font-size: 19px !important;
    line-height: 1.12 !important;
  }

  .product-detail-page .product-services {
    width: min(100% - 28px, 1780px) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-services__media {
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 7px !important;
  }

  .product-detail-page .product-services__content {
    padding: 0 !important;
  }

  .product-detail-page .product-services h2 {
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-services h2::after {
    width: 32px !important;
    margin-top: 8px !important;
  }

  .product-detail-page .product-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 12px !important;
  }

  .product-detail-page .product-service-grid article {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    column-gap: 7px !important;
    row-gap: 3px !important;
    min-height: 0 !important;
    padding: 0 0 10px !important;
  }

  .product-detail-page .product-service-grid article > span {
    width: 22px !important;
    height: 22px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
  }

  .product-detail-page .product-service-grid h3 {
    font-size: 10px !important;
    line-height: 1.12 !important;
  }

  .product-detail-page .product-service-grid p {
    grid-column: 2 !important;
    font-size: 7.7px !important;
    line-height: 1.28 !important;
  }

  .product-detail-page .product-factory {
    padding: 24px 0 22px !important;
  }

  .product-detail-page .product-factory__grid {
    width: min(100% - 28px, 1780px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    display: block !important;
    align-self: auto !important;
    padding: 0 !important;
    transform: none !important;
  }

  .product-detail-page .product-factory .product-section-copy h2 {
    max-width: 260px !important;
    font-size: 22px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-factory .product-section-copy p {
    max-width: none !important;
    margin-top: 8px !important;
    font-size: 10px !important;
    line-height: 1.36 !important;
  }

  .product-detail-page .product-factory article {
    min-height: 0 !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-factory article div {
    aspect-ratio: 4 / 3 !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .product-detail-page .product-factory article h3 {
    min-height: 36px !important;
    padding: 7px 8px 8px !important;
    font-size: 8.8px !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: tune mobile catalog hero copy and button feedback. */
@media (max-width: 760px) {
  .catalog-page .catalog-hero__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) !important;
  }

  .catalog-page .catalog-hero__note {
    gap: 3px !important;
    font-size: 8.6px !important;
    line-height: 1.38 !important;
  }

  .catalog-page .catalog-hero__actions {
    gap: 7px !important;
  }

  .catalog-page .catalog-hero__actions .catalog-button,
  .catalog-page .catalog-hero__actions .catalog-button.catalog-button--light,
  .catalog-page .catalog-hero__actions .catalog-button.catalog-button--dark {
    width: 92px !important;
    min-width: 92px !important;
    min-height: 28px !important;
    padding: 0 10px !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    color: #ffffff !important;
    background: #050505 !important;
    transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease !important;
  }

  .catalog-page .catalog-hero__actions .catalog-button:active {
    transform: translateY(1px) scale(0.97) !important;
    background: #171717 !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  }

  .catalog-page .catalog-hero__actions .catalog-button:hover,
  .catalog-page .catalog-hero__actions .catalog-button:focus-visible {
    background: #111111 !important;
    border-color: #ffffff !important;
  }
}

/* Local review final: rebuild the inquiry page mobile layout into a clean stack. */
@media (max-width: 760px) {
  .contact-page .contact-workspace:not(.contact-workspace--compact) {
    padding: 18px 0 42px !important;
    background: #f4f6f8 !important;
  }

  .contact-page .contact-workspace__card {
    width: min(100% - 28px, 1780px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: hidden !important;
    border: 1px solid #dfe5ec !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 34px rgba(8, 24, 43, 0.08) !important;
  }

  .contact-page .contact-info-panel {
    padding: 22px 18px 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #e3e9f0 !important;
    background: #f7fbff !important;
  }

  .contact-page .contact-info-panel h1 {
    font-size: 28px !important;
    line-height: 1.04 !important;
  }

  .contact-page .contact-rule {
    width: 42px !important;
    height: 3px !important;
    margin: 12px 0 14px !important;
  }

  .contact-page .contact-info-panel > p.contact-intro {
    max-width: none !important;
    font-size: 12px !important;
    line-height: 1.42 !important;
  }

  .contact-page .contact-intro span + span {
    margin-top: 7px !important;
  }

  .contact-page .contact-methods {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 16px !important;
  }

  .contact-page .contact-methods div {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    min-height: 58px !important;
    padding: 10px !important;
    border: 1px solid #dce4ed !important;
    border-radius: 8px !important;
    background: #ffffff !important;
  }

  .contact-page .contact-methods div:nth-child(1),
  .contact-page .contact-methods div:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  .contact-page .contact-method-icon,
  .contact-page .contact-methods span {
    width: 22px !important;
    height: 22px !important;
    transform: none !important;
  }

  .contact-page .contact-method-icon svg {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2.15 !important;
  }

  .contact-page .contact-methods p,
  .contact-page .contact-methods a {
    min-width: 0 !important;
    padding-top: 0 !important;
    color: #253447 !important;
    font-size: 10.8px !important;
    line-height: 1.32 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .contact-page .contact-methods strong {
    margin-bottom: 3px !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  .contact-page .contact-address {
    max-width: none !important;
  }

  .contact-page .contact-methods div:nth-child(4) .contact-address-line {
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    align-items: initial !important;
    justify-content: initial !important;
    color: inherit !important;
    font-size: 10.8px !important;
    line-height: 1.32 !important;
    text-align: left !important;
    transform: none !important;
  }

  .contact-page .inquiry-socials {
    max-width: none !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    margin-top: 14px !important;
  }

  .contact-page .inquiry-socials a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
  }

  .contact-page .inquiry-socials svg {
    width: 17px !important;
    height: 17px !important;
  }

  .contact-page .inquiry-response-note {
    max-width: none !important;
    margin-top: 12px !important;
    padding: 11px 12px !important;
    border-radius: 8px !important;
  }

  .contact-page .inquiry-response-note p {
    font-size: 10.8px !important;
    line-height: 1.36 !important;
  }

  .contact-page .contact-form-panel {
    padding: 20px 18px 24px !important;
    background: #ffffff !important;
  }

  .contact-page .contact-form-panel h2 {
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .contact-page .contact-form-panel > p {
    max-width: 280px !important;
    margin-top: 7px !important;
    font-size: 12px !important;
    line-height: 1.38 !important;
  }

  .contact-page .contact-form {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .contact-page .contact-form label,
  .contact-page .contact-form__wide,
  .contact-page .oubiao-turnstile,
  .contact-page .oubiao-inquiry-form__status,
  .contact-page .contact-submit {
    grid-column: 1 !important;
  }

  .contact-page .contact-form label {
    gap: 6px !important;
    color: #07182a !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form select,
  .contact-page .contact-form textarea {
    min-height: 42px !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .contact-page .phone-input-group {
    grid-template-columns: 72px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .contact-page .phone-input-group input {
    height: 42px !important;
    min-height: 42px !important;
  }

  .contact-page .contact-form textarea {
    min-height: 118px !important;
  }

  .contact-page .message-count {
    font-size: 10px !important;
  }

  .contact-page .contact-submit {
    width: 100% !important;
    min-height: 46px !important;
    justify-self: stretch !important;
    margin-top: 4px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
  }
}

/* Local review final: make mobile contact address read like body detail text. */
@media (max-width: 760px) {
  .contact-page .contact-info-card--address h2 {
    margin-top: 6px !important;
    color: #303030 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.38 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Local review final: set the mobile service image to a square frame. */
@media (max-width: 760px) {
  .product-detail-page .product-services__media {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
  }

  .product-detail-page .product-services__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Local review final: stack the product detail info panel into two mobile rows. */
@media (max-width: 760px) {
  .product-detail-page .product-info-panel {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
  }

  .product-detail-page .product-details-copy {
    padding: 0 0 16px !important;
    border-right: 0 !important;
    border-bottom: 1px solid #dce2ed !important;
  }

  .product-detail-page .product-key-features {
    min-width: 0 !important;
  }
}

/* Local review final: give the mobile protection image grid a little more room. */
@media (max-width: 760px) {
  .product-detail-page .product-protection__grid {
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr) !important;
    gap: 10px !important;
  }

  .product-detail-page .product-showcase-grid {
    gap: 7px !important;
  }
}

/* Local review final: keep the mobile homepage free to scroll after preview edits. */
@media (max-width: 760px) {
  html,
  body.home-page {
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
  }

  body.home-page:not(.nav-open) .hero,
  body.home-page:not(.nav-open) .stats-bar,
  body.home-page:not(.nav-open) .product-categories {
    touch-action: pan-y !important;
  }
}

/* Local review final: stack product protection copy above images on mobile. */
@media (max-width: 760px) {
  .product-detail-page .product-protection {
    padding: 16px 0 20px !important;
  }

  .product-detail-page .product-protection__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .product-detail-page .product-protection .product-section-copy {
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
  }

  .product-detail-page .product-protection .product-section-copy h2 {
    max-width: 300px !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-protection .product-section-copy p {
    max-width: none !important;
    margin-top: 8px !important;
    font-size: 10.5px !important;
    line-height: 1.42 !important;
  }

  .product-detail-page .product-showcase-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .product-detail-page .product-showcase-grid article {
    aspect-ratio: 4 / 3 !important;
  }

  .product-detail-page .product-showcase-grid span {
    left: 9px !important;
    right: 8px !important;
    bottom: 8px !important;
    font-size: 9.2px !important;
    line-height: 1.05 !important;
  }
}

/* Local review final: compact the B2B project guide hero on mobile. */
@media (max-width: 620px) {
  .b2b-project-page .b2b-guide-hero {
    background-position: center right !important;
  }

  .b2b-project-page .b2b-guide-hero__inner {
    width: min(100% - 28px, 760px) !important;
    gap: 14px !important;
    min-height: 0 !important;
    padding: 28px 0 24px !important;
  }

  .b2b-project-page .b2b-guide-hero__copy p {
    margin-bottom: 8px !important;
    font-size: 9.5px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.14em !important;
  }

  .b2b-project-page .b2b-guide-hero__copy h1 {
    max-width: 340px !important;
    font-size: 26px !important;
    line-height: 1.03 !important;
  }

  .b2b-project-page .b2b-guide-hero__copy > span {
    max-width: 345px !important;
    margin-top: 12px !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  .b2b-project-page .b2b-guide-hero__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .b2b-project-page .b2b-guide-hero__actions a {
    width: 100% !important;
    min-height: 36px !important;
    padding: 0 8px !important;
    font-size: 9.5px !important;
    line-height: 1.1 !important;
  }

  .b2b-project-page .b2b-guide-hero__panel {
    padding: 14px 16px !important;
  }

  .b2b-project-page .b2b-guide-hero__panel strong {
    margin-bottom: 9px !important;
    font-size: 15px !important;
    line-height: 1.18 !important;
  }

  .b2b-project-page .b2b-guide-hero__panel ul {
    gap: 6px !important;
  }

  .b2b-project-page .b2b-guide-hero__panel li {
    padding-left: 15px !important;
    font-size: 10.5px !important;
    line-height: 1.32 !important;
  }

  .b2b-project-page .b2b-guide-hero__panel li::before {
    top: 0.65em !important;
    width: 6px !important;
  }
}

/* Local review final: keep the homepage footer fully visible on tablet-width desktop previews. */
@media (min-width: 981px) and (max-width: 1180px) {
  body.home-page,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) {
    overflow-x: hidden !important;
  }

  body.home-page .site-header .header-main,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header .header-main {
    width: min(100% - 48px, 980px) !important;
    gap: 20px !important;
  }

  body.home-page .primary-nav,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .primary-nav {
    gap: 22px !important;
    transform: none !important;
  }

  body.home-page .site-search,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-search {
    width: 138px !important;
    transform: none !important;
  }

  body.home-page .site-footer,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer {
    overflow: hidden !important;
  }

  body.home-page .site-footer .footer-grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid {
    width: min(100% - 32px, 1000px) !important;
    grid-template-columns: minmax(220px, 1fr) minmax(390px, 400px) minmax(220px, 1fr) !important;
    column-gap: 28px !important;
    justify-content: center !important;
  }

  body.home-page .site-footer .footer-products,
  body.home-page .site-footer .footer-inquiry,
  body.home-page .site-footer .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact {
    width: 100% !important;
    transform: none !important;
  }

  body.home-page .site-footer .footer-products,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products {
    width: 220px !important;
    justify-self: end !important;
  }

  body.home-page .site-footer .footer-inquiry,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry {
    max-width: 400px !important;
    justify-self: center !important;
  }

  body.home-page .site-footer .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact {
    justify-self: end !important;
  }

  body.home-page .site-footer .footer-contact p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p {
    font-size: 12.5px !important;
    line-height: 1.38 !important;
    overflow-wrap: anywhere !important;
  }

  body.home-page .site-footer .footer-bottom,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom {
    width: min(100% - 64px, 980px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  body.home-page .site-footer .footer-bottom nav,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-bottom nav {
    justify-content: center !important;
  }
}

/* Local review final: make the inquiry desktop preview favor the form side. */
@media (min-width: 981px) and (max-width: 1180px) {
  .contact-page .contact-workspace:not(.contact-workspace--compact) {
    padding: 30px 0 66px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-workspace__card {
    width: min(100% - 40px, 984px) !important;
    grid-template-columns: 300px minmax(0, 1fr) !important;
    justify-content: start !important;
    margin-left: 20px !important;
    margin-right: auto !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-info-panel {
    padding: 54px 36px 44px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-info-panel h1 {
    font-size: 40px !important;
    line-height: 1.06 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-rule {
    width: 58px !important;
    margin: 24px 0 26px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-info-panel > p.contact-intro {
    max-width: 230px !important;
    font-size: 15.5px !important;
    line-height: 1.42 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-methods {
    gap: 17px !important;
    margin-top: 30px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-methods div {
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-method-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-method-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-methods p,
  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-methods a {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-methods strong {
    font-size: 16px !important;
    line-height: 1.14 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-address-line {
    display: block !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form-panel {
    padding: 58px 52px 54px !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form-panel h2 {
    font-size: 40px !important;
    line-height: 1.08 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form-panel > p {
    max-width: 520px !important;
    font-size: 19px !important;
    line-height: 1.45 !important;
  }

  .contact-page .contact-workspace:not(.contact-workspace--compact) .contact-form {
    gap: 22px 28px !important;
    margin-top: 32px !important;
  }
}

/* Local review final: pull the homepage header back into place on narrow desktop previews. */
@media (min-width: 981px) and (max-width: 1180px) {
  body.home-page .site-header:not(.site-header--solid) .header-main.container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .header-main.container {
    width: min(100% - 80px, 980px) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 16px !important;
    margin-inline: auto !important;
  }

  body.home-page .site-header:not(.site-header--solid) .brand,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .brand {
    transform: none !important;
  }

  body.home-page .site-header:not(.site-header--solid) .primary-nav,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .primary-nav {
    justify-content: flex-end !important;
    gap: 18px !important;
    transform: none !important;
  }

  body.home-page .site-header:not(.site-header--solid) .primary-nav > a,
  body.home-page .site-header:not(.site-header--solid) .nav-dropdown__toggle,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .primary-nav > a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .nav-dropdown__toggle {
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
  }

  body.home-page .site-header:not(.site-header--solid) .site-search,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header:not(.site-header--solid) .site-search {
    width: 132px !important;
    height: 32px !important;
    transform: translateX(22px) !important;
  }
}

/* Local review final: make the product catalog hero breathe at narrow desktop widths. */
@media (min-width: 981px) and (max-width: 1180px) {
  .catalog-page .catalog-hero__inner {
    width: min(100% - 56px, 980px) !important;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) !important;
    min-height: 158px !important;
    gap: 36px !important;
    padding: 18px 0 !important;
  }

  .catalog-page .catalog-hero h1 {
    font-size: 32px !important;
    line-height: 1.06 !important;
    letter-spacing: 0.02em !important;
  }

  .catalog-page .catalog-hero__actions {
    gap: 10px !important;
    margin-top: 15px !important;
  }

  .catalog-page .catalog-hero__actions .catalog-button,
  .catalog-page .catalog-hero__actions .catalog-button.catalog-button--light,
  .catalog-page .catalog-hero__actions .catalog-button.catalog-button--dark {
    min-width: 136px !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    gap: 12px !important;
    font-size: 10.8px !important;
  }

  .catalog-page .catalog-hero__note {
    max-width: 610px !important;
    justify-self: end !important;
    gap: 6px !important;
    font-size: 15px !important;
    line-height: 1.48 !important;
  }

  .catalog-page .site-header:not(.site-header--solid) .header-main.container {
    width: min(100% - 80px, 980px) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 16px !important;
    margin-inline: auto !important;
  }

  .catalog-page .site-header:not(.site-header--solid) .brand,
  .catalog-page .site-header:not(.site-header--solid) .primary-nav,
  .catalog-page .site-header:not(.site-header--solid) .site-search {
    transform: none !important;
  }

  .catalog-page .site-header:not(.site-header--solid) .primary-nav {
    justify-content: flex-end !important;
    gap: 18px !important;
  }

  .catalog-page .site-header:not(.site-header--solid) .primary-nav > a,
  .catalog-page .site-header:not(.site-header--solid) .nav-dropdown__toggle {
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
  }

  .catalog-page .site-header:not(.site-header--solid) .site-search {
    width: 132px !important;
    height: 32px !important;
  }

  body.catalog-page .site-header.site-header--solid .header-main.container,
  body.product-detail-page .site-header.site-header--solid .header-main.container,
  body.contact-page .site-header.site-header--solid .header-main.container,
  body.blog-page .site-header.site-header--solid .header-main.container,
  body.about-page .site-header.site-header--solid .header-main.container {
    width: min(100% - 80px, 980px) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 16px !important;
    margin-inline: auto !important;
  }

  body.catalog-page .site-header.site-header--solid .brand,
  body.product-detail-page .site-header.site-header--solid .brand,
  body.contact-page .site-header.site-header--solid .brand,
  body.blog-page .site-header.site-header--solid .brand,
  body.about-page .site-header.site-header--solid .brand,
  body.catalog-page .site-header.site-header--solid .primary-nav,
  body.product-detail-page .site-header.site-header--solid .primary-nav,
  body.contact-page .site-header.site-header--solid .primary-nav,
  body.blog-page .site-header.site-header--solid .primary-nav,
  body.about-page .site-header.site-header--solid .primary-nav,
  body.catalog-page .site-header.site-header--solid .site-search,
  body.product-detail-page .site-header.site-header--solid .site-search,
  body.contact-page .site-header.site-header--solid .site-search,
  body.blog-page .site-header.site-header--solid .site-search,
  body.about-page .site-header.site-header--solid .site-search {
    transform: none !important;
  }

  body.catalog-page .site-header.site-header--solid .primary-nav,
  body.product-detail-page .site-header.site-header--solid .primary-nav,
  body.contact-page .site-header.site-header--solid .primary-nav,
  body.blog-page .site-header.site-header--solid .primary-nav,
  body.about-page .site-header.site-header--solid .primary-nav {
    justify-content: flex-end !important;
    gap: 18px !important;
  }

  body.catalog-page .site-header.site-header--solid .primary-nav > a,
  body.catalog-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.product-detail-page .site-header.site-header--solid .primary-nav > a,
  body.product-detail-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.contact-page .site-header.site-header--solid .primary-nav > a,
  body.contact-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.blog-page .site-header.site-header--solid .primary-nav > a,
  body.blog-page .site-header.site-header--solid .nav-dropdown__toggle,
  body.about-page .site-header.site-header--solid .primary-nav > a,
  body.about-page .site-header.site-header--solid .nav-dropdown__toggle {
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
  }

  body.catalog-page .site-header.site-header--solid .site-search,
  body.product-detail-page .site-header.site-header--solid .site-search,
  body.contact-page .site-header.site-header--solid .site-search,
  body.blog-page .site-header.site-header--solid .site-search,
  body.about-page .site-header.site-header--solid .site-search {
    width: 132px !important;
    height: 32px !important;
  }

  .catalog-page .catalog-inquiry__inner {
    width: min(100% - 56px, 980px) !important;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr) 170px !important;
    gap: 20px !important;
  }

  .catalog-page .catalog-inquiry__inner .catalog-button {
    width: 170px !important;
    min-width: 170px !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 12px !important;
  }
}

/* Local review final: keep product detail summary on the right in desktop previews. */
@media (min-width: 981px) and (max-width: 1180px) {
  .product-detail-page .product-detail-hero__grid {
    width: min(100% - 56px, 980px) !important;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr) !important;
    gap: 20px !important;
    align-items: start !important;
  }

  .product-detail-page .product-gallery__main {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .product-detail-page .product-gallery__zoom {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
  }

  .product-detail-page .product-gallery__image {
    width: 100% !important;
    height: 100% !important;
  }

  .product-detail-page .product-gallery__thumbs {
    justify-content: center !important;
    margin-top: 12px !important;
  }

  .product-detail-page .product-gallery__thumbs button {
    flex: 0 0 86px !important;
    width: 86px !important;
    min-width: 86px !important;
    height: 86px !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    padding: 7px !important;
  }

  .product-detail-page .product-gallery__thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .product-detail-page .product-summary {
    min-height: 520px !important;
    padding: 30px 28px 28px !important;
  }

  .product-detail-page .product-summary h1 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-summary__meta {
    gap: 11px !important;
    margin-top: 20px !important;
    padding-top: 18px !important;
    font-size: 13.5px !important;
    line-height: 1.38 !important;
  }

  .product-detail-page .product-summary__meta div {
    grid-template-columns: 82px minmax(0, 1fr) !important;
  }

  .product-detail-page .product-summary__contact {
    gap: 14px !important;
    margin-top: 22px !important;
    padding: 18px !important;
  }

  .product-detail-page .product-action {
    min-height: 46px !important;
    font-size: 12.5px !important;
  }

  .product-detail-page .product-contact-row {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 12px !important;
    font-size: 12.5px !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .header-main.container {
    width: min(100% - 80px, 980px) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 16px !important;
    margin-inline: auto !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .header-main .brand.brand,
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav,
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .site-search {
    transform: none !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav {
    justify-content: flex-end !important;
    gap: 18px !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav > a,
  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .primary-nav .nav-dropdown__toggle {
    font-size: 10.5px !important;
    letter-spacing: 0.14em !important;
  }

  body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-header.site-header--solid .site-search {
    width: 132px !important;
    height: 32px !important;
  }

  .product-detail-page .product-protection {
    padding: 32px 0 !important;
  }

  .product-detail-page .product-protection__grid {
    width: min(100% - 56px, 980px) !important;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr) !important;
    gap: 24px !important;
    align-items: start !important;
  }

  .product-detail-page .product-protection .product-section-copy {
    max-width: 310px !important;
  }

  .product-detail-page .product-protection .product-section-copy h2 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-protection .product-section-copy p {
    margin-top: 16px !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .product-detail-page .product-showcase-grid {
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .product-detail-page .product-showcase-grid article {
    aspect-ratio: 4 / 3 !important;
  }

  .product-detail-page .product-services {
    width: min(100% - 56px, 980px) !important;
    grid-template-columns: minmax(320px, 360px) minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: start !important;
    padding: 12px !important;
  }

  .product-detail-page .product-services__media {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-services__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .product-detail-page .product-services__content {
    padding: 6px 0 0 !important;
  }

  .product-detail-page .product-services h2 {
    font-size: 30px !important;
    line-height: 1.08 !important;
  }

  .product-detail-page .product-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 16px !important;
    margin-top: 16px !important;
  }

  .product-detail-page .product-service-grid article {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    min-height: 94px !important;
    column-gap: 12px !important;
    row-gap: 5px !important;
    padding: 13px 0 !important;
  }

  .product-detail-page .product-service-grid article > span {
    width: 38px !important;
    height: 38px !important;
    border-radius: 9px !important;
    font-size: 20px !important;
  }

  .product-detail-page .product-service-grid h3 {
    font-size: 13.5px !important;
    line-height: 1.18 !important;
  }

  .product-detail-page .product-service-grid p {
    font-size: 11.5px !important;
    line-height: 1.36 !important;
  }
}

/* Local review final: fix B2B guide workflow density on narrow desktop screens. */
@media (min-width: 981px) and (max-width: 1180px) {
  .b2b-project-page .b2b-guide-main {
    padding: 36px 0 32px !important;
  }

  .b2b-project-page .b2b-guide-main__inner {
    width: min(100% - 64px, 960px) !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 26px !important;
  }

  .b2b-project-page .b2b-guide-aside {
    top: 94px !important;
    padding: 24px !important;
  }

  .b2b-project-page .b2b-guide-aside h2,
  .b2b-project-page .b2b-process-card__copy h2 {
    font-size: 27px !important;
    line-height: 1.06 !important;
  }

  .b2b-project-page .b2b-guide-aside > p {
    margin: 18px 0 20px !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
  }

  .b2b-project-page .b2b-process-card {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 26px !important;
  }

  .b2b-project-page .b2b-process-card__copy h2 {
    max-width: 520px !important;
  }

  .b2b-project-page .b2b-process {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .b2b-project-page .b2b-process li {
    min-height: 132px !important;
    padding: 18px !important;
  }

  .b2b-project-page .b2b-process strong {
    margin-bottom: 10px !important;
    font-size: 11.5px !important;
    line-height: 1.32 !important;
  }

  .b2b-project-page .b2b-process span,
  .b2b-project-page .b2b-decision-grid p,
  .b2b-project-page .b2b-visual-grid p {
    font-size: 13px !important;
    line-height: 1.48 !important;
  }

  .b2b-project-page .b2b-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .b2b-project-page .b2b-decision-grid article {
    min-height: 170px !important;
    padding: 20px !important;
  }
}

/* Local review final: keep About story as left copy and right image on desktop previews. */
@media (min-width: 981px) and (max-width: 1180px) {
  .about-page .about-story__hero {
    display: grid !important;
    grid-template-columns: minmax(430px, 0.52fr) minmax(0, 0.48fr) !important;
    min-height: 456px !important;
    max-height: none !important;
    overflow: hidden !important;
  }

  .about-page .about-story__copy {
    height: auto !important;
    max-height: none !important;
    padding: 30px 50px 24px 56px !important;
    clip-path: none !important;
    overflow: visible !important;
  }

  .about-page .about-story__copy::before {
    inset: 0 -112px 0 0 !important;
    clip-path: polygon(0 0, 100% 0, calc(100% - 124px) 100%, 0 100%) !important;
  }

  .about-page .about-story__ghost {
    top: -12px !important;
    left: 56px !important;
    font-size: 86px !important;
  }

  .about-page .about-story h1 {
    font-size: 38px !important;
    line-height: 0.98 !important;
  }

  .about-page .about-story__rule {
    width: 150px !important;
    margin-top: 8px !important;
  }

  .about-page .about-story__kicker {
    margin: 8px 0 10px !important;
    font-size: 11px !important;
  }

  .about-page .about-story__text {
    max-width: 510px !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
    font-size: 10.8px !important;
    line-height: 1.34 !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 6px !important;
  }

  .about-page .about-story__text strong {
    font-size: 13px !important;
  }

  .about-page .about-story__visual {
    min-height: 456px !important;
    max-height: none !important;
    margin-left: -78px !important;
    overflow: hidden !important;
  }

  .about-page .about-story__building {
    background-position: center center !important;
    background-size: cover !important;
  }

  .about-page .about-story__stats {
    right: 18px !important;
    bottom: 14px !important;
    left: 112px !important;
    height: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .about-page .about-story__stats article {
    min-height: 82px !important;
    height: auto !important;
    padding: 9px 6px !important;
  }

  .about-page .about-story__stats span svg {
    width: 17px !important;
    height: 17px !important;
  }

  .about-page .about-story__stats strong {
    min-height: 24px !important;
    font-size: 13px !important;
  }

  .about-page .about-story__stats em {
    font-size: 7px !important;
    line-height: 1.18 !important;
  }

  .about-page .about-story__values {
    height: auto !important;
    min-height: 88px !important;
    grid-template-columns: minmax(280px, 0.9fr) repeat(4, minmax(0, 1fr)) !important;
    padding: 12px 56px !important;
  }

  .about-page .about-story__quote {
    grid-column: auto !important;
    min-height: 64px !important;
    padding: 6px 22px 6px 0 !important;
  }

  .about-page .about-story__values article {
    min-height: 64px !important;
    padding: 6px 14px !important;
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
  }

  .about-page .about-story__quote strong,
  .about-page .about-story__values article strong {
    font-size: 12px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-story__quote p,
  .about-page .about-story__values article p {
    margin-top: 4px !important;
    font-size: 8px !important;
    line-height: 1.25 !important;
  }
}

/* Local review final: keep the header black with visible logo and reversed menu button. */
.site-header,
.site-header.site-header--solid,
body.home-page .site-header,
body.catalog-page .site-header,
body.product-detail-page .site-header,
body.contact-page .site-header,
body.blog-page .site-header,
body.about-page .site-header {
  background: #050505 !important;
  border-bottom-color: rgba(255, 255, 255, 0.14) !important;
}

.site-header .brand {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header .brand__logo,
body.home-page .site-header .brand__logo,
body.catalog-page .site-header .brand__logo,
body.product-detail-page .site-header .brand__logo,
body.contact-page .site-header .brand__logo,
body.blog-page .site-header .brand__logo,
body.about-page .site-header .brand__logo {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: invert(1) brightness(1.18) !important;
}

.site-header .primary-nav > a,
.site-header .nav-dropdown__toggle {
  color: #ffffff !important;
}

.site-header .nav-dropdown__toggle span {
  border-top-color: #ffffff !important;
}

.site-header .site-search {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-header .site-search input {
  color: #ffffff !important;
}

.site-header .site-search input::placeholder {
  color: rgba(255, 255, 255, 0.64) !important;
}

.site-header .site-search button {
  color: #050505 !important;
  background: #ffffff !important;
}

.site-header .menu-toggle,
.site-header.site-header--solid .menu-toggle,
body.home-page .site-header .menu-toggle,
body.catalog-page .site-header .menu-toggle,
body.product-detail-page .site-header .menu-toggle,
body.contact-page .site-header .menu-toggle,
body.blog-page .site-header .menu-toggle,
body.about-page .site-header .menu-toggle {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background: #050505 !important;
}

.site-header .menu-toggle span:not(.sr-only),
.site-header.site-header--solid .menu-toggle span:not(.sr-only),
body.home-page .site-header .menu-toggle span:not(.sr-only),
body.catalog-page .site-header .menu-toggle span:not(.sr-only),
body.product-detail-page .site-header .menu-toggle span:not(.sr-only),
body.contact-page .site-header .menu-toggle span:not(.sr-only),
body.blog-page .site-header .menu-toggle span:not(.sr-only),
body.about-page .site-header .menu-toggle span:not(.sr-only) {
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .site-header,
  .site-header.site-header--solid,
  body.home-page .site-header,
  body.catalog-page .site-header,
  body.product-detail-page .site-header,
  body.contact-page .site-header,
  body.blog-page .site-header,
  body.about-page .site-header {
    position: sticky !important;
    top: 0 !important;
    background: #050505 !important;
  }

  .site-header .header-main,
  body.home-page .site-header .header-main,
  body.catalog-page .site-header .header-main,
  body.product-detail-page .site-header .header-main,
  body.contact-page .site-header .header-main,
  body.blog-page .site-header .header-main,
  body.about-page .site-header .header-main {
    width: min(100% - 28px, var(--container)) !important;
    display: grid !important;
    grid-template-columns: minmax(0, auto) auto !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .site-header .brand__logo,
  body.home-page .site-header .brand__logo,
  body.catalog-page .site-header .brand__logo,
  body.product-detail-page .site-header .brand__logo,
  body.contact-page .site-header .brand__logo,
  body.blog-page .site-header .brand__logo,
  body.about-page .site-header .brand__logo {
    width: 126px !important;
    max-height: 30px !important;
  }

  .site-header .primary-nav,
  body.home-page .site-header .primary-nav,
  body.catalog-page .site-header .primary-nav,
  body.product-detail-page .site-header .primary-nav,
  body.contact-page .site-header .primary-nav,
  body.blog-page .site-header .primary-nav,
  body.about-page .site-header .primary-nav {
    background: #050505 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav .nav-dropdown__toggle {
    color: #ffffff !important;
  }
}

/* Local review final: use the mobile catalog flow only below notebook widths. */
@media (max-width: 980px) {
  .catalog-page .catalog-shell {
    scroll-margin-top: 60px !important;
  }

  .catalog-page .catalog-shell__inner {
    width: min(100% - 28px, 1780px) !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .catalog-page .catalog-sidebar {
    position: relative !important;
    z-index: 20 !important;
    padding: 16px 0 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-sidebar h2 {
    display: none !important;
  }

  .catalog-page .catalog-category-toggle {
    display: flex !important;
    width: 100% !important;
    min-height: 46px !important;
    align-items: center !important;
    justify-content: space-between !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 3px !important;
    padding: 0 16px !important;
    color: #111111 !important;
    background: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  .catalog-page .catalog-category-toggle__icon {
    display: inline-grid !important;
    gap: 4px !important;
  }

  .catalog-page .catalog-category-toggle__icon span {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: currentColor !important;
  }

  .catalog-page .catalog-category-list {
    position: absolute !important;
    top: calc(100% + 7px) !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 50 !important;
    display: none !important;
    grid-template-columns: 1fr !important;
    padding: 8px 16px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 3px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12) !important;
  }

  .catalog-page .catalog-sidebar.is-open .catalog-category-list {
    display: grid !important;
  }

  .catalog-page .catalog-category-list a,
  .catalog-page .catalog-category-list a:nth-child(2),
  .catalog-page .catalog-category-list a:nth-child(3) {
    min-height: 38px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #ececec !important;
    color: #111111 !important;
    font-size: 13px !important;
    line-height: 1.12 !important;
  }

  .catalog-page .catalog-category-list a:last-child {
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-category-list a span {
    font-size: 18px !important;
  }

  .catalog-page .catalog-results {
    min-width: 0 !important;
    padding: 6px 0 52px !important;
  }

  .catalog-page .catalog-toolbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.72fr) !important;
    gap: 10px !important;
    align-items: center !important;
    margin-bottom: 18px !important;
  }

  .catalog-page .catalog-toolbar p {
    grid-column: 1 / -1 !important;
    font-size: 14px !important;
    line-height: 1.36 !important;
  }

  .catalog-page .catalog-inline-search {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-toolbar > label,
  .catalog-page .catalog-sort {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-inline-search,
  .catalog-page .catalog-toolbar select {
    height: 40px !important;
  }

  .catalog-page .catalog-toolbar select {
    min-width: 0 !important;
    width: 100% !important;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .catalog-page .catalog-card {
    display: grid !important;
    min-height: 0 !important;
    height: auto !important;
    align-content: start !important;
    grid-template-rows: auto auto auto !important;
    padding: 12px 10px 16px !important;
  }

  .catalog-page .catalog-card__image {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
  }

  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .catalog-page .catalog-card h3 {
    min-height: 28px !important;
    margin-top: 10px !important;
    overflow: hidden !important;
    font-size: 12px !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere !important;
  }

  .catalog-page .catalog-card p {
    min-height: 13px !important;
    margin-top: 10px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
  }

  .catalog-page .catalog-card__button {
    display: none !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .catalog-page .catalog-shell {
    scroll-margin-top: 0 !important;
  }
}

/* Local review final: keep notebook catalog pages as sidebar plus four products per row. */
@media (min-width: 981px) and (max-width: 1180px) {
  .catalog-page .catalog-shell__inner {
    width: min(100% - 44px, 1120px) !important;
    display: grid !important;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    min-height: 800px !important;
  }

  .catalog-page .catalog-sidebar {
    position: static !important;
    z-index: auto !important;
    padding: 30px 24px 62px 0 !important;
    border-right: 1px solid #e6e6e6 !important;
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-sidebar h2 {
    display: block !important;
    margin-bottom: 22px !important;
    font-size: 16px !important;
  }

  .catalog-page .catalog-category-toggle {
    display: none !important;
  }

  .catalog-page .catalog-category-list {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .catalog-page .catalog-category-list a,
  .catalog-page .catalog-category-list a:nth-child(2),
  .catalog-page .catalog-category-list a:nth-child(3) {
    min-height: 38px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    color: #111111 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .catalog-page .catalog-category-list a:nth-child(2) {
    padding-bottom: 14px !important;
    border-bottom: 1px solid #dfdfdf !important;
  }

  .catalog-page .catalog-category-list a:nth-child(3) {
    margin-top: 14px !important;
  }

  .catalog-page .catalog-category-list a:last-child {
    border-bottom: 0 !important;
  }

  .catalog-page .catalog-category-list a span {
    font-size: 22px !important;
  }

  .catalog-page .catalog-results {
    min-width: 0 !important;
    padding: 30px 0 62px 28px !important;
  }

  .catalog-page .catalog-toolbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 150px !important;
    gap: 12px !important;
    align-items: center !important;
    margin-bottom: 22px !important;
  }

  .catalog-page .catalog-toolbar p {
    grid-column: 1 / -1 !important;
    font-size: 14px !important;
  }

  .catalog-page .catalog-inline-search {
    grid-column: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-toolbar > label,
  .catalog-page .catalog-sort {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-page .catalog-inline-search,
  .catalog-page .catalog-toolbar select {
    height: 38px !important;
  }

  .catalog-page .catalog-toolbar select {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 22px 0 10px !important;
    font-size: 12px !important;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px 12px !important;
  }

  .catalog-page .catalog-card {
    min-height: 236px !important;
    padding: 12px 10px 14px !important;
  }

  .catalog-page .catalog-card__image {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .catalog-page .catalog-card h3 {
    min-height: 30px !important;
    margin-top: 10px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
  }

  .catalog-page .catalog-card p {
    min-height: 14px !important;
    margin-top: 8px !important;
    font-size: 10px !important;
  }

  .catalog-page .catalog-card__button {
    display: none !important;
  }
}

/* Local review final: center the homepage footer on tablet widths and split Products into two rows. */
@media (min-width: 761px) and (max-width: 980px) {
  body.home-page .site-footer,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer {
    padding: 34px 0 28px !important;
    text-align: center !important;
  }

  body.home-page .site-footer .footer-grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid {
    width: min(100% - 44px, 760px) !important;
    max-width: 760px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    justify-items: center !important;
    align-items: start !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.home-page .site-footer .footer-grid > div,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid > div {
    width: 100% !important;
    max-width: 760px !important;
    justify-self: center !important;
    transform: none !important;
  }

  body.home-page .site-footer .footer-products,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products {
    display: grid !important;
    grid-template-columns: repeat(5, max-content) !important;
    gap: 14px 28px !important;
    justify-content: center !important;
    justify-items: start !important;
    width: 100% !important;
    padding-bottom: 2px !important;
  }

  body.home-page .site-footer .footer-products h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products h3 {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    margin-bottom: 6px !important;
    font-size: 34px !important;
    line-height: 1.08 !important;
    text-align: center !important;
  }

  body.home-page .site-footer .footer-products a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a {
    min-width: 0 !important;
    padding-left: 18px !important;
    color: #dbe8f6 !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  body.home-page .site-footer .footer-products a::before,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a::before {
    left: 0 !important;
    font-size: 18px !important;
  }

  body.home-page .site-footer .footer-products a:nth-of-type(2),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-products a:nth-of-type(2) {
    margin: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  body.home-page .site-footer .footer-grid > .footer-inquiry,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid > .footer-inquiry {
    max-width: 640px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.home-page .site-footer .footer-grid > .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid > .footer-contact {
    max-width: 640px !important;
    text-align: left !important;
  }
}

/* Local review final: keep the product service image square at every responsive width. */
.product-detail-page .product-services__media {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  height: auto !important;
}

.product-detail-page .product-services__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Local review final: prevent the product factory section from squeezing on tablet widths. */
@media (min-width: 761px) and (max-width: 980px) {
  .product-detail-page .product-factory {
    padding: 28px 0 24px !important;
  }

  .product-detail-page .product-factory__grid {
    width: min(100% - 56px, 980px) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .product-detail-page .product-factory__grid > .product-section-copy {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    max-width: 620px !important;
    align-self: start !important;
    justify-self: start !important;
    transform: none !important;
  }

  .product-detail-page .product-factory .product-section-copy h2 {
    max-width: 620px !important;
    font-size: 42px !important;
    line-height: 1.04 !important;
  }

  .product-detail-page .product-factory .product-section-copy p {
    max-width: 560px !important;
    margin-top: 18px !important;
    font-size: 17px !important;
    line-height: 1.48 !important;
  }

  .product-detail-page .product-factory article {
    min-height: 0 !important;
    border-radius: 8px !important;
  }

  .product-detail-page .product-factory article div {
    aspect-ratio: 4 / 3 !important;
    border-radius: 8px 8px 0 0 !important;
  }

  .product-detail-page .product-factory article h3 {
    min-height: 76px !important;
    padding: 16px 18px 18px !important;
    font-size: 16px !important;
    line-height: 1.22 !important;
  }

  .product-detail-page .product-bottom-cta {
    width: min(100% - 56px, 980px) !important;
  }
}

/* Local review final: keep About history images on one fixed web ratio. */
.about-page .about-history__media,
.about-page .about-history__preview,
.about-page .about-image-placeholder--history {
  position: relative !important;
  aspect-ratio: 4 / 3 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
}

.about-page .about-history__media img,
.about-page .about-history__preview img,
.about-page .about-image-placeholder--history img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (min-width: 761px) and (max-width: 980px) {
  .about-page .about-history__stage {
    width: min(100% - 48px, 980px) !important;
    grid-template-columns: 28px minmax(0, 1fr) 28px !important;
    gap: 10px !important;
  }

  .about-page .about-history__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: start !important;
  }

  .about-page .about-history__preview {
    display: none !important;
  }
}

/* Local review final: make tablet history cards behave like the web layout. */
@media (min-width: 761px) and (max-width: 980px) {
  .about-page .about-history__card {
    aspect-ratio: 8 / 3 !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: stretch !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__card > .about-image-placeholder--history:first-child {
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    align-self: stretch !important;
  }

  .about-page .about-history__media img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .about-page .about-history__copy {
    height: 100% !important;
    min-height: 0 !important;
    align-content: center !important;
    overflow: hidden !important;
    padding: 18px 28px !important;
  }

  .about-page .about-history__copy p {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 10px !important;
    font-size: 25px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-history__copy span {
    width: 24px !important;
    height: 2px !important;
    margin: 12px 0 !important;
  }

  .about-page .about-history__copy strong {
    display: block !important;
    max-height: 104px !important;
    overflow: hidden !important;
    font-size: 12.5px !important;
    line-height: 1.36 !important;
  }
}

/* Local review final: use the iPad mini About history proportions on phone widths too. */
@media (max-width: 760px) {
  .about-page .about-history__heading,
  .about-page .about-history__stage,
  .about-page .about-history__timeline {
    width: min(100% - 24px, 980px) !important;
  }

  .about-page .about-history__stage {
    grid-template-columns: 20px minmax(0, 1fr) 20px !important;
    gap: 6px !important;
    align-items: center !important;
  }

  .about-page .about-history__arrow {
    width: 20px !important;
    min-width: 20px !important;
    height: 34px !important;
    font-size: 15px !important;
  }

  .about-page .about-history__card {
    aspect-ratio: 8 / 3 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .about-page .about-history__preview {
    display: none !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__card > .about-image-placeholder--history:first-child {
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    align-self: stretch !important;
  }

  .about-page .about-history__media img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .about-page .about-history__copy {
    height: 100% !important;
    min-height: 0 !important;
    align-content: center !important;
    overflow: hidden !important;
    padding: 8px 11px !important;
  }

  .about-page .about-history__copy p {
    font-size: 8.5px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 4px !important;
    font-size: 11px !important;
    line-height: 1.06 !important;
  }

  .about-page .about-history__copy span {
    width: 17px !important;
    height: 2px !important;
    margin: 5px 0 !important;
  }

  .about-page .about-history__copy strong {
    display: block !important;
    max-height: 48px !important;
    overflow: hidden !important;
    font-size: 6px !important;
    line-height: 1.22 !important;
  }
}

/* Local review final: make the header search button sit cleanly inside the pill. */
.site-header .site-search {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 34px !important;
  align-items: stretch !important;
  overflow: hidden !important;
  border-radius: 999px !important;
}

.site-header .site-search input {
  height: 100% !important;
  min-width: 0 !important;
  padding-right: 7px !important;
}

.site-header .site-search button {
  width: 35px !important;
  height: calc(100% + 2px) !important;
  min-height: 0 !important;
  align-self: center !important;
  margin: -1px -1px -1px 0 !important;
  border: 0 !important;
  border-radius: 0 999px 999px 0 !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  line-height: 1 !important;
}

body.home-page .site-header .site-search {
  position: relative !important;
  grid-template-columns: minmax(0, 1fr) 34px !important;
  padding: 0 !important;
}

body.home-page .site-header .site-search button {
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  margin: -1px -1px -1px 0 !important;
  box-sizing: border-box !important;
}

/* Local review final: align the search cap and center the icon precisely. */
.site-header .site-search {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.site-header .site-search input {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  padding-right: 40px !important;
  box-sizing: border-box !important;
}

.site-header .site-search button {
  position: absolute !important;
  top: -1px !important;
  right: -1px !important;
  bottom: -1px !important;
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 999px 999px 0 !important;
  color: transparent !important;
  background: #ffffff !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -999px !important;
  overflow: hidden !important;
}

.site-header .site-search button::before,
.site-header .site-search button::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
  box-sizing: border-box !important;
}

.site-header .site-search button::before {
  width: 12px !important;
  height: 12px !important;
  border: 2px solid #071421 !important;
  border-radius: 50% !important;
  transform: translate(-58%, -58%) !important;
}

.site-header .site-search button::after {
  width: 7px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: #071421 !important;
  transform: translate(10%, 130%) rotate(-45deg) !important;
  transform-origin: left center !important;
}

@media (min-width: 981px) {
  body.about-page .primary-nav {
    transform: none !important;
  }
}

/* Local review final: keep the search icon cap visible and centered on all desktop headers. */
body.home-page .site-header .site-search button,
body.about-page .site-header .site-search button,
body.catalog-page .site-header .site-search button,
body.product-detail-page .site-header .site-search button,
body.contact-page .site-header .site-search button,
body.blog-page .site-header .site-search button,
.site-header.site-header--solid .site-search button {
  top: -1px !important;
  right: -1px !important;
  bottom: auto !important;
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: calc(100% + 2px) !important;
  min-height: calc(100% + 2px) !important;
  max-height: none !important;
}

/* Local review final: remove header search on iPad and phone layouts. */
@media (max-width: 980px) {
  .site-header .site-search,
  body.home-page .site-header .site-search,
  body.about-page .site-header .site-search,
  body.catalog-page .site-header .site-search,
  body.product-detail-page .site-header .site-search,
  body.contact-page .site-header .site-search,
  body.blog-page .site-header .site-search {
    display: none !important;
  }
}

/* Local review final: center the footer quick-contact block on iPad and phone. */
@media (max-width: 980px) {
  body.home-page .site-footer .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact {
    max-width: 640px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    justify-items: center !important;
  }

  body.home-page .site-footer .footer-contact h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact h3 {
    width: 100% !important;
    text-align: center !important;
  }

  body.home-page .site-footer .footer-contact p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p {
    width: fit-content !important;
    max-width: min(100%, 520px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-content: center !important;
    text-align: left !important;
  }

  body.home-page .site-footer .footer-socials,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials {
    justify-content: center !important;
    justify-self: center !important;
  }
}

/* Local review final: make iPad Blog use the same single-column flow as phone. */
@media (max-width: 980px) {
  .blog-page .blog-shell {
    padding: 24px 0 46px !important;
  }

  .blog-page .blog-shell__inner {
    width: min(100% - 24px, 1780px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .blog-page .blog-sidebar {
    position: static !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    order: 1 !important;
    width: 100% !important;
    padding: 14px 14px 16px !important;
    border: 1px solid #dedede !important;
    background: #ffffff !important;
  }

  .blog-page .blog-sidebar h2 {
    flex: 0 0 100% !important;
    margin: 0 0 2px !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
  }

  .blog-page .blog-sidebar > a {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    border: 1px solid #d8d8d8 !important;
    border-radius: 999px !important;
    color: #111111 !important;
    background: #f7f7f7 !important;
    font-size: 9.6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .blog-page .blog-inquiry-box {
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px 10px !important;
    align-items: center !important;
    margin-top: 6px !important;
    padding: 12px !important;
    border: 0 !important;
    background: #071a2d !important;
  }

  .blog-page .blog-inquiry-box h3 {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
  }

  .blog-page .blog-inquiry-box p {
    grid-column: 1 !important;
    margin: 0 !important;
    font-size: 8.8px !important;
    line-height: 1.32 !important;
  }

  .blog-page .blog-inquiry-box a {
    grid-row: 1 / span 2 !important;
    grid-column: 2 !important;
    min-height: 30px !important;
    padding: 0 11px !important;
    font-size: 8.4px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  .blog-page .blog-list {
    order: 2 !important;
    width: 100% !important;
    gap: 14px !important;
  }

  .blog-page .blog-card,
  .blog-page .blog-card--featured {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .blog-page .blog-card__media,
  .blog-page .blog-card--featured .blog-card__media {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .blog-page .blog-card__body {
    padding: 16px 16px 18px !important;
  }
}

/* Local review final: make phone About story follow the iPad stacked composition. */
@media (max-width: 760px) {
  .about-page .about-story {
    padding: 0 !important;
  }

  .about-page .about-story__hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .about-page .about-story__copy {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 28px 8vw 24px !important;
    clip-path: none !important;
  }

  .about-page .about-story__copy::before {
    inset: 0 !important;
    clip-path: none !important;
  }

  .about-page .about-story__ghost {
    top: 2px !important;
    left: 8vw !important;
    font-size: clamp(52px, 16vw, 86px) !important;
  }

  .about-page .about-story h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 0.98 !important;
  }

  .about-page .about-story__rule {
    width: min(220px, 58vw) !important;
    margin-top: 8px !important;
  }

  .about-page .about-story__kicker {
    margin: 8px 0 10px !important;
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  .about-page .about-story__text {
    max-width: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
    font-size: 13px !important;
    line-height: 1.42 !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 8px !important;
  }

  .about-page .about-story__text strong {
    font-size: 15px !important;
  }

  .about-page .about-story__visual {
    min-height: clamp(330px, 88vw, 520px) !important;
    max-height: none !important;
    margin-left: 0 !important;
    overflow: hidden !important;
  }

  .about-page .about-story__building {
    background-position: center center !important;
    background-size: cover !important;
  }

  .about-page .about-story__stats {
    right: 8vw !important;
    bottom: 18px !important;
    left: 8vw !important;
    height: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    border-radius: 4px !important;
  }

  .about-page .about-story__stats article {
    min-height: 76px !important;
    height: auto !important;
    grid-template-rows: auto !important;
    padding: 8px 4px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-bottom: 0 !important;
    gap: 4px !important;
  }

  .about-page .about-story__stats article:last-child {
    border-right: 0 !important;
  }

  .about-page .about-story__stats span,
  .about-page .about-story__stats span svg {
    width: 16px !important;
    height: 16px !important;
  }

  .about-page .about-story__stats strong {
    min-height: 20px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
  }

  .about-page .about-story__stats em {
    font-size: 6px !important;
    line-height: 1.18 !important;
  }

  .about-page .about-story__values {
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    padding: 24px 8vw !important;
    overflow: visible !important;
  }

  .about-page .about-story__quote {
    grid-column: 1 / -1 !important;
    min-height: 72px !important;
    padding: 8px 18px 8px 0 !important;
  }

  .about-page .about-story__values article {
    min-height: 86px !important;
    padding: 12px 10px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-left: 0 !important;
  }

  .about-page .about-story__quote strong,
  .about-page .about-story__values article strong {
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .about-page .about-story__quote p,
  .about-page .about-story__values article p {
    margin-top: 4px !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
}

/* Local review final: let the About history timeline follow the selected year on iPad and phone. */
@media (max-width: 980px) {
  .about-page .about-history__timeline {
    display: flex !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 2px 14px !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .about-page .about-history__timeline::before {
    top: 31px !important;
    right: auto !important;
    left: 8px !important;
    width: 980px !important;
    min-width: 980px !important;
  }

  .about-page .about-history__timeline::after {
    top: 31px !important;
  }

  .about-page .about-history__timeline button {
    flex: 0 0 86px !important;
    min-width: 86px !important;
    scroll-snap-align: center !important;
  }
}

/* Local review final: override older tablet footer rules so Quick Contact reads centered. */
@media (max-width: 980px) {
  body.home-page .site-footer .footer-grid > .footer-contact,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-grid > .footer-contact {
    max-width: 640px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
    justify-items: center !important;
  }
}

/* Local review final: keep the About timeline rail continuous and dots aligned. */
@media (max-width: 980px) {
  .about-page .about-history__timeline {
    --history-dot-y: 31px;
    --history-rail-width: 1184px;
    position: relative !important;
    align-items: start !important;
    gap: 0 !important;
    padding: 4px 0 16px !important;
    background-image: linear-gradient(#c9cfd7, #c9cfd7) !important;
    background-repeat: no-repeat !important;
    background-position: 43px var(--history-dot-y) !important;
    background-size: calc(var(--history-rail-width) - 86px) 1px !important;
  }

  .about-page .about-history__timeline::before,
  .about-page .about-history__timeline::after {
    display: none !important;
  }

  .about-page .about-history__timeline button {
    display: grid !important;
    grid-template-rows: 18px 18px minmax(32px, auto) !important;
    flex: 0 0 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    gap: 0 !important;
    align-items: center !important;
    justify-items: center !important;
    padding: 0 4px !important;
  }

  .about-page .about-history__timeline strong {
    grid-row: 1 !important;
    align-self: end !important;
    line-height: 1 !important;
  }

  .about-page .about-history__timeline span {
    grid-row: 2 !important;
    align-self: center !important;
    width: 13px !important;
    height: 13px !important;
    margin: 0 !important;
    background: #f8f8f8 !important;
  }

  .about-page .about-history__timeline em {
    grid-row: 3 !important;
    align-self: start !important;
    padding-top: 5px !important;
    line-height: 1.15 !important;
  }

  .about-page .about-history__timeline button.is-active span {
    background: #111111 !important;
  }
}

/* Local review final: use the continuous timeline rail on narrow desktop too. */
@media (max-width: 1180px) {
  .about-page .about-history__timeline {
    display: flex !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 4px 0 16px !important;
    background-image: none !important;
    scroll-snap-type: x proximity !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .about-page .about-history__timeline::before,
  .about-page .about-history__timeline::after {
    display: none !important;
  }

  .about-page .about-history__timeline button {
    position: relative !important;
    display: grid !important;
    grid-template-rows: 22px 20px minmax(34px, auto) !important;
    flex: 0 0 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    gap: 0 !important;
    align-items: center !important;
    justify-items: center !important;
    padding: 0 5px !important;
    background-image: linear-gradient(#c9cfd7, #c9cfd7) !important;
    background-repeat: no-repeat !important;
    background-position: 0 32px !important;
    background-size: 100% 1px !important;
    scroll-snap-align: center !important;
  }

  .about-page .about-history__timeline button::before {
    display: none !important;
  }

  .about-page .about-history__timeline strong {
    grid-row: 1 !important;
    align-self: end !important;
    line-height: 1 !important;
  }

  .about-page .about-history__timeline span {
    grid-row: 2 !important;
    align-self: center !important;
    width: 13px !important;
    height: 13px !important;
    margin: 0 !important;
    background: #f8f8f8 !important;
  }

  .about-page .about-history__timeline em {
    grid-row: 3 !important;
    align-self: start !important;
    padding-top: 5px !important;
    line-height: 1.16 !important;
  }

  .about-page .about-history__timeline button.is-active span {
    background: #111111 !important;
  }
}

@media (max-width: 980px) {
  .about-page .about-history__timeline button {
    grid-template-rows: 18px 18px minmax(32px, auto) !important;
    flex-basis: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    background-position: 0 31px !important;
  }
}

/* Local review final: draw the mobile/tablet timeline rail per item so it never breaks while scrolling. */
@media (max-width: 980px) {
  .about-page .about-history__timeline {
    background-image: none !important;
  }

  .about-page .about-history__timeline button {
    position: relative !important;
    background-image: linear-gradient(#c9cfd7, #c9cfd7) !important;
    background-repeat: no-repeat !important;
    background-position: 0 31px !important;
    background-size: 100% 1px !important;
  }

  .about-page .about-history__timeline button::before {
    display: none !important;
  }

  .about-page .about-history__timeline strong,
  .about-page .about-history__timeline span,
  .about-page .about-history__timeline em {
    position: relative !important;
    z-index: 1 !important;
  }
}

/* Local review final: lock product category image frames to portrait 3:4 everywhere. */
.product-categories .category-card .image-slot,
.product-categories .category-card--wide .image-slot,
.product-categories .category-card--more .image-slot,
body.home-page .product-categories .category-card .image-slot,
body.home-page .product-categories .category-card--wide .image-slot,
body.home-page .product-categories .category-card--more .image-slot {
  aspect-ratio: 3 / 4 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Local review final: lock About history media frames to landscape 4:3 everywhere. */
.about-page .about-history__media,
.about-page .about-history__preview,
.about-page .about-image-placeholder--history,
.about-page .about-history__card > .about-image-placeholder--history:first-child {
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-self: start !important;
}

.about-page .about-history__media img,
.about-page .about-history__preview img,
.about-page .about-image-placeholder--history img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.about-page .about-history__card {
  align-items: stretch !important;
  height: auto !important;
  min-height: 0 !important;
}

.about-page .about-history__copy {
  height: auto !important;
  min-height: 0 !important;
}

@media (min-width: 761px) and (max-width: 980px) {
  .about-page .about-history__card {
    aspect-ratio: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

@media (max-width: 760px) {
  .about-page .about-history__card {
    aspect-ratio: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

/* Local review final: keep About history card height equal to the fixed image height. */
.about-page .about-history__card {
  overflow: hidden !important;
}

.about-page .about-history__copy {
  height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}

.about-page .about-history__copy h3 {
  min-height: 0 !important;
}

.about-page .about-history__copy strong {
  min-height: 0 !important;
}

@media (min-width: 981px) {
  .about-page .about-history__card {
    aspect-ratio: 11 / 3 !important;
    grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 3fr) !important;
    align-items: stretch !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__preview {
    align-self: stretch !important;
  }

  .about-page .about-history__copy {
    padding: clamp(16px, 2vw, 30px) clamp(20px, 3vw, 42px) !important;
    align-content: center !important;
  }
}

@media (max-width: 980px) {
  .about-page .about-history__card {
    aspect-ratio: 8 / 3 !important;
    align-items: stretch !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__card > .about-image-placeholder--history:first-child {
    align-self: stretch !important;
  }

  .about-page .about-history__copy {
    align-content: center !important;
  }
}

/* Local review final: calculate About history card height from fixed image ratios. */
.about-page .about-history__card > * {
  min-height: 0 !important;
  overflow: hidden !important;
}

@media (min-width: 981px) {
  .about-page .about-history__stage {
    --about-history-card-width: calc(min(100vw - 120px, 1450px) - 152px);
  }

  .about-page .about-history__card {
    aspect-ratio: auto !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    height: calc(var(--about-history-card-width) / 4) !important;
    max-height: calc(var(--about-history-card-width) / 4) !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__preview,
  .about-page .about-image-placeholder--history {
    aspect-ratio: auto !important;
    height: 100% !important;
    align-self: stretch !important;
  }

  .about-page .about-history__copy {
    height: 100% !important;
    padding: 18px 30px !important;
  }

  .about-page .about-history__copy p {
    font-size: 18px !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 8px !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-history__copy span {
    margin: 10px 0 !important;
  }

  .about-page .about-history__copy strong {
    max-height: 94px !important;
    font-size: 12.5px !important;
    line-height: 1.34 !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .about-page .about-history__stage {
    --about-history-card-width: calc(min(100vw - 48px, 980px) - 76px);
  }

  .about-page .about-history__card {
    aspect-ratio: auto !important;
    height: calc(var(--about-history-card-width) * 3 / 8) !important;
    max-height: calc(var(--about-history-card-width) * 3 / 8) !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__card > .about-image-placeholder--history:first-child {
    aspect-ratio: auto !important;
    height: 100% !important;
    align-self: stretch !important;
  }
}

/* Local review final: product category cards are always portrait 3:4 with no extra bottom gap. */
.product-categories .category-grid {
  align-items: start !important;
}

.product-categories .category-card,
.product-categories .category-card--wide,
.product-categories .category-card--more,
body.home-page .product-categories .category-card,
body.home-page .product-categories .category-card--wide,
body.home-page .product-categories .category-card--more {
  position: relative !important;
  display: block !important;
  grid-column: auto !important;
  grid-template-columns: none !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.product-categories .category-card .image-slot,
.product-categories .category-card--wide .image-slot,
.product-categories .category-card--more .image-slot,
body.home-page .product-categories .category-card .image-slot,
body.home-page .product-categories .category-card--wide .image-slot,
body.home-page .product-categories .category-card--more .image-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  background-size: cover !important;
  background-position: center center !important;
}

.product-categories .category-card__body,
.product-categories .category-card--more .category-card__body,
body.home-page .product-categories .category-card__body,
body.home-page .product-categories .category-card--more .category-card__body {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  min-height: 0 !important;
  padding: clamp(10px, 2.1vw, 22px) clamp(12px, 2.4vw, 28px) !important;
  background: rgba(0, 0, 0, 0.52) !important;
}

.product-categories .category-card__body h3,
.product-categories .category-card--more .category-card__body h3,
body.home-page .product-categories .category-card__body h3,
body.home-page .product-categories .category-card--more .category-card__body h3 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(12px, 2vw, 22px) !important;
  line-height: 1.08 !important;
}

body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card,
body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card--wide,
body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card--more {
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  align-self: start !important;
}

body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card .image-slot,
body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card--wide .image-slot,
body.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .category-card--more .image-slot {
  height: 100% !important;
  min-height: 0 !important;
}

/* Local review final: shrink About history copy so it fits inside the fixed-height card. */
.about-page .about-history__copy {
  display: grid !important;
  align-content: center !important;
  gap: 0 !important;
  overflow: hidden !important;
}

.about-page .about-history__copy p,
.about-page .about-history__copy h3,
.about-page .about-history__copy strong {
  min-height: 0 !important;
  max-height: none !important;
}

@media (min-width: 1181px) {
  .about-page .about-history__copy {
    padding: 18px 30px !important;
  }

  .about-page .about-history__copy p {
    font-size: 17px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 8px !important;
    font-size: 24px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-history__copy span {
    width: 24px !important;
    height: 2px !important;
    margin: 9px 0 !important;
  }

  .about-page .about-history__copy strong {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .about-page .about-history__copy {
    padding: 16px 28px !important;
  }

  .about-page .about-history__copy p {
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 7px !important;
    font-size: 22px !important;
    line-height: 1.06 !important;
  }

  .about-page .about-history__copy span {
    width: 22px !important;
    height: 2px !important;
    margin: 8px 0 !important;
  }

  .about-page .about-history__copy strong {
    font-size: 11.3px !important;
    line-height: 1.23 !important;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .about-page .about-history__copy {
    padding: 12px 18px !important;
  }

  .about-page .about-history__copy p {
    font-size: 13px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 5px !important;
    font-size: 17px !important;
    line-height: 1.04 !important;
  }

  .about-page .about-history__copy span {
    width: 18px !important;
    height: 2px !important;
    margin: 5px 0 !important;
  }

  .about-page .about-history__copy strong {
    font-size: 8.5px !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 760px) {
  .about-page .about-history__copy {
    padding: 7px 9px !important;
  }

  .about-page .about-history__copy p {
    font-size: 7.6px !important;
    line-height: 1 !important;
  }

  .about-page .about-history__copy h3 {
    margin-top: 3px !important;
    font-size: 9.8px !important;
    line-height: 1.02 !important;
  }

  .about-page .about-history__copy span {
    width: 14px !important;
    height: 2px !important;
    margin: 3px 0 !important;
  }

  .about-page .about-history__copy strong {
    font-size: 5.2px !important;
    line-height: 1.14 !important;
  }
}

/* Local review final: use a fixed vector search icon so it never distorts. */
.site-header .site-search button,
body.home-page .site-header .site-search button,
body.about-page .site-header .site-search button,
body.catalog-page .site-header .site-search button,
body.product-detail-page .site-header .site-search button,
body.contact-page .site-header .site-search button,
body.blog-page .site-header .site-search button,
.site-header.site-header--solid .site-search button {
  color: transparent !important;
  text-indent: -999px !important;
  overflow: hidden !important;
  background-color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='18'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23071421'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='10.8'%20cy='10.8'%20r='5.8'/%3E%3Cpath%20d='m15.2%2015.2%204.3%204.3'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 16px 16px !important;
}

.site-header .site-search button::before,
.site-header .site-search button::after {
  display: none !important;
  content: none !important;
}

/* Local review final: center catalog product images and scale them with their frame. */
.catalog-page .catalog-card__image {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.catalog-page .catalog-card {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: stretch !important;
}

.catalog-page .catalog-card__image {
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
  align-self: start !important;
}

.catalog-page .catalog-card__image img,
.catalog-page .catalog-card__image .woocommerce-placeholder {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 86% !important;
  max-height: 86% !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: translate(-50%, -50%) scale(1) !important;
  transform-origin: center center !important;
}

.catalog-page .catalog-card:hover .catalog-card__image img,
.catalog-page .catalog-card:focus-within .catalog-card__image img {
  transform: translate(-50%, -50%) scale(1.06) !important;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    max-width: 84% !important;
    max-height: 84% !important;
  }
}

@media (max-width: 980px) {
  .catalog-page .catalog-card__image img,
  .catalog-page .catalog-card__image .woocommerce-placeholder {
    max-width: 88% !important;
    max-height: 88% !important;
  }
}

@media (max-width: 760px) {
  .about-page .about-history__stage {
    --about-history-card-width: calc(min(100vw - 24px, 980px) - 52px);
  }

  .about-page .about-history__card {
    aspect-ratio: auto !important;
    height: calc(var(--about-history-card-width) * 3 / 8) !important;
    max-height: calc(var(--about-history-card-width) * 3 / 8) !important;
  }

  .about-page .about-history__media,
  .about-page .about-history__card > .about-image-placeholder--history:first-child {
    aspect-ratio: auto !important;
    height: 100% !important;
    align-self: stretch !important;
  }
}

/* Local review final: product feature image frames stay horizontal 4:3 on every device. */
.product-features .feature-grid {
  align-items: start !important;
}

.product-features .feature-card {
  display: grid !important;
  grid-template-rows: auto auto !important;
  align-self: start !important;
  min-height: 0 !important;
  height: auto !important;
}

.product-features .feature-card .image-slot {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.product-features .feature-card .image-slot::before {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: inherit !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Local review final: center the desktop navigation across every page. */
@media (min-width: 981px) {
  .site-header .header-main,
  body.home-page .site-header .header-main,
  body.catalog-page .site-header .header-main,
  body.product-detail-page .site-header .header-main,
  body.contact-page .site-header .header-main,
  body.blog-page .site-header .header-main,
  body.about-page .site-header .header-main,
  .site-header.site-header--solid .header-main {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
  }

  .site-header .brand,
  body.home-page .site-header .brand,
  body.catalog-page .site-header .brand,
  body.product-detail-page .site-header .brand,
  body.contact-page .site-header .brand,
  body.blog-page .site-header .brand,
  body.about-page .site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    transform: none !important;
  }

  .site-header .primary-nav,
  body.home-page .site-header .primary-nav,
  body.catalog-page .site-header .primary-nav,
  body.product-detail-page .site-header .primary-nav,
  body.contact-page .site-header .primary-nav,
  body.blog-page .site-header .primary-nav,
  body.about-page .site-header .primary-nav,
  .site-header.site-header--solid .primary-nav {
    position: fixed !important;
    top: calc(var(--header-height, 72px) / 2) !important;
    left: 50% !important;
    z-index: 4 !important;
    width: max-content !important;
    max-width: min(58vw, 680px) !important;
    justify-content: center !important;
    transform: translate(-50%, -50%) !important;
  }

  .site-header .site-search,
  body.home-page .site-header .site-search,
  body.catalog-page .site-header .site-search,
  body.product-detail-page .site-header .site-search,
  body.contact-page .site-header .site-search,
  body.blog-page .site-header .site-search,
  body.about-page .site-header .site-search,
  .site-header.site-header--solid .site-search {
    grid-column: 2 !important;
    justify-self: end !important;
    transform: none !important;
  }
}

/* Local review final: keep the header visible while scrolling on every page. */
.site-header,
.site-header.site-header--solid,
body.home-page .site-header,
body.catalog-page .site-header,
body.product-detail-page .site-header,
body.contact-page .site-header,
body.blog-page .site-header,
body.about-page .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
}

/* Local review final: force the desktop nav group onto the visual center of the top bar. */
@media (min-width: 981px) {
  nav#primary-nav.primary-nav,
  .site-header nav#primary-nav.primary-nav,
  body.home-page .site-header nav#primary-nav.primary-nav,
  body.catalog-page .site-header nav#primary-nav.primary-nav,
  body.product-detail-page .site-header nav#primary-nav.primary-nav,
  body.contact-page .site-header nav#primary-nav.primary-nav,
  body.blog-page .site-header nav#primary-nav.primary-nav,
  body.about-page .site-header nav#primary-nav.primary-nav {
    position: fixed !important;
    top: calc(var(--header-height, 72px) / 2) !important;
    right: auto !important;
    left: 50vw !important;
    margin: 0 !important;
    justify-content: center !important;
    transform: translate(-40%, -50%) !important;
  }
}

/* Local review final: align mobile footer phone/email with the address text column. */
@media (max-width: 760px) {
  body.home-page .site-footer .footer-contact p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    width: min(100%, 430px) !important;
    margin-inline: auto !important;
    justify-content: stretch !important;
    justify-items: start !important;
    text-align: left !important;
  }

  body.home-page .site-footer .footer-contact p img,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p img {
    grid-column: 1 !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  body.home-page .site-footer .footer-contact p .footer-contact__text,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p .footer-contact__text {
    grid-column: 2 !important;
    justify-self: start !important;
    max-width: none !important;
    margin: 0 !important;
    text-align: left !important;
  }
}

/* Local review final: keep the inquiry envelope and title level on mobile. */
@media (max-width: 760px) {
  body.home-page .site-footer .footer-inquiry__title,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    width: 100% !important;
    isolation: isolate !important;
  }

  body.home-page .site-footer .footer-inquiry__title::before,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title::before {
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
    display: block !important;
    flex: none !important;
    width: auto !important;
    min-width: 42px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.28) !important;
    transform: translateY(-50%) !important;
    content: "" !important;
  }

  body.home-page .site-footer .footer-inquiry__title::after,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title::after {
    display: none !important;
    content: none !important;
  }

  body.home-page .site-footer .footer-inquiry__title span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title span {
    position: relative !important;
    z-index: 1 !important;
    display: inline-grid !important;
    flex: 0 0 34px !important;
    width: 34px !important;
    height: 22px !important;
    margin: 0 !important;
    place-items: center !important;
    background: #050505 !important;
    transform: none !important;
  }

  body.home-page .site-footer .footer-inquiry__title span svg,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title span svg {
    width: 18px !important;
    height: 18px !important;
  }

  body.home-page .site-footer .footer-inquiry__title h3,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-inquiry__title h3 {
    position: relative !important;
    z-index: 1 !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    min-height: 22px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 8px 0 4px !important;
    background: #050505 !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }
}

/* Local review final: compact the mobile About story and remove the join gap before the image. */
@media (max-width: 760px) {
  .about-page .about-story,
  .about-page .about-story__hero {
    gap: 0 !important;
    padding-bottom: 0 !important;
  }

  .about-page .about-story__copy {
    padding: 18px 8vw 12px !important;
  }

  .about-page .about-story__ghost {
    top: 1px !important;
    font-size: clamp(38px, 11.2vw, 60px) !important;
  }

  .about-page .about-story h1 {
    font-size: clamp(24px, 7vw, 34px) !important;
    line-height: 0.98 !important;
  }

  .about-page .about-story__rule {
    width: min(154px, 42vw) !important;
    margin-top: 6px !important;
  }

  .about-page .about-story__kicker {
    margin: 6px 0 7px !important;
    font-size: 7.8px !important;
    line-height: 1.1 !important;
  }

  .about-page .about-story__text {
    font-size: 9.1px !important;
    line-height: 1.34 !important;
  }

  .about-page .about-story__text p {
    margin-bottom: 5px !important;
  }

  .about-page .about-story__text strong {
    font-size: 10.5px !important;
  }

  .about-page .about-story__visual {
    margin-top: 0 !important;
  }
}

/* Local review final: make the mobile About capability area follow the iPad layout. */
@media (max-width: 760px) {
  .about-page .about-capability {
    padding: 34px 0 24px !important;
  }

  .about-page .about-capability__grid {
    width: min(100% - 28px, var(--container)) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-page .about-capability__copy {
    padding-top: 0 !important;
  }

  .about-page .about-capability__copy p {
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.14em !important;
  }

  .about-page .about-capability__copy h2 {
    margin-top: 10px !important;
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .about-page .about-capability__copy > span {
    margin-top: 16px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .about-page .about-capability__copy a {
    min-width: 148px !important;
    max-width: none !important;
    min-height: 42px !important;
    margin-top: 20px !important;
    padding: 0 18px !important;
    gap: 16px !important;
    font-size: 12px !important;
  }

  .about-page .about-capability__cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .about-page .about-capability__cards article {
    aspect-ratio: 3 / 4 !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .about-page .about-capability__cards span {
    width: 18px !important;
    height: 2px !important;
    margin-bottom: 10px !important;
  }

  .about-page .about-capability__cards h3 {
    font-size: 15px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-extra-showcase {
    padding: 8px 0 52px !important;
  }

  .about-page .about-extra-showcase__inner {
    width: min(100% - 28px, var(--container)) !important;
    gap: 28px !important;
  }

  .about-page .about-extra-block,
  .about-page .about-extra-block--landscape,
  .about-page .about-extra-block--portrait {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 0 !important;
  }

  .about-page .about-extra-block--landscape .about-extra-copy,
  .about-page .about-extra-block--landscape .about-extra-media-grid,
  .about-page .about-extra-block--portrait .about-extra-copy,
  .about-page .about-extra-block--portrait .about-extra-media-grid {
    order: initial !important;
    padding-top: 0 !important;
  }

  .about-page .about-extra-copy {
    gap: 12px !important;
  }

  .about-page .about-extra-copy h2,
  .about-page .about-extra-block--landscape .about-extra-copy h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .about-page .about-extra-copy p,
  .about-page .about-extra-block--landscape .about-extra-copy p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .about-page .about-extra-action {
    min-width: 132px !important;
    min-height: 40px !important;
    margin-top: 4px !important;
    padding: 0 16px !important;
    gap: 14px !important;
    font-size: 12px !important;
  }

  .about-page .about-extra-media-grid--landscape,
  .about-page .about-extra-media-grid--portrait {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
  }

  .about-page .about-extra-media-grid--landscape .about-extra-media {
    aspect-ratio: 4 / 3 !important;
  }

  .about-page .about-extra-media-grid--portrait .about-extra-media {
    aspect-ratio: 3 / 4 !important;
  }

  .about-page .about-extra-media {
    border-radius: 7px !important;
  }
}

/* Local review final: keep the opened mobile menu attached to the sticky header while scrolling. */
@media (max-width: 980px) {
  body.nav-open .site-header .primary-nav,
  body.nav-open.home-page .site-header .primary-nav,
  body.nav-open.about-page .site-header .primary-nav,
  body.nav-open.catalog-page .site-header .primary-nav,
  body.nav-open.product-detail-page .site-header .primary-nav,
  body.nav-open.contact-page .site-header .primary-nav,
  body.nav-open.blog-page .site-header .primary-nav {
    position: fixed !important;
    top: var(--header-height, 72px) !important;
    right: 14px !important;
    left: 14px !important;
    z-index: 9999 !important;
    width: auto !important;
    max-height: calc(100vh - var(--header-height, 72px) - 18px) !important;
    overflow-y: auto !important;
  }
}

/* Local review final: center the opened mobile menu and keep it fixed while scrolling. */
@media (max-width: 980px) {
  body.nav-open nav#primary-nav.primary-nav,
  body.nav-open .site-header nav#primary-nav.primary-nav,
  body.nav-open.home-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.about-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.catalog-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.product-detail-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.contact-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.blog-page .site-header nav#primary-nav.primary-nav {
    position: fixed !important;
    top: var(--header-height, 72px) !important;
    right: auto !important;
    left: 50% !important;
    z-index: 10001 !important;
    width: calc(100vw - 28px) !important;
    max-width: 560px !important;
    max-height: calc(100vh - var(--header-height, 72px) - 18px) !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    transform: translateX(-50%) !important;
  }
}

/* Local review final: make the mobile/tablet header truly follow while scrolling. */
@media (max-width: 980px) {
  html body {
    padding-top: var(--header-height, 72px) !important;
  }

  .site-header,
  .site-header.site-header--solid,
  body.home-page .site-header,
  body.catalog-page .site-header,
  body.product-detail-page .site-header,
  body.contact-page .site-header,
  body.blog-page .site-header,
  body.about-page .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
  }
}

/* Local review final: make the mobile catalog search input and icon sit perfectly inside one frame. */
@media (max-width: 760px) {
  .catalog-page .catalog-inline-search {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 38px !important;
    height: 40px !important;
    overflow: hidden !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 4px !important;
    background: #ffffff !important;
  }

  .catalog-page .catalog-inline-search input {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    min-width: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: 0 10px !important;
    background: transparent !important;
    line-height: 40px !important;
  }

  .catalog-page .catalog-inline-search button {
    display: grid !important;
    width: 38px !important;
    height: 100% !important;
    min-height: 0 !important;
    place-items: center !important;
    border: 0 !important;
    border-left: 1px solid #e2e2e2 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }
}

/* Local review final: give the homepage hero more weight on iPad/tablet proportions. */
@media (min-width: 761px) and (max-width: 980px) {
  body.home-page .hero,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
    min-height: clamp(560px, 62vw, 680px) !important;
    height: clamp(560px, 62vw, 680px) !important;
  }

  body.home-page .hero__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    min-height: clamp(560px, 62vw, 680px) !important;
    height: clamp(560px, 62vw, 680px) !important;
    padding-top: 108px !important;
    padding-bottom: 126px !important;
    align-items: center !important;
  }

  body.home-page .hero__copy,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy {
    max-width: 420px !important;
    transform: translateY(-16px) !important;
  }

  body.home-page .hero-logo,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  body.home-page .hero__copy h1,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1 {
    margin-top: 10px !important;
    font-size: 29px !important;
    line-height: 1.08 !important;
  }

  body.home-page .hero__copy h2,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2 {
    margin-top: 8px !important;
    font-size: 20px !important;
    line-height: 1.18 !important;
  }

  body.home-page .hero__lead,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    margin-top: 16px !important;
    margin-bottom: 22px !important;
    font-size: 17px !important;
    line-height: 1.38 !important;
  }

  body.home-page .hero-actions,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions {
    display: grid !important;
    gap: 12px !important;
    width: 150px !important;
  }

  body.home-page .hero-actions .button,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions .button {
    min-width: 150px !important;
    min-height: 40px !important;
    font-size: 12px !important;
  }

  body.home-page .stats-bar,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar {
    margin-top: -112px !important;
    padding-bottom: 18px !important;
  }

  body.home-page .stats-bar__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 52px, 760px) !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    align-items: end !important;
  }

  body.home-page .stat-item,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item {
    min-height: 84px !important;
  }

  body.home-page .stat-icon,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 8px !important;
  }

  body.home-page .stat-item strong,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item strong {
    font-size: 17px !important;
    line-height: 1.08 !important;
  }

  body.home-page .stat-item span,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stat-item span {
    font-size: 8px !important;
    line-height: 1.2 !important;
  }
}

/* Local review final: keep the mobile/tablet header visible while scrolling. */
@media (max-width: 980px) {
  :root {
    --mobile-fixed-header-height: var(--header-height, 72px);
  }

  body {
    padding-top: 0 !important;
  }

  .site-header,
  .site-header.site-header--solid,
  body.home-page .site-header,
  body.catalog-page .site-header,
  body.product-detail-page .site-header,
  body.contact-page .site-header,
  body.blog-page .site-header,
  body.about-page .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    min-height: var(--mobile-fixed-header-height) !important;
    background: #050505 !important;
  }

  body.nav-open nav#primary-nav.primary-nav,
  body.nav-open .site-header nav#primary-nav.primary-nav,
  body.nav-open.home-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.about-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.catalog-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.product-detail-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.contact-page .site-header nav#primary-nav.primary-nav,
  body.nav-open.blog-page .site-header nav#primary-nav.primary-nav {
    top: var(--mobile-fixed-header-height) !important;
    max-height: calc(100vh - var(--mobile-fixed-header-height) - 18px) !important;
  }
}

/* Local review final: remove the mobile fixed-header gap and keep content below it. */
@media (max-width: 980px) {
  html body {
    padding-top: 0 !important;
  }

  .site-header,
  .site-header.site-header--solid,
  body.home-page .site-header,
  body.catalog-page .site-header,
  body.product-detail-page .site-header,
  body.contact-page .site-header,
  body.blog-page .site-header,
  body.about-page .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    background: #050505 !important;
  }

  main {
    padding-top: var(--mobile-fixed-header-height) !important;
  }

  body.home-page main {
    padding-top: 0 !important;
  }

  body.home-page .hero {
    padding-top: var(--mobile-fixed-header-height) !important;
  }
}

/* Local review final: animated underline for the mobile product category menu. */
@media (max-width: 980px) {
  .catalog-page .catalog-category-list a,
  .catalog-page .catalog-category-list a:nth-child(2),
  .catalog-page .catalog-category-list a:nth-child(3) {
    position: relative !important;
    border-bottom: 1px solid rgba(5, 5, 5, 0.12) !important;
    overflow: hidden !important;
  }

  .catalog-page .catalog-category-list a::after,
  .catalog-page .catalog-category-list a:nth-child(2)::after,
  .catalog-page .catalog-category-list a:nth-child(3)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 2px !important;
    background: #050505 !important;
    transform: scaleX(0) !important;
    transform-origin: left center !important;
    transition: transform 220ms ease !important;
  }

  .catalog-page .catalog-category-list a:hover::after,
  .catalog-page .catalog-category-list a:focus-visible::after,
  .catalog-page .catalog-category-list a.is-active::after {
    transform: scaleX(1) !important;
  }
}

/* Local review final: align phone and email text with the address text start. */
@media (max-width: 980px) {
  body.home-page .site-footer .footer-contact p,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p {
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    width: min(100%, 430px) !important;
    max-width: min(100%, 430px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-content: stretch !important;
    justify-items: start !important;
    text-align: left !important;
  }

  body.home-page .site-footer .footer-contact p img,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p img {
    grid-column: 1 !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  body.home-page .site-footer .footer-contact p .footer-contact__text,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact p .footer-contact__text {
    grid-column: 2 !important;
    justify-self: start !important;
    margin: 0 !important;
    text-align: left !important;
  }
}

/* Local review final: use sticky mobile headers without adding any top spacer. */
@media (max-width: 980px) {
  html,
  body,
  html body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body > .site-header,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header,
  body > .site-header.site-header--solid {
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 10000 !important;
    width: 100% !important;
    margin-top: 0 !important;
    transform: none !important;
    background: #050505 !important;
  }

  main,
  body > main,
  body.home-page > main,
  body.catalog-page > main,
  body.product-detail-page > main,
  body.contact-page > main,
  body.blog-page > main,
  body.about-page > main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.home-page .hero {
    padding-top: 0 !important;
  }

  body.nav-open nav#primary-nav.primary-nav,
  body.nav-open .site-header nav#primary-nav.primary-nav {
    position: fixed !important;
    top: var(--mobile-fixed-header-height, 72px) !important;
  }
}

/* Local review final: force the mobile header to stay on screen while scrolling. */
@media (max-width: 980px) {
  :root {
    --mobile-fixed-header-height: 74px;
  }

  html,
  body,
  html body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body > .site-header,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header,
  body > .site-header.site-header--solid {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    min-height: var(--mobile-fixed-header-height) !important;
    margin: 0 !important;
    transform: translateZ(0) !important;
    background: #050505 !important;
  }

  body > .site-header .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    min-height: var(--mobile-fixed-header-height) !important;
  }

  body > main,
  body.catalog-page > main,
  body.product-detail-page > main,
  body.contact-page > main,
  body.blog-page > main,
  body.about-page > main {
    margin-top: var(--mobile-fixed-header-height) !important;
    padding-top: 0 !important;
  }

  body.home-page > main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.home-page .hero {
    padding-top: var(--mobile-fixed-header-height) !important;
  }

  body.nav-open nav#primary-nav.primary-nav,
  body.nav-open .site-header nav#primary-nav.primary-nav {
    top: var(--mobile-fixed-header-height) !important;
  }
}

/* Local review final: make every mobile header match the homepage and remove the join gap. */
@media (max-width: 980px) {
  :root {
    --mobile-fixed-header-height: 74px;
  }

  html,
  body,
  html body {
    margin: 0 !important;
    padding: 0 !important;
  }

  body > .site-header,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header,
  body > .site-header.site-header--solid {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    z-index: 10000 !important;
    display: block !important;
    width: 100% !important;
    height: var(--mobile-fixed-header-height) !important;
    min-height: var(--mobile-fixed-header-height) !important;
    max-height: var(--mobile-fixed-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #050505 !important;
    transform: translateZ(0) !important;
  }

  body > .site-header .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    display: grid !important;
    grid-template-columns: auto auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: min(100% - 28px, 1780px) !important;
    height: var(--mobile-fixed-header-height) !important;
    min-height: var(--mobile-fixed-header-height) !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body > .site-header .brand,
  body.home-page > .site-header .brand,
  body.catalog-page > .site-header .brand,
  body.product-detail-page > .site-header .brand,
  body.contact-page > .site-header .brand,
  body.blog-page > .site-header .brand,
  body.about-page > .site-header .brand,
  body > .site-header .menu-toggle,
  body.home-page > .site-header .menu-toggle,
  body.catalog-page > .site-header .menu-toggle,
  body.product-detail-page > .site-header .menu-toggle,
  body.contact-page > .site-header .menu-toggle,
  body.blog-page > .site-header .menu-toggle,
  body.about-page > .site-header .menu-toggle {
    align-self: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body > main,
  body.catalog-page > main,
  body.product-detail-page > main,
  body.contact-page > main,
  body.blog-page > main,
  body.about-page > main {
    margin-top: var(--mobile-fixed-header-height) !important;
    padding-top: 0 !important;
  }

  body.home-page > main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body.home-page .hero {
    margin-top: 0 !important;
    padding-top: var(--mobile-fixed-header-height) !important;
  }

  body > main > :first-child,
  body.catalog-page > main > :first-child,
  body.product-detail-page > main > :first-child,
  body.contact-page > main > :first-child,
  body.blog-page > main > :first-child,
  body.about-page > main > :first-child {
    margin-top: 0 !important;
  }

  body.catalog-page .catalog-hero {
    margin-top: 0 !important;
  }

  body.nav-open nav#primary-nav.primary-nav,
  body.nav-open .site-header nav#primary-nav.primary-nav {
    top: var(--mobile-fixed-header-height) !important;
  }
}

/* Local review final: normalize every mobile header and menu to the inquiry page pattern. */
@media (max-width: 980px) {
  :root {
    --mobile-fixed-header-height: 74px;
  }

  html,
  body,
  html body {
    margin: 0 !important;
    padding: 0 !important;
  }

  body > .site-header,
  body > .site-header.site-header--solid,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    height: var(--mobile-fixed-header-height) !important;
    min-height: var(--mobile-fixed-header-height) !important;
    max-height: var(--mobile-fixed-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: #050505 !important;
    transform: none !important;
  }

  body > .site-header .header-main,
  body > .site-header.site-header--solid .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    display: grid !important;
    grid-template-columns: auto auto !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: min(100% - 28px, var(--container)) !important;
    height: var(--mobile-fixed-header-height) !important;
    min-height: var(--mobile-fixed-header-height) !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body > main,
  body.home-page > main,
  body.catalog-page > main,
  body.product-detail-page > main,
  body.contact-page > main,
  body.blog-page > main,
  body.about-page > main {
    margin-top: var(--mobile-fixed-header-height) !important;
    padding-top: 0 !important;
  }

  body.home-page .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body .site-header .primary-nav,
  body.home-page .site-header .primary-nav,
  body.catalog-page .site-header .primary-nav,
  body.product-detail-page .site-header .primary-nav,
  body.contact-page .site-header .primary-nav,
  body.blog-page .site-header .primary-nav,
  body.about-page .site-header .primary-nav {
    position: fixed !important;
    top: var(--mobile-fixed-header-height) !important;
    right: auto !important;
    left: 50% !important;
    z-index: 10001 !important;
    display: none !important;
    width: calc(100vw - 28px) !important;
    max-width: 560px !important;
    height: auto !important;
    max-height: calc(100vh - var(--mobile-fixed-header-height) - 18px) !important;
    margin: 0 !important;
    padding: 0 18px !important;
    overflow-y: auto !important;
    background: #050505 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32) !important;
    transform: translateX(-50%) !important;
  }

  body.nav-open .site-header .primary-nav,
  body.nav-open.home-page .site-header .primary-nav,
  body.nav-open.catalog-page .site-header .primary-nav,
  body.nav-open.product-detail-page .site-header .primary-nav,
  body.nav-open.contact-page .site-header .primary-nav,
  body.nav-open.blog-page .site-header .primary-nav,
  body.nav-open.about-page .site-header .primary-nav {
    display: grid !important;
    grid-template-rows: repeat(6, 58px) !important;
  }

  body .site-header .primary-nav > a,
  body .site-header .primary-nav .nav-dropdown__toggle {
    border-bottom-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
  }
}

/* Local review final: unify desktop header navigation position, scale, and dropdown size. */
@media (min-width: 981px) {
  body > .site-header,
  body > .site-header.site-header--solid,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
    background: #050505 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  body > .site-header .header-main,
  body > .site-header.site-header--solid .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) 170px !important;
    align-items: center !important;
    gap: 28px !important;
    width: min(100% - 56px, 1180px) !important;
    min-height: 74px !important;
    height: 74px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body > .site-header .brand,
  body.home-page > .site-header .brand,
  body.catalog-page > .site-header .brand,
  body.product-detail-page > .site-header .brand,
  body.contact-page > .site-header .brand,
  body.blog-page > .site-header .brand,
  body.about-page > .site-header .brand {
    grid-column: 1 !important;
    justify-self: start !important;
    transform: none !important;
  }

  body > .site-header .brand__logo,
  body.home-page > .site-header .brand__logo,
  body.catalog-page > .site-header .brand__logo,
  body.product-detail-page > .site-header .brand__logo,
  body.contact-page > .site-header .brand__logo,
  body.blog-page > .site-header .brand__logo,
  body.about-page > .site-header .brand__logo {
    width: 150px !important;
    height: auto !important;
    max-height: 32px !important;
  }

  body > .site-header nav#primary-nav.primary-nav,
  body.home-page > .site-header nav#primary-nav.primary-nav,
  body.catalog-page > .site-header nav#primary-nav.primary-nav,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav,
  body.contact-page > .site-header nav#primary-nav.primary-nav,
  body.blog-page > .site-header nav#primary-nav.primary-nav,
  body.about-page > .site-header nav#primary-nav.primary-nav {
    position: static !important;
    inset: auto !important;
    grid-column: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  body > .site-header .primary-nav > a,
  body > .site-header .primary-nav .nav-dropdown__toggle,
  body.home-page > .site-header .primary-nav > a,
  body.home-page > .site-header .primary-nav .nav-dropdown__toggle,
  body.catalog-page > .site-header .primary-nav > a,
  body.catalog-page > .site-header .primary-nav .nav-dropdown__toggle,
  body.product-detail-page > .site-header .primary-nav > a,
  body.product-detail-page > .site-header .primary-nav .nav-dropdown__toggle,
  body.contact-page > .site-header .primary-nav > a,
  body.contact-page > .site-header .primary-nav .nav-dropdown__toggle,
  body.blog-page > .site-header .primary-nav > a,
  body.blog-page > .site-header .primary-nav .nav-dropdown__toggle,
  body.about-page > .site-header .primary-nav > a,
  body.about-page > .site-header .primary-nav .nav-dropdown__toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  body > .site-header .nav-dropdown {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  body > .site-header .nav-dropdown__toggle {
    gap: 12px !important;
  }

  body > .site-header .site-search,
  body.home-page > .site-header .site-search,
  body.catalog-page > .site-header .site-search,
  body.product-detail-page > .site-header .site-search,
  body.contact-page > .site-header .site-search,
  body.blog-page > .site-header .site-search,
  body.about-page > .site-header .site-search {
    grid-column: 3 !important;
    justify-self: end !important;
    width: 165px !important;
    height: 32px !important;
    grid-template-columns: 1fr 28px !important;
    margin: 0 !important;
    transform: none !important;
  }

  body > .site-header .products-menu,
  body.home-page > .site-header .products-menu,
  body.catalog-page > .site-header .products-menu,
  body.product-detail-page > .site-header .products-menu,
  body.contact-page > .site-header .products-menu,
  body.blog-page > .site-header .products-menu,
  body.about-page > .site-header .products-menu {
    position: absolute !important;
    top: 42px !important;
    right: auto !important;
    left: -20px !important;
    display: grid !important;
    width: 280px !important;
    padding: 20px 24px 22px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    background: rgba(0, 0, 0, 0.58) !important;
    box-shadow: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(8px) !important;
    backdrop-filter: blur(12px) saturate(0.9) !important;
  }

  body > .site-header .nav-dropdown.is-open .products-menu,
  body > .site-header .nav-dropdown:focus-within .products-menu,
  body > .site-header .nav-dropdown:hover .products-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  body > .site-header .products-menu a,
  body.home-page > .site-header .products-menu a,
  body.catalog-page > .site-header .products-menu a,
  body.product-detail-page > .site-header .products-menu a,
  body.contact-page > .site-header .products-menu a,
  body.blog-page > .site-header .products-menu a,
  body.about-page > .site-header .products-menu a {
    display: block !important;
    padding: 7px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
    text-transform: none !important;
  }

  body > .site-header nav#primary-nav.primary-nav .products-menu,
  body.home-page > .site-header nav#primary-nav.primary-nav .products-menu,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .products-menu,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .products-menu,
  body.contact-page > .site-header nav#primary-nav.primary-nav .products-menu,
  body.blog-page > .site-header nav#primary-nav.primary-nav .products-menu,
  body.about-page > .site-header nav#primary-nav.primary-nav .products-menu {
    width: 280px !important;
    min-height: 392px !important;
    padding: 20px 24px 22px 20px !important;
    box-sizing: border-box !important;
  }

  body > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.home-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.about-page > .site-header nav#primary-nav.primary-nav .products-menu a {
    display: block !important;
    min-height: 0 !important;
    padding: 7px 0 !important;
    border: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
    text-transform: none !important;
    white-space: nowrap !important;
  }

  body > .site-header .primary-nav > a,
  body > .site-header .primary-nav .nav-dropdown__toggle {
    position: relative !important;
    opacity: 0.9 !important;
    transition: opacity 180ms ease, color 180ms ease, transform 180ms ease !important;
  }

  body > .site-header .primary-nav > a::after,
  body > .site-header .primary-nav .nav-dropdown__toggle::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: -10px !important;
    left: 0 !important;
    display: block !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.72) !important;
    opacity: 0 !important;
    transform: scaleX(0.35) !important;
    transform-origin: center !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

  body > .site-header .primary-nav > a:hover,
  body > .site-header .primary-nav > a:focus-visible,
  body > .site-header .primary-nav .nav-dropdown__toggle:hover,
  body > .site-header .primary-nav .nav-dropdown__toggle:focus-visible {
    color: #ffffff !important;
    opacity: 1 !important;
    transform: translateY(-1px) !important;
  }

  body > .site-header .primary-nav > a:hover::after,
  body > .site-header .primary-nav > a:focus-visible::after,
  body > .site-header .primary-nav .nav-dropdown__toggle:hover::after,
  body > .site-header .primary-nav .nav-dropdown__toggle:focus-visible::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
  }

  body > .site-header .primary-nav > a:active,
  body > .site-header .primary-nav .nav-dropdown__toggle:active {
    opacity: 0.78 !important;
    transform: translateY(0) scale(0.98) !important;
  }

  body > .site-header .products-menu a {
    transition: color 160ms ease, opacity 160ms ease, transform 160ms ease !important;
  }

  body > .site-header .products-menu a:hover,
  body > .site-header .products-menu a:focus-visible {
    color: #ffffff !important;
    opacity: 1 !important;
    transform: translateX(5px) !important;
  }

  body > .site-header .products-menu a:active {
    opacity: 0.78 !important;
    transform: translateX(3px) !important;
  }

  body > .site-header nav#primary-nav.primary-nav > a,
  body > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.home-page > .site-header nav#primary-nav.primary-nav > a,
  body.home-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.catalog-page > .site-header nav#primary-nav.primary-nav > a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav > a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.contact-page > .site-header nav#primary-nav.primary-nav > a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.blog-page > .site-header nav#primary-nav.primary-nav > a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.about-page > .site-header nav#primary-nav.primary-nav > a,
  body.about-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle {
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1 !important;
  }

  body > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.home-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.about-page > .site-header nav#primary-nav.primary-nav .products-menu a {
    font-size: 18px !important;
    font-weight: 300 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.16 !important;
  }
}

/* Local review final: reduce desktop nav text scale and shift the group slightly right. */
@media (min-width: 981px) {
  body > .site-header nav#primary-nav.primary-nav,
  body.home-page > .site-header nav#primary-nav.primary-nav,
  body.catalog-page > .site-header nav#primary-nav.primary-nav,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav,
  body.contact-page > .site-header nav#primary-nav.primary-nav,
  body.blog-page > .site-header nav#primary-nav.primary-nav,
  body.about-page > .site-header nav#primary-nav.primary-nav {
    gap: 18px !important;
    transform: translateX(24px) !important;
  }

  body > .site-header nav#primary-nav.primary-nav > a,
  body > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.home-page > .site-header nav#primary-nav.primary-nav > a,
  body.home-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.catalog-page > .site-header nav#primary-nav.primary-nav > a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav > a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.contact-page > .site-header nav#primary-nav.primary-nav > a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.blog-page > .site-header nav#primary-nav.primary-nav > a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.about-page > .site-header nav#primary-nav.primary-nav > a,
  body.about-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle {
    font-size: 10.4px !important;
    letter-spacing: 0.12em !important;
  }

  body > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.home-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .products-menu a,
  body.about-page > .site-header nav#primary-nav.primary-nav .products-menu a {
    font-size: 14.4px !important;
    letter-spacing: 0.12em !important;
  }
}

/* Local review final: lift the desktop logo slightly across every page. */
@media (min-width: 981px) {
  body > .site-header .brand,
  body.home-page > .site-header .brand,
  body.catalog-page > .site-header .brand,
  body.product-detail-page > .site-header .brand,
  body.contact-page > .site-header .brand,
  body.blog-page > .site-header .brand,
  body.about-page > .site-header .brand {
    transform: translateY(-2px) !important;
  }
}

/* Local review final: use the full desktop navbar on wide tablet and desktop widths. */
@media (min-width: 981px) {
  body > .site-header,
  body > .site-header.site-header--solid,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    display: block !important;
    width: 100% !important;
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #050505 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    transform: none !important;
  }

  body > .site-header .header-main,
  body > .site-header.site-header--solid .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) 170px !important;
    grid-template-rows: 74px !important;
    align-items: center !important;
    gap: 28px !important;
    width: min(100% - 56px, 1180px) !important;
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body > .site-header .brand,
  body.home-page > .site-header .brand,
  body.catalog-page > .site-header .brand,
  body.product-detail-page > .site-header .brand,
  body.contact-page > .site-header .brand,
  body.blog-page > .site-header .brand,
  body.about-page > .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
    transform: translateY(-3px) !important;
  }

  body > .site-header .brand__logo,
  body.home-page > .site-header .brand__logo,
  body.catalog-page > .site-header .brand__logo,
  body.product-detail-page > .site-header .brand__logo,
  body.contact-page > .site-header .brand__logo,
  body.blog-page > .site-header .brand__logo,
  body.about-page > .site-header .brand__logo {
    width: 150px !important;
    height: auto !important;
    max-height: 32px !important;
  }

  body > .site-header .menu-toggle,
  body.home-page > .site-header .menu-toggle,
  body.catalog-page > .site-header .menu-toggle,
  body.product-detail-page > .site-header .menu-toggle,
  body.contact-page > .site-header .menu-toggle,
  body.blog-page > .site-header .menu-toggle,
  body.about-page > .site-header .menu-toggle {
    display: none !important;
  }

  body > .site-header nav#primary-nav.primary-nav,
  body.home-page > .site-header nav#primary-nav.primary-nav,
  body.catalog-page > .site-header nav#primary-nav.primary-nav,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav,
  body.contact-page > .site-header nav#primary-nav.primary-nav,
  body.blog-page > .site-header nav#primary-nav.primary-nav,
  body.about-page > .site-header nav#primary-nav.primary-nav {
    position: static !important;
    inset: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: none !important;
    height: 74px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translateX(30px) !important;
  }

  body > .site-header nav#primary-nav.primary-nav > a,
  body > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.home-page > .site-header nav#primary-nav.primary-nav > a,
  body.home-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.catalog-page > .site-header nav#primary-nav.primary-nav > a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav > a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.contact-page > .site-header nav#primary-nav.primary-nav > a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.blog-page > .site-header nav#primary-nav.primary-nav > a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.about-page > .site-header nav#primary-nav.primary-nav > a,
  body.about-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: #ffffff !important;
    font-size: 10.4px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  body > .site-header .site-search,
  body.home-page > .site-header .site-search,
  body.catalog-page > .site-header .site-search,
  body.product-detail-page > .site-header .site-search,
  body.contact-page > .site-header .site-search,
  body.blog-page > .site-header .site-search,
  body.about-page > .site-header .site-search {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    width: 165px !important;
    height: 32px !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* Browser comment fix: keep the homepage hero image as clear on tablet/mobile as it is on desktop. */
@media (max-width: 980px) {
  body.home-page .hero,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0.05) 66%, rgba(0, 0, 0, 0) 100%),
      url("../images/hero-car-interior.webp") center center / cover no-repeat,
      #050505 !important;
  }
}

/* Browser comment fix: make the desktop header layout identical on every page. */
@media (min-width: 981px) {
  body > .site-header,
  body > .site-header.site-header--solid,
  body.home-page > .site-header,
  body.catalog-page > .site-header,
  body.product-detail-page > .site-header,
  body.contact-page > .site-header,
  body.blog-page > .site-header,
  body.about-page > .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    display: block !important;
    width: 100% !important;
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #050505 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    transform: none !important;
  }

  body > .site-header .header-main,
  body > .site-header.site-header--solid .header-main,
  body.home-page > .site-header .header-main,
  body.catalog-page > .site-header .header-main,
  body.product-detail-page > .site-header .header-main,
  body.contact-page > .site-header .header-main,
  body.blog-page > .site-header .header-main,
  body.about-page > .site-header .header-main {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) clamp(132px, 13vw, 170px) !important;
    grid-template-rows: 74px !important;
    align-items: center !important;
    gap: 16px !important;
    width: min(100% - 80px, 1180px) !important;
    height: 74px !important;
    min-height: 74px !important;
    max-height: 74px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body > .site-header .brand,
  body.home-page > .site-header .brand,
  body.catalog-page > .site-header .brand,
  body.product-detail-page > .site-header .brand,
  body.contact-page > .site-header .brand,
  body.blog-page > .site-header .brand,
  body.about-page > .site-header .brand {
    grid-column: 1 !important;
    align-self: center !important;
    justify-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }

  body > .site-header .brand__logo,
  body.home-page > .site-header .brand__logo,
  body.catalog-page > .site-header .brand__logo,
  body.product-detail-page > .site-header .brand__logo,
  body.contact-page > .site-header .brand__logo,
  body.blog-page > .site-header .brand__logo,
  body.about-page > .site-header .brand__logo {
    width: 150px !important;
    max-height: 32px !important;
  }

  body > .site-header nav#primary-nav.primary-nav,
  body.home-page > .site-header nav#primary-nav.primary-nav,
  body.catalog-page > .site-header nav#primary-nav.primary-nav,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav,
  body.contact-page > .site-header nav#primary-nav.primary-nav,
  body.blog-page > .site-header nav#primary-nav.primary-nav,
  body.about-page > .site-header nav#primary-nav.primary-nav {
    grid-column: 2 !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    height: 74px !important;
    margin: 0 !important;
    transform: translateX(30px) !important;
  }

  body > .site-header .site-search,
  body.home-page > .site-header .site-search,
  body.catalog-page > .site-header .site-search,
  body.product-detail-page > .site-header .site-search,
  body.contact-page > .site-header .site-search,
  body.blog-page > .site-header .site-search,
  body.about-page > .site-header .site-search {
    grid-column: 3 !important;
    justify-self: end !important;
    width: 100% !important;
    height: 32px !important;
    margin: 0 !important;
    transform: none !important;
  }
}

/* Browser comment fix: enlarge the header navigation text by 20% on every page. */
@media (min-width: 981px) {
  body > .site-header nav#primary-nav.primary-nav > a,
  body > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.home-page > .site-header nav#primary-nav.primary-nav > a,
  body.home-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.catalog-page > .site-header nav#primary-nav.primary-nav > a,
  body.catalog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav > a,
  body.product-detail-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.contact-page > .site-header nav#primary-nav.primary-nav > a,
  body.contact-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.blog-page > .site-header nav#primary-nav.primary-nav > a,
  body.blog-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  body.about-page > .site-header nav#primary-nav.primary-nav > a,
  body.about-page > .site-header nav#primary-nav.primary-nav .nav-dropdown__toggle {
    font-size: 12.5px !important;
  }
}

/* Browser comment fix: visually align the header logo with the navigation text across pages. */
@media (min-width: 981px) {
  html body > header.site-header .brand,
  html body.home-page > header.site-header .brand,
  html body.catalog-page > header.site-header .brand,
  html body.product-detail-page > header.site-header .brand,
  html body.contact-page > header.site-header .brand,
  html body.blog-page > header.site-header .brand,
  html body.about-page > header.site-header .brand {
    position: relative !important;
    top: -2px !important;
    transform: none !important;
  }
}

/* Browser comment fix: make 4K and ultra-wide screens use more of the canvas. */
@media (min-width: 1920px) {
  html body > header.site-header,
  html body > header.site-header.site-header--solid,
  html body.home-page > header.site-header,
  html body.catalog-page > header.site-header,
  html body.product-detail-page > header.site-header,
  html body.contact-page > header.site-header,
  html body.blog-page > header.site-header,
  html body.about-page > header.site-header {
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }

  html body > header.site-header .header-main.container,
  html body > header.site-header.site-header--solid .header-main.container,
  html body.home-page > header.site-header .header-main.container,
  html body.catalog-page > header.site-header .header-main.container,
  html body.product-detail-page > header.site-header .header-main.container,
  html body.contact-page > header.site-header .header-main.container,
  html body.blog-page > header.site-header .header-main.container,
  html body.about-page > header.site-header .header-main.container {
    grid-template-columns: 240px minmax(0, 1fr) 260px !important;
    grid-template-rows: 96px !important;
    gap: 42px !important;
    width: min(100% - 360px, 2400px) !important;
    max-width: 2400px !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }

  html body > header.site-header .brand,
  html body.home-page > header.site-header .brand,
  html body.catalog-page > header.site-header .brand,
  html body.product-detail-page > header.site-header .brand,
  html body.contact-page > header.site-header .brand,
  html body.blog-page > header.site-header .brand,
  html body.about-page > header.site-header .brand {
    top: -2px !important;
  }

  html body > header.site-header .brand__logo,
  html body.home-page > header.site-header .brand__logo,
  html body.catalog-page > header.site-header .brand__logo,
  html body.product-detail-page > header.site-header .brand__logo,
  html body.contact-page > header.site-header .brand__logo,
  html body.blog-page > header.site-header .brand__logo,
  html body.about-page > header.site-header .brand__logo {
    width: 220px !important;
    max-height: 42px !important;
  }

  html body > header.site-header nav#primary-nav.primary-nav,
  html body.home-page > header.site-header nav#primary-nav.primary-nav,
  html body.catalog-page > header.site-header nav#primary-nav.primary-nav,
  html body.product-detail-page > header.site-header nav#primary-nav.primary-nav,
  html body.contact-page > header.site-header nav#primary-nav.primary-nav,
  html body.blog-page > header.site-header nav#primary-nav.primary-nav,
  html body.about-page > header.site-header nav#primary-nav.primary-nav {
    gap: 30px !important;
    height: 96px !important;
    transform: none !important;
  }

  html body > header.site-header nav#primary-nav.primary-nav > a,
  html body > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.home-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.home-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.catalog-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.catalog-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.product-detail-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.product-detail-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.contact-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.contact-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.blog-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.blog-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle,
  html body.about-page > header.site-header nav#primary-nav.primary-nav > a,
  html body.about-page > header.site-header nav#primary-nav.primary-nav .nav-dropdown__toggle {
    font-size: 16px !important;
  }

  html body > header.site-header .site-search,
  html body.home-page > header.site-header .site-search,
  html body.catalog-page > header.site-header .site-search,
  html body.product-detail-page > header.site-header .site-search,
  html body.contact-page > header.site-header .site-search,
  html body.blog-page > header.site-header .site-search,
  html body.about-page > header.site-header .site-search {
    width: 260px !important;
    height: 44px !important;
  }

  body.home-page .hero__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__grid {
    width: min(100% - 360px, 2400px) !important;
    max-width: 2400px !important;
    grid-template-columns: minmax(0, 850px) !important;
  }

  body.home-page .hero__copy,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy {
    max-width: 820px !important;
  }

  body.home-page .hero-logo,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-logo {
    font-size: 86px !important;
  }

  body.home-page .hero__copy h1,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h1 {
    font-size: 60px !important;
  }

  body.home-page .hero__copy h2,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__copy h2 {
    font-size: 42px !important;
  }

  body.home-page .hero__lead,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero__lead {
    max-width: 760px !important;
    font-size: 30px !important;
  }

  body.home-page .hero-actions .button,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .hero-actions .button {
    min-width: 210px !important;
    min-height: 58px !important;
    font-size: 16px !important;
  }

  body.home-page .stats-bar__grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .stats-bar__grid {
    width: min(100% - 520px, 1750px) !important;
  }

  body.home-page .product-categories .container,
  body.home-page .why-choose .container,
  body.home-page .product-features .container,
  body.home-page .factory-capability .container,
  body.home-page .process-section .container,
  body.home-page .company-profile .container,
  body.home-page .certificates-section .container,
  body.home-page .team-exhibition .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-categories .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .why-choose .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .product-features .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .factory-capability .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .process-section .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .company-profile .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .certificates-section .container,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .team-exhibition .container {
    width: min(100% - 360px, 2400px) !important;
    max-width: 2400px !important;
  }

  body.home-page .category-grid,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .category-grid {
    gap: 42px !important;
  }

}

/* Browser comment fix: keep the full header scale consistent on 4K screens. */
@media (min-width: 1920px) {
  html body > header.site-header.site-header .header-main.header-main.container.container,
  html body > header.site-header.site-header.site-header--solid .header-main.header-main.container.container,
  html body.home-page.home-page > header.site-header.site-header .header-main.header-main.container.container,
  html body.catalog-page.catalog-page > header.site-header.site-header .header-main.header-main.container.container,
  html body.product-detail-page.product-detail-page > header.site-header.site-header .header-main.header-main.container.container,
  html body.contact-page.contact-page > header.site-header.site-header .header-main.header-main.container.container,
  html body.blog-page.blog-page > header.site-header.site-header .header-main.header-main.container.container,
  html body.about-page.about-page > header.site-header.site-header .header-main.header-main.container.container {
    width: min(100% - 360px, 2400px) !important;
    max-width: 2400px !important;
    grid-template-columns: 240px minmax(0, 1fr) 260px !important;
    grid-template-rows: 96px !important;
    gap: 42px !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html body > header.site-header.site-header .brand__logo.brand__logo,
  html body.home-page.home-page > header.site-header.site-header .brand__logo.brand__logo,
  html body.catalog-page.catalog-page > header.site-header.site-header .brand__logo.brand__logo,
  html body.product-detail-page.product-detail-page > header.site-header.site-header .brand__logo.brand__logo,
  html body.contact-page.contact-page > header.site-header.site-header .brand__logo.brand__logo,
  html body.blog-page.blog-page > header.site-header.site-header .brand__logo.brand__logo,
  html body.about-page.about-page > header.site-header.site-header .brand__logo.brand__logo {
    width: 220px !important;
    max-height: 42px !important;
  }

  html body > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.home-page.home-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.catalog-page.catalog-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.product-detail-page.product-detail-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.contact-page.contact-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.blog-page.blog-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav,
  html body.about-page.about-page > header.site-header.site-header nav#primary-nav.primary-nav.primary-nav {
    gap: 30px !important;
    height: 96px !important;
    justify-content: center !important;
    transform: none !important;
  }

  html body > header.site-header.site-header .site-search.site-search,
  html body.home-page.home-page > header.site-header.site-header .site-search.site-search,
  html body.catalog-page.catalog-page > header.site-header.site-header .site-search.site-search,
  html body.product-detail-page.product-detail-page > header.site-header.site-header .site-search.site-search,
  html body.contact-page.contact-page > header.site-header.site-header .site-search.site-search,
  html body.blog-page.blog-page > header.site-header.site-header .site-search.site-search,
  html body.about-page.about-page > header.site-header.site-header .site-search.site-search {
    width: 260px !important;
    height: 44px !important;
  }
}

/* Browser comment fix: keep the homepage logo aligned with every other page at all desktop widths. */
@media (min-width: 981px) {
  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .header-main.header-main > a.brand.brand,
  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header.site-header--solid .header-main.header-main > a.brand.brand {
    grid-column: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
}

/* Browser comment fix: make ultra-wide headers use the same logo start on all pages. */
@media (min-width: 1920px) {
  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .header-main.header-main.container.container,
  html body.catalog-page.catalog-page > header.site-header.site-header.site-header--solid .header-main.header-main.container.container,
  html body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header.site-header--solid .header-main.header-main.container.container,
  html body.contact-page.contact-page > header.site-header.site-header.site-header--solid .header-main.header-main.container.container,
  html body.blog-page.blog-page > header.site-header.site-header.site-header--solid .header-main.header-main.container.container,
  html body.about-page.about-page > header.site-header.site-header.site-header--solid .header-main.header-main.container.container {
    width: min(100% - 360px, 2400px) !important;
    max-width: 2400px !important;
    grid-template-columns: 240px minmax(0, 1fr) 260px !important;
    grid-template-rows: 96px !important;
    gap: 42px !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .brand.brand,
  html body.catalog-page.catalog-page > header.site-header.site-header.site-header--solid .brand.brand,
  html body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header.site-header--solid .brand.brand,
  html body.contact-page.contact-page > header.site-header.site-header.site-header--solid .brand.brand,
  html body.blog-page.blog-page > header.site-header.site-header.site-header--solid .brand.brand,
  html body.about-page.about-page > header.site-header.site-header.site-header--solid .brand.brand {
    grid-column: 1 !important;
    justify-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }

  html body.home-page.home-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header .brand__logo.brand__logo,
  html body.catalog-page.catalog-page > header.site-header.site-header.site-header--solid .brand__logo.brand__logo,
  html body.product-detail-page.product-detail-page:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) > header.site-header.site-header.site-header--solid .brand__logo.brand__logo,
  html body.contact-page.contact-page > header.site-header.site-header.site-header--solid .brand__logo.brand__logo,
  html body.blog-page.blog-page > header.site-header.site-header.site-header--solid .brand__logo.brand__logo,
  html body.about-page.about-page > header.site-header.site-header.site-header--solid .brand__logo.brand__logo {
    width: 220px !important;
    max-height: 42px !important;
  }
}

/* Browser comment fix: lift the footer About Us socials and align icon row with the heading. */
@media (min-width: 981px) {
  body.home-page .site-footer .footer-contact h3:nth-of-type(2),
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-contact h3:nth-of-type(2) {
    margin-top: 28px !important;
  }

  body.home-page .site-footer .footer-socials,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials {
    justify-content: flex-start !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  body.home-page .site-footer .footer-socials a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials a {
    margin-left: 0 !important;
  }
}

/* Browser comment fix: simplify footer form focus borders. */
.site-footer .footer-form input:focus,
.site-footer .footer-form input:focus-visible,
.site-footer .footer-form textarea:focus,
.site-footer .footer-form textarea:focus-visible,
body.home-page .site-footer .footer-form input:focus,
body.home-page .site-footer .footer-form input:focus-visible,
body.home-page .site-footer .footer-form textarea:focus,
body.home-page .site-footer .footer-form textarea:focus-visible,
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form input:focus,
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form input:focus-visible,
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form textarea:focus,
body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-form textarea:focus-visible {
  outline: 0 !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Browser comment fix: enlarge footer social icons on phone and iPad. */
@media (max-width: 980px) {
  body.home-page .site-footer .footer-socials,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials {
    gap: 18px !important;
  }

  body.home-page .site-footer .footer-socials a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials a {
    width: 52px !important;
    height: 52px !important;
  }

  body.home-page .site-footer .footer-socials svg,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials svg {
    width: 27px !important;
    height: 27px !important;
  }
}

@media (max-width: 420px) {
  body.home-page .site-footer .footer-socials,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials {
    gap: 14px !important;
  }

  body.home-page .site-footer .footer-socials a,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials a {
    width: 48px !important;
    height: 48px !important;
  }

  body.home-page .site-footer .footer-socials svg,
  body:not(.catalog-page):not(.contact-page):not(.blog-page):not(.about-page) .site-footer .footer-socials svg {
    width: 25px !important;
    height: 25px !important;
  }
}

/* Browser comment fix: unify the mobile/iPad menu button frame on every page. */
@media (max-width: 980px) {
  body > .site-header .menu-toggle,
  body.home-page > .site-header .menu-toggle,
  body.catalog-page > .site-header .menu-toggle,
  body.product-detail-page > .site-header .menu-toggle,
  body.contact-page > .site-header .menu-toggle,
  body.blog-page > .site-header .menu-toggle,
  body.about-page > .site-header .menu-toggle {
    display: grid !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    place-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
  }

  body > .site-header .menu-toggle span:not(.sr-only),
  body.home-page > .site-header .menu-toggle span:not(.sr-only),
  body.catalog-page > .site-header .menu-toggle span:not(.sr-only),
  body.product-detail-page > .site-header .menu-toggle span:not(.sr-only),
  body.contact-page > .site-header .menu-toggle span:not(.sr-only),
  body.blog-page > .site-header .menu-toggle span:not(.sr-only),
  body.about-page > .site-header .menu-toggle span:not(.sr-only) {
    width: 22px !important;
    height: 2px !important;
    margin: 3px auto !important;
    background: #ffffff !important;
  }
}
