:root {
  --ink: #14211d;
  --green: #123f34;
  --green-dark: #0b2f27;
  --green-soft: #dce7df;
  --cream: #f3f0e7;
  --paper: #faf9f4;
  --yellow: #f4c84b;
  --line: rgba(20, 33, 29, 0.17);
  --light-line: rgba(255, 255, 255, 0.18);
  --muted: #66726e;
  --white: #ffffff;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 231, 0.91);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  width: 76px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding: 13px 18px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 82px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(18, 63, 52, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(18, 63, 52, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 64px 64px;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 58vw;
  height: 58vw;
  border: clamp(70px, 9vw, 150px) solid rgba(18, 63, 52, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 82px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 120px) 5vw clamp(58px, 6vw, 90px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 3px;
  background: var(--yellow);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.section-heading h2,
.manufacturing-intro h2,
.about-copy h2,
.process-copy h2,
.quote-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 110px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1250px;
  font-size: clamp(78px, 10.4vw, 164px);
  line-height: 0.78;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 760px;
  margin: 40px 0 0;
  color: #47524e;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  gap: 20px;
  padding: 17px 20px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

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

.button-ghost:hover {
  background: var(--paper);
}

.buyer-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 68px;
  padding-top: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buyer-types span::before {
  margin-right: 8px;
  color: var(--yellow);
  content: "+";
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
}

.proof-bar div {
  display: flex;
  min-height: 134px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 4.5vw;
  border-right: 1px solid var(--line);
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong {
  font-family: var(--display);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.proof-bar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 10vw, 160px) 4.5vw;
}

.products-section {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 76px;
}

.section-heading h2,
.manufacturing-intro h2,
.about-copy h2,
.process-copy h2,
.quote-intro h2 {
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 0.9;
}

.heading-aside {
  padding-bottom: 4px;
}

.heading-aside p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.heading-aside a,
.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-image {
  position: relative;
  height: clamp(260px, 28vw, 440px);
  overflow: hidden;
  background: #deddd7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.03);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.product-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
}

.product-card-copy {
  display: grid;
  min-height: 162px;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 28px;
}

.product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.product-card p {
  max-width: 410px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.product-meta > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  transition: color 160ms ease, background 160ms ease;
}

.product-meta a:hover {
  background: var(--green);
  color: var(--white);
}

.manufacturing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) 4.5vw 4.5vw;
  background: var(--green);
  color: var(--white);
}

.manufacturing-intro {
  align-self: start;
}

.manufacturing-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.75;
}

.text-link-light {
  color: var(--white);
}

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

.capability-list > div {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--light-line);
}

.capability-list span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
}

.capability-list strong {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.capability-list i {
  color: rgba(255,255,255,0.42);
  font-style: normal;
}

.factory-gallery {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  margin-top: 20px;
  background: var(--light-line);
}

.factory-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #123228;
}

.factory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.78) contrast(1.08);
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.factory-card:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.07);
}

.factory-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(5,24,19,0.88));
  content: "";
}

.factory-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.factory-card figcaption span {
  color: var(--yellow);
  font-size: 10px;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 8vw;
  align-items: center;
}

.about-lede {
  max-width: 580px;
  margin: 36px 0 44px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-points {
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.about-points > div > span {
  color: var(--green);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
}

.about-points p {
  display: grid;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.about-points strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
}

.about-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--green-soft);
}

.about-visual > img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.03);
}

.about-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 210px;
  min-height: 176px;
  align-content: center;
  padding: 28px;
  background: var(--yellow);
}

.about-stamp span,
.about-stamp small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about-stamp strong {
  margin: 4px 0 8px;
  font-family: var(--display);
  font-size: 52px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) 4.5vw;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-steps article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps article > span {
  color: var(--green);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
}

.process-steps h3 {
  margin: auto 0 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) 4.5vw;
  background: var(--green-dark);
  color: var(--white);
}

.quote-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  margin-top: 58px;
  padding: 26px;
  border: 1px solid var(--light-line);
}

.contact-card > span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-card strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}

.contact-card small {
  margin: 4px 0 20px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.contact-card a {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 11px;
}

.quote-form {
  padding: clamp(28px, 4vw, 58px);
  background: var(--paper);
  color: var(--ink);
}

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

.quote-form label {
  display: grid;
  margin-bottom: 28px;
}

.quote-form label > span {
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green);
}

.quote-form ::placeholder {
  color: #9ba19e;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.form-submit p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 17px 20px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.form-submit button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 40px;
  padding: 48px 4.5vw;
  border-top: 1px solid rgba(255,255,255,.12);
  background: #08251f;
  color: var(--white);
}

.catalog-page {
  min-height: 100vh;
  background: var(--paper);
}

.catalog-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 244, 0.94);
  backdrop-filter: blur(18px);
}

.catalog-header nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  font-size: 12px;
  font-weight: 800;
}

.catalog-header nav a {
  padding: 30px 0 27px;
  border-bottom: 3px solid transparent;
}

.catalog-header nav a.is-active {
  border-bottom-color: var(--yellow);
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 9vw;
  align-items: end;
  padding: clamp(76px, 9vw, 138px) 4.5vw clamp(60px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.catalog-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 124px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.catalog-hero h1 em {
  color: var(--green);
  font-style: normal;
}

.catalog-hero-copy > p {
  max-width: 650px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-stats div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-stats strong {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.catalog-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.catalog-controls {
  position: sticky;
  top: 82px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, .48fr) auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 244, .96);
  backdrop-filter: blur(18px);
}

.catalog-controls label {
  display: grid;
  padding: 15px 4.5vw;
  border-right: 1px solid var(--line);
}

.catalog-controls label > span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.catalog-controls input,
.catalog-controls select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
}

.catalog-result-count {
  display: grid;
  min-width: 180px;
  align-content: center;
  justify-items: end;
  padding: 14px 4.5vw 14px 28px;
}

.catalog-result-count strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.catalog-result-count span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-pills {
  display: flex;
  gap: 8px;
  padding: 24px 4.5vw;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.category-pills button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.category-pills button:hover,
.category-pills button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.catalog-results {
  display: grid;
  padding: 0 4.5vw clamp(90px, 10vw, 150px);
  background: var(--cream);
}

.catalog-collection {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(58px, 7vw, 104px) 0;
  border-bottom: 1px solid var(--line);
}

.collection-visual {
  align-self: start;
  position: sticky;
  top: 186px;
}

.collection-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #d7d7d4;
}

.collection-image-frame::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.45);
  content: "";
  pointer-events: none;
}

.collection-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collection-source a {
  color: var(--ink);
}

.collection-data > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.collection-data > header span {
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.collection-data > header h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .92;
  text-transform: uppercase;
}

.collection-data > header > strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 50px;
  letter-spacing: -.05em;
}

.model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.model-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-width: 0;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.photo-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
}

.model-copy {
  min-width: 0;
}

.model-copy h3 {
  margin: 4px 0 7px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.model-copy > p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.sku-list {
  display: grid;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.sku-list > div {
  display: grid;
  grid-template-columns: minmax(104px, auto) 1fr;
  gap: 10px;
  align-items: baseline;
}

.sku-list code {
  color: var(--green);
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
}

.sku-list span {
  color: var(--muted);
  font-size: 9px;
}

.model-copy > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.model-copy > a:hover {
  color: var(--green);
}

.catalog-empty {
  display: grid;
  justify-items: center;
  padding: 120px 24px;
  text-align: center;
}

.catalog-empty strong {
  font-family: var(--display);
  font-size: 40px;
  text-transform: uppercase;
}

.catalog-empty p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-empty button {
  margin-top: 14px;
  padding: 13px 18px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
}

.catalog-note {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8vw;
  align-items: end;
  padding: clamp(70px, 8vw, 120px) 4.5vw;
  background: var(--green);
  color: var(--white);
}

.catalog-note h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -.06em;
  line-height: .9;
  text-transform: uppercase;
}

.catalog-note > p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.7;
}

.catalog-note > a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 17px 20px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

.catalog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 4.5vw;
  background: #08251f;
  color: rgba(255,255,255,.6);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

  .catalog-header nav {
    display: none;
  }

  .catalog-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-hero-copy {
    max-width: 720px;
  }

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

  .collection-visual {
    position: relative;
    top: auto;
    max-width: 760px;
  }

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

  .catalog-note > a {
    width: max-content;
  }
}

@media (max-width: 700px) {
  .catalog-header {
    min-height: 70px;
    padding: 0 22px;
  }

  .catalog-controls {
    top: 70px;
    grid-template-columns: 1fr 1fr;
  }

  .catalog-controls label {
    padding: 13px 16px;
  }

  .catalog-controls label:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .catalog-result-count {
    min-width: 0;
    padding: 13px 16px;
  }

  .catalog-hero,
  .catalog-results,
  .catalog-note {
    padding-right: 22px;
    padding-left: 22px;
  }

  .catalog-hero h1 {
    font-size: clamp(58px, 18vw, 90px);
  }

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

  .catalog-stats div {
    min-height: 92px;
    padding: 12px;
  }

  .catalog-stats strong {
    font-size: 28px;
  }

  .category-pills {
    padding-right: 22px;
    padding-left: 22px;
  }

  .catalog-collection {
    padding: 62px 0;
  }

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

  .collection-data > header > strong {
    font-size: 38px;
  }

  .catalog-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .catalog-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 22px;
    padding-left: 22px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 98px;
  height: 68px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}

.footer-address {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.46);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-right: 3vw;
  }

  .manufacturing-section,
  .process-section {
    gap: 5vw;
  }

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

  .process-steps article {
    min-height: 250px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 70px;
    padding: 0 22px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    width: 17px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 18px 22px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }

  .mobile-menu nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: 670px;
    padding: 78px 22px 52px;
  }

  .hero h1 {
    font-size: clamp(60px, 18vw, 94px);
  }

  .buyer-types {
    margin-top: 50px;
    padding-top: 0;
  }

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

  .proof-bar div {
    min-height: 110px;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .manufacturing-section,
  .process-section,
  .quote-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .section-heading,
  .manufacturing-section,
  .about-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .manufacturing-section,
  .about-layout,
  .quote-section {
    gap: 58px;
  }

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

  .heading-aside {
    max-width: 520px;
  }

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

  .product-image {
    height: min(75vw, 450px);
  }

  .factory-gallery {
    grid-template-columns: 1fr;
  }

  .factory-card {
    min-height: 380px;
  }

  .about-visual,
  .about-visual > img {
    min-height: 520px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .brand-logo {
    width: 64px;
    height: 44px;
  }

  .hero-copy {
    min-height: 650px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-card-copy {
    min-height: 150px;
    padding: 22px;
  }

  .product-image > span {
    top: 14px;
    left: 14px;
  }

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

  .process-steps article {
    min-height: 230px;
  }

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

  .quote-form {
    padding: 28px 20px;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button {
    justify-content: space-between;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
