:root {
  --ink: #17211d;
  --muted: #5d6862;
  --paper: #ffffff;
  --soft: #f3f6f3;
  --line: #d7ddd8;
  --green: #176b4d;
  --green-dark: #0f4935;
  --yellow: #f4c84a;
  --signal: #c84a32;
  --focus: #176b4d;
  --shadow: 0 12px 30px rgba(23, 33, 29, 0.1);
  --container: 1180px;
  --wide: 1360px;
  --header-height: 76px;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container-wide {
  width: min(calc(100% - 40px), var(--wide));
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(215, 221, 216, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.brand-text {
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.custom-logo-wrap .custom-logo-link {
  display: block;
}

.custom-logo-wrap .custom-logo {
  width: auto;
  max-width: 220px;
  max-height: 48px;
}

.primary-nav {
  justify-self: center;
}

.nav-list,
.sub-menu,
.footer-links,
.breadcrumbs,
.filter-list,
.spec-list,
.check-list,
.gallery-thumbs {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list > li {
  position: relative;
}

.nav-list a,
.nav-dropdown-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 0;
  color: #27322d;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-list a:hover,
.nav-dropdown-toggle:hover,
.nav-list .current-menu-item > a {
  color: var(--green);
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  width: 250px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.has-dropdown:hover > .sub-menu,
.has-dropdown:focus-within > .sub-menu,
.has-dropdown.is-open > .sub-menu,
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.sub-menu a {
  display: flex;
  padding: 10px 12px;
  border-radius: 4px;
}

.sub-menu a:hover {
  background: var(--soft);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.button,
.button-secondary,
.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--paper);
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.text-link {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  color: var(--green);
  background: transparent;
}

.text-link::after {
  content: "\2192";
}

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

h1,
h2,
h3,
h4,
p {
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 800;
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: 54px;
}

h2 {
  margin-bottom: 18px;
  font-size: 36px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height) - 52px));
  overflow: hidden;
  color: var(--paper);
  background-color: #26342e;
  background-image: url("../images/hallway-modern.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0 46% 0 0;
  background: rgba(14, 26, 21, 0.84);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100vh - var(--header-height) - 52px));
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 80px;
  padding-block: 72px;
}

.hero-copy {
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  max-width: 620px;
  font-size: 58px;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero .lead {
  max-width: 610px;
  color: #edf2ef;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.hero-product {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  justify-self: end;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  min-height: 90px;
  align-items: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

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

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

.trust-item strong {
  font-size: 15px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 96px;
}

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

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-dark .eyebrow {
  color: var(--yellow);
}

.section-dark .lead,
.section-dark .muted {
  color: #bdc8c2;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

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

.collection-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #27342f;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 220ms ease;
}

.collection-card::after {
  position: absolute;
  inset: 52% 0 0;
  background: rgba(15, 27, 22, 0.78);
  content: "";
}

.collection-card:hover img {
  transform: scale(1.025);
}

.collection-card-content {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: var(--paper);
}

.collection-card h3 {
  margin-bottom: 4px;
  font-size: 21px;
}

.collection-card p {
  margin-bottom: 0;
  color: #dfe7e2;
  font-size: 14px;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #aebbb3;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card-media {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f7f8f7;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  transition: transform 220ms ease;
}

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

.product-card-body {
  display: flex;
  min-height: 190px;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.product-model {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.product-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-card .text-link {
  margin-top: auto;
}

.split-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
}

.split-media {
  min-height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.process-step {
  padding-top: 18px;
  border-top: 3px solid var(--green);
}

.process-number {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.process-step h3 {
  font-size: 19px;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.application-item {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #26342e;
}

.application-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.application-item::after {
  position: absolute;
  inset: 56% 0 0;
  background: rgba(15, 27, 22, 0.82);
  content: "";
}

.application-copy {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: var(--paper);
}

.application-copy h3 {
  margin-bottom: 6px;
}

.application-copy p {
  margin-bottom: 0;
  color: #dce6e0;
  font-size: 14px;
}

.cta-band {
  padding-block: 72px;
  color: var(--paper);
  background: var(--green-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 8px;
}

.cta-inner p {
  max-width: 700px;
  margin-bottom: 0;
  color: #d5e2dc;
}

.cta-band .button {
  flex: 0 0 auto;
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 410px;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background-color: #24332c;
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 21, 0.68);
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 70px;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: 48px;
}

.page-hero .lead {
  max-width: 700px;
  margin-bottom: 0;
  color: #e4ebe7;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.page-hero .breadcrumbs {
  color: #d7e0db;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
}

.breadcrumbs a {
  color: inherit;
}

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

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

.filter-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.filter-list a:hover,
.filter-list .is-active {
  border-color: var(--green);
  color: var(--paper);
  background: var(--green);
}

.results-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.product-detail {
  padding-block: 56px 96px;
}

.product-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 64px;
}

.gallery-main {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f7f6;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f6f7f6;
  cursor: pointer;
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  border-color: var(--green);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

.product-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.product-summary h1 {
  margin-bottom: 14px;
  font-size: 42px;
}

.product-summary .lead {
  font-size: 17px;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 26px 30px;
}

.quick-facts {
  padding-block: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-fact {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  padding: 8px 0;
  font-size: 14px;
}

.quick-fact dt {
  color: var(--muted);
}

.quick-fact dd {
  margin: 0;
  font-weight: 700;
}

.product-content {
  padding-block: 90px;
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 80px;
}

.spec-list {
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.spec-label {
  color: var(--muted);
}

.spec-value {
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

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

.content-block {
  padding-top: 18px;
  border-top: 3px solid var(--green);
}

.content-block p {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 80px;
}

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

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #b8c2bc;
  border-radius: 4px;
  background: var(--paper);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(23, 107, 77, 0.18);
}

.form-consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.form-status {
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  background: #fff9e8;
  color: #55481f;
  font-size: 14px;
}

.site-footer {
  color: #d9e2dd;
  background: #121a16;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-block: 70px;
}

.footer-brand p {
  max-width: 360px;
  color: #aebbb4;
  font-size: 14px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #b9c5be;
  font-size: 14px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2b3731;
  color: #96a39c;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.empty-state {
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--soft);
  text-align: center;
}

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

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .nav-list a,
  .nav-dropdown-toggle {
    padding-inline: 7px;
    font-size: 13px;
  }

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

  .hero::before {
    right: 38%;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .container-wide {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    width: auto;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 20px 16px 40px;
    background: var(--paper);
    align-self: auto;
    justify-self: stretch;
  }

  .menu-open .primary-nav {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-list a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .sub-menu {
    position: static;
    display: grid;
    width: 100%;
    padding: 6px 0 8px 16px;
    border: 0;
    box-shadow: none;
  }

  .sub-menu a {
    min-height: 44px;
    font-size: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .brand-logo {
    max-width: 190px;
    max-height: 48px;
  }

  .hero::before {
    inset: 0;
    background: rgba(14, 26, 21, 0.76);
  }

  .hero-inner {
    min-height: 640px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    align-self: end;
  }

  .hero-product {
    position: absolute;
    z-index: 0;
    right: -80px;
    bottom: -80px;
    width: 440px;
    opacity: 0.34;
  }

  .split-section,
  .product-layout,
  .product-content-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .product-summary {
    position: static;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

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

@media (max-width: 680px) {
  h1,
  .hero h1,
  .page-hero h1,
  .product-summary h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding-block: 72px;
  }

  .hero,
  .hero-inner {
    min-height: min(620px, calc(100vh - var(--header-height) - 36px));
  }

  .hero-inner {
    padding-block: 50px;
  }

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

  .section-heading,
  .cta-inner,
  .archive-toolbar,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid,
  .collection-grid,
  .application-grid,
  .content-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    min-height: auto;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .split-media {
    min-height: 360px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quick-fact,
  .spec-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .form-field-full,
  .form-consent,
  .form-status {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
