:root {
  --ink: #17211d;
  --muted: #62706a;
  --line: #dde6df;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sage: #6fa38a;
  --pine: #245c4a;
  --coral: #ee745c;
  --gold: #e2a72e;
  --rose: #d97185;
  --blue: #3977bd;
  --shadow: 0 18px 48px rgba(22, 35, 29, .12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #e2a72e;
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(221, 230, 223, .9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(22, 35, 29, .12);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #2e3a35;
  font-size: 14px;
}

.main-nav > a,
.nav-group > a {
  padding: 10px 11px;
  border-radius: 7px;
}

.main-nav a:hover,
.nav-group:hover > a {
  background: #eef3ed;
}

.nav-group {
  position: relative;
}

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

.dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 14px;
}

.nav-group:hover .dropdown { display: block; }

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

.solid-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 7px;
  border: 1px solid var(--pine);
  font-weight: 720;
  font-size: 14px;
}

.solid-btn {
  background: var(--pine);
  color: white;
}

.ghost-btn {
  background: white;
  color: var(--pine);
}

.large {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 15px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 58px clamp(18px, 5vw, 72px) 54px;
  color: white;
  background: #0f211c;
}

.hero-bg-stack,
.hero-bg-stack img,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: heroFade 18s infinite;
}

.hero-bg-stack img:nth-child(1) { animation-delay: 0s; }
.hero-bg-stack img:nth-child(2) { animation-delay: 6s; }
.hero-bg-stack img:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0%, 29% {
    opacity: 1;
    transform: scale(1.08);
  }
  37%, 92% {
    opacity: 0;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 22, 19, .96) 0%, rgba(9, 22, 19, .78) 43%, rgba(9, 22, 19, .36) 72%, rgba(9, 22, 19, .5) 100%),
    radial-gradient(circle at 78% 18%, rgba(226, 167, 46, .28), transparent 28%),
    radial-gradient(circle at 30% 86%, rgba(238, 116, 92, .22), transparent 26%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: clamp(0px, 3vw, 56px);
}

.home-kicker {
  margin: 0 0 14px;
  color: #f4c861;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(54px, 6.8vw, 94px);
  text-transform: none;
}

.home-hero h1 span,
.certificate-advantage h2 span,
.home-products-head h2 span {
  color: #f4c861;
}

.home-lead {
  max-width: 700px;
  margin: 18px 0 22px;
  color: #d9e5df;
  font-size: clamp(17px, 1.8vw, 21px);
}

.home-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0 0 22px;
}

.home-metric-grid div {
  min-height: 106px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.home-metric-grid strong {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1;
}

.home-metric-grid span,
.home-chip-row span {
  color: #f4c861;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 760px;
  margin: 0 0 28px;
}

.home-chip-row span {
  padding: 8px 11px;
  color: white;
  border: 1px solid rgba(244, 200, 97, .5);
  border-radius: 999px;
  background: rgba(15, 33, 28, .72);
}

.hero-btn {
  border-color: #f4c861;
  background: #f4c861;
  color: #17211d;
}

.hero-ghost {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
  color: white;
}

.certificate-advantage {
  position: relative;
  overflow: hidden;
  padding: 82px clamp(18px, 5vw, 72px);
  color: white;
  background: #0f211c;
}

.cert-bg,
.cert-shade {
  position: absolute;
  inset: 0;
}

.cert-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .52;
  filter: saturate(.82) contrast(.98);
}

.cert-shade {
  background:
    linear-gradient(90deg, rgba(10, 25, 21, .94), rgba(10, 25, 21, .72) 52%, rgba(10, 25, 21, .86)),
    radial-gradient(circle at 82% 14%, rgba(238, 116, 92, .22), transparent 30%);
}

.cert-content {
  position: relative;
  z-index: 1;
}

.cert-copy {
  max-width: 880px;
  margin-bottom: 30px;
}

.cert-copy h2,
.home-products-head h2 {
  color: white;
  text-transform: uppercase;
}

.cert-copy p,
.home-products-head p {
  max-width: 760px;
  color: #d9e5df;
  font-size: 18px;
}

.cert-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.cert-logo-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  padding: 14px 10px 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .2);
}

.cert-logo-grid strong {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #0f3f34;
  border: 2px solid #cbdad3;
  border-radius: 50%;
  background: white;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
}

.doc-grid article {
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  align-content: center;
  text-align: center;
  min-height: 150px;
  overflow: hidden;
}

.doc-grid img {
  width: 168px;
  height: 116px;
  object-fit: contain;
}

.doc-grid strong {
  width: auto;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0f3f34;
  font-size: clamp(17px, 1.28vw, 22px);
  line-height: 1.05;
}

.cert-logo-grid span {
  color: #22332d;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: none;
  letter-spacing: 0;
}

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

.cert-process span {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(244, 200, 97, .38);
  border-radius: 8px;
  background: rgba(15, 33, 28, .74);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.cert-process b {
  color: #f4c861;
  font-size: 24px;
}

.cert-note {
  margin: 18px 0 0;
  color: #f4c861;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-products-showcase {
  padding: 56px clamp(18px, 5vw, 72px) 76px;
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f0f4ee 100%);
}

.home-products-showcase > * {
  max-width: 944px;
  margin-left: auto;
  margin-right: auto;
}

.home-products-head {
  margin-bottom: 20px;
}

.home-products-head .home-kicker {
  color: var(--pine);
}

.home-products-head h2 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.02;
}

.home-products-head p {
  color: var(--muted);
}

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

.home-product-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: #0f211c;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.home-product-card img,
.home-product-card::after {
  position: absolute;
  inset: 0;
}

.home-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  z-index: -2;
}

.home-product-card::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 33, 28, .05) 0%, rgba(15, 33, 28, .26) 38%, rgba(15, 33, 28, .92) 100%),
    linear-gradient(90deg, rgba(15, 33, 28, .36), transparent);
}

.home-product-card:hover img {
  transform: scale(1.07);
}

.home-product-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #17211d;
  background: #f4c861;
  font-weight: 900;
}

.home-product-body {
  width: 100%;
  padding: 24px;
}

.home-product-body p {
  margin: 0 0 8px;
  color: #f4c861;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-body h3 {
  max-width: 430px;
  margin-bottom: 16px;
  color: white;
  font-size: clamp(24px, 2.2vw, 34px);
  text-transform: uppercase;
}

.home-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.home-product-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #d9e5df;
  font-size: 12px;
  font-weight: 760;
  background: rgba(255, 255, 255, .08);
}

.home-product-body strong {
  color: white;
  font-size: 13px;
}

.catalog-section {
  padding: 30px 0 46px;
  border-top: 1px solid rgba(36, 92, 74, .18);
}

.catalog-section:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.catalog-section-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .62fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
  margin-bottom: 20px;
}

.catalog-section-head h2 {
  margin-bottom: 0;
  max-width: 760px;
  color: #0b3456;
  font-size: clamp(30px, 3.1vw, 38px);
  line-height: 1.08;
  text-transform: none;
}

.catalog-section-head p {
  color: #385166;
  font-size: 16px;
  line-height: 1.48;
}

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

.catalog-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border: 1px solid #d8e4e8;
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 48, 66, .08);
}

.catalog-image {
  display: block;
  overflow: hidden;
  background: #fafcfb;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .45s ease;
}

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

.catalog-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.catalog-badge {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 5px;
  color: #00724d;
  background: #dff3e9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-body h3 {
  margin: 0;
  color: #0b3456;
  font-size: 20px;
  line-height: 1.16;
}

.catalog-body p {
  margin: 0;
  color: #385166;
  font-size: 14px;
}

.catalog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-tags span {
  padding: 5px 8px;
  border: 1px solid #d7e3ea;
  border-radius: 999px;
  color: #123044;
  font-size: 11px;
  font-weight: 760;
  background: #fbfdfe;
}

.catalog-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  padding-top: 4px;
}

.catalog-specs span {
  display: grid;
  gap: 2px;
}

.catalog-specs small {
  color: #6b8292;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-specs b {
  color: #0b3456;
  font-size: 12px;
}

.catalog-quote {
  display: grid;
  place-items: center;
  min-height: 42px;
  margin-top: 4px;
  border: 1px solid #00a66f;
  border-radius: 6px;
  color: #00724d;
  font-size: 14px;
  font-weight: 900;
}

.catalog-quote:hover {
  background: #00a66f;
  color: white;
}

.hero,
.subhero,
.product-hero,
.section,
.band,
.final-cta {
  padding-left: clamp(18px, 5vw, 72px);
  padding-right: clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-top: 54px;
  padding-bottom: 46px;
}

.hero.split {
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
}

.hero.compact {
  min-height: 560px;
}

.factory-hero {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(120deg, rgba(251, 250, 246, .98), rgba(251, 250, 246, .72) 52%, rgba(238, 244, 241, .72)),
    #f6f2ea;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pine);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
}

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

p {
  margin-top: 0;
  color: var(--muted);
}

.lead {
  max-width: 720px;
  margin: 22px 0 26px;
  font-size: clamp(18px, 2vw, 22px);
}

.micro {
  max-width: 620px;
  margin-top: 16px;
  font-size: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 18px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(22, 35, 29, .07);
}

.hero-metrics strong {
  display: block;
  color: var(--pine);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.hero-metrics span,
.hero-chip-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-chip-row span {
  padding: 8px 10px;
  background: #eef3ed;
  border: 1px solid #dde8df;
  border-radius: 999px;
  color: #2e5d4e;
}

.hero-media,
.product-media {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.hero-media img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media img {
  object-fit: contain;
  background: #fafcfb;
}

.factory-hero .hero-media {
  min-height: 520px;
}

.factory-hero .hero-media img {
  object-position: center center;
}

.subhero {
  padding-top: 72px;
  padding-bottom: 54px;
  background: linear-gradient(180deg, #fff, #f5f2e9);
}

.subhero p {
  max-width: 820px;
  font-size: 18px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: 42px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 56px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.54)),
    radial-gradient(circle at 12% 15%, rgba(238,116,92,.18), transparent 28%),
    radial-gradient(circle at 86% 40%, rgba(57,119,189,.16), transparent 26%),
    #f7f3e8;
}

.product-hero.gold { background-color: #f8f1dc; }
.product-hero.sage { background-color: #eef5ef; }
.product-hero.rose { background-color: #faedef; }
.product-hero.pine { background-color: #edf4ef; }
.product-hero.blue { background-color: #edf4fb; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.trust-section {
  padding: 72px clamp(18px, 5vw, 72px);
  background: #122820;
}

.trust-section .section-head h2,
.trust-section .eyebrow {
  color: white;
}

.trust-section .section-head p {
  color: #d6e3dc;
}

.trust-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-logo-grid article {
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.trust-logo-grid strong {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--pine);
  border: 2px solid #d7e2dd;
  border-radius: 50%;
  font-size: 22px;
  letter-spacing: 0;
}

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

.section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

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

.product-categories .cards {
  gap: 20px;
}

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

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

.blog-list .category-card {
  grid-template-rows: 1fr auto;
  min-height: 320px;
}

.blog-list h2 {
  font-size: 28px;
}

.blog-article {
  max-width: 920px;
  margin: 0 auto;
}

.blog-article h2 {
  margin-top: 34px;
}

.article-meta {
  margin-top: 18px;
}

.category-card,
.quote-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(22, 35, 29, .06);
}

.category-card {
  display: grid;
  grid-template-rows: 210px 1fr auto;
  min-height: 470px;
  overflow: hidden;
}

.category-card > div {
  padding: 22px;
}

.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-categories .card-img {
  height: 240px;
}

.text-link {
  margin: 0 22px 22px;
  color: var(--pine);
  font-weight: 760;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr);
  gap: 42px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #18352d;
}

.band h2,
.band .eyebrow,
.band li {
  color: white;
}

.band p {
  color: #d6e3dc;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  counter-reset: item;
}

.steps li {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  counter-increment: item;
  font-weight: 720;
}

.steps li::before {
  display: block;
  margin-bottom: 8px;
  opacity: .74;
  content: "0" counter(item);
}

.steps.vertical {
  grid-template-columns: 1fr;
}

.steps.vertical li {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.workflow-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.workflow-strip span {
  padding: 12px 10px;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

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

.quote-panel {
  padding: 26px;
}

.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  padding: 11px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.notice {
  padding: 16px;
  border-left: 4px solid var(--coral);
  background: white;
  border-radius: 0 8px 8px 0;
}

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

.gallery-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.product-gallery-section {
  background: #f7faf8;
}

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

.product-gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(18, 48, 66, .08);
}

.product-gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fbfdfc;
}

.product-gallery-card div {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.product-gallery-card span {
  color: #00724d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-gallery-card strong {
  color: #0b3456;
  font-size: 16px;
  line-height: 1.18;
}

.product-index-catalog {
  margin-top: 0;
  border-top: 1px solid rgba(36, 92, 74, .16);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 12px 0 0;
}

.final-cta {
  text-align: center;
  padding-top: 68px;
  padding-bottom: 76px;
  background: #f0eadf;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 20px;
}

.related h2 {
  font-size: 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-link {
  padding: 10px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 720;
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 720;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-form label:has(textarea),
.quote-form button,
.form-message {
  grid-column: 1 / -1;
}

.two-col > .quote-form {
  max-width: none;
}

.contact-strip {
  margin-top: 24px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(220px, .55fr) minmax(0, 1.2fr);
  gap: 30px;
  padding: 42px clamp(18px, 5vw, 72px) 92px;
  background: #0f211c;
  color: white;
}

.site-footer p,
.site-footer a {
  color: #d7e2dd;
}

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

.footer-contact strong {
  color: #f4c861;
}

.footer-contact a {
  word-break: break-word;
}

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

.mobile-cta {
  display: none;
}

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

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero.split,
  .product-hero,
  .band,
  .two-col,
  .process-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-metrics,
  .trust-logo-grid,
  .home-metric-grid,
  .cert-logo-grid,
  .home-product-grid,
  .product-gallery-grid,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workflow-strip,
  .cert-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero {
    min-height: 720px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    position: static;
    padding: 12px 16px;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    gap: 2px;
    font-size: 13px;
  }

  .dropdown {
    display: none !important;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero,
  .subhero,
  .product-hero,
  .section,
  .band,
  .final-cta,
  .home-hero,
  .certificate-advantage,
  .home-products-showcase {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .home-lead,
  .cert-copy p,
  .home-products-head p {
    font-size: 16px;
  }

  .hero-media,
  .product-media {
    min-height: 260px;
  }

  .factory-hero {
    min-height: auto;
  }

  .factory-hero .hero-media {
    min-height: 300px;
  }

  .cards,
  .cards.mini,
  .blog-list,
  .gallery-row,
  .product-gallery-grid,
  .steps,
  .quote-form,
  .footer-grid,
  .hero-metrics,
  .trust-logo-grid,
  .workflow-strip,
  .cert-logo-grid,
  .cert-process,
  .home-product-grid,
  .catalog-grid,
  .catalog-section-head {
    grid-template-columns: 1fr;
  }

  .home-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div,
  .trust-logo-grid article,
  .home-metric-grid div,
  .cert-logo-grid article {
    min-height: auto;
  }

  .home-product-card {
    min-height: 360px;
  }

  .catalog-card {
    grid-template-rows: 280px 1fr;
  }

  .home-metric-grid div {
    padding: 12px;
  }

  .home-metric-grid strong {
    font-size: 28px;
  }

  .cert-process span {
    min-height: auto;
  }

  .category-card {
    min-height: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(22, 35, 29, .1);
  }

  .mobile-cta a {
    padding: 14px 8px;
    text-align: center;
    font-weight: 800;
    color: var(--pine);
  }
}
