:root {
  --paper: #f2f2ed;
  --white: #ffffff;
  --ink: #111111;
  --muted: #686863;
  --line: #c8c8c1;
  --soft-line: #deded8;
  --signal: #ff4d00;
  --signal-dark: #d94100;
  --acid: #dfff00;
  --blue: #3155ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}
body::selection { color: var(--white); background: var(--blue); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.utility-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  padding: 8px 3vw;
  color: var(--white);
  background: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.utility-bar span:last-child { text-align: right; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 3vw;
  background: rgba(242, 242, 237, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
}
.logo strong {
  font-size: 1.55rem;
  line-height: 1;
  text-transform: lowercase;
}
.logo small {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
}
.nav { display: flex; gap: 30px; font-size: .8rem; font-weight: 700; text-transform: uppercase; }
.nav a, .header-cta, .product-card a, .footer a, .text-link { text-decoration: none; }
.nav a { position: relative; padding: 27px 0 25px; color: var(--muted); }
.nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  min-height: 40px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.header-cta:hover { color: var(--ink); background: var(--acid); }

.hero, .section, .process-section, .request-section, .proof-section, .final-cta,
.catalog-hero, .catalog-layout, .catalog-help, .footer, .brand-rail {
  width: min(1440px, calc(100% - 6vw));
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 102px);
  max-height: 920px;
  overflow: hidden;
  background: #d9d7de;
  isolation: isolate;
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(242,242,237,.98) 0%, rgba(242,242,237,.9) 38%, rgba(242,242,237,.15) 67%, rgba(242,242,237,0) 100%);
  content: "";
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(.92) contrast(1.02);
  transform: scale(1.02);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  min-height: calc(100vh - 102px);
  max-height: 920px;
  padding: 72px 4vw 84px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--signal);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  line-height: .9;
}
h1 { margin-bottom: 28px; font-size: 6.6rem; text-transform: uppercase; }
h2 { margin-bottom: 18px; font-size: 4.5rem; text-transform: uppercase; }
h3 { margin-bottom: 8px; font-size: 1.05rem; }
.hero-text {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button.primary { color: var(--white); background: var(--ink); }
.button.primary:hover { color: var(--ink); background: var(--acid); }
.button.secondary { background: transparent; border-color: var(--ink); }
.button.secondary:hover { color: var(--white); background: var(--ink); }
.button.signal { color: var(--ink); background: var(--acid); }
.button.signal:hover { color: var(--white); background: var(--blue); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .86rem;
  font-weight: 800;
}
.text-link:hover { color: var(--signal); }
.hero-index {
  position: absolute;
  top: 34px;
  right: 32px;
  display: grid;
  grid-template-columns: auto 72px auto;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 800;
}
.hero-index i { height: 1px; background: var(--ink); }
.hero-caption {
  position: absolute;
  right: 30px;
  bottom: 24px;
  margin: 0;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.brand-rail {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  scrollbar-width: none;
}
.brand-rail::-webkit-scrollbar { display: none; }
.section { padding: 118px 0; }
.section-heading { max-width: 780px; margin-bottom: 46px; }
.section-heading p:not(.eyebrow) { max-width: 560px; margin-bottom: 0; color: var(--muted); }
.split-heading { display: flex; max-width: none; align-items: end; justify-content: space-between; gap: 30px; }
.split-heading > div { max-width: 880px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 1px; background: var(--line); }
.product-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 590px;
  grid-template-rows: auto 116px 142px auto;
  overflow: hidden;
  background: var(--paper);
}
.product-image-wrap { position: relative; overflow: hidden; background: #e5e5df; }
.product-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-visual { transform: scale(1.035); }
.product-card .product-info { display: grid; align-content: start; padding: 16px 14px 0; }
.product-card .product-info p {
  margin-bottom: 6px;
  color: var(--signal);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-card h3 {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: .95rem;
  line-height: 1.25;
}
.price-row { margin-top: 11px; }
.price-value { display: inline-flex; align-items: baseline; gap: .22em; font-size: 1.22rem; font-weight: 900; }
.currency-symbol { position: relative; display: inline-block; width: .72em; line-height: 1; }
.currency-symbol::after { position: absolute; top: .58em; left: .08em; width: .68em; height: .08em; background: currentColor; content: ""; }
.product-meta { display: grid; align-content: start; gap: 8px; min-height: 0; overflow: hidden; padding: 8px 14px 0; }
.product-meta > span { color: var(--muted); font-size: .75rem; }
.size-list { display: flex; flex-wrap: wrap; gap: 4px; max-height: 76px; overflow-y: auto; scrollbar-width: thin; }
.size-pill { min-width: 36px; padding: 5px 6px; border: 1px solid var(--line); font-size: .68rem; font-weight: 700; text-align: center; }
.product-actions { display: grid; grid-template-columns: 1fr auto; align-self: end; gap: 12px; align-items: center; padding: 14px; border-top: 1px solid var(--line); }
.product-actions > a:first-child { font-size: .76rem; font-weight: 800; }
.product-actions > a:first-child::after { margin-left: 8px; content: "→"; }
.product-actions > a:first-child:hover { color: var(--signal); }
.source-link { color: var(--muted); font-size: .58rem; font-weight: 800; opacity: .35; text-transform: uppercase; }
.source-link:hover { opacity: 1; }

.process-section {
  display: grid;
  grid-template-columns: .85fr 1.6fr;
  gap: 7vw;
  padding: 110px 4vw;
  color: var(--white);
  background: var(--ink);
}
.process-section .eyebrow { color: var(--acid); }
.process-intro h2 { margin-bottom: 0; font-size: 3.5rem; }
.steps { border-top: 1px solid #4c4c48; }
.steps article { display: grid; grid-template-columns: 54px 150px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid #4c4c48; }
.steps span { color: var(--acid); font-size: .7rem; font-weight: 800; }
.steps h3 { margin: 0; text-transform: uppercase; }
.steps p { max-width: 430px; margin: 0; color: #aaa9a1; font-size: .9rem; }

.request-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  padding: 116px 4vw;
  background: var(--blue);
  color: var(--white);
}
.request-section .eyebrow { color: var(--acid); }
.request-copy h2 { font-size: 4rem; }
.request-copy > p:not(.eyebrow) { max-width: 430px; color: #d7dcff; }
.request-note { display: inline-block; margin-top: 36px; padding-top: 8px; border-top: 1px solid #9cacff; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.request-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-content: start; }
.request-form label { display: grid; gap: 8px; color: #d7dcff; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.request-form input, .request-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9cacff;
  border-radius: 0;
  outline: 0;
  resize: vertical;
}
.request-form input:focus, .request-form textarea:focus { border-color: var(--acid); }
.request-form input::placeholder, .request-form textarea::placeholder { color: #9cacff; }
.wide { grid-column: 1 / -1; }
.request-form .button { margin-top: 8px; }

.proof-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; padding: 118px 0; }
.proof-list { border-top: 1px solid var(--ink); }
.proof-list p { display: grid; grid-template-columns: 54px 1fr; gap: 22px; margin: 0; padding: 23px 0; border-bottom: 1px solid var(--line); }
.proof-list b { color: var(--signal); font-size: .7rem; }
.proof-list span { max-width: 540px; font-weight: 700; }

.faq-section { border-top: 1px solid var(--ink); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 24px 0; font-size: 1.3rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-size: 1.5rem; font-style: normal; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -4px 0 24px; color: var(--muted); }

.final-cta { position: relative; padding: 96px 4vw; overflow: hidden; color: var(--white); background: var(--signal); }
.final-cta::after { position: absolute; right: 3vw; bottom: -52px; color: rgba(17,17,17,.12); content: "W"; font-size: 19rem; font-weight: 900; line-height: 1; }
.final-cta .eyebrow { color: var(--ink); }
.final-cta h2 { position: relative; z-index: 1; max-width: 950px; font-size: 5rem; }
.final-cta .button { position: relative; z-index: 1; }

.footer { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 40px; align-items: end; padding: 50px 0; border-top: 1px solid var(--ink); }
.footer-brand { font-size: 3rem; font-weight: 900; line-height: 1; }
.footer p, .footer small { margin: 0; color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.footer > div { display: flex; gap: 24px; font-size: .75rem; font-weight: 800; text-transform: uppercase; }

.catalog-hero { display: grid; grid-template-columns: 1.5fr .7fr; gap: 5vw; align-items: end; padding: 92px 0 70px; border-bottom: 1px solid var(--ink); }
.catalog-hero > .eyebrow { grid-column: 1 / -1; margin-bottom: -22px; }
.catalog-hero h1 { margin: 0; font-size: 5.8rem; }
.catalog-hero-copy { padding-bottom: 8px; }
.catalog-hero-copy p { margin-bottom: 24px; color: var(--muted); }
.catalog-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 1px; align-items: start; padding: 36px 0 110px; background: var(--line); }
.catalog-filter-panel { position: sticky; top: 92px; min-width: 0; padding: 0 24px 24px 0; background: var(--paper); }
.catalog-filter-panel summary { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; min-height: 42px; padding-bottom: 14px; border-bottom: 1px solid var(--ink); font-size: .78rem; font-weight: 900; text-transform: uppercase; cursor: pointer; list-style: none; }
.catalog-filter-panel summary::-webkit-details-marker { display: none; }
.catalog-filter-panel summary strong { color: var(--signal); font-size: .7rem; }
.catalog-filter-panel summary i { display: none; font-style: normal; }
.catalog-controls { display: grid; gap: 22px; margin-top: 22px; }
.catalog-controls fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.catalog-controls legend, .catalog-controls label > span { display: block; margin-bottom: 8px; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.catalog-controls input, .catalog-controls select {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}
.search-control input { border-color: var(--ink); }
.price-inputs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 7px; }
.range-pair { display: grid; gap: 2px; margin-top: 8px; }
.range-pair input { min-height: 18px; padding: 0; accent-color: var(--signal); }
.brand-filter { display: grid; max-height: 190px; overflow: auto; border-top: 1px solid var(--line); scrollbar-width: thin; }
.check-control { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; min-height: 34px; border-bottom: 1px solid var(--soft-line); font-size: .76rem; cursor: pointer; }
.check-control input { width: 14px; min-height: 14px; margin: 0; padding: 0; accent-color: var(--signal); }
.check-control span { margin: 0 !important; font-size: .76rem !important; font-weight: 600 !important; text-transform: none !important; }
.check-control:hover span { color: var(--signal); }
.filter-count { color: var(--muted); font-size: .65rem; }
.size-filter { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: 205px; gap: 0 10px; }
.reset-button { justify-self: start; padding: 0 0 4px; color: var(--muted); background: none; border: 0; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.reset-button:hover { color: var(--signal); }
.catalog-results { min-width: 0; padding-left: 1px; background: var(--paper); }
.catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.empty-state { grid-column: 1 / -1; min-height: 340px; padding: 70px 40px; background: var(--paper); }
.empty-state p { max-width: 550px; color: var(--muted); }
.catalog-help { display: grid; grid-template-columns: .4fr 1.6fr auto; gap: 36px; align-items: end; margin-bottom: 110px; padding: 70px 4vw; color: var(--white); background: var(--ink); }
.catalog-help .eyebrow { align-self: start; color: var(--acid); }
.catalog-help h2 { margin: 0; font-size: 3.7rem; }

@media (max-width: 1180px) {
  h1 { font-size: 5.2rem; }
  h2 { font-size: 3.7rem; }
  .hero-content { width: 67%; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-hero h1 { font-size: 4.8rem; }
}

@media (max-width: 880px) {
  .utility-bar span:last-child { display: none; }
  .utility-bar { grid-template-columns: 1fr auto; }
  .site-header { grid-template-columns: 1fr auto; min-height: 64px; }
  .logo small { display: none; }
  .nav { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; gap: 12px; overflow-x: auto; border-top: 1px solid var(--line); }
  .nav a { padding: 13px 0 12px; white-space: nowrap; }
  .nav a::after { bottom: 7px; }
  .header-cta { grid-column: 2; grid-row: 1; }
  .hero { min-height: 720px; }
  .hero::after { background: linear-gradient(180deg, rgba(242,242,237,.97) 0%, rgba(242,242,237,.82) 47%, rgba(242,242,237,0) 76%); }
  .hero-backdrop { object-position: 62% bottom; }
  .hero-content { justify-content: flex-start; width: 100%; min-height: 720px; padding-top: 72px; }
  .hero-caption { color: var(--white); }
  .brand-rail { justify-content: flex-start; overflow-x: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-section, .request-section, .proof-section { grid-template-columns: 1fr; }
  .process-section, .request-section { gap: 60px; }
  .proof-section { gap: 36px; }
  .catalog-hero { grid-template-columns: 1fr; }
  .catalog-hero > .eyebrow { grid-column: auto; margin-bottom: -10px; }
  .catalog-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .catalog-help { grid-template-columns: 1fr; align-items: start; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .utility-bar { padding-right: 14px; padding-left: 14px; }
  .site-header { padding-right: 14px; padding-left: 14px; }
  .logo strong { font-size: 1.3rem; }
  .header-cta { min-height: 34px; padding: 0 10px; font-size: .68rem; }
  .nav { gap: 22px; }
  .nav a { font-size: .68rem; }
  .hero, .section, .process-section, .request-section, .proof-section, .final-cta,
  .catalog-hero, .catalog-layout, .catalog-help, .footer, .brand-rail { width: calc(100% - 28px); }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.8rem; }
  .hero { min-height: 660px; }
  .hero-content { min-height: 660px; padding: 48px 18px 120px; }
  .hero-text { max-width: 94%; font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-index { top: auto; right: 18px; bottom: 88px; }
  .hero-caption { right: 18px; bottom: 18px; }
  .brand-rail { padding: 18px 0; }
  .section { padding: 76px 0; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .product-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 1px; }
  .product-card { min-height: 470px; grid-template-rows: auto 105px 115px auto; }
  .product-card .product-info, .product-meta { padding-right: 9px; padding-left: 9px; }
  .product-card h3 { font-size: .82rem; }
  .product-actions { grid-template-columns: 1fr auto; padding: 11px 9px; }
  .product-actions > a:first-child { font-size: .68rem; }
  .size-list { max-height: 58px; }
  .size-pill { min-width: 31px; padding: 4px; font-size: .62rem; }
  .process-section, .request-section { padding: 76px 18px; }
  .process-intro h2, .request-copy h2 { font-size: 2.7rem; }
  .steps article { grid-template-columns: 40px 1fr; }
  .steps article p { grid-column: 2; }
  .request-form { grid-template-columns: 1fr; }
  .request-form .wide { grid-column: 1; }
  .proof-section { padding: 76px 0; }
  .faq-list summary { font-size: 1rem; }
  .final-cta { padding: 70px 18px; }
  .final-cta h2 { font-size: 3rem; }
  .final-cta::after { font-size: 12rem; }
  .footer { grid-template-columns: 1fr; gap: 22px; }
  .footer > div { justify-content: space-between; }
  .catalog-hero { padding: 58px 0 48px; }
  .catalog-hero h1 { font-size: 3.35rem; }
  .catalog-layout { display: block; padding-top: 0; background: transparent; }
  .catalog-filter-panel { position: sticky; top: 105px; z-index: 20; margin: 0 -14px 22px; padding: 0 14px; background: rgba(242,242,237,.97); backdrop-filter: blur(12px); }
  .catalog-filter-panel summary { grid-template-columns: 1fr auto auto; padding: 14px 0; }
  .catalog-filter-panel summary i { display: block; font-size: 1rem; }
  .catalog-filter-panel[open] summary i { transform: rotate(45deg); }
  .catalog-controls { max-height: calc(100vh - 178px); margin: 0; overflow-y: auto; padding: 18px 0 24px; }
  .catalog-filter-panel:not([open]) .catalog-controls { display: none; }
  .catalog-results { padding-left: 0; }
  .catalog-help { margin-bottom: 76px; padding: 58px 18px; }
  .catalog-help h2 { font-size: 2.65rem; }
}

@media (max-width: 390px) {
  h1 { font-size: 3rem; }
  .product-grid, .catalog-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 590px; }
  .catalog-hero h1 { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
