:root {
  --brand-blue: #262262;
  --brand-blue-deep: #15133f;
  --brand-gray: #6d6e71;
  --concrete: #f3f4f6;
  --line: #d9dde5;
  --ink: #151622;
  --muted: #5d6270;
  --white: #ffffff;
  --signal: #d4a72c;
  --field: #f9fafb;
  --green: #2d7568;
}

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

.menu-toggle {
  display: none;
}

.footer-contacts {
  display: grid;
  gap: 6px;
}

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

.article-content.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px clamp(18px, 5vw, 80px) 96px;
  font-size: 18px;
  line-height: 1.7;
}

.article-aside p {
  color: var(--muted);
  line-height: 1.6;
}

.navigation.pagination {
  margin-top: 36px;
}

.nav-links .catalog-panel a {
  text-transform: none;
}

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

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form .form-wide,
.wpcf7-form .form-submit,
.wpcf7-response-output {
  grid-column: 1 / -1;
}

.wpcf7-form label {
  display: grid;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
}

textarea.wpcf7-form-control {
  min-height: 126px;
  resize: vertical;
}

.wpcf7-submit {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  background: var(--signal);
  color: var(--brand-blue-deep);
  font-weight: 900;
  cursor: pointer;
}

.bk-fallback-form {
  padding: 18px;
  border: 1px dashed var(--line);
  color: var(--muted);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(140px, 1fr) auto auto;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--white);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--brand-blue);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .nav-links.is-open {
    display: grid;
  }

  .catalog-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 62vh;
    overflow: auto;
    margin-top: 10px;
    transform: none;
  }

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

@media (max-width: 640px) {
  .header-action {
    min-width: 74px;
    padding-inline: 12px;
  }

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

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Avant Garde", "Century Gothic", Arial, Helvetica, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

main {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(38, 34, 98, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(220px, 42vw);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--brand-gray);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.catalog-menu summary:hover {
  color: var(--brand-blue);
}

.catalog-menu {
  position: relative;
}

.catalog-menu summary {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
}

.catalog-menu summary::-webkit-details-marker {
  display: none;
}

.catalog-menu summary svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.catalog-menu[open] summary svg {
  transform: rotate(180deg);
}

.catalog-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(21, 19, 63, 0.16);
  color: var(--ink);
  text-transform: none;
  transform: translateX(-50%);
}

.catalog-menu:not([open]):hover > .catalog-panel,
.catalog-menu:not([open]):focus-within > .catalog-panel {
  display: grid;
}

.catalog-direction {
  display: grid;
  align-content: start;
  gap: 4px;
}

.catalog-direction a {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.catalog-direction a:hover {
  color: var(--brand-blue);
}

.catalog-direction a svg {
  width: 18px;
  height: 18px;
  color: var(--signal);
}

.catalog-direction .catalog-direction-title {
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  min-height: 58px;
  margin-bottom: 4px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.catalog-direction .catalog-direction-title svg:last-child {
  width: 15px;
  color: var(--brand-blue);
  transition: transform 180ms ease;
}

.catalog-direction .catalog-direction-title:hover svg:last-child {
  transform: translateX(3px);
}

.catalog-all {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px !important;
  border-radius: 6px;
  background: var(--concrete);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-all svg {
  width: 18px;
  height: 18px;
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  gap: 10px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.header-action,
.primary-button {
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
  color: var(--white);
}

.header-action {
  padding: 0 20px;
}

.primary-button {
  padding: 0 24px;
}

.primary-button svg,
.secondary-button svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.primary-button:hover,
.header-action:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-blue);
  padding: 0 22px;
}

.secondary-button.light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 68px);
  min-height: calc(100svh - 126px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 80px) 46px;
  background:
    linear-gradient(rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 52px 52px;
}

.hero-copy {
  align-self: center;
  max-width: 880px;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  max-width: 740px;
  margin: 26px 0 0;
  color: #303342;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.42;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 52px;
  border: 1px solid rgba(38, 34, 98, 0.16);
  background: rgba(38, 34, 98, 0.16);
}

.hero-metrics div {
  position: relative;
  min-height: 116px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.metric-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  color: rgba(38, 34, 98, 0.32);
}

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

.hero-metrics strong {
  color: var(--brand-blue);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.hero-side {
  position: relative;
  align-self: center;
  display: grid;
  gap: 14px;
}

.hero-product {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 98, 0.18);
  border-radius: 8px;
  background: var(--brand-blue-deep);
  box-shadow: 0 24px 70px rgba(21, 19, 63, 0.18);
}

.hero-product::before,
.hero-product::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-product::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.hero-product::after {
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.64);
}

.hero-product > img,
.hero-product > video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-product > video {
  display: block;
}

.hero-product figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  padding: 13px 15px;
  border-radius: 6px;
  background: rgba(21, 19, 63, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-product figcaption svg {
  flex: 0 0 auto;
  color: var(--signal);
}

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

.hero-product figcaption span {
  font-size: 12px;
  line-height: 1.4;
}

.hero-product figcaption strong {
  font-size: 14px;
}

.hero-product-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 190px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-product-badge svg {
  flex: 0 0 auto;
  width: 18px;
}

.quote-panel {
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(21, 19, 63, 0.12);
}

.panel-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
}

.panel-title-row svg {
  width: 20px;
  height: 20px;
}

.panel-title-row .panel-kicker {
  margin: 0;
}

.quote-panel h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.quote-panel p:not(.panel-kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--brand-gray);
  font-size: 14px;
}

.contact-strip a {
  display: flex;
  align-items: center;
  gap: 9px;
  overflow-wrap: anywhere;
}

.contact-strip svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--brand-blue);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(38, 34, 98, 0.035), rgba(38, 34, 98, 0)),
    var(--concrete);
}

.catalog-section,
.process-section,
.geography-section,
.quote-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: end;
  margin: 0 0 42px;
}

.section-title {
  max-width: 960px;
}

.section-title .eyebrow {
  margin-bottom: 18px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 590px;
  padding-bottom: 4px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.production-copy h2,
.geography-section h2,
.custom-copy h2,
.quote-copy h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.6vw, 70px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.production-copy p,
.geography-section p,
.custom-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

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

.category-link {
  display: flex;
  min-width: 0;
}

.category-card {
  position: relative;
  min-height: 282px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
  width: 100%;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(38, 34, 98, 0.1);
  transform: rotate(45deg);
  transition: transform 240ms ease;
}

.category-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(38, 34, 98, 0.34);
  box-shadow: 0 18px 40px rgba(21, 19, 63, 0.1);
}

.category-card:hover::after {
  transform: rotate(45deg) scale(1.25);
}

.category-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(38, 34, 98, 0.16);
  border-radius: 6px;
  background: rgba(38, 34, 98, 0.055);
  color: var(--brand-blue);
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.category-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.category-card:hover .category-icon {
  transform: rotate(-4deg);
  background: var(--brand-blue);
  color: var(--white);
}

.category-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-more svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.category-link:hover .category-more svg {
  transform: translateX(4px);
}

.category-index {
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
}

.category-card h3 {
  margin: 28px 0 12px;
  color: var(--brand-blue);
  font-size: 24px;
  line-height: 1.08;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 80px);
  background: var(--brand-blue-deep);
  color: var(--white);
}

.showcase-intro h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 1;
}

.showcase-intro .eyebrow {
  color: var(--signal);
}

.showcase-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--white);
  font-weight: 900;
}

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

.showcase-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #2b2c34;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 19, 63, 0.9), transparent 60%);
  pointer-events: none;
}

.showcase-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.02);
}

.showcase-card .showcase-caption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.showcase-card .showcase-caption svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--signal);
}

.showcase-card .showcase-caption span,
.showcase-card .showcase-caption strong {
  display: block;
}

.showcase-card .showcase-caption strong {
  color: var(--white);
  font-size: 16px;
}

.showcase-card .showcase-arrow {
  margin-left: auto;
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

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

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.direction-card {
  min-height: 320px;
}

.direction-count {
  margin-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.tag-row span,
.region-cloud span {
  border: 1px solid rgba(38, 34, 98, 0.14);
  border-radius: 999px;
  background: rgba(38, 34, 98, 0.05);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
}

.production-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 8vw, 116px) clamp(18px, 5vw, 80px);
}

.production-image {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--concrete);
}

.image-callout {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(21, 19, 63, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.image-callout svg {
  flex: 0 0 auto;
  color: var(--signal);
}

.image-callout span,
.image-callout strong {
  display: block;
}

.image-callout span {
  font-size: 12px;
}

.image-callout strong {
  font-size: 14px;
}

.production-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.production-copy p {
  margin-top: 24px;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.strength-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  border-left: 4px solid var(--brand-blue);
  background: var(--concrete);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.strength-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--brand-blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.process-grid div {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(38, 34, 98, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.process-grid div > svg {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  color: rgba(38, 34, 98, 0.24);
  stroke-width: 1.5;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.process-grid div:hover > svg {
  transform: translateY(-3px);
  color: var(--brand-blue);
}

.process-grid span {
  color: var(--signal);
  font-weight: 900;
}

.process-grid h3 {
  margin: 28px 0 12px;
  color: var(--brand-blue);
  font-size: 24px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.geography-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.geography-section p {
  margin-top: 22px;
}

.region-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: rgba(45, 117, 104, 0.28);
  background: rgba(45, 117, 104, 0.08);
  color: var(--green);
  font-size: 15px;
  padding: 12px 16px;
}

.region-cloud svg {
  width: 16px;
  height: 16px;
}

.custom-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(38, 34, 98, 0.96), rgba(21, 19, 63, 0.94)),
    url("/factory-sites.jpg") center / cover;
  color: var(--white);
  overflow: hidden;
}

.custom-graphic {
  position: absolute;
  top: 50%;
  right: 7%;
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  color: rgba(255, 255, 255, 0.07);
  transform: translateY(-50%);
  stroke-width: 0.7;
  pointer-events: none;
}

.custom-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.custom-section > a {
  position: relative;
  z-index: 1;
}

.custom-copy .eyebrow,
.custom-copy h2,
.custom-copy p {
  color: var(--white);
}

.custom-copy p {
  margin-top: 22px;
  opacity: 0.82;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 560px);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

.quote-copy p {
  margin-top: 22px;
}

.quote-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 34px;
  padding: 22px;
  border-left: 5px solid var(--signal);
  background: var(--concrete);
}

.quote-note > svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--signal);
}

.quote-note div {
  display: grid;
  gap: 10px;
}

.quote-note strong {
  color: var(--brand-blue);
}

.quote-note span {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--concrete);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd4de;
  border-radius: 6px;
  background: var(--field);
  color: var(--ink);
  outline: none;
  padding: 14px 15px;
  text-transform: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(38, 34, 98, 0.14);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, 230px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: #f7f7f8;
}

.site-footer img {
  width: 210px;
}

.site-footer div {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--brand-blue);
}

.site-footer a {
  color: var(--brand-blue);
  font-weight: 900;
}

.site-footer .footer-credit {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer .footer-credit strong {
  color: var(--brand-blue);
  font-weight: 900;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  min-height: calc(100svh - 126px);
  padding: clamp(50px, 7vw, 96px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 52px 52px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--brand-gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--brand-blue);
}

.breadcrumbs strong {
  color: var(--brand-blue);
}

.category-hero-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--brand-blue);
}

.category-hero-icon svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(38, 34, 98, 0.18);
  border-radius: 6px;
  background: rgba(38, 34, 98, 0.055);
}

.category-hero-icon span {
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
}

.category-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(46px, 6.2vw, 94px);
  font-weight: 900;
  line-height: 0.94;
}

.category-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.category-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(38, 34, 98, 0.15);
  border-radius: 999px;
  background: rgba(38, 34, 98, 0.05);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.category-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 98, 0.18);
  border-radius: 8px;
  background: var(--brand-blue-deep);
  box-shadow: 0 28px 70px rgba(21, 19, 63, 0.17);
}

.category-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-right-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.category-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-visual:hover img {
  transform: scale(1.04);
}

.category-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(21, 19, 63, 0.9);
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  font-size: 12px;
  line-height: 1.45;
}

.category-visual figcaption svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--signal);
}

.category-visual figcaption span,
.category-visual figcaption strong {
  display: block;
}

.category-visual figcaption strong {
  color: var(--white);
  font-size: 14px;
}

.product-gallery-thumbnails {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(21, 19, 63, 0.18);
}

.product-gallery-thumbnails a {
  display: block;
  width: 96px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 98, 0.18);
  border-radius: 3px;
  background: var(--white);
}

.category-visual .product-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 200ms ease;
}

.product-gallery-thumbnails a:hover img {
  transform: scale(1.05);
}

.category-hero--catalog {
  min-height: auto;
  padding-block: clamp(38px, 5vw, 68px);
}

.category-hero--catalog .breadcrumbs {
  margin-bottom: 22px;
}

.category-hero--catalog .category-hero-icon {
  margin-bottom: 16px;
}

.category-hero--catalog h1 {
  font-size: clamp(44px, 5vw, 72px);
}

.category-hero--catalog .category-lead {
  margin-top: 18px;
  font-size: clamp(17px, 1.6vw, 21px);
}

.category-hero--catalog .category-visual,
.category-hero--catalog .category-visual img {
  min-height: 390px;
}

.category-details,
.related-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.category-details {
  background: var(--concrete);
}

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

.detail-panel {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-panel.accent {
  border-color: rgba(38, 34, 98, 0.25);
  background: var(--brand-blue-deep);
  color: var(--white);
}

.detail-panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-panel-title svg {
  width: 30px;
  height: 30px;
  color: var(--signal);
}

.detail-panel h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(25px, 2.6vw, 36px);
}

.detail-panel.accent h3 {
  color: var(--white);
}

.detail-panel ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.detail-panel.accent li {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.detail-panel li svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--green);
}

.detail-panel.accent li svg {
  color: var(--signal);
}

.subtype-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.subtype-panel .detail-panel-title {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--brand-blue);
}

.product-subtype-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.product-subtype-grid > a {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  grid-template-rows: auto auto;
  gap: 7px 10px;
  align-items: center;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-subtype-grid > a:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 34, 98, 0.34);
  box-shadow: 0 12px 24px rgba(21, 19, 63, 0.08);
}

.product-subtype-grid > a > svg:first-of-type {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  color: var(--brand-blue);
}

.product-subtype-grid > a > svg:last-child {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
  color: var(--signal);
  transition: transform 180ms ease;
}

.product-subtype-grid > a:hover > svg:last-child {
  transform: translateX(3px);
}

.product-subtype-grid strong {
  color: var(--brand-blue);
  font-size: 15px;
  line-height: 1.3;
}

.product-subtype-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-subtype-index {
  position: absolute;
  top: 9px;
  right: 10px;
  color: rgba(38, 34, 98, 0.26);
  font-size: 10px;
  font-weight: 900;
}

.direction-products {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

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

.direction-product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.direction-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(38, 34, 98, 0.34);
  box-shadow: 0 18px 40px rgba(21, 19, 63, 0.1);
}

.direction-product-image {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: var(--brand-blue-deep);
}

.direction-product-image img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.direction-product-card:hover .direction-product-image img {
  transform: scale(1.045);
}

.direction-product-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  background: rgba(21, 19, 63, 0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.direction-product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.direction-product-copy > svg {
  width: 32px;
  height: 32px;
  color: var(--brand-blue);
}

.direction-product-copy h3 {
  margin: 22px 0 12px;
  color: var(--brand-blue-deep);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
}

.direction-product-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.direction-product-types {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.direction-product-types span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.direction-product-types svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--green);
}

.category-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-assurance > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  min-height: 148px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

.category-assurance > div + div {
  border-left: 1px solid var(--line);
}

.category-assurance svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: var(--brand-blue);
}

.category-assurance strong {
  color: var(--brand-blue);
  font-size: 18px;
}

.category-assurance span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.related-heading h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.related-heading > a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-blue);
  font-weight: 900;
}

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

.related-grid > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.related-grid > a:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 34, 98, 0.32);
  box-shadow: 0 16px 34px rgba(21, 19, 63, 0.09);
}

.related-grid > a > svg:first-child {
  width: 28px;
  height: 28px;
  color: var(--brand-blue);
}

.related-grid span,
.related-grid strong {
  display: block;
}

.related-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.related-grid strong {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-size: 16px;
}

.related-arrow {
  width: 18px;
  height: 18px;
  color: var(--signal);
}

.category-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 80px);
  background: var(--brand-blue-deep);
  color: var(--white);
}

.category-cta > div {
  max-width: 950px;
}

.category-cta .eyebrow {
  color: var(--signal);
}

.category-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1;
}

.category-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  min-height: 430px;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 34, 98, 0.055) 1px, transparent 1px),
    var(--concrete);
  background-size: 52px 52px;
}

.content-hero > div {
  max-width: 980px;
}

.content-hero h1 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.9;
  text-transform: uppercase;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.content-hero > svg {
  width: clamp(110px, 16vw, 240px);
  height: clamp(110px, 16vw, 240px);
  color: rgba(38, 34, 98, 0.1);
  stroke-width: 0.8;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.featured-post figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.featured-post img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--brand-gray);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-meta span:first-child {
  color: var(--brand-blue);
}

.post-meta svg {
  width: 15px;
  height: 15px;
}

.featured-post h2 {
  margin: 20px 0 0;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
}

.featured-post p {
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.blog-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

.blog-title {
  margin-bottom: 38px;
}

.blog-title h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1;
}

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

.blog-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blog-card-image {
  display: block;
  min-height: 210px;
  overflow: hidden;
  padding: 0 !important;
}

.blog-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.045);
}

.blog-card > .post-meta,
.blog-card > h3,
.blog-card > p,
.blog-card > .blog-card-link {
  margin-right: 22px;
  margin-left: 22px;
}

.blog-card > .post-meta {
  margin-top: 22px;
}

.blog-card h3 {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--brand-blue);
  font-size: 23px;
  line-height: 1.12;
}

.blog-card p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.blog-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card-link svg {
  width: 18px;
  height: 18px;
}

.article-page {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 8vw, 130px) clamp(70px, 9vw, 130px);
  background: var(--white);
}

.article-header {
  max-width: 1080px;
  margin: 0 auto 46px;
}

.article-header h1 {
  margin: 22px 0 0;
  color: var(--brand-blue-deep);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
}

.article-header > p {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.article-image {
  max-width: 1240px;
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.article-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(34px, 7vw, 100px);
  max-width: 1080px;
  margin: clamp(50px, 7vw, 86px) auto 0;
}

.article-body {
  display: grid;
  gap: 42px;
}

.article-body h2,
.article-aside h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 28px;
  line-height: 1.15;
}

.article-body p {
  margin: 14px 0 0;
  color: #414552;
  font-size: 18px;
  line-height: 1.72;
}

.article-aside {
  align-self: start;
  padding: 26px;
  border-left: 5px solid var(--signal);
  background: var(--concrete);
}

.article-aside ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.article-aside li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.article-aside li svg {
  flex: 0 0 auto;
  width: 18px;
  color: var(--green);
}

.article-aside > a,
.article-back a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-blue);
  font-weight: 900;
}

.article-aside > a svg,
.article-back svg {
  width: 18px;
  height: 18px;
}

.article-back {
  max-width: 1080px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contacts-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.contacts-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 24px;
  background: var(--white);
}

.contact-item > svg {
  width: 30px;
  height: 30px;
  color: var(--brand-blue);
}

.contact-item span,
.contact-item small,
.contact-item strong {
  display: block;
}

.contact-item small {
  margin-bottom: 7px;
  color: var(--brand-gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  color: var(--brand-blue);
  font-size: clamp(17px, 2vw, 24px);
}

.contact-form {
  padding: clamp(26px, 4vw, 46px);
}

.form-heading h2 {
  margin: 0 0 12px;
  color: var(--brand-blue-deep);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1;
}

.address-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

.address-section > .section-title {
  margin-bottom: 34px;
}

.address-section h2 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1;
}

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

.address-grid article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  min-height: 220px;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.address-grid article > svg {
  width: 34px;
  height: 34px;
  color: var(--signal);
}

.address-grid small {
  color: var(--brand-gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.address-grid h3 {
  margin: 12px 0 8px;
  color: var(--brand-blue);
  font-size: 28px;
}

.address-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.delivery-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 80px);
  background: var(--brand-blue-deep);
  color: var(--white);
}

.delivery-band > svg {
  width: 48px;
  height: 48px;
  color: var(--signal);
}

.delivery-band .eyebrow {
  color: var(--signal);
}

.delivery-band h2 {
  margin: 0;
  font-size: clamp(25px, 3.3vw, 46px);
  line-height: 1.05;
}

.delivery-band > a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.delivery-band > a svg {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-product > img {
    animation: hero-drift 12s ease-in-out infinite alternate;
  }

  .hero-product::after {
    animation: scan-line 6s ease-in-out infinite;
  }

  @keyframes hero-drift {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
  }

  @keyframes scan-line {
    0%, 100% { left: 22%; opacity: 0.2; }
    50% { left: 76%; opacity: 0.72; }
  }
}

@media (max-width: 1080px) {
  .catalog-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(760px, calc(100vw - 48px));
  }

  .hero,
  .category-hero,
  .production-section,
  .geography-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    max-width: 620px;
  }

  .hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: stretch;
  }

  .hero-product,
  .hero-product > img,
  .hero-product > video {
    min-height: 100%;
  }

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

  .showcase-section {
    grid-template-columns: 1fr;
  }

  .featured-post,
  .contacts-section {
    grid-template-columns: 1fr;
  }

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

  .category-visual,
  .category-visual img {
    min-height: 470px;
  }

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

  .direction-product-image,
  .direction-product-image img {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav-links {
    position: relative;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 2px;
    overflow: visible;
    padding-bottom: 2px;
  }

  .catalog-panel {
    top: calc(100% + 8px);
    left: 0;
    grid-template-columns: 1fr;
    width: min(620px, calc(100vw - 36px));
    max-height: 72vh;
    overflow-y: auto;
    transform: none;
  }

  .catalog-menu {
    position: static;
  }

  .catalog-direction .catalog-direction-title {
    min-height: 46px;
  }

  .hero {
    min-height: auto;
  }

  .hero-metrics,
  .catalog-grid,
  .detail-grid,
  .direction-product-grid,
  .product-subtype-grid,
  .category-assurance,
  .related-grid,
  .process-grid,
  .showcase-grid,
  .section-heading,
  .strength-list,
  .custom-section,
  .category-cta,
  .content-hero,
  .article-layout,
  .address-grid,
  .delivery-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .direction-product-card {
    grid-template-columns: minmax(130px, 0.65fr) minmax(0, 1fr);
  }

  .category-assurance > div {
    min-height: 112px;
  }

  .category-assurance > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .direction-product-image,
  .direction-product-image img {
    min-height: 100%;
  }

  .content-hero > svg {
    display: none;
  }

  .featured-post figure,
  .featured-post img,
  .article-image,
  .article-image img {
    min-height: 360px;
  }

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

  .article-aside {
    order: -1;
  }

  .delivery-band {
    align-items: start;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .section-heading > p:not(.eyebrow) {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .hero-product,
  .hero-product > img,
  .hero-product > video {
    min-height: 330px;
  }

  .showcase-card,
  .showcase-card img {
    min-height: 360px;
  }

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

  .production-image img {
    min-height: 320px;
  }

  .custom-section {
    align-items: start;
  }

  .related-heading {
    display: grid;
    align-items: start;
  }

  .category-visual,
  .category-visual img {
    min-height: 400px;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 170px;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero,
  .category-hero,
  .content-hero,
  .featured-post,
  .blog-section,
  .article-page,
  .contacts-section,
  .address-section,
  .delivery-band,
  .catalog-section,
  .category-details,
  .related-section,
  .showcase-section,
  .process-section,
  .geography-section,
  .quote-section,
  .production-section,
  .custom-section {
    padding-inline: 14px;
  }

  .direction-products {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .category-hero h1 {
    font-size: 44px;
  }

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

  .direction-product-image,
  .direction-product-image img {
    min-height: 230px;
  }

  .hero-product-badge {
    top: 12px;
    right: 12px;
  }

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

/* Catalog browsing follows a specification-first B2B flow. */
.catalog-page-hero {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 80px) clamp(38px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(38, 34, 98, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 34, 98, 0.045) 1px, transparent 1px),
    var(--white);
  background-size: 52px 52px;
}

.catalog-page-hero .breadcrumbs {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.catalog-page-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
}

.catalog-page-hero h1 {
  margin: 8px 0 0;
  color: var(--brand-blue-deep);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.96;
}

.catalog-page-hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.catalog-browser {
  display: grid;
  grid-template-columns: minmax(230px, 0.26fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

.catalog-browser-sidebar,
.product-catalog-sidebar {
  position: sticky;
  top: 112px;
}

.catalog-sidebar-label {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-browser-sidebar > nav,
.catalog-subtype-nav {
  border-top: 1px solid var(--line);
}

.catalog-browser-sidebar > nav a,
.catalog-subtype-nav a {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) 16px;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  transition: color 180ms ease, padding-left 180ms ease;
}

.catalog-browser-sidebar > nav a:hover,
.catalog-subtype-nav a:hover {
  padding-left: 5px;
  color: var(--brand-blue);
}

.catalog-browser-sidebar nav a > span,
.catalog-subtype-nav a > span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
}

.catalog-browser-sidebar nav a > svg,
.catalog-subtype-nav a > svg {
  width: 15px;
  height: 15px;
}

.catalog-sidebar-quote {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 16px;
  gap: 11px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border-radius: 6px;
  background: var(--brand-blue-deep);
  color: var(--white);
}

.catalog-sidebar-quote > svg:first-child {
  width: 26px;
  height: 26px;
  color: var(--signal);
}

.catalog-sidebar-quote > svg:last-child {
  width: 16px;
  height: 16px;
}

.catalog-sidebar-quote span,
.catalog-sidebar-quote strong,
.catalog-sidebar-quote small {
  display: block;
}

.catalog-sidebar-quote strong {
  font-size: 14px;
  line-height: 1.2;
}

.catalog-sidebar-quote small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.catalog-browser-intro,
.product-catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  margin-bottom: 38px;
}

.catalog-browser-intro h2,
.product-catalog-heading h2,
.product-context-copy h2 {
  margin: 8px 0 0;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1;
}

.catalog-browser-intro > p,
.product-catalog-heading > p,
.product-context-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.catalog-direction-group {
  scroll-margin-top: 112px;
  margin-top: 46px;
}

.catalog-direction-group > header {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--brand-blue);
}

.catalog-direction-heading {
  display: flex;
  gap: 14px;
  align-items: center;
}

.catalog-direction-heading > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 5px;
  background: var(--brand-blue);
  color: var(--white);
}

.catalog-direction-heading p {
  margin: 0 0 4px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-direction-heading h3 {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
}

.catalog-direction-group > header > a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 900;
}

.catalog-direction-group > header > a svg {
  width: 17px;
}

.catalog-product-list {
  display: grid;
  gap: 8px;
}

.catalog-product-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 72px 126px;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.catalog-product-row:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 34, 98, 0.35);
  box-shadow: 0 10px 26px rgba(21, 19, 63, 0.08);
}

.catalog-product-thumb {
  height: 94px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--brand-blue-deep);
}

.catalog-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.catalog-product-row:hover .catalog-product-thumb img {
  transform: scale(1.05);
}

.catalog-product-info {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.catalog-product-info > svg {
  width: 26px;
  color: var(--brand-blue);
}

.catalog-product-info strong,
.catalog-product-info small,
.catalog-product-count small {
  display: block;
}

.catalog-product-info strong {
  color: var(--brand-blue-deep);
  font-size: 18px;
  line-height: 1.2;
}

.catalog-product-info small {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-product-count {
  color: var(--brand-blue);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.catalog-product-count small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.catalog-product-more {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.catalog-product-more svg {
  width: 17px;
  color: var(--signal);
}

.product-catalog-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

.catalog-sidebar-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.catalog-sidebar-note {
  margin-top: 14px;
  padding: 22px;
  border-radius: 6px;
  background: var(--brand-blue-deep);
  color: var(--white);
}

.catalog-filter-panel {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.catalog-filter-heading {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.catalog-filter-heading p {
  margin: 0;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-filter-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-filter-heading button[hidden] {
  display: none;
}

.catalog-filter-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px 0 0;
  border: 0;
}

.catalog-filter-group + .catalog-filter-group {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.catalog-filter-group legend {
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
  color: var(--brand-blue-deep);
  font-size: 12px;
  font-weight: 900;
}

.catalog-filter-group label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: start;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  cursor: pointer;
}

.catalog-filter-group input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--brand-blue);
  cursor: pointer;
}

.catalog-filter-group small {
  color: var(--signal);
  font-size: 9px;
  font-weight: 900;
}

.catalog-sidebar-note > svg {
  width: 30px;
  height: 30px;
  color: var(--signal);
}

.catalog-sidebar-note strong {
  display: block;
  margin-top: 18px;
  font-size: 17px;
}

.catalog-sidebar-note p {
  margin: 9px 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.catalog-sidebar-note a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
}

.catalog-sidebar-note a svg {
  width: 15px;
}

.product-catalog-heading {
  margin-bottom: 26px;
}

.product-catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.catalog-results-summary {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.catalog-results-summary strong {
  color: var(--brand-blue-deep);
  font-size: 20px;
}

.catalog-results-summary span {
  color: var(--ink);
}

.catalog-results-summary small {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 700;
}

.catalog-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.catalog-view-switch {
  display: grid;
  grid-template-columns: repeat(2, 42px);
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.catalog-view-switch button {
  display: grid;
  width: 42px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.catalog-view-switch button:hover,
.catalog-view-switch button:focus-visible {
  color: var(--brand-blue);
}

.catalog-view-switch button:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: -2px;
}

.catalog-view-switch button.is-active {
  background: var(--brand-blue-deep);
  color: var(--white);
}

.catalog-view-switch svg {
  width: 17px;
  height: 17px;
}

.catalog-search,
.catalog-sort {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.catalog-search:focus-within,
.catalog-sort:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(38, 34, 98, 0.1);
}

.catalog-search > svg {
  position: absolute;
  left: 12px;
  width: 17px;
  color: var(--brand-blue);
}

.catalog-search input,
.catalog-sort select {
  min-height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.catalog-search input {
  width: 180px;
  padding: 0 12px 0 38px;
}

.catalog-sort select {
  min-width: 182px;
  padding: 0 38px 0 12px;
  appearance: none;
  cursor: pointer;
}

.catalog-sort > svg {
  position: absolute;
  right: 12px;
  width: 16px;
  pointer-events: none;
}

.product-variant-list {
  display: grid;
}

.product-variant-list.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
}

.product-variant-list.is-grid .product-variant {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  align-items: stretch;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.product-variant-list.is-grid .product-variant-image {
  height: 240px;
  border-radius: 0;
}

.product-variant-list.is-grid .product-variant-copy {
  padding: 20px;
}

.product-variant-list.is-grid .product-variant-copy h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.product-variant-list.is-grid .product-variant-action {
  grid-column: 1;
  display: block;
  padding: 0 20px 20px;
  border-left: 0;
}

.product-variant-list.is-grid .product-variant-action > strong {
  margin-bottom: 14px;
}

.product-variant-list.is-grid .product-variant-action .primary-button {
  width: 100%;
}

.product-variant[hidden] {
  display: none;
}

.catalog-empty-state {
  min-height: 260px;
  padding: 48px 24px;
  place-items: center;
  text-align: center;
}

.catalog-empty-state:not([hidden]) {
  display: grid;
}

.catalog-empty-state > svg {
  width: 34px;
  color: var(--signal);
}

.catalog-empty-state strong {
  margin-top: 12px;
  color: var(--brand-blue-deep);
  font-size: 22px;
}

.catalog-empty-state span {
  max-width: 480px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.catalog-empty-state a {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 900;
}

.catalog-empty-state a svg {
  width: 16px;
}

.product-variant {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 172px;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  min-height: 230px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 112px;
}

.product-variant-image {
  position: relative;
  height: 194px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--brand-blue-deep);
}

.product-variant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-variant:hover .product-variant-image img {
  transform: scale(1.045);
}

.product-variant-image > span {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: rgba(21, 19, 63, 0.9);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.product-variant-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-variant-meta svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
}

.product-variant-copy h3 {
  margin: 12px 0 9px;
  color: var(--brand-blue-deep);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.12;
}

.product-variant-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-variant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.product-variant-tags span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.product-variant-action {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.product-variant-action > span,
.product-variant-action > strong {
  display: block;
}

.product-variant-action > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-variant-action > strong {
  margin: 5px 0 18px;
  color: var(--brand-blue-deep);
  font-size: 20px;
}

.primary-button.compact {
  min-height: 44px;
  padding: 0 14px;
  font-size: 11px;
}

.product-context-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 80px);
  background: var(--white);
}

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

.product-application-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: var(--concrete);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-application-list svg {
  flex: 0 0 auto;
  width: 19px;
  color: var(--green);
}

@media (max-width: 1080px) {
  .catalog-browser,
  .product-catalog-section {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 32px;
  }

  .catalog-product-row {
    grid-template-columns: 108px minmax(0, 1fr) 64px;
  }

  .catalog-product-more {
    display: none;
  }

  .product-variant {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .product-variant-action {
    grid-column: 2;
    display: flex;
    gap: 18px;
    align-items: center;
    padding-left: 0;
    border-left: 0;
  }

  .product-variant-action > strong {
    margin: 0 auto 0 0;
  }
}

@media (max-width: 760px) {
  .catalog-page-hero-copy,
  .catalog-browser,
  .catalog-browser-intro,
  .product-catalog-section,
  .product-catalog-heading,
  .product-context-section {
    grid-template-columns: 1fr;
  }

  .catalog-browser-sidebar,
  .product-catalog-sidebar {
    position: static;
  }

  .catalog-filter-panel {
    max-width: 520px;
  }

  .catalog-browser-sidebar > nav,
  .catalog-subtype-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-browser-sidebar > nav a:nth-child(odd),
  .catalog-subtype-nav a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .catalog-sidebar-quote {
    max-width: 420px;
  }

  .catalog-direction-group {
    margin-top: 38px;
  }

  .product-variant {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .product-variant-image {
    height: 170px;
  }

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

  .product-catalog-toolbar {
    align-items: flex-start;
  }

  .catalog-results-summary {
    flex-wrap: wrap;
  }

  .catalog-results-summary small {
    flex-basis: 100%;
    margin-left: 0;
  }

  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-view-switch {
    align-self: flex-end;
  }

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

@media (max-width: 520px) {
  .catalog-page-hero,
  .catalog-browser,
  .product-catalog-section,
  .product-context-section {
    padding-inline: 14px;
  }

  .catalog-browser-sidebar > nav,
  .catalog-subtype-nav {
    grid-template-columns: 1fr;
  }

  .catalog-browser-sidebar > nav a:nth-child(odd),
  .catalog-subtype-nav a:nth-child(odd) {
    border-right: 0;
  }

  .catalog-direction-group > header {
    align-items: flex-start;
  }

  .catalog-direction-group > header > a {
    width: 38px;
    height: 38px;
    justify-content: center;
    overflow: hidden;
    color: transparent;
  }

  .catalog-direction-group > header > a svg {
    flex: 0 0 auto;
    color: var(--brand-blue);
  }

  .catalog-product-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    min-height: 108px;
    padding-right: 10px;
  }

  .catalog-product-thumb {
    height: 86px;
  }

  .catalog-product-info {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catalog-product-info > svg,
  .catalog-product-count {
    display: none;
  }

  .catalog-product-info strong {
    font-size: 16px;
  }

  .product-variant {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 22px;
  }

  .category-hero--catalog .category-visual,
  .category-hero--catalog .category-visual img {
    min-height: 300px;
  }

  .product-gallery-thumbnails {
    top: 12px;
    right: 12px;
  }

  .product-gallery-thumbnails a {
    width: 78px;
    height: 58px;
  }

  .product-catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    justify-content: stretch;
  }

  .catalog-controls {
    width: 100%;
  }

  .catalog-search,
  .catalog-sort {
    width: 100%;
  }

  .catalog-view-switch {
    width: 92px;
  }

  .catalog-search input,
  .catalog-sort select {
    width: 100%;
  }

  .product-variant-image {
    height: 220px;
  }

  .product-variant-action {
    grid-column: 1;
    flex-wrap: wrap;
  }

  .product-variant-action .primary-button {
    width: 100%;
  }
}

@media (max-width: 920px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--brand-blue);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100svh - 76px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 14px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 32px rgba(21, 19, 63, 0.12);
  }

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

  .nav-links > a,
  .catalog-menu summary {
    min-height: 46px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .catalog-menu {
    position: static;
  }

  .catalog-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: none;
    margin-top: 8px;
    padding: 14px;
    transform: none;
    box-shadow: none;
  }

  .breadcrumbs a,
  .breadcrumbs strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 460px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: min(158px, 43vw);
  }

  .header-action {
    min-width: 0;
    min-height: 42px;
    padding: 0 11px;
    font-size: 12px;
  }

  .catalog-page-hero h1,
  .category-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .catalog-page-hero h1 {
    font-size: 42px;
  }

  .breadcrumbs {
    gap: 6px;
    font-size: 9px;
  }
}

.woocommerce-product-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 80px);
  background: var(--concrete);
}

.woocommerce-product-summary h2 {
  margin: 8px 0 18px;
  color: var(--brand-blue-deep);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1;
}

.woocommerce-product-summary p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.woocommerce-product-summary dl {
  margin: 0;
  border-top: 2px solid var(--brand-blue);
}

.woocommerce-product-summary dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.woocommerce-product-summary dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce-product-summary dd {
  margin: 0;
  color: var(--brand-blue-deep);
  font-size: 17px;
  font-weight: 900;
}

.price-on-request {
  color: inherit;
}

@media (max-width: 760px) {
  .woocommerce-product-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .woocommerce-product-summary {
    padding-inline: 14px;
  }

  .woocommerce-product-summary dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }
}
