:root {
  --ink: #01381c;
  --muted: #535a57;
  --line: #d5d6d4;
  --paper: #ffffff;
  --soft: #f3f4f2;
  --soft-strong: #eef5dc;
  --green: #01381c;
  --green-2: #2c5940;
  --lime: #d0ea9a;
  --lime-2: #d9eeae;
  --navy: #0b2544;
  --accent: #d0ea9a;
  --shadow: 0 18px 36px rgba(1, 56, 28, 0.1);
  font-family: Lato, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Ready stock catalog */
.finished-stock-main {
  background: var(--paper);
}

.finished-stock-hero {
  min-height: calc(100dvh - 108px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 5vw, 72px) 0;
  background: #eef2ef;
}

.finished-stock-hero-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(430px, 1.22fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.finished-stock-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.finished-stock-hero-copy > p:not(.eyebrow) {
  max-width: 42ch;
  color: #425149;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.stock-hero-gallery {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stock-hero-gallery figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(1, 56, 28, 0.12);
  border-radius: 2px;
  background: #dde4df;
}

.stock-hero-gallery-main {
  grid-row: 1 / 3;
}

.stock-hero-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stock-category-bar {
  position: sticky;
  z-index: 12;
  top: 73px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.stock-category-bar-shell {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 78px;
}

.stock-category-total {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--green);
}

.stock-category-total strong {
  font-size: 28px;
  line-height: 1;
}

.stock-category-total span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.stock-filter-group {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.stock-filter-group::-webkit-scrollbar {
  display: none;
}

.stock-filter-group button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: #36423b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 14px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.stock-filter-group button:hover,
.stock-filter-group button:focus-visible {
  border-color: var(--green);
  color: var(--green);
}

.stock-filter-group button:active {
  transform: translateY(1px);
}

.stock-filter-group button[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.stock-catalog {
  scroll-margin-top: 168px;
}

.stock-catalog-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 4vw, 52px);
}

.stock-catalog-heading h2 {
  max-width: 13ch;
  margin-bottom: 16px;
}

.stock-catalog-heading p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.stock-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(1, 56, 28, 0.055);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.stock-product-card:hover {
  border-color: rgba(1, 56, 28, 0.42);
  box-shadow: 0 18px 34px rgba(1, 56, 28, 0.09);
  transform: translateY(-3px);
}

.stock-product-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  background: #e8ece9;
}

.stock-product-card-body {
  display: flex;
  min-height: 248px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.stock-product-meta {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.stock-product-meta span:last-child {
  text-align: right;
}

.stock-product-card h3 {
  margin: 14px 0 10px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.12;
}

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

.stock-material-specs {
  display: grid;
  gap: 9px;
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid #e1e7e3;
  background: #f6f8f6;
}

.stock-material-specs div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.stock-material-specs dt,
.stock-material-specs dd {
  margin: 0;
}

.stock-material-specs dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stock-material-specs dd {
  color: #24372d;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
}

.stock-variant-section {
  margin: 0 0 12px;
}

.stock-variant-heading {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stock-variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stock-variant-option {
  min-height: 30px;
  border: 1px solid #d7ded9;
  border-radius: 2px;
  background: #fff;
  color: #34423a;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  padding: 6px 9px;
}

.stock-variant-option:hover,
.stock-variant-option:focus-visible,
.stock-variant-option[aria-pressed="true"] {
  border-color: var(--green);
  background: #edf5f0;
  color: var(--green);
  outline: none;
}

.stock-color-section {
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.stock-color-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.stock-color-heading span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.stock-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stock-color-option {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  border: 1px solid #d7ded9;
  border-radius: 999px;
  background: #fff;
  color: #34423a;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
  padding: 5px 9px 5px 6px;
  text-align: left;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.stock-color-option:hover,
.stock-color-option:focus-visible {
  border-color: rgba(1, 56, 28, 0.55);
  outline: none;
}

.stock-color-option[aria-pressed="true"] {
  border-color: var(--green);
  background: #edf5f0;
  box-shadow: 0 0 0 1px var(--green);
  color: var(--green);
}

.stock-color-swatch {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(20, 38, 29, 0.18);
  border-radius: 50%;
  background: var(--stock-swatch);
}

.stock-color-section small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.stock-card-action {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.stock-card-action:hover,
.stock-card-action:focus-visible {
  background: var(--green);
  color: #fff;
}

.stock-card-action:active {
  transform: translateY(1px);
}

.stock-empty-state {
  margin: 30px 0 0;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  padding: 24px;
}

.stock-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.stock-load-more {
  min-width: min(100%, 260px);
  min-height: 48px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 12px 18px;
}

.stock-load-more:hover {
  background: var(--green-2);
}

.finished-stock-rfq {
  margin-top: 18px;
  padding-top: clamp(58px, 7vw, 90px);
  scroll-margin-top: 150px;
}

@media (max-width: 1120px) {
  .finished-stock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finished-stock-hero-shell {
    grid-template-columns: minmax(270px, 0.82fr) minmax(380px, 1.18fr);
  }

  .stock-hero-gallery {
    min-height: 540px;
  }
}

@media (max-width: 860px) {
  .finished-stock-hero {
    min-height: auto;
  }

  .finished-stock-hero-shell {
    grid-template-columns: 1fr;
  }

  .finished-stock-hero-copy {
    max-width: 680px;
  }

  .stock-hero-gallery {
    min-height: 620px;
  }

  .stock-category-bar {
    position: static;
  }

  .stock-category-bar-shell {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 0;
  }

  .stock-filter-group {
    justify-content: flex-start;
  }

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

  .stock-catalog {
    scroll-margin-top: 86px;
  }
}

@media (max-width: 560px) {
  .finished-stock-hero {
    padding: 42px 0 18px;
  }

  .finished-stock-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 12vw, 54px);
  }

  .finished-stock-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .finished-stock-actions .button {
    width: 100%;
  }

  .stock-hero-gallery {
    min-height: 470px;
    grid-template-columns: 1.35fr 0.65fr;
  }

  .stock-category-total {
    padding: 2px 0 4px;
  }

  .stock-filter-group {
    width: calc(100vw - 18px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .finished-stock-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stock-product-card-body {
    min-height: 0;
  }

  .stock-product-card > img {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stock-product-card,
  .stock-filter-group button,
  .stock-card-action {
    transition: none;
  }

  .stock-product-card:hover {
    transform: none;
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--lime);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.top-strip a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
}

.brand-logo {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.site-nav a {
  border-radius: 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--soft);
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  background: var(--green-2);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 12px;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.hero {
  padding: 0;
  background: var(--green);
  border-bottom: 0;
}

.hero-shell {
  width: 100%;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: max(620px, calc(100dvh - 110px));
  overflow: hidden;
  place-items: center;
  background: var(--green);
  isolation: isolate;
}

.hero-video,
.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.96) contrast(1.04);
}

.hero-video {
  z-index: 1;
}

.hero-image {
  z-index: 0;
}

.hero-scrim {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(1, 25, 13, 0.56), rgba(1, 25, 13, 0.24) 45%, rgba(1, 25, 13, 0.52)),
    linear-gradient(180deg, rgba(1, 25, 13, 0.18), rgba(1, 25, 13, 0.28) 44%, rgba(1, 25, 13, 0.46)),
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.08), rgba(1, 25, 13, 0.34) 64%, rgba(1, 25, 13, 0.52));
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 900px;
  justify-items: center;
  padding: clamp(70px, 8vw, 118px) clamp(24px, 8vw, 118px);
  color: #fff;
  text-align: center;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  place-items: center;
  background: rgba(1, 80, 42, 0.84);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 0;
  pointer-events: none;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.99;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.32);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
}

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

.hero-text,
.section-heading p,
.about-grid p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-text {
  max-width: 680px;
}

.hero .eyebrow {
  color: #fff;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
}

.hero .hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 900;
  padding: 13px 20px;
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--green);
  color: #fff;
}

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

.hero .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.hero .button.primary {
  min-width: 180px;
  border-color: var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--green);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.05) 50%, transparent 100%);
  content: "";
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats-bar div {
  padding: 28px clamp(18px, 4vw, 52px);
}

.stats-bar div + div {
  border-left: 1px solid var(--line);
}

.stats-bar strong,
.stats-bar span {
  display: block;
}

.stats-bar strong {
  color: var(--green);
  font-size: 34px;
}

.stats-bar span {
  color: var(--muted);
  font-size: 14px;
}

.service-flow-section {
  padding: clamp(52px, 6vw, 82px) clamp(18px, 5vw, 84px) 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f9f5 100%);
  scroll-margin-top: 74px;
}

.service-flow-shell {
  display: grid;
  width: min(1350px, 100%);
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(1, 56, 28, 0.08);
}

.service-flow-intro {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  background: var(--green);
  color: #fff;
  padding: clamp(34px, 4vw, 54px);
}

.service-flow-label {
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-flow-intro h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(36px, 4.8vw, 66px);
  line-height: 1.02;
}

.service-flow-intro p {
  max-width: 35ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.service-flow-cta {
  align-self: flex-start;
  border-color: var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-flow-list {
  display: grid;
  align-content: center;
  padding: clamp(18px, 2.8vw, 34px);
}

.service-flow-item {
  display: grid;
  min-height: 124px;
  grid-template-columns: 68px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  transition: background 0.22s ease, color 0.22s ease;
}

.service-flow-item:last-child {
  border-bottom: 0;
}

.service-flow-number {
  color: var(--green-2);
  font-size: 14px;
  font-weight: 900;
}

.service-flow-copy strong {
  display: block;
  color: var(--green);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.05;
}

.service-flow-copy small {
  display: block;
  max-width: 50ch;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.service-flow-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  padding: 0;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.service-flow-item:hover,
.service-flow-item:focus {
  background: var(--soft);
}

.service-flow-item:hover .service-flow-arrow,
.service-flow-item:focus .service-flow-arrow {
  background: var(--green);
  color: #fff;
  transform: translateX(4px);
}

.trust-section {
  padding: clamp(58px, 6vw, 82px) clamp(18px, 5vw, 84px) clamp(48px, 5vw, 68px);
  background: #fff;
}

.trust-shell {
  width: min(1120px, calc(100% - 36px));
  text-align: center;
}

.trust-copy h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
}

.trust-copy p {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(30px, 3.5vw, 42px);
}

.trust-button {
  min-width: 228px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-button:hover,
.trust-button:focus {
  background: var(--lime-2);
}

.trust-logo-panel {
  display: grid;
  grid-template-columns: repeat(7, minmax(90px, 1fr));
  gap: clamp(26px, 3vw, 42px) clamp(24px, 3vw, 40px);
  align-items: center;
  justify-items: center;
  max-width: 1160px;
  margin: clamp(44px, 5vw, 58px) auto 0;
  overflow: visible;
  background: #fff;
}

.trust-logo-panel img {
  width: auto;
  max-width: 100%;
  max-height: 58px;
  margin: 0 auto;
  object-fit: contain;
}

.trust-logo-panel .trust-logo-wide {
  max-height: 50px;
}

.trust-logo-panel .trust-logo-tall {
  max-height: 74px;
}

.categories-section {
  padding: clamp(44px, 5vw, 70px) clamp(24px, 4vw, 30px) 48px;
  background: #fff;
  color: var(--green);
  scroll-margin-top: 74px;
}

.categories-header {
  position: relative;
  display: grid;
  width: min(1360px, 100%);
  align-items: center;
  margin: 0 auto 48px;
}

.categories-header h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
}

.categories-controls {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 20px;
  transform: translateX(-50%);
}

.category-arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  border: 1px solid var(--green);
  border-radius: 50%;
  place-items: center;
  background: #fff;
  color: var(--green);
  cursor: pointer;
  padding: 0;
  box-shadow: 0 8px 18px rgba(1, 56, 28, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-arrow:hover,
.category-arrow:focus {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(1, 56, 28, 0.14);
  transform: translateY(-1px);
}

.category-arrow:focus-visible {
  outline: 2px solid rgba(1, 56, 28, 0.22);
  outline-offset: 4px;
}

.circle-arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 1px;
}

.circle-arrow-icon-left {
  transform: translateX(2px) rotate(-135deg);
}

.circle-arrow-icon-right {
  transform: translateX(-2px) rotate(45deg);
}

.hero-arrow .circle-arrow-icon {
  width: 13px;
  height: 13px;
}

.service-flow-arrow .circle-arrow-icon {
  width: 10px;
  height: 10px;
  border-width: 2.5px 2.5px 0 0;
}

.categories-grid {
  --category-gap: clamp(24px, 2.2vw, 30px);

  display: grid;
  width: min(1360px, 100%);
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: var(--category-gap);
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  opacity: 0;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transform: translateY(48px);
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.categories-grid::-webkit-scrollbar {
  display: none;
}

.categories-grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card {
  display: grid;
  min-width: 0;
  align-content: start;
  cursor: pointer;
  opacity: 0;
  scroll-snap-align: start;
  transform: translateY(48px);
  transition: opacity 1000ms ease-out, transform 1000ms ease-out;
  transition-delay: var(--card-delay);
}

.category-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 8px;
}

.categories-grid.is-visible .category-card {
  opacity: 1;
  transform: translateY(0);
}

.category-card picture {
  display: block;
  overflow: hidden;
}

.category-card img {
  display: block;
  width: 100%;
  height: clamp(240px, 23vw, 320px);
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.category-card h3 {
  margin: 32px 0 14px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.category-card p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.finished-products-section {
  padding: clamp(62px, 7vw, 98px) 0;
  background: var(--soft);
  scroll-margin-top: 96px;
}

.finished-products-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.finished-products-copy {
  display: grid;
  align-content: start;
}

.finished-products-copy h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: var(--green);
}

.finished-products-copy p {
  max-width: 48ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.finished-products-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.finished-products-process span {
  min-height: 54px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  padding: 13px 14px;
}

.finished-products-cta {
  width: fit-content;
  margin-top: 28px;
}

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

.finished-product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(1, 56, 28, 0.06);
}

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

.finished-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.finished-product-card-large img {
  aspect-ratio: 4 / 5;
}

.finished-product-card > div {
  display: grid;
  align-content: start;
  padding: 20px;
}

.finished-product-card h3 {
  color: var(--green);
}

.finished-product-card p,
.finished-product-card li {
  color: var(--muted);
  line-height: 1.6;
}

.finished-product-card p {
  margin-bottom: 0;
}

.finished-product-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.finished-stock-main {
  background: #fff;
}

.finished-stock-hero {
  padding: clamp(52px, 6vw, 86px) 0;
  background: var(--soft);
}

.finished-stock-hero-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.finished-stock-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  color: var(--green);
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 0.98;
}

.finished-stock-hero-copy p {
  max-width: 50ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.finished-stock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.finished-stock-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 36px rgba(1, 56, 28, 0.1);
}

.finished-stock-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f7f8f5;
}

.finished-stock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}

.finished-stock-summary div {
  padding: 24px;
}

.finished-stock-summary div + div {
  border-left: 1px solid var(--line);
}

.finished-stock-summary span,
.finished-stock-card-body > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finished-stock-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.25;
}

.finished-stock-summary p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.finished-stock-section {
  padding-top: clamp(62px, 7vw, 92px);
}

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

.finished-stock-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(1, 56, 28, 0.06);
}

.finished-stock-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.finished-stock-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.finished-stock-card h3 {
  margin-top: 10px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.1;
}

.finished-stock-card p {
  color: var(--muted);
  line-height: 1.6;
}

.finished-stock-card dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.finished-stock-card dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.finished-stock-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.finished-stock-card dd {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.finished-stock-card .button {
  width: fit-content;
  margin-top: auto;
}

.finished-stock-rfq {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.color-selector-section {
  padding: clamp(50px, 5.8vw, 82px) 0;
  background: #fff;
  scroll-margin-top: 74px;
}

.fabric-page-main {
  background: #fff;
}

.fabric-list-page {
  min-height: calc(100dvh - 146px);
  padding: 24px 0 88px;
}

.coming-page-main {
  background: #fff;
}

.coming-soon-section {
  display: grid;
  min-height: calc(100dvh - 146px);
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(46px, 6vw, 82px) 0;
}

.coming-soon-media {
  overflow: hidden;
  background: var(--soft);
}

.coming-soon-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.coming-soon-copy {
  max-width: 620px;
}

.coming-soon-copy span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-copy h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}

.coming-soon-copy p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.color-page-section {
  min-height: calc(100dvh - 146px);
}

.color-selector-shell {
  display: grid;
  width: min(1280px, calc(100% - 40px));
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 6vw, 80px);
  margin: 0 auto;
  align-items: start;
}

.color-preview-column {
  display: grid;
  gap: 18px;
}

.color-back-link {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
}

.color-back-link:hover,
.color-back-link:focus {
  border-color: var(--green);
  color: var(--green);
}

.color-preview-frame {
  position: relative;
  display: block;
  width: min(100%, 460px);
  margin: 0 auto;
}

.color-preview-paper {
  display: grid;
  gap: 16px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(1, 56, 28, 0.12);
  padding: clamp(20px, 3vw, 32px);
}

.color-preview-paper strong,
.color-preview-paper span,
.color-preview-paper small {
  display: block;
}

.color-preview-paper strong {
  color: #242825;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.95;
}

.color-preview-paper span {
  max-width: 24ch;
  margin-top: 10px;
  color: #3d4540;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.color-preview-swatch {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.38), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(0, 0, 0, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 5px),
    var(--selected-color, #fff);
}

.color-preview-swatch.ribbed {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.1)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 3px, rgba(0, 0, 0, 0.08) 3px 6px, transparent 6px 13px),
    var(--selected-color, #fff);
}

.color-preview-swatch.has-image {
  background: var(--selected-image) center / cover no-repeat, var(--selected-color, #fff);
}

.color-preview-paper small {
  justify-self: center;
  color: #707771;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.color-preview-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  border: 1px solid rgba(1, 56, 28, 0.12);
  background: #fff;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 9px 11px;
}

.color-fabric-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: none;
}

.color-fabric-thumbs::-webkit-scrollbar {
  display: none;
}

.color-fabric-thumb {
  width: 78px;
  min-width: 78px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.color-fabric-thumb img {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.color-fabric-thumb span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.color-fabric-thumb.active {
  border-color: var(--green);
  padding: 3px;
}

.color-selector-note {
  max-width: 56ch;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.color-selector-panel {
  padding-top: 20px;
}

.color-selector-panel h1,
.color-selector-panel h2 {
  max-width: 16ch;
  margin-bottom: 20px;
  color: var(--green);
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.02;
}

.color-selector-meta {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 18px;
  font-weight: 760;
}

.color-selector-copy {
  max-width: 54ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.color-fabric-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.color-fabric-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 10px 13px;
}

.color-fabric-tab.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.color-swatch-grid {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.color-swatch-button {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.44), transparent 28%),
    radial-gradient(circle at 78% 70%, rgba(0, 0, 0, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.12)),
    var(--swatch-color);
  cursor: pointer;
  transition: outline-color 0.18s ease, transform 0.18s ease;
}

.color-swatch-button::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 5px);
  content: "";
  mix-blend-mode: overlay;
  opacity: 0.72;
}

.color-swatch-button.has-image {
  background: var(--swatch-image) center / cover no-repeat, var(--swatch-color);
}

.color-swatch-button.has-image::before {
  display: none;
}

.color-swatch-button:hover,
.color-swatch-button:focus {
  outline: 2px solid var(--green-2);
  outline-offset: 2px;
}

.color-swatch-button.active {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.color-selector-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.color-selector-actions .button {
  border-radius: 999px;
}

.color-selector-actions span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.category-grid article,
.fabric-card,
.recommendation,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.category-grid article {
  min-height: 180px;
  padding: 24px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.category-grid article:hover {
  border-color: var(--green-2);
  box-shadow: 0 12px 26px rgba(1, 56, 28, 0.08);
}

.category-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-2);
  font-weight: 900;
}

.category-grid p,
.fabric-card p,
.spec-list,
.form-note,
.notice {
  color: var(--muted);
  line-height: 1.55;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 11px 15px;
}

.filter-button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

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

.fabric-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fabric-card:hover {
  border-color: var(--green-2);
  box-shadow: 0 16px 32px rgba(1, 56, 28, 0.1);
  transform: translateY(-2px);
}

.fabric-card > img,
.fabric-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fabric-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.fabric-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.fabric-card h3 {
  margin-bottom: 0;
}

.stock-badge {
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--lime-2);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 0;
}

.spec-list div,
.detail-specs div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.spec-list dt,
.detail-specs dt {
  color: var(--muted);
  font-size: 13px;
}

.spec-list dd,
.detail-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  text-align: right;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.card-actions .button {
  flex: 1;
  min-height: 42px;
  padding: 10px 12px;
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.9fr) minmax(280px, 1.05fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  padding: 32px;
}

.detail-specs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-actions {
  display: flex;
  grid-column: 1 / -1;
  justify-content: flex-end;
  gap: 12px;
}

.detail-color-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(1, 56, 28, 0.06);
}

.detail-color-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.detail-color-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.detail-color-meta strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.detail-color-link,
.detail-color-card img {
  display: block;
}

.detail-color-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-top: 1px solid var(--line);
  object-fit: cover;
  object-position: center top;
}

.finder,
.about-band {
  background: var(--soft);
}

.finder-shell,
.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.finder-form,
.rfq-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(1, 56, 28, 0.06);
}

label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-2);
  outline: 3px solid rgba(208, 234, 154, 0.45);
}

.recommendation {
  margin-top: 18px;
  padding: 20px;
}

.recommendation h3 {
  color: var(--green);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.recommendation-item {
  border: 0;
  border-radius: 2px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

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

.recommendation-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

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

.notice {
  border-left: 3px solid var(--green-2);
  background: var(--lime-2);
  color: var(--green);
  font-weight: 700;
  padding: 14px 16px;
}

.sample-terms {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.sample-terms div {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.sample-terms span,
.contact-list > li > span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sample-terms strong {
  color: var(--green);
  line-height: 1.45;
}

.about-band {
  padding: 82px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(26px, 5vw, 70px);
}

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

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

.check-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
  content: "";
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 460px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  background: var(--soft);
  overflow-wrap: anywhere;
}

.contact-card strong {
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.contact-card span {
  color: var(--muted);
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 6px 0 2px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-list a,
.contact-list address {
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}

.contact-list a {
  font-weight: 900;
  text-decoration: none;
}

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

.contact-card > a {
  margin-top: 12px;
  color: var(--green-2);
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: var(--green);
  padding: 24px clamp(18px, 4vw, 56px);
  color: #fff;
}

.site-footer a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 980px) {
  .finder-shell,
  .split,
  .about-grid,
  .contact,
  .trust-shell,
  .detail-panel,
  .color-selector-shell {
    grid-template-columns: 1fr;
  }

  .color-selector-panel {
    padding-top: 0;
  }

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

  .service-flow-shell {
    grid-template-columns: 1fr;
  }

  .finished-products-shell {
    grid-template-columns: 1fr;
  }

  .finished-products-copy h2 {
    max-width: 18ch;
  }

  .finished-stock-hero-shell,
  .finished-stock-grid {
    grid-template-columns: 1fr;
  }

  .finished-stock-summary {
    grid-template-columns: 1fr;
  }

  .finished-stock-summary div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-flow-intro {
    min-height: 0;
  }

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

  .stats-bar div:nth-child(3) {
    border-left: 0;
  }

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

@media (min-width: 768px) {
  .categories-grid {
    grid-auto-columns: calc((100% - var(--category-gap) - var(--category-gap)) / 3);
  }
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    border: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .top-strip {
    align-items: center;
    flex-direction: column;
    gap: 2px;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    border: 1px solid var(--line);
  }

  .hero {
    padding: 0;
  }

  .hero-shell {
    width: 100%;
  }

  .hero-stage {
    min-height: max(560px, calc(100dvh - 207px));
  }

  .hero-video,
  .hero-image {
    object-position: 58% center;
  }

  .hero-copy {
    max-width: 100%;
    padding: 78px 22px 70px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow .circle-arrow-icon {
    width: 11px;
    height: 11px;
    border-width: 2.5px 2.5px 0 0;
  }

  .hero-arrow-left {
    left: 12px;
  }

  .hero-arrow-right {
    right: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero .hero-text {
    max-width: 32ch;
    font-size: 16px;
  }

  .service-flow-section {
    padding: 34px 18px 12px;
  }

  .trust-section {
    padding: 52px 18px 44px;
  }

  .trust-shell {
    width: min(100%, 620px);
  }

  .trust-copy p {
    margin-top: 18px;
  }

  .trust-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .trust-actions .button {
    width: auto;
    min-width: min(100%, 240px);
  }

  .trust-logo-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
    margin-top: 38px;
    overflow: visible;
  }

  .trust-logo-panel img {
    max-height: 54px;
  }

  .trust-logo-panel .trust-logo-wide {
    max-height: 46px;
  }

  .trust-logo-panel .trust-logo-tall {
    max-height: 66px;
  }

  .service-flow-shell {
    border-radius: 20px;
  }

  .service-flow-intro {
    padding: 30px 24px;
  }

  .service-flow-intro h2 {
    max-width: 12ch;
    font-size: clamp(32px, 11vw, 46px);
  }

  .service-flow-intro p {
    font-size: 15px;
  }

  .service-flow-list {
    padding: 4px 18px;
  }

  .service-flow-item {
    min-height: 132px;
    grid-template-columns: 40px minmax(0, 1fr) 36px;
    gap: 12px;
  }

  .service-flow-copy strong {
    font-size: clamp(24px, 7vw, 30px);
  }

  .service-flow-copy small {
    font-size: 14px;
  }

  .service-flow-arrow {
    width: 34px;
    height: 34px;
  }

  .service-flow-arrow .circle-arrow-icon {
    width: 9px;
    height: 9px;
  }

  .categories-section {
    padding: 46px 18px 44px;
  }

  .categories-header {
    gap: 20px;
    margin-bottom: 28px;
  }

  .categories-controls {
    position: static;
    justify-self: start;
    transform: none;
  }

  .category-arrow {
    width: 44px;
    height: 44px;
  }

  .category-arrow .circle-arrow-icon {
    width: 11px;
    height: 11px;
    border-width: 2.5px 2.5px 0 0;
  }

  .categories-grid {
    grid-auto-columns: minmax(270px, 86vw);
  }

  .category-card img {
    height: 230px;
  }

  .category-card h3 {
    margin-top: 22px;
    font-size: 20px;
  }

  .category-card p {
    font-size: 15px;
  }

  .finished-products-section {
    padding: 54px 0;
  }

  .finished-products-process,
  .finished-product-grid {
    grid-template-columns: 1fr;
  }

  .finished-product-card-large {
    grid-row: auto;
  }

  .finished-product-card-large img {
    aspect-ratio: 4 / 3;
    background: #f7f8f5;
    object-fit: contain;
  }

  .category-grid,
  .fabric-grid,
  .recommendation-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .color-selector-section {
    padding: 46px 0 56px;
  }

  .color-selector-shell {
    width: min(100% - 24px, 1280px);
    gap: 30px;
  }

  .color-selector-panel h1,
  .color-selector-panel h2 {
    max-width: none;
    font-size: clamp(32px, 10vw, 42px);
  }

  .coming-soon-section {
    grid-template-columns: 1fr;
    padding: 44px 0 58px;
  }

  .coming-soon-copy h1 {
    max-width: 9ch;
    font-size: clamp(42px, 12vw, 56px);
  }

  .coming-soon-actions {
    flex-direction: column;
  }

  .finished-stock-hero {
    padding: 46px 0 54px;
  }

  .finished-stock-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(40px, 12vw, 56px);
  }

  .finished-stock-hero-copy p {
    font-size: 16px;
  }

  .finished-stock-actions {
    flex-direction: column;
  }

  .finished-stock-summary {
    width: min(100% - 36px, 1180px);
  }

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

  .finished-stock-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    background: #f7f8f5;
    object-fit: contain;
  }

  .finished-stock-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .finished-stock-card .button {
    width: 100%;
  }

  .color-swatch-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .color-selector-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar div + div,
  .stats-bar div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-actions,
  .card-actions,
  .detail-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero .button {
    width: auto;
  }

  .section {
    padding: 62px 0;
  }

  .detail-panel {
    padding: 24px 18px;
  }
}

@media (max-width: 520px) {
  .hero-stage {
    min-height: max(560px, calc(100dvh - 207px));
  }

  .hero-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Ready stock catalog cascade lock */
.finished-stock-hero {
  min-height: calc(100dvh - 108px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 5vw, 72px) 0;
  background: #eef2ef;
}

.finished-stock-hero-shell {
  grid-template-columns: minmax(290px, 0.78fr) minmax(430px, 1.22fr);
}

.finished-stock-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.finished-stock-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.finished-stock-grid .stock-product-card {
  align-self: start;
  height: auto;
}

@media (max-width: 1120px) {
  .finished-stock-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .finished-stock-hero {
    min-height: auto;
  }

  .finished-stock-hero-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .finished-stock-hero {
    padding: 42px 0 18px;
  }

  .finished-stock-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 12vw, 54px);
  }

  .finished-stock-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Ready stock catalog usability pass */
.stock-catalog,
.finished-stock-rfq {
  scroll-margin-top: 180px;
}

.stock-search {
  max-width: 520px;
  margin-top: 26px;
  gap: 8px;
}

.stock-search > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.stock-search input {
  min-height: 48px;
  background: #fff;
}

.stock-result-status {
  margin-top: 10px !important;
  color: var(--green-2) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.stock-spec-details {
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stock-spec-details summary {
  min-height: 44px;
  align-content: center;
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  padding: 10px 2px;
}

.stock-spec-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.stock-spec-details-content {
  padding: 14px 0 2px;
}

.stock-variant-option,
.stock-color-option {
  min-height: 40px;
}

.stock-filter-group button:focus-visible,
.stock-spec-details summary:focus-visible,
.stock-variant-option:focus-visible,
.stock-color-option:focus-visible,
.stock-card-action:focus-visible,
.stock-load-more:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(44, 89, 64, 0.28);
  outline-offset: 2px;
}

.stock-variant-option[aria-pressed="true"],
.stock-color-option[aria-pressed="true"] {
  border-color: var(--green);
  background: #e8f2ec;
  box-shadow: inset 0 0 0 1px var(--green);
  color: var(--green);
}

.form-required-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-required-note span,
.required-mark {
  color: #9f2d2d;
}

.rfq-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-label-text {
  display: inline;
}

.rfq-form .form-note {
  margin: 0;
  border-left: 3px solid var(--green-2);
  background: var(--soft-strong);
  padding: 12px 14px;
}

@media (max-width: 860px) {
  .stock-catalog,
  .finished-stock-rfq {
    scroll-margin-top: 92px;
  }
}

@media (max-width: 560px) {
  .stock-filter-group {
    width: calc(100% + 18px);
    margin-right: -18px;
    padding-right: 18px;
  }

  .stock-catalog-heading {
    margin-bottom: 30px;
  }

  .stock-search {
    margin-top: 22px;
  }

  .stock-variant-option,
  .stock-color-option {
    min-height: 44px;
  }
}
