/* Shrusti unified Products page */
.products-breadcrumb {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(243,240,232,.94);
}
.products-breadcrumb .shell {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #73786f;
  font-size: .78rem;
  font-weight: 700;
}
.products-breadcrumb a:hover { color: var(--ink); }

.products-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 168px);
  padding: clamp(72px, 8vw, 128px) 0 clamp(88px, 9vw, 140px);
  background:
    linear-gradient(rgba(21,22,19,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,22,19,.045) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}
.products-hero::after {
  content: "";
  position: absolute;
  width: min(52vw, 740px);
  aspect-ratio: 1;
  right: -18%;
  top: -40%;
  border: 1px solid rgba(21,22,19,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 82px rgba(21,22,19,.025), 0 0 0 164px rgba(21,22,19,.018);
  pointer-events: none;
}
.products-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}
.products-hero-copy h1 {
  max-width: 9.4ch;
  margin: 0 0 34px;
  font-size: clamp(4.2rem, 7.2vw, 7.6rem);
}
.products-hero-copy .lead {
  max-width: 590px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.products-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.products-hero-proof div { padding: 22px 20px 22px 0; }
.products-hero-proof div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.products-hero-proof strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; letter-spacing: -.05em; }
.products-hero-proof span { display: block; margin-top: 7px; color: var(--muted); font-size: .75rem; line-height: 1.3; }

.products-hero-visual {
  position: relative;
  padding: 26px 26px 100px;
  border-radius: var(--radius-lg);
  background: #ddd8cd;
  box-shadow: var(--shadow);
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: 1.32fr .82fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 560px;
}
.hero-visual-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21,22,19,.22);
  border-radius: 18px;
  background: var(--white);
}
.hero-visual-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.products-hero-visual:hover img { transform: scale(1.025); }
.hero-visual-main { grid-row: 1 / 3; }
.hero-visual-shop { background: var(--yellow) !important; }
.hero-visual-shop img { object-fit: contain; padding: 8px; }
.hero-visual-engineered { background: var(--ink) !important; }
.hero-visual-engineered img { object-fit: cover; opacity: .92; }
.hero-visual-grid figcaption,
.hero-visual-grid figure > span {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(243,240,232,.93);
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(12px);
}
.hero-visual-grid figure > span b { font-size: .66rem; }
.hero-visual-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--ink-2);
  color: var(--white);
}
.hero-visual-note > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 850;
}
.hero-visual-note p { margin: 0; color: var(--white); }
.hero-visual-note strong, .hero-visual-note small { display: block; }
.hero-visual-note strong { font-size: .88rem; }
.hero-visual-note small { margin-top: 2px; color: rgba(255,255,255,.58); font-size: .72rem; }

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 82px);
}
.section-heading h2 { max-width: 12ch; margin-bottom: 0; }
.section-heading > p { max-width: 590px; margin-bottom: 6px; font-size: 1.05rem; }

.portfolio-pathways { background: var(--white); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.pathway-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pathway-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pathway-card figure { height: 270px; margin: 0; overflow: hidden; background: #e8e4db; }
.pathway-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.pathway-card:hover img { transform: scale(1.035); }
.pathway-card > div { flex: 1; display: flex; flex-direction: column; padding: 34px; }
.pathway-card > div > p:first-child { margin: 0 0 16px; color: var(--ink); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pathway-card h3 { margin: 0 0 20px; font-size: clamp(1.75rem, 2.4vw, 2.55rem); line-height: 1.04; }
.pathway-card h3 + p { min-height: 112px; }
.pathway-card ul { display: grid; gap: 9px; margin: 10px 0 30px; padding: 0; list-style: none; color: var(--muted); font-size: .85rem; }
.pathway-card li { position: relative; padding-left: 20px; }
.pathway-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.pathway-card .button { margin-top: auto; align-self: flex-start; }
.pathway-shop { background: #f7f4ec; }
.pathway-racking { background: #e7e2d7; }
.pathway-engineered { background: var(--ink-2); color: var(--white); }
.pathway-engineered p, .pathway-engineered li { color: rgba(255,255,255,.66); }
.pathway-engineered > div > p:first-child { color: var(--yellow); }

.range-explorer {
  background:
    linear-gradient(rgba(21,22,19,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,22,19,.04) 1px, transparent 1px),
    var(--paper);
  background-size: 58px 58px;
}
.range-card-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 22px; }
.range-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  isolation: isolate;
}
.range-card:nth-child(1), .range-card:nth-child(2) { grid-column: span 6; min-height: 500px; }
.range-card:nth-child(6), .range-card:nth-child(7), .range-card:nth-child(8), .range-card:nth-child(9) { grid-column: span 6; }
.range-card-filter { position: absolute; inset: 0; z-index: 3; border: 0; background: transparent; cursor: pointer; }
.range-card figure { position: absolute; inset: 0 0 43%; margin: 0; overflow: hidden; background: #e9e5dc; }
.range-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), filter .45s var(--ease); }
.range-card:hover img { transform: scale(1.045); }
.range-card-top { position: absolute; z-index: 2; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; align-items: center; pointer-events: none; }
.range-card-top span, .range-card-top small { padding: 7px 9px; border-radius: 8px; background: rgba(243,240,232,.92); color: var(--ink); font-size: .64rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(9px); }
.range-card-top span { background: var(--yellow); }
.range-card-copy { position: absolute; z-index: 2; inset: 57% 0 0; padding: 24px; background: var(--white); pointer-events: none; }
.range-card-copy > p:first-child { margin: 0 0 8px; color: #8a8e85; font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.range-card-copy h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 1.8vw, 2rem); }
.range-card-copy h3 + p { display: -webkit-box; margin-bottom: 18px; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .83rem; line-height: 1.48; }
.range-card-copy > div { display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: .74rem; font-weight: 780; }
.range-card-copy > div span { display: inline-flex; align-items: center; gap: 6px; }
.range-card-copy a { position: relative; z-index: 4; pointer-events: auto; border-bottom: 1px solid currentColor; }
.custom-path-card {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink-2);
}
.custom-path-card h3 { margin-bottom: 8px; font-size: 2rem; }
.custom-path-card p { margin-bottom: 0; color: rgba(255,255,255,.65); }
.custom-path-card > div:nth-child(2) { min-width: 110px; padding: 4px 24px; border-left: 1px solid var(--line-light); }
.custom-path-card > div:nth-child(2) strong, .custom-path-card > div:nth-child(2) span { display: block; }
.custom-path-card > div:nth-child(2) strong { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--yellow); }
.custom-path-card > div:nth-child(2) span { margin-top: 6px; color: rgba(255,255,255,.56); font-size: .7rem; }

.all-products { padding-top: clamp(92px, 8vw, 130px); background: #e8e4db; }
.catalogue-heading { margin-bottom: 42px !important; }
.catalogue-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto minmax(190px, auto);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(243,240,232,.96);
  box-shadow: 0 16px 40px rgba(21,22,19,.08);
  backdrop-filter: blur(16px);
}
.catalogue-search { min-height: 58px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.catalogue-search .icon { color: #74786f; }
.catalogue-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.catalogue-filter-button {
  min-width: 132px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  font-weight: 780;
}
.catalogue-filter-button span { min-width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-2); font-size: .7rem; }
.catalogue-sort { min-height: 58px; display: flex; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.catalogue-sort span { color: #81867d; font-size: .66rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.catalogue-sort select { min-width: 145px; border: 0; background: transparent; font-weight: 750; outline: 0; }
.active-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.active-filter-row button { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .72rem; font-weight: 740; }
.active-filter-row button:hover { border-color: var(--ink); }
.catalogue-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 26px; margin-top: 24px; }
.catalogue-filters {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 100px);
  overflow: auto;
  max-height: calc(100vh - var(--header-height) - 120px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(243,240,232,.84);
}
.filter-panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 22px 20px; border-bottom: 1px solid var(--line); }
.filter-panel-head small, .filter-panel-head strong { display: block; }
.filter-panel-head small { margin-bottom: 4px; color: #7b8077; font-size: .65rem; font-weight: 850; letter-spacing: .08em; }
.filter-panel-head strong { font-size: .9rem; }
.filter-panel-head button { display: none; border: 0; background: none; }
.catalogue-filters fieldset { margin: 0; padding: 20px; border: 0; border-bottom: 1px solid var(--line); }
.catalogue-filters legend { margin-bottom: 12px; color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.catalogue-filters label { display: grid; grid-template-columns: 20px minmax(0,1fr) auto; gap: 10px; align-items: start; padding: 7px 0; color: #575c54; font-size: .78rem; cursor: pointer; }
.catalogue-filters input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--yellow); }
.catalogue-filters label small { color: #989c94; font-size: .66rem; }
.clear-filters, .apply-filters { margin: 18px 20px; width: calc(100% - 40px); }
.apply-filters { display: none; }
.catalogue-status { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 54px; margin-bottom: 14px; }
.catalogue-status p { margin: 0; font-size: .76rem; }
.catalogue-status p:first-child { color: var(--ink); }
.catalogue-status strong { font-size: 1rem; }
.unified-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.unified-product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(21,22,19,.13);
  border-radius: 18px;
  background: var(--paper);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.unified-product-card:hover { transform: translateY(-5px); border-color: rgba(21,22,19,.35); box-shadow: 0 22px 46px rgba(21,22,19,.11); }
.unified-product-card[hidden] { display: none !important; }
.product-card-media { position: relative; height: 236px; overflow: hidden; background: #ded9cf; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.unified-product-card:hover .product-card-media img { transform: scale(1.035); }
.route-badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: .62rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.route-shop .route-badge { background: var(--yellow); color: var(--ink); }
.route-racking .route-badge { background: #1b4e74; }
.route-engineered .route-badge { background: var(--ink); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 22px; }
.product-card-meta { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.product-card-meta span { color: var(--ink); font-size: .63rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.product-card-meta small { max-width: 47%; text-align: right; color: #8a8e85; font-size: .61rem; line-height: 1.25; }
.catalogue-model { margin: 0 0 6px; color: #777c73; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; font-weight: 750; }
.product-card-body h3 { min-height: 2.05em; margin: 0 0 12px; font-size: clamp(1.28rem, 1.45vw, 1.65rem); line-height: 1.03; }
.product-card-description { min-height: 7.1em; display: -webkit-box; overflow: hidden; margin-bottom: 18px; -webkit-line-clamp: 5; -webkit-box-orient: vertical; font-size: .78rem; line-height: 1.52; }
.product-card-specs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: auto 0 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-card-specs div { min-width: 0; padding: 13px 10px 13px 0; }
.product-card-specs div + div { padding-left: 10px; border-left: 1px solid var(--line); }
.product-card-specs dt { margin-bottom: 4px; color: #8b8f87; font-size: .56rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.product-card-specs dd { margin: 0; overflow-wrap: anywhere; color: var(--ink); font-size: .68rem; font-weight: 750; line-height: 1.25; }
.product-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-card-actions .button { min-width: 0; padding: 0 12px; font-size: .74rem; }
.catalogue-empty { padding: 80px 30px; border: 1px dashed rgba(21,22,19,.28); border-radius: 18px; text-align: center; background: rgba(243,240,232,.72); }
.catalogue-empty > span { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--yellow); font-size: 1.2rem; font-weight: 850; }
.catalogue-empty h3 { margin-bottom: 10px; }
.catalogue-empty p { max-width: 520px; margin: 0 auto 24px; }
.catalogue-empty div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.catalogue-pagination { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 32px; }
.catalogue-pagination button { min-width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); font-weight: 750; }
.catalogue-pagination button:hover, .catalogue-pagination button.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.catalogue-pagination button:disabled { opacity: .35; cursor: not-allowed; }

.product-guidance { background: var(--ink-2); color: var(--white); }
.guidance-grid { display: grid; grid-template-columns: .76fr 1fr .8fr; gap: 24px; align-items: start; }
.guidance-intro { padding-right: 32px; }
.guidance-intro h2 { max-width: 8ch; }
.guidance-intro > p:not(.eyebrow) { color: rgba(255,255,255,.63); }
.guidance-inputs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.guidance-inputs span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.19); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .68rem; }
.guidance-selector { display: grid; gap: 8px; }
.guidance-selector button { display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; padding: 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; text-align: left; background: rgba(255,255,255,.04); color: var(--white); transition: background .2s var(--ease), border .2s var(--ease), transform .2s var(--ease); }
.guidance-selector button:hover { transform: translateX(4px); border-color: rgba(255,196,0,.66); }
.guidance-selector button.is-selected { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.guidance-selector button span { grid-row: 1 / 3; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: .68rem; font-weight: 850; }
.guidance-selector button.is-selected span { background: var(--ink); color: var(--white); }
.guidance-selector strong { font-size: .85rem; }
.guidance-selector small { margin-top: 3px; color: rgba(255,255,255,.56); font-size: .67rem; }
.guidance-selector button.is-selected small { color: rgba(21,22,19,.65); }
.guidance-recommendation { min-height: 420px; padding: 30px; border-radius: 18px; background: var(--yellow); color: var(--ink); }
.guidance-recommendation > p:first-child { margin: 0 0 30px; color: var(--ink); font-size: .66rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.guidance-recommendation h3 { margin-bottom: 14px; font-size: 2rem; }
.guidance-recommendation h3 + p { min-height: 80px; color: rgba(21,22,19,.7); }
.guidance-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 30px; }
.guidance-tags span { padding: 7px 9px; border: 1px solid rgba(21,22,19,.26); border-radius: 999px; font-size: .65rem; font-weight: 750; }
.guidance-recommendation .button { background: var(--ink); color: var(--white); box-shadow: none; }
.guidance-recommendation .button:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.products-assurance { background: var(--white); }
.assurance-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.assurance-grid article { padding: 38px; background: var(--paper); }
.assurance-grid span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 50%; background: var(--yellow); font-size: .72rem; font-weight: 850; }
.assurance-grid h3 { margin-bottom: 16px; font-size: 2rem; }
.assurance-grid p { margin-bottom: 0; }
.delivery-line { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; align-items: center; gap: 14px; margin-top: 56px; }
.delivery-line > div { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.delivery-line b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--yellow); font-size: .65rem; }
.delivery-line span { font-size: .72rem; font-weight: 800; }
.delivery-line i { height: 1px; background: var(--line); }

.products-quote { background: var(--ink); color: var(--white); }
.products-quote-grid { display: grid; grid-template-columns: minmax(0,.72fr) minmax(560px,1fr); gap: clamp(54px,7vw,110px); }
.products-quote-copy { padding-top: 14px; }
.products-quote-copy h2 { max-width: 8.5ch; }
.products-quote-copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.64); font-size: 1.05rem; }
.quote-contact { display: grid; gap: 10px; margin-top: 42px; }
.quote-contact a { display: flex; align-items: center; gap: 14px; width: max-content; color: var(--white); }
.quote-contact .icon { width: 22px; height: 22px; color: var(--yellow); }
.quote-contact small, .quote-contact strong { display: block; }
.quote-contact small { color: rgba(255,255,255,.48); font-size: .62rem; text-transform: uppercase; letter-spacing: .07em; }
.quote-contact strong { font-size: .9rem; }
.products-quote-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding: clamp(26px,4vw,48px); border-radius: 22px; background: var(--paper); color: var(--ink); }
.form-field { display: grid; gap: 7px; }
.form-field.full, .products-quote-form .full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: .72rem; font-weight: 780; }
.form-field label span { color: #a43b20; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--ink); outline: 0; }
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255,196,0,.3); }
.form-field [aria-invalid="true"] { border-color: #b42318; }
.file-field label { min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px dashed rgba(21,22,19,.34); border-radius: 8px; background: rgba(255,255,255,.55); cursor: pointer; }
.file-field input { min-height: auto; padding: 8px 0 0; border: 0; background: transparent; }
.selected-product-field output { display: block; padding: 12px 14px; border-left: 4px solid var(--yellow); background: rgba(255,196,0,.12); font-weight: 750; }
.form-status { min-height: 22px; margin: 0; color: #575c54; font-size: .74rem; }

.site-footer button { padding: 0; border: 0; background: transparent; text-align: left; color: rgba(255,255,255,.64); cursor: pointer; font: inherit; }
.site-footer button:hover { color: var(--yellow); }
.mobile-products-bar { display: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1240px) {
  .products-hero-grid { grid-template-columns: minmax(0,.9fr) minmax(490px,1.1fr); gap: 42px; }
  .hero-visual-grid { min-height: 500px; }
  .pathway-card > div { padding: 27px; }
  .unified-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guidance-grid { grid-template-columns: .72fr 1fr; }
  .guidance-recommendation { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: 1fr auto; align-items: center; column-gap: 32px; }
  .guidance-recommendation > p:first-child, .guidance-recommendation h3, .guidance-recommendation h3 + p { grid-column: 1; }
  .guidance-tags { grid-column: 1; }
  .guidance-recommendation .button { grid-column: 2; grid-row: 1 / 6; }
}

@media (max-width: 1100px) {
  .products-hero { min-height: auto; }
  .products-hero-grid { grid-template-columns: 1fr; }
  .products-hero-copy h1 { max-width: 10ch; }
  .products-hero-visual { max-width: 820px; width: 100%; justify-self: center; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 0; display: grid; grid-template-columns: .42fr .58fr; }
  .pathway-card figure { height: 100%; min-height: 440px; }
  .pathway-card h3 + p { min-height: 0; }
  .range-card { grid-column: span 6 !important; }
  .custom-path-card { grid-template-columns: 1fr auto; }
  .custom-path-card > .button { grid-row: 2; }
  .catalogue-toolbar { top: 14px; }
  .catalogue-filter-button { display: flex; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .catalogue-filters {
    position: fixed;
    z-index: 1500;
    inset: 0 0 0 auto;
    width: min(440px, 92vw);
    max-height: none;
    border-radius: 0;
    background: var(--paper);
    transform: translateX(105%);
    transition: transform .28s var(--ease);
    box-shadow: -20px 0 60px rgba(21,22,19,.22);
  }
  .catalogue-filters.is-open { transform: none; }
  .filter-panel-head { position: sticky; top: 0; z-index: 2; background: var(--paper); }
  .filter-panel-head button { display: grid; place-items: center; }
  .apply-filters { display: inline-flex; }
  body.filters-open { overflow: hidden; }
  body.filters-open::after { content:""; position: fixed; z-index: 1400; inset: 0; background: rgba(11,12,10,.55); backdrop-filter: blur(3px); }
  .products-quote-grid { grid-template-columns: 1fr; }
  .products-quote-copy h2 { max-width: 10ch; }
}

@media (max-width: 820px) {
  .products-hero { padding-top: 62px; }
  .products-hero-copy h1 { font-size: clamp(3.65rem, 15vw, 6rem); }
  .products-hero-proof { grid-template-columns: 1fr; }
  .products-hero-proof div { padding: 16px 0; }
  .products-hero-proof div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero-visual-grid { min-height: 460px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 20px; }
  .section-heading h2 { max-width: 10ch; }
  .pathway-card { display: flex; }
  .pathway-card figure { height: 260px; min-height: 0; }
  .range-card { grid-column: span 12 !important; min-height: 460px !important; }
  .custom-path-card { grid-template-columns: 1fr; }
  .custom-path-card > div:nth-child(2) { border-left: 0; border-top: 1px solid var(--line-light); padding: 20px 0 0; }
  .custom-path-card > .button { grid-row: auto; width: 100%; }
  .catalogue-toolbar { grid-template-columns: 1fr auto; }
  .catalogue-sort { grid-column: 1 / -1; }
  .catalogue-sort select { flex: 1; }
  .catalogue-status { align-items: flex-start; flex-direction: column; gap: 4px; }
  .unified-product-grid { grid-template-columns: 1fr; }
  .product-card-media { height: 270px; }
  .product-card-description { min-height: auto; }
  .guidance-grid { grid-template-columns: 1fr; }
  .guidance-intro { padding-right: 0; }
  .guidance-intro h2 { max-width: 10ch; }
  .guidance-recommendation { display: block; }
  .assurance-grid { grid-template-columns: 1fr; }
  .delivery-line { grid-template-columns: 1fr; gap: 10px; }
  .delivery-line i { width: 1px; height: 26px; margin-left: 17px; }
  .products-quote-form { grid-template-columns: 1fr; }
  .mobile-products-bar {
    position: fixed;
    z-index: 1100;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    min-height: 60px;
    padding: 6px;
    border-radius: 16px;
    background: var(--ink);
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
  }
  .mobile-products-bar > * { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border: 0; border-radius: 11px; background: transparent; color: var(--white); font-size: .62rem; font-weight: 760; }
  .mobile-products-bar > *:last-child { background: var(--yellow); color: var(--ink); }
  .mobile-products-bar .icon { font-size: 1.2rem; }
  body { padding-bottom: 84px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .products-breadcrumb .shell { font-size: .72rem; }
  .products-hero-copy h1 { font-size: clamp(3.15rem, 16vw, 4.7rem); }
  .products-hero-copy .lead { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .products-hero-visual { padding: 14px 14px 88px; border-radius: 20px; }
  .hero-visual-grid { min-height: 380px; grid-template-columns: 1.18fr .82fr; gap: 7px; }
  .hero-visual-grid figure { border-radius: 11px; }
  .hero-visual-grid figure > span { inset: auto 7px 7px; padding: 7px; font-size: .52rem; }
  .hero-visual-note { left: 14px; right: 14px; bottom: 14px; min-height: 58px; }
  .pathway-card > div { padding: 24px; }
  .pathway-card h3 { font-size: 2rem; }
  .range-card { min-height: 430px !important; }
  .range-card-copy { padding: 21px; }
  .range-card-copy > div { align-items: flex-start; flex-direction: column; }
  .custom-path-card { padding: 25px; }
  .catalogue-toolbar { top: 8px; grid-template-columns: 1fr 52px; padding: 8px; }
  .catalogue-search { min-height: 52px; padding: 0 12px; }
  .catalogue-filter-button { min-width: 52px; width: 52px; font-size: 0; }
  .catalogue-filter-button span { position: absolute; transform: translate(14px,-14px); font-size: .62rem; }
  .catalogue-sort { min-height: 50px; }
  .product-card-media { height: 235px; }
  .product-card-body { padding: 19px; }
  .product-card-specs { grid-template-columns: 1fr; }
  .product-card-specs div { padding: 10px 0; }
  .product-card-specs div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .product-card-actions { grid-template-columns: 1fr; }
  .guidance-recommendation { padding: 24px; }
  .assurance-grid article { padding: 28px; }
  .assurance-grid span { margin-bottom: 28px; }
  .products-quote-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .products-hero-visual img, .pathway-card img, .range-card img, .product-card-media img { transition: none; }
}

html, body { overflow-x: clip; }
