:root {
  /* Brand accent — modern steel blue */
  --blue-brand: #1f6fdb;
  --blue-primary: #1f6fdb;
  --blue-secondary: #1a5cba;
  --blue-tertiary: #154a99;
  --blue-deep: #081019;
  --blue-light: #eaf1fb;
  --blue-soft: #f3f6f9;
  --blue-rgb: 31, 111, 219;

  /* Industrial neutrals — stainless / charcoal */
  --ink: #141820;
  --charcoal: #1a222e;
  --charcoal-deep: #0e1724;
  --charcoal-rgb: 14, 23, 36;
  --muted: #5f6978;
  --line: #dfe3ea;
  --paper: #f3f6f9;
  --silver: #b4bcc8;
  --silver-light: #d8dde4;

  /* Semantic aliases (single source of truth) */
  --accent: var(--blue-primary);
  --accent-strong: var(--blue-secondary);
  --surface-dark: var(--charcoal-deep);
  --surface-muted: var(--paper);
  --border-subtle: rgba(14, 23, 36, 0.08);

  --red: var(--blue-primary);
  --red-dark: var(--blue-secondary);

  --white: #ffffff;
  --max: 1280px;
  --header-h: 78px;

  /* Radius scale (single source of truth) */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  /* Softer highlight blue for use on dark surfaces */
  --accent-on-dark: #6ea8ee;

  /* Spacing scale */
  --space-section-y: clamp(72px, 9vw, 108px);
  --space-gutter: clamp(24px, 5vw, 48px);
  --space-card-gap: clamp(20px, 3vw, 32px);

  /* Typography scale */
  --text-display: clamp(38px, 5.2vw, 60px);
  --text-section: clamp(28px, 3.6vw, 44px);
  --text-card: clamp(18px, 1.8vw, 22px);
  --text-body: 16px;
  --text-eyebrow: 11px;

  /* Component tokens */
  --btn-height: 48px;
  --btn-radius: var(--radius);
  --card-radius: 8px;
  --card-border: 1px solid var(--border-subtle);

  --text-on-dark: #ffffff;
  --text-on-light: var(--ink);
  --text-muted-on-dark: rgba(255, 255, 255, 0.72);
  --text-hover: #8fbcf2;
  --text-hover-on-light: var(--blue-primary);

  --header-bg: var(--charcoal-deep);
  --footer-bg: var(--blue-deep);
  --shadow-soft: 0 16px 48px rgba(14, 23, 36, 0.08);
  --shadow-card: 0 24px 60px rgba(14, 23, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-on-light);
  background: var(--white);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body.noscroll {
  overflow: hidden;
}

.surface-light {
  background: var(--white);
  color: var(--text-on-light);
}

.surface-light .eyebrow,
.surface-light h2,
.surface-light h3,
.surface-light h4 {
  color: var(--ink);
}

.surface-light .eyebrow {
  color: var(--blue-primary);
}

.surface-light p,
.surface-light .text-muted {
  color: var(--muted);
}

.surface-secondary {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.surface-secondary h2,
.surface-secondary h3 {
  color: var(--text-on-dark);
}

.surface-tertiary {
  background: var(--charcoal-deep);
  color: var(--text-on-dark);
}

.surface-tertiary h2,
.surface-tertiary h3 {
  color: var(--text-on-dark);
}

.surface-paper {
  background: var(--paper);
  color: var(--text-on-light);
}

.surface-paper h2,
.surface-paper h3 {
  color: var(--ink);
}

.surface-paper .eyebrow {
  color: var(--blue-primary);
}

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

img {
  max-width: 100%;
}

picture {
  display: contents;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.06;
}

h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.surface-secondary .eyebrow,
.surface-tertiary .eyebrow,
.hero-slide-content .eyebrow {
  color: var(--text-muted-on-dark);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.text-link:hover {
  color: var(--text-hover-on-light);
  opacity: 1;
}

.button,
.header-cta,
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid var(--blue-primary);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

.button.primary:hover {
  background: var(--blue-secondary);
  border-color: var(--blue-secondary);
}

.button.ghost {
  background: var(--white);
  color: var(--text-on-light);
  border-color: var(--blue-primary);
}

.button.ghost:hover {
  background: var(--blue-light);
  color: var(--blue-primary);
}

/* Header */

.header-stack {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.header-stack.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.page-home .header-stack.header-overlay {
  position: fixed;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent);
  border-bottom-color: transparent;
}

.page-home .header-stack.header-overlay.is-scrolled {
  background: rgba(var(--charcoal-rgb), 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.site-header {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.brand {
  display: block;
  min-width: 0;
  color: var(--white);
}

.brand-image,
.footer-brand-image {
  display: block;
  width: clamp(160px, 18vw, 236px);
  height: auto;
}

.footer-brand-image {
  width: clamp(160px, 18vw, 236px);
}

.footer-brand-link {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 32px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-link,
.nav-trigger {
  position: relative;
  padding: 10px 0;
  color: var(--white);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.active,
.nav-item.active > .nav-trigger {
  color: var(--text-hover);
}

.nav-link.active::after,
.nav-item.active > .nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue-primary);
  content: "";
}

.nav-item {
  position: relative;
}

.has-mega .mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 45;
  width: min(920px, calc(100vw - 48px));
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  pointer-events: none;
}

.has-mega .mega-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  content: "";
}

.has-mega.open .mega-panel,
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-panel-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 20px;
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(14, 23, 36, 0.18);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.mega-panel-inner:has(.mega-col-plain:only-child) {
  grid-template-columns: 1fr;
  min-width: 288px;
  padding: 10px;
}

.has-mega:has(.mega-col-plain) .mega-panel {
  width: min(360px, calc(100vw - 48px));
}

.mega-col h4 {
  margin: 6px 12px 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-col a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-radius: var(--card-radius);
  transition: background 160ms ease, color 160ms ease;
}

.mega-col a::after {
  content: "\203A";
  font-size: 16px;
  line-height: 1;
  color: currentColor;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-col a:hover {
  background: var(--paper);
  color: var(--blue-primary);
}

.mega-col a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mega-col.mega-col-plain a {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.mega-col.mega-col-plain a:hover {
  color: var(--blue-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact {
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-contact:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal-deep);
}

.menu-button {
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.menu-button:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  justify-content: end;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-panel {
  width: min(420px, 100vw);
  height: 100%;
  padding: 48px clamp(24px, 5vw, 48px);
  background: var(--charcoal-deep);
  color: var(--white);
  transform: translateX(100%);
  transition: transform 280ms ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-overlay.open .menu-overlay-panel {
  transform: translateX(0);
}

.menu-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
}

.menu-overlay-nav {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.menu-overlay-nav a {
  color: var(--white);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 300;
  line-height: 1.1;
}

.menu-overlay-nav a:hover {
  color: var(--text-hover);
}

.menu-overlay-footer {
  display: grid;
  gap: 8px;
  margin-top: 64px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.page-home main {
  padding-top: 0;
}

/* Home hero */

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--charcoal-deep);
}

.home-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center / cover no-repeat;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 16, 25, 0.26) 0%, rgba(8, 16, 25, 0.06) 28%, transparent 50%),
    linear-gradient(0deg, rgba(8, 16, 25, 0.70) 0%, rgba(8, 16, 25, 0.24) 42%, transparent 70%),
    linear-gradient(90deg, rgba(8, 16, 25, 0.52) 0%, rgba(8, 16, 25, 0.16) 44%, transparent 68%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 56px);
  width: min(1340px, 100%);
  padding: clamp(88px, 12vh, 140px) clamp(24px, 5vw, 72px) clamp(48px, 8vh, 96px);
  color: var(--white);
}

.home-hero-main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 900px;
}

.home-hero-headline {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 28px rgba(8, 16, 25, 0.32);
}

.home-hero-accent {
  /* Lighter, airier blue reads better over the dark hero than the
     saturated brand primary. */
  color: var(--accent-on-dark);
}

.home-hero-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.65;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero-trust {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(440px, 46vw);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translate(clamp(16px, 8vw, 130px), clamp(80px, 16vh, 190px));
}

.home-hero-trust li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 12px;
  /* Frosted glass so the machine stays visible behind the cards */
  background: rgba(10, 18, 30, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--card-radius);
  box-shadow: 0 18px 44px rgba(8, 16, 25, 0.34);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.32;
  overflow: hidden;
}

/* Thin brand accent along the top edge of each glass card */
.home-hero-trust li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), rgba(31, 111, 219, 0.2));
}

/* Fallback for browsers without backdrop-filter support */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .home-hero-trust li {
    background: rgba(10, 18, 30, 0.72);
  }
}

.home-hero-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(31, 111, 219, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.home-hero-trust-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.home-hero-trust-label {
  display: block;
}

.home-hero .hero-dots {
  z-index: 2;
  top: 38%;
  bottom: auto;
  right: clamp(16px, 3vw, 40px);
  gap: 12px;
  padding-right: 10px;
  transform: translateY(-50%);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

/* On the home hero the dots act as a section index, so keep every label
   visible (dimmed) instead of only showing the active one. */
.home-hero .hero-dots button span {
  opacity: 0.5;
}

.home-hero .hero-dots button.active,
.home-hero .hero-dots button:hover {
  color: var(--white);
}

.home-hero .hero-dots button.active span,
.home-hero .hero-dots button:hover span {
  opacity: 1;
}

@media (max-width: 900px) {
  .home-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .home-hero-main {
    max-width: none;
  }

  .home-hero-trust {
    width: 100%;
    max-width: 420px;
    transform: none;
  }

  /* The vertical section index collides with the stacked trust cards on
     small screens, so hide it there. */
  .home-hero .hero-dots {
    display: none;
  }
}

/* Hero carousel (legacy) */

.hero-carousel {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal-deep);
  overflow: hidden;
}

#home-company,
#home-washing,
#home-oem,
#home-news {
  scroll-margin-top: var(--header-h);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--charcoal-deep);
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-position 900ms ease, background-image 900ms ease;
}

.hero-slides {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 24%, transparent 46%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 38%, transparent 72%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 42%, transparent 68%);
}

.hero-slide-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: 0 clamp(24px, 5vw, 72px) clamp(120px, 14vh, 180px);
  color: var(--white);
}

.hero-slide-content h2 {
  max-width: 820px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(38px, 6.5vw, 82px);
  font-weight: 300;
  line-height: 1.04;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.28);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--blue-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal-deep);
}

.hero-link-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-link-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.hero-dots {
  position: absolute;
  top: 35%;
  right: clamp(20px, 4vw, 48px);
  z-index: 2;
  display: grid;
  gap: 18px;
}

.hero-dots button {
  display: grid;
  justify-items: end;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  text-align: right;
}

.hero-dots button span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 220ms ease, color 220ms ease;
}

.hero-dots button.active,
.hero-dots button:hover {
  color: var(--white);
}

.hero-dots button.active span,
.hero-dots button:hover span {
  opacity: 1;
}

.hero-dots button.active::after,
.hero-dots button:hover::after {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 4px;
  background: var(--white);
  content: "";
}

.hero-arrows {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(28px, 5vh, 56px);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-arrow:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal-deep);
}

/* Brand statement */

.brand-statement {
  padding: clamp(72px, 10vw, 120px) clamp(24px, 5vw, 48px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-statement-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement p {
  margin: 0;
  color: var(--text-on-light);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  line-height: 1.75;
}

/* Section intro */

.section-intro {
  max-width: var(--max);
  margin: 0 auto 42px;
  padding: 0 clamp(24px, 5vw, 48px);
}

.section-intro.centered {
  text-align: center;
}

.category-band,
.pillar-band,
.product-showcase,
.band,
.split-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.category-band {
  background: var(--paper);
}

/* Dishwasher hub */

.dishwasher-hub {
  background: var(--white);
}

.dishwasher-hero-band {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(340px, 44vh, 480px);
  padding: clamp(110px, 13vh, 140px) var(--space-gutter) clamp(44px, 6vh, 64px);
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.88) 0%, rgba(14, 23, 36, 0.56) 46%, rgba(21, 74, 153, 0.32) 100%),
    url("/assets/applications/central-kitchens.jpg") center 40% / cover no-repeat;
  color: var(--white);
}

.dishwasher-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.dishwasher-hero-inner h1 {
  max-width: 18ch;
  margin: 10px 0 0;
  font-size: var(--text-section);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.dishwasher-hero-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  font-weight: 300;
}

.dishwasher-jump {
  position: sticky;
  top: var(--header-h);
  z-index: 35;
  display: flex;
  justify-content: center;
  padding: 18px clamp(20px, 4vw, 48px) 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(14, 23, 36, 0.06);
}

.dishwasher-jump-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dishwasher-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border: 1px solid var(--blue-primary);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.dishwasher-jump a:hover,
.dishwasher-jump a:focus-visible,
.dishwasher-jump a.active {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 8px 22px rgba(var(--blue-rgb), 0.22);
}

.dishwasher-module {
  position: relative;
  z-index: 0;
  padding: clamp(44px, 5.5vw, 68px) 0 clamp(52px, 6vw, 76px);
  scroll-margin-top: calc(var(--header-h) + 72px);
}

.dishwasher-hub > .dishwasher-module:last-of-type {
  padding-bottom: 0;
}

.dishwasher-module-alt {
  background: var(--paper);
}

.dishwasher-module-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.dishwasher-module-head {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.dishwasher-module-head h2 {
  margin: 0;
  color: var(--blue-tertiary);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dishwasher-module-head span {
  color: var(--silver);
  font-weight: 400;
}

.dishwasher-tile-band {
  width: 100%;
}

.dishwasher-hub .category-grid {
  gap: 3px;
  max-width: none;
  background: var(--line);
}

.dishwasher-hub .category-tile {
  justify-items: center;
  min-height: clamp(240px, 26vw, 360px);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
}

.dishwasher-hub .category-tile-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.14) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.dishwasher-hub .category-tile:hover .category-tile-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0.82) 100%);
}

.dishwasher-hub .category-tile-label {
  width: 100%;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}

.dishwasher-hub .category-tile-more {
  margin-top: 16px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.dishwasher-hub .category-tile:hover .category-tile-more {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.12);
}

/* Accessories hub (matches dishwasher hub) */

.accessories-hero-band {
  background:
    linear-gradient(115deg, rgba(8, 13, 20, 0.88) 0%, rgba(22, 61, 110, 0.52) 100%),
    url("/assets/hero-accessories.webp") center 50% / cover no-repeat;
}

.accessory-jump {
  justify-content: center;
  padding: 18px 0 20px;
  overflow: visible;
}

.accessory-jump .accessory-tabs-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: stretch;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(20px, 4vw, 48px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 12px;
  scrollbar-width: none;
  background: transparent;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.accessory-jump .accessory-tabs-row::-webkit-scrollbar {
  display: none;
}

.accessory-jump .accessory-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid var(--blue-primary);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-primary);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.accessory-jump .accessory-tab-all {
  font-weight: 600;
}

.accessory-jump .accessory-tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(var(--blue-rgb), 0.1);
  color: var(--blue-primary);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.accessory-jump .accessory-tab:hover,
.accessory-jump .accessory-tab.active {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 8px 22px rgba(var(--blue-rgb), 0.22);
}

.accessory-jump .accessory-tab:hover .accessory-tab-count,
.accessory-jump .accessory-tab.active .accessory-tab-count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.accessories-hub .accessory-panels {
  width: 100%;
}

.accessory-showcase-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.accessory-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.accessory-showcase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition:
    background 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.accessory-showcase-head {
  min-height: 48px;
  padding: 18px 18px 14px;
  color: var(--blue-tertiary);
}

.accessory-showcase-name {
  margin: 0;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.25;
}

.accessory-showcase-rule {
  height: 1px;
  background: var(--line);
  transition: background 240ms ease;
}

.accessory-showcase-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(260px, 28vw, 300px);
  padding: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 62%, #e8ecf1 100%);
  transition: background 240ms ease;
}

.accessory-showcase-media img {
  display: block;
  width: clamp(200px, 22vw, 240px);
  height: clamp(200px, 22vw, 240px);
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transition:
    mix-blend-mode 240ms ease,
    filter 240ms ease;
}

.accessory-showcase-media img[src$=".png"],
.accessory-showcase-media img[src$=".PNG"] {
  mix-blend-mode: normal;
}

.accessory-showcase-card:hover {
  background: linear-gradient(180deg, var(--blue-secondary) 0%, var(--blue-tertiary) 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.accessory-showcase-card:hover .accessory-showcase-head {
  color: var(--white);
}

.accessory-showcase-card:hover .accessory-showcase-rule {
  background: rgba(255, 255, 255, 0.24);
}

.accessory-showcase-card:hover .accessory-showcase-media {
  background: transparent;
}

.accessory-showcase-card:hover .accessory-showcase-media img {
  mix-blend-mode: normal;
  filter: brightness(1.04);
}

/* Accessories catalog (Phase 3 rebuild) */

.accessory-catalog {
  padding: clamp(40px, 5vw, 64px) 0 var(--space-section-y);
}

.accessory-catalog-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
}

.accessory-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px clamp(20px, 3vw, 32px);
  padding-bottom: 20px;
}

.accessory-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 420px;
}

.accessory-search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border: 2px solid var(--muted);
  border-radius: 50%;
  pointer-events: none;
}

.accessory-search-icon::after {
  position: absolute;
  top: 12px;
  left: 11px;
  width: 7px;
  height: 2px;
  background: var(--muted);
  transform: rotate(45deg);
  content: "";
}

.accessory-search-input {
  width: 100%;
  height: 48px;
  padding: 0 18px 0 42px;
  border: var(--card-border);
  border-radius: var(--btn-radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.accessory-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--blue-rgb), 0.14);
}

.accessory-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.accessory-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.accessory-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.accessory-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.accessory-chip-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(var(--blue-rgb), 0.1);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.accessory-chip.active .accessory-chip-count {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.accessory-result-count {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.accessory-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-card-gap);
  align-items: stretch;
}

.accessory-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.accessory-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.accessory-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  padding: clamp(18px, 2vw, 26px);
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-muted) 70%, #e8ecf1 100%);
}

.accessory-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.accessory-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  padding: 18px clamp(16px, 1.6vw, 20px) 20px;
  border-top: var(--card-border);
}

.accessory-card-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accessory-card-name {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.accessory-card-use {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.accessory-catalog .accessory-empty {
  margin: 32px 0 0;
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: var(--card-radius);
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .accessory-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .accessory-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .accessory-search {
    max-width: none;
  }
}

@media (max-width: 440px) {
  .accessory-card-grid {
    grid-template-columns: 1fr;
  }
}

.accessory-workflow-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: stretch;
}

.accessory-workflow-inner .split-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.accessory-workflow-inner .split-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.accessory-workflow-module .workflow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: clamp(180px, 22vw, 240px);
  margin: 0;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 32px);
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(150deg, rgba(31, 111, 219, 0.05), transparent 60%),
    var(--white);
}

.workflow-step {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Connector line between steps */
.workflow-step::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 2px;
  background: var(--line);
}

.workflow-step:last-child::before {
  display: none;
}

.workflow-step-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.workflow-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  max-width: none;
  background: var(--line);
}

.category-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(280px, 34vw, 420px);
  padding: 28px;
  background: var(--charcoal) center / cover no-repeat;
  background-image: var(--tile-image);
  border-radius: var(--card-radius);
  overflow: hidden;
  color: var(--white);
}

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.72) 100%);
  transition: background 220ms ease;
}

.category-tile:hover .category-tile-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
}

.category-tile-label,
.category-tile-more {
  position: relative;
  z-index: 1;
}

.category-tile-label {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.category-tile-more {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* Home modules */

.home-module {
  padding: 0;
}

.home-module + .home-module {
  border-top: 1px solid var(--line);
}

.home-module-banner {
  display: grid;
  align-items: end;
  min-height: clamp(280px, 34vw, 400px);
  background: center / cover no-repeat;
  background-image: var(--module-banner);
}

.home-module-banner-inner {
  width: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(0deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.34) 58%, transparent 100%);
}

.home-module-index {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.home-module-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
}

.home-module-banner h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.08;
}

.home-module-lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

.home-module-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 5vw, 48px) 0;
}

.home-module-foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(24px, 5vw, 48px) clamp(56px, 7vw, 88px);
  text-align: center;
}

.home-module-news .home-module-foot {
  background: var(--white);
}

/* Home range band (company module) */

.home-range-band {
  padding: clamp(56px, 7vw, 88px) 0 0;
  background: var(--white);
}

.home-range-surface-alt {
  background: var(--paper);
}

.home-range-band .home-module-foot {
  max-width: var(--max);
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 clamp(24px, 5vw, 48px) clamp(56px, 7vw, 88px);
  text-align: center;
}

.home-range-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 clamp(24px, 5vw, 48px);
}

.home-range-eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-range-head-main h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-range-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

.home-range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-range-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.home-range-card:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.home-range-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.home-range-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-range-card:hover .home-range-media img {
  transform: scale(1.03);
}

.home-range-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-range-media-badge {
  overflow: visible;
}

.cert-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  aspect-ratio: 4 / 3;
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(31, 111, 219, 0.28), transparent 55%),
    linear-gradient(150deg, #163a72 0%, var(--charcoal-deep) 100%);
  color: var(--white);
  text-align: center;
}

.cert-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 20px 12px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--card-radius);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.cert-panel-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.home-range-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 280px;
  padding: 24px clamp(20px, 3vw, 28px) 22px;
}

.home-range-category {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-range-body h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
}

.home-range-body > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-range-card:hover .home-range-body > p {
  color: rgba(255, 255, 255, 0.72);
}

.home-range-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.home-range-card:hover .home-range-foot {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.home-range-arrow {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.home-range-card:hover .home-range-arrow {
  color: var(--white);
}

/* Home washing split (fig2-style) */

.home-split-band {
  padding: clamp(56px, 7vw, 88px) 0 0;
}

.home-split-surface-light {
  background: var(--white);
}

.home-split-surface-alt {
  background: var(--paper);
}

.home-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.home-split-head {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.home-split-eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-split-head h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-split-lead {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
}

.home-split-feature {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.home-split-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-washing-band .home-module-foot {
  max-width: var(--max);
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 clamp(24px, 5vw, 48px) clamp(56px, 7vw, 88px);
  text-align: center;
  background: transparent;
}

.home-oem-band .home-module-foot {
  max-width: var(--max);
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 0 clamp(24px, 5vw, 48px) clamp(56px, 7vw, 88px);
  text-align: center;
  background: transparent;
}

.wash-acc-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.wash-acc-item {
  background: var(--white);
}

.wash-acc-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  width: 100%;
  padding: clamp(18px, 2.4vw, 24px) clamp(20px, 2.8vw, 28px);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease;
}

.wash-acc-head:hover,
.wash-acc-item.is-open .wash-acc-head {
  background: var(--white);
}

.wash-acc-icon {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--red), var(--red)) center / 18px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 18px no-repeat;
  transition: transform 220ms ease, border-color 180ms ease;
}

.wash-acc-item.is-open .wash-acc-icon {
  transform: rotate(45deg);
  border-color: var(--red);
}

.wash-acc-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wash-acc-title {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.wash-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.wash-acc-item.is-open .wash-acc-body {
  grid-template-rows: 1fr;
}

.wash-acc-body-inner {
  overflow: hidden;
}

.wash-acc-item.is-open .wash-acc-body-inner {
  padding: 0 clamp(20px, 2.8vw, 28px) clamp(22px, 3vw, 28px);
  padding-left: calc(clamp(20px, 2.8vw, 28px) + 48px + 18px);
}

.wash-acc-copy {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.wash-acc-media {
  margin: 0 0 18px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.wash-acc-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.wash-acc-link {
  display: inline-block;
}

.home-module-washing .home-module-body {
  background: var(--paper);
}

.home-module-washing .showcase-grid {
  padding: 0;
}

.home-module-oem {
  background: var(--charcoal);
  color: var(--white);
}

.home-module-oem .home-module-banner-inner {
  background: linear-gradient(0deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.42) 62%, transparent 100%);
}

.home-module-oem .home-module-body,
.home-module-oem .home-module-foot {
  background: var(--charcoal);
}

.home-module-oem .home-module-foot .text-link {
  color: var(--white);
}

.home-oem-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.home-oem-points {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.home-oem-points li {
  min-height: 88px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.65;
}

.home-oem-panel-media {
  margin: 0;
}

.home-oem-panel-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.home-module-news .home-module-body {
  background: var(--white);
}

.home-module-news .home-news-grid {
  padding: 0;
}

.home-module-news .home-module-foot {
  background: var(--white);
}

/* Pillars */

.pillar-band {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.pillar-card {
  display: grid;
  gap: 24px;
}

.pillar-image {
  position: relative;
  display: block;
  min-height: clamp(240px, 28vw, 340px);
  background: var(--paper) center / cover no-repeat;
  background-image: var(--pillar-image);
}

.pillar-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.pillar-copy h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

.pillar-sub {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.surface-light .pillar-sub,
.surface-paper .pillar-sub {
  color: var(--blue-tertiary);
}

.pillar-copy p:last-of-type {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.surface-light .pillar-copy p:last-of-type,
.surface-paper .pillar-copy p:last-of-type {
  color: var(--muted);
}

/* Showcase */

.product-showcase {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.showcase-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.showcase-image {
  min-height: 320px;
  padding: 24px;
  background: var(--paper);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
}

.showcase-body {
  padding: 28px;
}

.showcase-body span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.showcase-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Video band */

.video-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: none;
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 48px);
  background: linear-gradient(135deg, var(--charcoal-deep) 0%, var(--charcoal) 100%);
  color: var(--white);
}

.video-band::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--blue-primary);
  content: "";
}

.video-band-plain {
  background: none;
  color: inherit;
}

.video-band-plain::before {
  display: none;
}

.video-band-plain .video-copy p {
  color: var(--muted);
}

.video-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.video-frame {
  overflow: hidden;
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* News */

.home-news {
  padding: clamp(72px, 9vw, 120px) clamp(24px, 5vw, 48px);
  background: var(--paper);
}

.home-news-head {
  max-width: var(--max);
  margin: 0 auto 42px;
  text-align: center;
}

.home-news-head p {
  max-width: 640px;
  margin: 0 auto 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 300;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  max-width: var(--max);
  margin: 0 auto;
}

.news-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}

.news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.news-card:hover .news-image img {
  transform: scale(1.03);
}

.news-copy {
  display: grid;
  gap: 10px;
  padding: 22px 24px 28px;
}

.news-copy time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-category {
  display: block;
  margin: 0;
  color: var(--blue-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
}

.news-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Sub pages hero */

.sub-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 52vh, 560px);
  padding: clamp(120px, 14vh, 156px) var(--space-gutter) clamp(48px, 7vh, 72px);
  background: linear-gradient(150deg, var(--charcoal-deep) 0%, var(--charcoal) 70%, #16314f 100%);
  color: var(--white);
}

.sub-hero .hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.sub-hero .hero-content {
  max-width: 600px;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.25fr minmax(240px, 0.42fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  min-height: clamp(380px, 52vh, 560px);
  padding: clamp(120px, 14vh, 156px) var(--space-gutter) clamp(48px, 7vh, 72px);
  background: linear-gradient(150deg, var(--charcoal-deep) 0%, var(--charcoal) 70%, #16314f 100%);
  color: var(--white);
}

.sub-hero h1,
.product-hero h1 {
  max-width: 18ch;
  margin: 10px 0 0;
  font-size: var(--text-section);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.sub-hero p,
.product-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  font-weight: 300;
}

.sub-hero .hero-lead {
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.company-hero,
.accessories-hero,
.dishwasher-hero,
.blog-hero,
.oem-hero {
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.88) 0%, rgba(14, 23, 36, 0.58) 46%, rgba(21, 74, 153, 0.32) 100%),
    url("/assets/rowash-machines-hero.png") center 35% / cover no-repeat;
}

.company-hero-photo {
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.9) 0%, rgba(14, 23, 36, 0.6) 46%, rgba(21, 74, 153, 0.32) 100%),
    url("/assets/company/production/workshop-daily-08.jpg") center / cover no-repeat;
}

.blog-hero {
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.88) 0%, rgba(14, 23, 36, 0.58) 46%, rgba(21, 74, 153, 0.32) 100%),
    url("/assets/hero-blog.webp") center 45% / cover no-repeat;
}

.oem-hero {
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.9) 0%, rgba(14, 23, 36, 0.6) 46%, rgba(21, 74, 153, 0.32) 100%),
    url("/assets/hero-oem.webp") center 50% / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(100deg, rgba(14, 23, 36, 0.9) 0%, rgba(14, 23, 36, 0.62) 46%, rgba(21, 74, 153, 0.34) 100%),
    url("/assets/hero-contact.png") center 40% / cover no-repeat;
}

.product-hero {
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  background-image: url("/assets/rowash-machines-hero.png");
  opacity: 0.2;
  content: "";
}

.product-hero.product-compact::before {
  background-image: url("/assets/products/glasswasher-loaded.jpg");
}

.product-hero.product-heavy::before {
  background-image: url("/assets/products/hood-open.jpg");
}

.product-hero > * {
  position: relative;
}

.product-hero aside {
  justify-self: end;
  width: min(280px, 100%);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

.product-hero aside strong {
  margin-bottom: 8px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
}

.product-hero aside span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared sections */

.section-heading {
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading:not(.centered) .eyebrow {
  padding-top: 14px;
  border-top: 2px solid var(--blue-primary);
}

.section-heading:not(.centered) h2 {
  max-width: 30ch;
}

.section-heading.centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.band,
.company-production,
.company-sustainability,
.company-certifications,
.product-overview,
.product-highlights,
.product-models,
.technical-gallery,
.application-areas,
.spec-band,
.accessory-grid,
.blog-index,
.related-posts,
.oem-intro,
.oem-process,
.oem-options,
.split-section,
.datasheet-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 108px) clamp(24px, 5vw, 48px);
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.range-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  transition: background 220ms ease, color 220ms ease;
}

.range-number {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.range-card p {
  color: var(--muted);
  line-height: 1.65;
}

.range-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.range-card:hover {
  background: var(--charcoal);
  color: var(--white);
}

.range-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  color: var(--white);
}

.metric {
  min-height: 160px;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.metric strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1;
}

.metric span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-section-nav,
.product-section-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 35;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 18px clamp(24px, 5vw, 48px);
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.company-section-nav a,
.product-section-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.company-section-nav a:hover,
.product-section-nav a:hover {
  opacity: 1;
}

.production-lead {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.44fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 34px;
}

.production-lead img,
.product-overview figure,
.oem-intro-grid img {
  width: 100%;
  object-fit: cover;
  background: var(--paper);
}

.production-lead img {
  aspect-ratio: 4 / 3;
}

.production-grid-media article {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: auto;
  padding: 0;
  overflow: hidden;
}

.production-phase-media {
  margin: 0;
}

.production-phase-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.production-grid-media span,
.production-grid-media h3,
.production-grid-media p {
  padding-left: 28px;
  padding-right: 28px;
}

.production-grid-media span {
  width: auto;
  height: auto;
  margin-bottom: 16px;
  padding-top: 28px;
  background: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.production-grid-media h3 {
  min-height: 4.8em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.production-grid-media p {
  flex: 1;
  min-height: 8.75em;
  margin-bottom: 0;
  padding-bottom: 28px;
}

.company-gallery-band {
  max-width: none;
  padding: clamp(72px, 9vw, 108px) clamp(24px, 5vw, 48px);
  background: var(--paper);
}

.company-gallery-band .company-gallery-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.company-workshop-films {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 108px) clamp(24px, 5vw, 48px);
}

.company-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.company-gallery-item {
  margin: 0;
  background: var(--white);
}

.company-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.company-gallery-item figcaption {
  padding: 16px 18px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.company-film-card h3 {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.certification-card {
  display: grid;
  gap: 16px;
}

.certification-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.certification-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.certification-preview:hover img {
  transform: scale(1.02);
}

.certification-grid-docs article {
  padding: 0;
  overflow: hidden;
}

.certification-card h3,
.certification-card p,
.certification-card .text-link {
  padding-right: 28px;
  padding-left: 28px;
}

.certification-card h3 {
  padding-top: 4px;
}

.certification-card .text-link {
  margin-top: auto;
  padding-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.production-grid,
.certification-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.certification-grid.certification-grid-docs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.production-grid article,
.certification-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.production-grid span,
.certification-grid span {
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--red);
}

.production-lead p,
.company-sustainability p,
.certification-grid p,
.production-grid p,
.oem-intro-grid p,
.process-grid p,
.oem-options-copy p,
.split-copy p,
.model-card p,
.accessory-card p {
  color: var(--muted);
  line-height: 1.75;
}

.company-sustainability {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 48px;
  align-items: center;
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
}

.company-sustainability-photo {
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.92) 0%, rgba(10, 12, 16, 0.78) 46%, rgba(10, 12, 16, 0.84) 100%),
    url("/assets/company/production/workshop-daily-07.jpg") center / cover no-repeat;
}

.company-sustainability-photo .sustainability-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.company-sustainability-photo .sustainability-panel div {
  background: rgba(255, 255, 255, 0.1);
}

.company-sustainability h2 {
  color: var(--white);
}

.company-sustainability p {
  color: rgba(255, 255, 255, 0.72);
}

.sustainability-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.sustainability-panel div {
  min-height: 160px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.sustainability-panel span {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--red);
}

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

.oem-intro-grid article {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.oem-intro-grid img {
  display: block;
  height: 260px;
  margin-bottom: 24px;
}

.oem-intro-grid h3,
.oem-intro-grid p {
  padding: 0 24px 24px;
}

.oem-process {
  max-width: none;
  background: var(--charcoal);
  color: var(--white);
}

.oem-process > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.process-grid {
  background: rgba(255, 255, 255, 0.12);
}

.process-grid article {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.process-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.oem-options {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 48px;
  align-items: center;
}

.option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.option-list div {
  min-height: 140px;
  padding: 24px;
  background: var(--paper);
}

.option-list span {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--red);
}

.product-overview {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.44fr);
  gap: 48px;
  align-items: center;
}

.product-overview figure {
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 0;
  border: 1px solid var(--line);
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: var(--line);
}

.product-highlights article {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
}

.product-highlights span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.model-list {
  display: grid;
  gap: 24px;
}

.project-configuration {
  margin-top: 48px;
}

.project-configuration-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--surface-muted);
}

.project-configuration-inner figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 4px);
}

.project-configuration-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.project-configuration-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.model-card {
  display: grid;
  grid-template-columns: 250px 1fr 220px;
  gap: 28px;
  padding: 28px;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--white);
}

.model-gallery {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  gap: 12px;
  margin: 0;
  padding: 16px;
  background: var(--surface-muted);
  border-radius: var(--card-radius);
}

.model-gallery > img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.model-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.model-thumbs button {
  height: 58px;
  padding: 4px;
  border: 1px solid transparent;
  background: var(--white);
  cursor: pointer;
}

.model-thumbs button.active {
  border-color: var(--red);
}

.model-card > strong {
  align-self: start;
  justify-self: end;
  padding: 12px 14px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.model-card dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.model-card dl div {
  padding: 18px;
  background: var(--paper);
}

.model-card dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-card dd {
  margin: 0;
  font-weight: 600;
}

.model-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.model-card ul,
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.model-card ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}

.check-list li,
.model-card li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid var(--line);
}

.check-list li::before,
.model-card li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  content: "";
}

.datasheet-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: var(--surface-muted);
  border: var(--card-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--card-radius);
}

.datasheet-meta {
  display: grid;
  gap: 6px;
}

.datasheet-meta > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.datasheet-meta > strong {
  font-size: 16px;
  font-weight: 600;
}

.datasheet-view {
  margin-top: 2px;
}

button.datasheet-view {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

/* Datasheet modal */

.datasheet-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.datasheet-modal.open {
  opacity: 1;
  visibility: visible;
}

.datasheet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.datasheet-modal-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(16px);
  transition: transform 240ms ease;
}

.datasheet-modal.open .datasheet-modal-panel {
  transform: translateY(0);
}

.datasheet-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.datasheet-modal-close:hover {
  color: var(--text-hover);
}

.datasheet-modal-header {
  display: grid;
  grid-template-columns: 1fr minmax(160px, 0.36fr);
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--red);
}

.datasheet-modal-header h2 {
  margin: 4px 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.datasheet-modal-header img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.datasheet-modal-body {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.42fr);
  gap: clamp(24px, 4vw, 36px);
  padding-top: 28px;
}

.datasheet-modal-table {
  width: 100%;
  border-collapse: collapse;
}

.datasheet-modal-table th,
.datasheet-modal-table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--card-line, #dfe3e8);
}

.datasheet-modal-table th {
  width: 42%;
  background: var(--surface-muted);
  font-weight: 600;
}

.datasheet-modal-features h3 {
  margin: 0 0 12px;
}

.datasheet-modal-features ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 20px;
  padding-left: 0;
}

.datasheet-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 720px) {
  .datasheet-modal-header,
  .datasheet-modal-body {
    grid-template-columns: 1fr;
  }
}

/* Legal pages (Privacy & Cookies) */

.legal-page {
  display: grid;
  grid-template-columns: minmax(200px, 0.28fr) 1fr;
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--space-gutter);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 100px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.legal-toc-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 10px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--text-hover);
}

.legal-body {
  max-width: 760px;
}

.legal-updated {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.legal-intro {
  margin: 0 0 8px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
}

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

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
}

.legal-section p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.legal-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-section li {
  line-height: 1.65;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
}

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

  .legal-toc {
    position: static;
  }
}

/* Contact page */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--space-gutter);
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
}

.contact-info-brand {
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
}

.contact-info-lead {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--accent);
}

.contact-info-icon svg {
  fill: currentColor;
}

.contact-info-list li > div {
  display: grid;
  gap: 2px;
}

.contact-info-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info-list a {
  color: var(--ink, #111317);
}

.contact-info-list a:hover {
  color: var(--accent);
}

.contact-response {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--blue-primary);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  background: var(--surface-muted);
}

.contact-response p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-form-card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface-muted);
  border: var(--card-border);
  border-radius: var(--card-radius);
}

.contact-form-card h2 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
}

.contact-form-intro {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.contact-form label > span {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--card-line, #dfe3e8);
  border-radius: var(--card-radius);
  background: #fff;
  font: inherit;
  color: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(36, 95, 168, 0.12);
}

.contact-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.contact-consent input {
  width: auto;
  margin-top: 3px;
}

.contact-consent a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-feedback {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: var(--card-radius);
  font-size: 14px;
  line-height: 1.5;
}

.contact-feedback.is-success {
  background: rgba(70, 210, 126, 0.12);
  border: 1px solid rgba(70, 210, 126, 0.4);
  color: #1d7a44;
}

.contact-feedback.is-error {
  background: rgba(224, 73, 47, 0.1);
  border: 1px solid rgba(224, 73, 47, 0.35);
  color: #b8381f;
}

.contact-map {
  max-width: var(--max);
  margin: 0 auto clamp(40px, 6vw, 72px);
  padding: 0 var(--space-gutter);
}

.contact-map iframe {
  display: block;
  height: 320px;
  max-height: 42vh;
  border-radius: var(--card-radius);
  overflow: hidden;
}

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

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

.datasheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.datasheet-page header {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.38fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 3px solid var(--red);
}

.datasheet-layout {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.4fr);
  gap: 36px;
  padding-top: 36px;
}

.datasheet-layout table {
  width: 100%;
  border-collapse: collapse;
}

.datasheet-layout th,
.datasheet-layout td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.datasheet-layout th {
  width: 200px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.datasheet-features {
  padding: 24px;
  background: var(--paper);
  border-left: 3px solid var(--red);
}

.datasheet-features ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.datasheet-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.technical-gallery {
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: var(--charcoal);
  color: var(--white);
}

.technical-gallery > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.technical-photo-grid figure {
  margin: 0;
  background: var(--white);
}

.technical-photo-grid img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: var(--paper);
}

.technical-photo-grid figcaption {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 600;
}

.application-areas {
  display: grid;
  grid-template-columns: minmax(240px, 0.66fr) 1fr;
  gap: 48px;
  align-items: center;
}

.application-areas ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
}

.application-areas li {
  min-height: 110px;
  padding: 28px;
  background: var(--paper);
  font-size: 20px;
  font-weight: 500;
}

.application-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}

.application-table th,
.application-table td {
  padding: 20px 24px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.application-table thead th {
  background: var(--blue-soft);
  color: var(--blue-tertiary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-table tbody th {
  width: 38%;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.application-table tbody td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.spec-band {
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: var(--charcoal);
  color: var(--white);
}

.spec-band > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.spec-grid article {
  min-height: 200px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.spec-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.accessory-catalog {
  padding: 72px 0 80px;
  background: var(--paper);
}

.accessory-catalog-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.accessory-tabs {
  margin: 0 0 32px;
  padding: 0;
}

.accessory-tabs-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(20, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(14, 21, 32, 0.06);
}

.accessory-tabs-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.accessory-tabs-row::-webkit-scrollbar {
  display: none;
}

.accessory-tabs-divider {
  width: 1px;
  height: 24px;
  margin: 0 4px;
  background: var(--line);
  flex: 0 0 auto;
}

.accessory-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 12px 18px;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.accessory-tab-label {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.accessory-tab-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(20, 24, 32, 0.06);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.accessory-tab:hover {
  color: var(--ink);
  background: rgba(20, 24, 32, 0.04);
}

.accessory-tab.active {
  color: var(--white);
  background: var(--blue-primary);
  box-shadow: 0 10px 24px rgba(var(--blue-rgb), 0.22);
}

.accessory-tab.active .accessory-tab-count {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.accessory-tab-all {
  padding-left: 20px;
  padding-right: 16px;
}

.accessory-panels {
  min-width: 0;
}

.accessory-panel-content {
  display: grid;
  gap: 20px;
}

.accessory-panel-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: center;
}

.accessory-panel .accessory-grid {
  margin-top: 0;
}

.accessory-empty {
  padding: 72px 0;
  color: var(--muted);
  text-align: center;
}

.accessory-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(20, 24, 32, 0.06);
  border-radius: var(--card-radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(14, 21, 32, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.accessory-card:hover {
  border-color: rgba(var(--blue-rgb), 0.16);
  box-shadow: 0 18px 44px rgba(14, 21, 32, 0.09);
  transform: translateY(-3px);
}

.accessory-card-media {
  position: relative;
  aspect-ratio: 5 / 4;
  padding: clamp(18px, 2.5vw, 28px);
  background: linear-gradient(180deg, #fafbfd 0%, #f1f4f8 100%);
  overflow: hidden;
}

.accessory-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.accessory-card-body {
  display: grid;
  gap: 0;
  flex: 1;
  padding: 22px 24px 26px;
}

.accessory-card-eyebrow {
  margin: 0 0 8px;
  color: var(--blue-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.accessory-card-body h2 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--ink);
}

.accessory-card-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1fr;
  gap: 48px;
  align-items: stretch;
}

.image-slice {
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28)),
    url("/assets/rowash-machines-hero.png") center / cover no-repeat;
}

.accessory-workflow {
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: var(--paper);
}


/* Blog */

.blog-index {
  display: grid;
  gap: 24px;
}

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

.blog-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.blog-card.featured {
  grid-template-columns: minmax(280px, 0.52fr) 1fr;
  background: var(--charcoal);
  color: var(--white);
}

.blog-card img {
  width: 100%;
  min-height: 260px;
  object-fit: contain;
  background: var(--paper);
}

.blog-card div {
  display: grid;
  align-content: center;
  padding: 28px;
}

.blog-card time {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card span {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.blog-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.blog-card h2 {
  font-size: 20px;
  line-height: 1.35;
}

.blog-card.featured img {
  min-height: 340px;
  object-fit: cover;
  background: var(--charcoal);
}

.blog-card.featured h2 {
  font-size: 26px;
  line-height: 1.25;
}

.blog-card.featured div {
  padding: 40px;
}

.article-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 48px;
  align-items: center;
  padding: clamp(110px, 14vh, 150px) clamp(24px, 5vw, 48px) clamp(72px, 8vh, 96px);
  background: var(--charcoal);
  color: var(--white);
}

.article-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.article-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 96px) clamp(24px, 5vw, 48px);
}

.article-meta {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--paper);
  border-left: 3px solid var(--red);
}

.article-meta span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-body section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 300;
}

.takeaway {
  padding: 28px;
  background: var(--charcoal);
  color: var(--white);
}

.takeaway span {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.takeaway p {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
}

.related-posts {
  max-width: none;
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: var(--paper);
}

.related-posts > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

/* Footer */

.site-footer {
  color: var(--white);
}

.footer-cta {
  padding: clamp(40px, 6vw, 56px) clamp(24px, 5vw, 48px);
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-cta-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  line-height: 1.1;
}

.footer-cta-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-cta-btn {
  min-width: 180px;
  white-space: nowrap;
}

.footer-cta-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.footer-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

.footer-main {
  padding: clamp(56px, 7vw, 80px) clamp(24px, 5vw, 48px);
  background: var(--footer-bg);
}

.footer-main-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand-block {
  display: grid;
  gap: 0;
  align-content: start;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.75;
  font-weight: 300;
  font-size: 14px;
}

.footer-social {
  margin-top: 26px;
}

.footer-social-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social-link svg {
  fill: currentColor;
}

a.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-social-link.is-empty {
  opacity: 0.32;
  cursor: default;
}

.footer-col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-col strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact {
  gap: 10px;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.footer-contact-icon svg {
  fill: currentColor;
}

.footer-copy {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 2px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.footer-copy svg {
  fill: currentColor;
}

.footer-copy:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-copy.is-copied {
  color: #46d27e;
}

.footer-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-outline-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}

.footer-bottom {
  padding: 16px clamp(24px, 5vw, 48px);
  background: var(--blue-primary);
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.footer-legal a {
  color: var(--white);
  font-weight: 600;
}

.footer-legal-sep {
  opacity: 0.45;
}

.footer-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease;
}

.footer-top:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* Phase 3.5 — audience paths, scenarios, OEM narrative, certs, video, blog IA */

.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;
}

/* Home audience paths */

.audience-band {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface-muted);
}

.audience-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-card-gap);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: var(--card-border);
  border-top: 3px solid var(--accent);
  border-radius: var(--card-radius);
  color: var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.audience-label {
  color: var(--accent);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-title {
  margin: 4px 0 0;
  font-size: var(--text-card);
  font-weight: 600;
  line-height: 1.25;
}

.audience-copy {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.audience-cta {
  margin-top: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Washer hub helpers */

.dishwasher-module-lead {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Compare models table */

.compare-scroll {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
}

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

.compare-table thead th {
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table tbody tr:hover {
  background: var(--blue-soft);
}

.compare-model {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.compare-empty {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--space-gutter);
  color: var(--muted);
  text-align: center;
}

.model-card[id] {
  scroll-margin-top: calc(var(--header-h) + 120px);
}

.compare-cat {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.compare-desc {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.compare-action a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.compare-action a:hover {
  background: var(--accent);
  color: var(--white);
}

/* OEM cooperation timeline */

.oem-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 12px var(--space-gutter) 0;
  list-style: none;
  counter-reset: oem;
}

.oem-timeline-step {
  position: relative;
  padding-top: 34px;
}

.oem-timeline-step::before {
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  content: "";
}

.oem-timeline-step:last-child::before {
  right: 50%;
}

.oem-timeline-step:first-child::before {
  left: 0;
}

.oem-timeline-dot {
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--blue-light);
}

.oem-timeline-num {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.oem-timeline-step h3 {
  margin: 6px 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.oem-timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* OEM customization scope */

.oem-options-copy p {
  color: #4a4a4a;
}

.custom-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-card-gap);
}

.custom-scope-card {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: var(--card-border);
  border-top: 3px solid var(--accent);
  border-radius: var(--card-radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.custom-scope-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.custom-scope-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.custom-scope-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* OEM B2B facts */

.oem-b2b {
  padding: var(--space-section-y) 0;
  background: var(--surface-dark);
  color: var(--white);
}

.oem-b2b .section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 var(--space-gutter);
}

.oem-b2b .section-heading h2 {
  color: var(--white);
}

.oem-b2b-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-card-gap);
  width: min(var(--max), 100%);
  margin: 32px auto 0;
  padding: 0 var(--space-gutter);
}

.oem-b2b-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
}

.oem-b2b-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.oem-b2b-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.oem-b2b-cta {
  width: min(var(--max), 100%);
  margin: 32px auto 0;
  padding: 0 var(--space-gutter);
  display: flex;
  justify-content: center;
}

/* Certifications — large clickable cards */

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-card-gap);
}

.cert-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: var(--card-border);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.cert-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--surface-muted);
  overflow: hidden;
}

.cert-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease;
}

.cert-card:hover .cert-card-media img {
  transform: scale(1.03);
}

.cert-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.cert-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  padding: 22px clamp(18px, 2vw, 24px) 24px;
}

.cert-card-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.cert-card-body p {
  margin: 0;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cert-card-btn {
  align-self: flex-start;
  min-height: 42px;
}

/* Video poster + play button */

.video-frame {
  position: relative;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(8, 16, 25, 0.18), rgba(8, 16, 25, 0.46));
  cursor: pointer;
  transition: background 200ms ease;
}

.video-play:hover {
  background: linear-gradient(180deg, rgba(8, 16, 25, 0.24), rgba(8, 16, 25, 0.54));
}

.video-frame.is-playing .video-play {
  display: none;
}

.video-play-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(8, 16, 25, 0.32);
  transition: transform 200ms ease;
}

.video-play:hover .video-play-icon {
  transform: scale(1.06);
}

.video-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--accent);
}

/* Blog knowledge base */

.blog-card-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card.featured .blog-card-tag {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  padding-bottom: 4px;
}

.blog-toolbar-title {
  margin: 0;
  font-size: var(--text-card);
  font-weight: 600;
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.blog-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

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

.blog-empty {
  margin: 24px 0 0;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--card-radius);
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .audience-inner,
  .custom-scope-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oem-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .oem-timeline-step::before {
    display: none;
  }

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

@media (max-width: 640px) {
  .audience-inner,
  .custom-scope-grid,
  .cert-grid,
  .oem-timeline,
  .oem-b2b-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .home-range-grid,
  .category-grid,
  .pillar-grid,
  .showcase-grid,
  .home-news-grid,
  .production-grid,
  .certification-grid:not(.certification-grid-docs),
  .process-grid,
  .product-highlights,
  .technical-photo-grid,
  .spec-grid,
  .accessory-grid,
  .oem-intro-grid,
  .company-gallery-grid,
  .company-film-grid,
  .blog-grid,
  .range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .video-band,
  .split-section,
  .sub-hero,
  .product-hero,
  .production-lead,
  .home-range-head,
  .home-split-inner,
  .home-oem-panel,
  .company-sustainability,
  .product-overview,
  .application-areas,
  .oem-options,
  .article-hero,
  .article-layout,
  .footer-main-inner,
  .footer-cta-inner,
  .model-card {
    grid-template-columns: 1fr;
  }

  .footer-cta-btn {
    justify-self: start;
  }

  .model-card > strong {
    justify-self: start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-top {
    position: static;
    transform: none;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .header-contact,
  .menu-button,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 20px clamp(20px, 4vw, 48px) 28px;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.open {
    display: grid;
    gap: 12px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }

  .has-mega .mega-panel {
    position: static;
    width: 100%;
    padding-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .has-mega:not(.open) .mega-panel {
    display: none;
  }

  .mega-panel-inner {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-dots {
    top: auto;
    right: auto;
    left: clamp(20px, 4vw, 48px);
    bottom: 110px;
  }

  .hero-arrows {
    right: clamp(20px, 4vw, 48px);
  }

  .hero-slide-content h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .home-range-grid,
  .category-grid,
  .pillar-grid,
  .showcase-grid,
  .home-news-grid,
  .range-grid,
  .metrics-band,
  .sustainability-panel,
  .option-list,
  .model-card dl,
  .model-card ul,
  .application-areas ul,
  .blog-card,
  .blog-card.featured,
  .dishwasher-hub .category-grid {
    grid-template-columns: 1fr;
  }

  .wash-acc-item.is-open .wash-acc-body-inner {
    padding-left: clamp(20px, 2.8vw, 28px);
  }

  .accessories-hub .accessory-showcase-grid {
    grid-template-columns: 1fr;
  }

  .accessory-workflow-inner {
    grid-template-columns: 1fr;
  }

  .accessory-jump .accessory-tabs-row {
    justify-content: flex-start;
  }

  .accessory-jump .accessory-tab {
    flex: 0 0 auto;
  }

  .dishwasher-jump-row {
    justify-content: flex-start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .dishwasher-jump-row::-webkit-scrollbar {
    display: none;
  }

  .dishwasher-jump a {
    flex: 0 0 auto;
  }

  .article-meta {
    position: static;
  }

  .datasheet-page header,
  .datasheet-layout,
  .datasheet-panel,
  .datasheet-actions {
    grid-template-columns: 1fr;
  }

  .datasheet-actions {
    justify-content: stretch;
  }

  .datasheet-actions a {
    width: 100%;
  }

  .accessory-workflow-module .workflow-steps {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px 12px;
    min-height: 0;
  }

  .workflow-step {
    flex: 0 0 calc(33.333% - 8px);
  }

  .workflow-step::before {
    display: none;
  }

  .company-section-nav,
  .product-section-nav {
    top: 78px;
    justify-content: flex-start;
    overflow-x: auto;
  }

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

@media (max-width: 680px) {
  .brand-image {
    width: clamp(128px, 36vw, 168px);
  }

  .hero-slide-content {
    padding-bottom: 110px;
  }

  .showcase-image {
    min-height: 220px;
  }

  .showcase-image img {
    min-height: 200px;
  }

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

  .accessory-tabs-shell {
    border-radius: 18px;
    padding: 6px;
  }

  .accessory-tabs-row {
    gap: 4px;
  }

  .accessory-tab {
    padding: 10px 14px;
  }

  .accessory-tabs-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-slide,
  .showcase-card,
  .blog-card,
  .news-card img {
    transition: none;
  }
}
