:root {
  color-scheme: light dark;
  --font-display: "Geist", "Avenir Next", "Helvetica Neue", "Noto Sans", "Segoe UI", sans-serif;
  --font-body: "Geist", "Avenir Next", "Helvetica Neue", "Noto Sans", "Segoe UI", sans-serif;
  --font-data: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --brand: #10251f;
  --brand-raised: #18362d;
  --text: #14261f;
  --ink: var(--text);
  --green: #17624f;
  --accent: #c94f24;
  --accent-strong: #9f3714;
  --on-accent: #fffaf7;
  --paper: #f3f7f5;
  --cream: #eaf0ed;
  --surface: #fbfdfc;
  --image-surface: #f5f6f2;
  --line: #cbd8d2;
  --line-strong: #9eb2a9;
  --muted: #596b64;
  --red: #a62920;
  --success: #17785f;
  --warning: #8a5a08;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgb(16 37 31 / 8%);
  --shadow-md: 0 14px 34px rgb(16 37 31 / 12%);
  --shadow-lg: 0 28px 72px rgb(16 37 31 / 18%);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --header-height: 78px;
  --content-max: 1440px;
  --layer-base: 0;
  --layer-sticky: 40;
  --layer-float: 80;
  --layer-modal: 120;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--on-accent); background: var(--accent); }
main { overflow: clip; }
a { color: inherit; text-decoration: none; }
a, button, summary, input, select, textarea { touch-action: manipulation; }
button, input, select, textarea { font: inherit; }
button, summary, select { cursor: pointer; }
img, video { max-width: 100%; }

h1, h2, h3, h4 {
  margin-block: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.03em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

:where(h1, h2, h3, section, article)[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 14px;
  z-index: calc(var(--layer-modal) + 1);
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  color: var(--on-accent);
  background: var(--accent);
  font-weight: 750;
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0;
  color: var(--green);
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--on-accent);
  background: var(--accent);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 18%) inset, var(--shadow-sm);
  font-weight: 760;
  line-height: 1.2;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:hover { border-color: var(--accent-strong); background: var(--accent-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { cursor: not-allowed; opacity: .48; transform: none; }
.button.secondary { border-color: var(--line-strong); color: var(--text); background: var(--surface); box-shadow: none; }
.button.secondary:hover { border-color: var(--text); color: var(--surface); background: var(--text); }

.text-link {
  color: var(--green);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--green) 32%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover { text-decoration-color: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--layer-sticky);
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  padding: 0 max(22px, calc((100vw - var(--content-max)) / 2));
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.brand { display: inline-flex; min-width: 0; min-height: 44px; align-items: center; gap: 11px; }

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #edf6f2;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 16%) inset;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-name em { color: var(--accent); font-style: normal; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 32px); }

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-nav { display: none; }

.cart-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 6px 7px 6px 14px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: #eef6f2;
  background: var(--brand);
  font-size: 13px;
  font-weight: 750;
}

.cart-link strong {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: #eef6f2;
  font-family: var(--font-data);
  font-size: 11px;
}

.hero {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
  padding: clamp(40px, 4vw, 64px) max(22px, calc((100vw - var(--content-max)) / 2));
  background: var(--paper);
}

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

.hero h1, .page-hero h1 {
  max-width: 19ch;
  margin: 14px 0 24px;
  font-size: clamp(48px, 5.2vw, 76px);
  letter-spacing: -.045em;
}

.hero-copy > p:not(.eyebrow), .page-hero > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.hero-media {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  background: var(--image-surface);
  box-shadow: 18px 18px 0 color-mix(in srgb, var(--green) 14%, transparent);
}

.hero-media::before { position: absolute; top: -1px; right: -1px; width: 84px; height: 7px; background: var(--accent); content: ""; }
.hero-media > img { display: block; width: 100%; height: clamp(320px, 55vh, 520px); padding: clamp(18px, 3vw, 44px); object-fit: contain; }
.hero-video-shell { position: relative; min-height: 0; overflow: hidden; background: var(--brand); }
.hero-video-shell video { display: block; width: 100%; height: clamp(320px, 55vh, 520px); object-fit: cover; }
.hero-video-shell::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgb(5 22 17 / 48%)); content: ""; pointer-events: none; }
.hero-video-control { flex: 0 0 auto; min-height: 40px; margin-left: 8px; padding: 8px 14px; border: 1px solid var(--brand); border-radius: 999px; color: #fff; background: var(--brand); font-size: 11px; font-weight: 760; letter-spacing: 0; text-transform: none; white-space: nowrap; }
.hero-video-control:hover { border-color: var(--accent); background: var(--accent-deep); }
.hero-docket { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid var(--line); background: var(--surface); }
.hero-docket-four { grid-template-columns: repeat(4, 1fr); }
.hero-docket div { min-width: 0; padding: 16px; border-right: 1px solid var(--line); }
.hero-docket div:last-child { border-right: 0; }
.hero-docket dt { color: var(--muted); font-family: var(--font-data); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.hero-docket dd { margin: 4px 0 0; font-size: 13px; font-weight: 760; }

.section, .product-page { padding: clamp(68px, 8vw, 120px) max(22px, calc((100vw - var(--content-max)) / 2)); }
.product-page { padding-top: clamp(42px, 5vw, 76px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px; margin-bottom: 40px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .section > h2, .related h2 { margin: 6px 0 0; font-size: clamp(36px, 4.8vw, 62px); }
.section-lead { display: grid; gap: 16px; max-width: 900px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-lead h2 { max-width: 18ch; font-size: clamp(36px, 4.4vw, 60px); }
.section-lead p { max-width: 680px; margin: 0; color: var(--muted); font-size: 17px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); }
.product-card { min-width: 0; border-bottom: 1px solid var(--line); background: transparent; }
.product-card > a { display: block; overflow: hidden; border: 1px solid var(--line); background: var(--image-surface); }
.product-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; transition: transform 320ms var(--ease-out); }
.product-card.is-color-loading img, .product-layout.is-color-loading [data-gallery-main] { opacity: .62; }
.product-card:hover img { transform: scale(1.025); }
.product-card-copy { display: grid; min-height: 154px; padding: 17px 2px 19px; }
.product-card p, .sku, .stock, .result-count { margin: 0; color: var(--muted); font-size: 12px; }
.product-card h3 { margin: 7px 0 13px; font-size: 17px; line-height: 1.26; letter-spacing: -.018em; }
.product-card h3 a:hover { color: var(--accent); }
.product-card-meta { display: grid; grid-template-columns: minmax(0, 1fr); gap: 5px; margin-top: auto; padding-top: 3px; }
.product-card-meta span { color: var(--muted); font-family: var(--font-data); font-size: 10px; }
.product-card strong, .product-card-meta strong { font-family: var(--font-data); font-size: 14px; font-variant-numeric: tabular-nums; }
.unit-price { display: inline-flex; align-items: baseline; justify-content: flex-end; gap: 5px; white-space: nowrap; }
.unit-price small { color: var(--muted); font-family: var(--font-body); font-size: 10px; font-weight: 650; letter-spacing: 0; }
.product-card-meta .unit-price { justify-content: flex-start; color: var(--accent); font-size: 17px; font-weight: 850; line-height: 1.25; }
.product-card-meta .unit-price::before { color: var(--muted); content: "Unit price"; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.product-card-meta .unit-price > span { color: var(--accent); font-size: inherit; font-weight: inherit; }
.product-card-meta .unit-price small { font-size: 11px; }
.product-card > p { padding-top: 14px; }
.product-card > h3 { min-height: 48px; margin: 5px 0 10px; }
.product-card > strong { display: block; padding-bottom: 17px; }
.product-color-picker { display: grid; gap: 8px; margin: 24px 0 2px; }
.color-picker-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 12px; }
.color-picker-heading strong { color: var(--text); font-family: var(--font-body); font-size: 12px; font-weight: 750; }
.product-swatches { display: flex; flex-wrap: wrap; gap: 4px; }
.product-swatch { position: relative; display: grid; width: 44px; min-width: 44px; min-height: 44px; place-items: center; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; }
.swatch-chip { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid rgb(16 37 31 / 24%); border-radius: 50%; background: var(--swatch-color); box-shadow: 0 0 0 2px var(--surface) inset; }
.product-swatch:is(:hover, .is-selected) { border-color: var(--text); }
.product-swatch.is-selected .swatch-chip::after { display: grid; width: 15px; height: 15px; place-items: center; border-radius: 50%; color: #10251f; background: #fff; content: "✓"; font-size: 11px; font-weight: 900; line-height: 1; box-shadow: 0 1px 3px rgb(0 0 0 / 22%); }
.color-photo-note { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.color-photo-note.is-error { color: var(--accent-deep); }
.product-color-picker.is-compact { gap: 4px; margin: 5px 0 12px; }
.product-color-picker.is-compact .color-picker-heading { justify-content: flex-start; gap: 7px; }
.product-color-picker.is-compact .color-picker-heading > span::after { content: ":"; }
.product-color-picker.is-compact .product-swatches { flex-wrap: nowrap; gap: 2px; }
.product-color-picker.is-compact .product-swatch { width: clamp(26px, 2.05vw, 32px); min-width: 26px; min-height: 34px; flex: 0 0 clamp(26px, 2.05vw, 32px); }
.product-color-picker.is-compact .swatch-chip { width: 20px; height: 20px; }
.product-color-picker.is-compact .product-swatch.is-selected .swatch-chip::after { width: 13px; height: 13px; font-size: 9px; }
.product-color-picker.is-compact .color-photo-note { display: none; }
.card-add-button { display: inline-flex; width: 100%; min-height: 44px; align-items: center; justify-content: center; padding: 9px 13px; border: 1px solid var(--accent); border-radius: var(--radius-sm); color: var(--on-accent); background: var(--accent); font-size: 12px; font-weight: 800; }
.card-add-button:hover { border-color: var(--accent-strong); background: var(--accent-strong); }
.card-add-button.is-added, .button.is-added { border-color: var(--success); background: var(--success); }
.card-commerce-actions { display: grid; grid-template-columns: auto minmax(108px, 1fr); align-items: center; gap: 12px; margin-top: 14px; }
.card-commerce-actions .card-quote { margin-top: 0; }
.product-card-copy > .card-add-button { margin-top: 14px; }
.featured-section { padding-block: clamp(64px, 6vw, 88px); }
.featured-section .section-lead { max-width: 1180px; }
.featured-section .section-lead h2 { max-width: none; font-size: clamp(38px, 3vw, 46px); }
.featured-section .product-grid { grid-auto-flow: dense; }
.featured-section .product-card:first-child { grid-column: auto; grid-row: auto; }
.featured-section .product-card:first-child img { aspect-ratio: 1; }
.featured-section .product-card h3, .featured-section .product-card:first-child h3 { font-size: 15px; }

@media (min-width: 1101px) {
  .home-page .featured-section .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 26px 20px; }
}

.category-showcase { background: var(--surface); }
.category-showcase .section-heading > p { max-width: 560px; margin: 0; color: var(--muted); }
.category-media-grid { display: flex; min-height: 500px; gap: 8px; overflow: hidden; isolation: isolate; }
.category-media-grid a { position: relative; min-width: 0; flex: 1 1 0; overflow: hidden; border: 1px solid var(--line); background: var(--image-surface); transition: flex-grow 460ms var(--ease-out), border-color 180ms var(--ease-out); will-change: flex-grow; }
.category-media-grid:has(a:is(:hover, :focus-visible)) a { flex-grow: .55; }
.category-media-grid:has(a:is(:hover, :focus-visible)) a:is(:hover, :focus-visible) { z-index: 1; flex-grow: 4.8; border-color: var(--accent); }
.category-media-grid a:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
.category-media-grid img { display: block; width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center; transition: transform 520ms var(--ease-out), filter 240ms var(--ease-out); }
.category-media-grid a:is(:hover, :focus-visible) img { object-fit: contain; transform: none; }
.category-media-grid a > span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 5px; padding: 64px 18px 18px; color: #fff; background: linear-gradient(180deg, transparent, rgb(6 24 18 / 92%)); }
.category-media-grid strong { max-width: 19ch; font-size: 17px; line-height: 1.2; }
.category-media-grid small { color: #d2ded9; font-family: var(--font-data); font-size: 10px; }
.category-media-grid a:not(:hover):not(:focus-visible) strong { writing-mode: vertical-rl; transform: rotate(180deg); }
.category-media-grid:has(a:is(:hover, :focus-visible)) a:is(:hover, :focus-visible) strong { writing-mode: horizontal-tb; transform: none; }

.capability-section { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(44px, 7vw, 100px); color: #edf6f2; background: var(--brand); }
.capability-intro { position: sticky; top: calc(var(--header-height) + 36px); align-self: start; }
.capability-intro .eyebrow { color: #f2aa88; }
.capability-intro h2 { max-width: 12ch; margin: 12px 0 24px; font-size: clamp(38px, 5vw, 64px); }
.capability-intro > p:not(.eyebrow) { max-width: 540px; color: #b7c5c0; }
.capability-intro .button { margin-top: 18px; color: #edf6f2; border-color: #62766e; background: transparent; }
.capability-intro .button:hover { color: var(--brand); background: #edf6f2; }
.capability-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1px; border: 1px solid #40564e; background: #40564e; }
.capability-grid article { display: grid; min-height: 250px; grid-column: span 7; align-content: end; padding: clamp(24px, 3vw, 38px); background: var(--brand); }
.capability-grid article:nth-child(2), .capability-grid article:nth-child(3) { grid-column: span 5; }
.capability-grid h3 { max-width: 18ch; margin: 0 0 13px; font-size: clamp(23px, 2.2vw, 31px); }
.capability-grid p { color: #b7c5c0; }

.proof-section { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); align-items: center; gap: clamp(42px, 8vw, 110px); background: var(--cream); }
.proof-preview { max-width: 500px; padding: clamp(18px, 3vw, 34px); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-md); transform: rotate(-1.2deg); }
.proof-preview img { display: block; width: 100%; max-height: 580px; object-fit: contain; }
.proof-copy h2 { max-width: 12ch; margin: 12px 0 24px; font-size: clamp(40px, 5.2vw, 68px); }
.proof-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 18px; }
.proof-copy small { display: block; max-width: 640px; margin-top: 20px; color: var(--muted); }

.workflow-section { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(44px, 8vw, 120px); border-top: 1px solid var(--line); }
.workflow-intro { position: sticky; top: calc(var(--header-height) + 36px); }
.workflow-intro h2 { max-width: 11ch; font-size: clamp(40px, 5vw, 66px); }
.workflow-intro p { max-width: 460px; color: var(--muted); }
.workflow-stack { display: block; margin: 0; padding: 0; list-style: none; }
.workflow-stack li { position: sticky; top: calc(var(--header-height) + 28px); display: grid; min-height: 310px; align-content: end; margin-bottom: min(20vh, 180px); padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: var(--surface); box-shadow: 0 24px 52px rgb(16 37 31 / 12%); transform-origin: center top; }
.workflow-stack li:nth-child(1) { z-index: 1; }
.workflow-stack li:nth-child(2) { z-index: 2; }
.workflow-stack li:nth-child(3) { z-index: 3; }
.workflow-stack li:nth-child(4) { z-index: 4; margin-bottom: 0; }
.workflow-stack li > span { margin-bottom: auto; color: var(--accent); font-family: var(--font-data); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.workflow-stack li strong { display: block; max-width: 18ch; font-family: var(--font-display); font-size: clamp(25px, 3vw, 40px); line-height: 1.08; letter-spacing: -.025em; }
.workflow-stack li p { max-width: 570px; margin-bottom: 0; color: var(--muted); font-size: 15px; }

.category-hero { display: grid; min-height: 0; grid-template-columns: minmax(0, 1fr) clamp(480px, 44vw, 640px); align-items: stretch; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); }
.category-hero > div { display: grid; min-height: clamp(480px, 44vw, 640px); align-content: center; justify-items: start; padding: clamp(44px, 5vw, 72px) clamp(24px, 5vw, 76px); }
.category-hero h1 { max-width: 13ch; margin: 12px 0 18px; font-size: clamp(42px, 4.4vw, 66px); }
.category-hero p:not(.eyebrow) { max-width: 580px; color: var(--muted); font-size: 17px; }
.category-hero img { display: block; width: 100%; height: auto; min-height: 0; aspect-ratio: 1; object-fit: contain; background: #fff; }
.category-hero + .section { padding-top: clamp(28px, 2.5vw, 40px); }
.catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; border-bottom: 1px solid var(--line); }
.catalog-heading > p:last-child { max-width: 580px; color: var(--muted); text-align: right; }

.certificate-hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); gap: clamp(48px, 8vw, 120px); align-items: end; padding: clamp(76px, 9vw, 132px) max(22px, calc((100vw - var(--content-max)) / 2)); color: #edf6f2; background: var(--brand); }
.certificate-hero .eyebrow { color: #f2aa88; }
.certificate-hero h1 { max-width: 14ch; margin: 14px 0 24px; font-size: clamp(48px, 7vw, 84px); }
.certificate-hero > div > p:not(.eyebrow) { max-width: 720px; color: #b7c5c0; font-size: 18px; }
.certificate-hero dl { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid #40564e; border-left: 1px solid #40564e; }
.certificate-hero dl div { display: block; padding: 22px; border-right: 1px solid #40564e; border-bottom: 1px solid #40564e; }
.certificate-hero dt { color: #9eb0a9; font-family: var(--font-data); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.certificate-hero dd { margin-top: 7px; color: #edf6f2; font-size: 18px; font-weight: 760; }
.certificate-library .section-heading > p { max-width: 620px; margin: 0; color: var(--muted); }
.certificate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.certificate-grid article { display: grid; grid-template-columns: minmax(180px, .68fr) minmax(0, 1.32fr); border: 1px solid var(--line); background: var(--paper); }
.certificate-grid .certificate-featured { grid-column: 1 / -1; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); }
.certificate-image { display: grid; min-height: 100%; place-items: center; padding: 24px; border-right: 1px solid var(--line); background: var(--image-surface); }
.certificate-image img { display: block; width: 100%; max-height: 650px; object-fit: contain; box-shadow: var(--shadow-sm); }
.certificate-copy { padding: clamp(24px, 3vw, 38px); }
.certificate-copy h3 { margin: 10px 0 16px; font-size: clamp(24px, 2.7vw, 36px); }
.certificate-copy > p:not(.eyebrow), .certificate-note > p:last-child { color: var(--muted); }
.certificate-copy dl { font-size: 13px; }
.certificate-copy dl div { grid-template-columns: 118px minmax(0, 1fr); }
.certificate-note { max-width: 1180px; margin: 0 auto 80px; border: 1px solid var(--line); border-left: 6px solid var(--accent); background: var(--cream); }
.certificate-note h2 { max-width: 20ch; margin: 10px 0 18px; font-size: clamp(32px, 4vw, 50px); }

.category-band { color: #edf6f2; background: var(--brand); }
.category-band .eyebrow { color: #f2aa88; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 36px; background: #40564e; border: 1px solid #40564e; }
.category-grid a { display: grid; min-height: 132px; align-content: space-between; gap: 18px; padding: 23px; background: var(--brand); transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out); }
.category-grid a:first-child, .category-grid a:last-child { grid-column: span 2; }
.category-grid a:hover { color: var(--brand); background: #edf4f0; }
.category-grid strong { font-size: 17px; line-height: 1.25; }
.category-grid span { color: #aebdb7; font-family: var(--font-data); font-size: 11px; }
.category-grid a:hover span { color: #50635c; }

.site-footer { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(200px, .55fr); gap: 48px; padding: 64px max(22px, calc((100vw - var(--content-max)) / 2)) 32px; color: #edf6f2; background: var(--brand); }
.footer-brand { max-width: 650px; }
.footer-brand > strong { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); letter-spacing: -.03em; }
.footer-brand > p { color: #b7c5c0; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 10px 22px; }
.site-footer nav a { color: #cad7d2; }
.site-footer nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-contact-line { max-width: 640px; color: #b7c5c0; line-height: 1.7; }
.footer-contact-line a { display: inline; color: #edf6f2; text-decoration: underline; text-underline-offset: 4px; }
.footer-meta { display: flex; grid-column: 1 / -1; justify-content: space-between; gap: 20px; padding-top: 28px; border-top: 1px solid #40564e; color: #98aaa3; font-family: var(--font-data); font-size: 10px; letter-spacing: .04em; }

.breadcrumbs { display: flex; max-width: var(--content-max); flex-wrap: wrap; gap: 7px; margin: 0 0 34px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; }
.breadcrumbs a:hover { color: var(--text); text-decoration-color: currentColor; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); align-items: start; gap: clamp(42px, 6vw, 92px); }
.gallery { background: var(--image-surface); }
.gallery img { width: 100%; height: auto; object-fit: contain; }
.product-copy { position: sticky; top: calc(var(--header-height) + 28px); }
.product-copy h1 { max-width: 18ch; margin: 10px 0; font-size: clamp(38px, 4.1vw, 58px); }
.product-copy .sku { font-family: var(--font-data); letter-spacing: .04em; }
.price { display: flex; align-items: baseline; gap: 14px; margin: 24px 0; font-family: var(--font-data); font-size: 26px; font-variant-numeric: tabular-nums; }
.price .unit-price small { font-size: 13px; }
.price del { color: var(--muted); font-size: 14px; }
.product-copy > p:not(.eyebrow):not(.sku):not(.stock) { color: var(--muted); line-height: 1.75; }
.product-purchase-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.product-purchase-actions .button, .product-purchase-actions .product-contact-button { width: 100%; min-height: 50px; }
.stock { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 14px 0 0; }
.stock span { display: inline-flex; align-items: center; }
.stock span + span::before { width: 1px; height: 13px; margin-right: 16px; background: var(--line-strong); content: ""; }
.product-copy > .product-color-picker { padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
dl { margin: 28px 0; }
dl:not(.hero-docket) { border-top: 1px solid var(--line); }
dl:not(.hero-docket) div { display: grid; grid-template-columns: 130px minmax(0, 1fr); padding: 13px 0; border-bottom: 1px solid var(--line); }
dt { font-weight: 760; }
dd { min-width: 0; margin: 0; color: var(--muted); overflow-wrap: anywhere; }
.related { padding-right: 0; padding-left: 0; }

.page-hero { padding: clamp(72px, 9vw, 132px) max(22px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid var(--line); background: var(--paper); }
.page-hero h1 { max-width: 16ch; }
.landing-hero { background: var(--cream); }
.category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.category-pills a { min-height: 40px; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); font-size: 12px; font-weight: 700; }
.category-pills a:hover { border-color: var(--text); color: var(--text); background: var(--paper); }
.catalog-grid { row-gap: 42px; }
.result-count { margin-bottom: 20px; font-family: var(--font-data); }

.content-sections { max-width: 1080px; margin: auto; }
.content-sections article { padding: 52px 0; border-bottom: 1px solid var(--line); }
.content-sections article:first-child { padding-top: 0; }
.content-sections article > div { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: clamp(34px, 7vw, 90px); align-items: start; }
.content-sections h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); }
.content-sections p, .content-sections li { color: var(--muted); line-height: 1.75; }
.content-sections ul { margin: 20px 0 0; padding-left: 20px; }
.content-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 62px max(22px, calc((100vw - var(--content-max)) / 2)); color: #eef6f2; background: var(--brand-raised); }
.content-cta .eyebrow { color: #f2aa88; }
.content-cta h2 { max-width: 780px; margin: 7px 0 0; font-size: clamp(32px, 4.5vw, 58px); }

.article-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.article-grid article { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line); background: var(--paper); }
.article-grid article:nth-child(3n) { grid-column: 1 / -1; }
.article-grid h2 { margin: 15px 0; font-size: clamp(28px, 3vw, 40px); }
.article-grid p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.article-page { max-width: 940px; min-height: 65dvh; margin: auto; padding: clamp(78px, 9vw, 130px) 24px; }
.article-page header h1 { margin: 14px 0 22px; font-size: clamp(48px, 7vw, 76px); }
.article-page header > p:not(.eyebrow), .article-page article p, .article-page li { color: var(--muted); font-size: 18px; line-height: 1.8; }
.article-page article { margin-top: 66px; }
.article-page article section { margin-bottom: 52px; }
.article-page h2 { font-size: 34px; }

.commerce-page > h1, .checkout-form > h1 { margin: 10px 0 42px; font-size: clamp(44px, 6vw, 72px); }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(34px, 5vw, 66px); align-items: start; }
.cart-item { display: grid; grid-template-columns: 116px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 116px; height: 116px; object-fit: contain; background: var(--image-surface); }
.cart-item h2 { margin: 0; font-size: 20px; }
.cart-variant { margin: 4px 0 2px !important; color: var(--green) !important; font-size: 12px !important; font-weight: 760; }
.cart-item label { font-size: 13px; }
.cart-item input { width: 76px; min-height: 42px; margin-left: 8px; padding: 7px; }
.cart-item button { grid-column: 2; min-height: 34px; padding: 0; border: 0; color: var(--red); background: none; text-align: left; }
.summary-card { height: max-content; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 0 0 4px var(--surface) inset, var(--shadow-sm); }
.cart-layout .summary-card, .checkout-layout .summary-card { position: sticky; top: calc(var(--header-height) + 26px); }
.summary-card > p { display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.summary-card small { display: block; margin: 18px 0; color: var(--muted); line-height: 1.6; }
.summary-card .button { width: 100%; }
.empty-panel { padding: clamp(34px, 6vw, 62px); border: 1px solid var(--line); background: var(--paper); }
.checkout-form { max-width: 820px; }
.checkout-form > p:not(.eyebrow):not(.form-error) { max-width: 720px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label { display: grid; gap: 7px; min-width: 0; font-size: 14px; font-weight: 700; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid fieldset { padding: 22px; border: 1px solid var(--line); }
.form-grid legend { padding: 0 8px; font-weight: 760; }
.form-grid .checkbox { display: flex; min-height: 44px; align-items: center; gap: 10px; font-weight: 560; }
.form-grid input, .form-grid textarea, .form-grid select, .admin-panel select, .cart-item input { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--text); background: var(--surface); }
.form-grid input:hover, .form-grid textarea:hover, .form-grid select:hover { border-color: var(--text); }
.form-grid input[type="checkbox"], .form-grid input[type="radio"] { width: 19px; min-height: 19px; accent-color: var(--accent); }
.checkout-form .button { margin-top: 25px; }
.form-error { padding: 12px 14px; border-left: 4px solid var(--red); color: var(--red); background: color-mix(in srgb, var(--red) 9%, var(--surface)); }
.checkout-item { display: grid; grid-template-columns: 55px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 55px; height: 55px; object-fit: contain; background: var(--image-surface); }
.checkout-item span { display: grid; min-width: 0; }
.checkout-item small { margin: 4px 0; }
.cart-toast { position: fixed; right: 24px; bottom: 104px; z-index: var(--layer-float); display: grid; min-width: min(390px, calc(100vw - 32px)); grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 15px 16px; border: 1px solid #41675a; border-radius: var(--radius-md); color: #f6fbf9; background: #10251f; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out); }
.cart-toast.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cart-toast > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #10251f; background: #d9f5ea; font-weight: 900; }
.cart-toast p { display: grid; margin: 0; line-height: 1.3; }
.cart-toast small { color: #b9cbc4; }
.cart-toast a { min-height: 44px; padding: 11px 0 11px 12px; color: #fff; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
[data-cart-count].is-updated { animation: cart-count-pop 320ms var(--ease-out); }
@keyframes cart-count-pop { 50% { transform: scale(1.22); } }
.success-page { display: grid; min-height: 65dvh; max-width: 780px; align-content: center; justify-items: start; margin: auto; padding: 100px 24px; }
.success-page > span { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 50%; color: #fff; background: var(--success); font-size: 28px; }
.success-page h1 { margin: 14px 0 24px; font-size: clamp(44px, 7vw, 72px); }
.success-page p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }
.payment-panel { max-width: 760px; margin: 0 auto; }
.payment-provider-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.error-page { display: grid; min-height: 64dvh; max-width: 940px; align-content: center; justify-items: start; margin: auto; padding: 90px 24px; }
.error-page h1 { max-width: 14ch; margin: 14px 0 22px; font-size: clamp(44px, 7vw, 76px); }
.error-page > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 18px; }
.error-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 20px; }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { min-width: 0; padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-family: var(--font-data); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
td { overflow-wrap: anywhere; }
td small { display: block; margin-top: 4px; color: var(--muted); }
.table-wrap { max-width: 100%; overflow: auto; overscroll-behavior: contain; }

/* RescuePackGlobal navigation and home experience */
.brand-mark { width: 38px; height: 38px; padding: 0; border-radius: 10px; background: transparent; box-shadow: var(--shadow-sm); }
.brand-name { display: inline-flex; align-items: baseline; gap: 3px; font-size: 15px; }
.brand-name strong { font-weight: 850; }
.brand-name em { font-weight: 850; letter-spacing: .015em; }
.desktop-nav { gap: clamp(14px, 1.4vw, 24px); }
.desktop-nav > a, .nav-menu > summary { position: relative; display: inline-flex; min-height: 44px; align-items: center; padding: 12px 0; color: var(--muted); font-size: 13px; font-weight: 700; white-space: nowrap; }
.nav-menu { position: relative; }
.nav-menu > summary { gap: 7px; list-style: none; }
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu > summary::after { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; content: ""; transform: translateY(-2px) rotate(45deg); transition: transform 180ms var(--ease-out); }
.nav-menu[open] > summary::after { transform: translateY(2px) rotate(225deg); }
.nav-menu-panel { position: absolute; top: calc(100% - 2px); left: 50%; z-index: calc(var(--layer-sticky) + 1); display: none; width: 290px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-lg); transform: translateX(-50%); }
.nav-menu[open] > .nav-menu-panel, .nav-menu:hover > .nav-menu-panel { display: grid; }
.nav-products-panel { width: 560px; grid-template-columns: 1fr 1fr; gap: 2px 12px; }
.desktop-nav .nav-menu-panel a { display: flex; min-height: 44px; flex-direction: column; justify-content: center; padding: 9px 11px; border-radius: var(--radius-sm); color: var(--text); font-size: 13px; line-height: 1.35; }
.desktop-nav .nav-menu-panel a:hover { background: var(--cream); }
.desktop-nav .nav-menu-panel a::after { display: none; }
.desktop-nav .nav-menu-panel small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.header-quote { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 14px; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent); font-size: 12px; font-weight: 800; }
.header-quote:hover { color: var(--on-accent); background: var(--accent); }

.home-page .hero {
  min-height: auto;
  align-items: start;
  padding-top: clamp(44px, 4vw, 56px);
  padding-bottom: clamp(48px, 4.5vw, 64px);
  background: var(--cream);
}
.home-page .hero-copy { max-width: 760px; }
.home-page .hero h1 { max-width: 18ch; font-size: clamp(50px, 4.8vw, 70px); }
.home-page .hero-copy > p:not(.eyebrow) { max-width: 700px; }
.hero-video-media { border: 0; background: transparent; box-shadow: 0 30px 70px rgb(16 37 31 / 16%); }
.hero-video-media::before { display: none; }
.hero-video-shell { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.video-caption { display: flex; min-height: 64px; align-items: center; gap: 12px; margin: 0; padding: 10px 14px 10px 16px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); color: var(--muted); background: var(--surface); font-family: var(--font-data); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.video-caption strong { margin-left: auto; color: var(--text); }

.trust-rail { padding: 0 max(22px, calc((100vw - var(--content-max)) / 2)); border-block: 1px solid var(--line); background: var(--surface); }
.trust-rail dl { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--content-max); margin: 0 auto; }
.trust-rail div { padding: 22px clamp(16px, 2vw, 30px); border-right: 1px solid var(--line); }
.trust-rail div:first-child { padding-left: 0; }
.trust-rail div:last-child { border-right: 0; }
.trust-rail dt { color: var(--text); font-size: clamp(17px, 1.7vw, 23px); font-weight: 700; letter-spacing: -.02em; }
.trust-rail dd { margin: 4px 0 0; color: var(--muted); font-size: 12px; }

.capability-rail { padding-left: 16px; border-left: 3px solid var(--accent); font-weight: 700; }
.material-band { display: grid; max-width: 100%; grid-template-columns: minmax(260px, .8fr) minmax(300px, 1.2fr); gap: clamp(34px, 7vw, 100px); padding: clamp(64px, 8vw, 110px) max(22px, calc((100vw - var(--content-max)) / 2)); color: #eef6f2; background: var(--brand-raised); }
.material-band .eyebrow { color: #f2aa88; }
.material-band h2 { max-width: 13ch; margin: 0 0 20px; font-size: clamp(38px, 5vw, 66px); }
.material-band p:not(.eyebrow) { color: #b7c5c0; }
.material-band-copy { align-self: center; }
.fabric-swatch-panel { min-width: 0; align-self: center; padding: clamp(18px, 2.2vw, 28px); border: 1px solid #d4ded9; border-radius: var(--radius-lg); color: #14261f; background: #f4f7f6; box-shadow: 0 24px 56px rgb(5 20 15 / 22%); }
.fabric-swatch-head { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; color: #14261f; font-size: clamp(14px, 1.3vw, 19px); line-height: 1.2; }
.fabric-swatch-head strong { min-width: 0; }
.swatch-board { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 8px; }
.swatch-board span { display: block; min-width: 0; aspect-ratio: 1.72 / 1; border: 1px solid rgb(16 37 31 / 16%); border-radius: 3px; background: linear-gradient(135deg, rgb(255 255 255 / 20%), transparent 28%), repeating-linear-gradient(45deg, rgb(255 255 255 / 15%) 0 1px, transparent 1px 4px), var(--swatch); box-shadow: 0 1px 1px rgb(16 37 31 / 8%); transition: border-color 160ms var(--ease-out), transform 160ms var(--ease-out); }
.swatch-board span:hover { border-color: rgb(16 37 31 / 48%); transform: translateY(-2px); }
.swatch-board span:nth-child(1) { --swatch: #f5a6b9; }
.swatch-board span:nth-child(2) { --swatch: #e85050; }
.swatch-board span:nth-child(3) { --swatch: #b81220; }
.swatch-board span:nth-child(4) { --swatch: #ff7a1a; }
.swatch-board span:nth-child(5) { --swatch: #d6d23b; }
.swatch-board span:nth-child(6) { --swatch: #ded8c8; }
.swatch-board span:nth-child(7) { --swatch: #146f7f; }
.swatch-board span:nth-child(8) { --swatch: #3f3f3f; }
.swatch-board span:nth-child(9) { --swatch: #3b155d; }
.swatch-board span:nth-child(10) { --swatch: #151515; }
.swatch-board span:nth-child(11) { --swatch: #081426; }
.swatch-board span:nth-child(12) { --swatch: #d8d0bd; }
.swatch-board span:nth-child(13) { --swatch: #0f784c; }
.swatch-board span:nth-child(14) { --swatch: #008154; }
.swatch-board span:nth-child(15) { --swatch: #006fc8; }
.swatch-board span:nth-child(16) { --swatch: #1148a9; }
.swatch-board span:nth-child(17) { --swatch: #8f84aa; }
.swatch-board span:nth-child(18) { --swatch: #b6814f; }
.swatch-board span:nth-child(19) { --swatch: #f0e8d2; }
.swatch-board span:nth-child(20) { --swatch: #9d6f68; }
.swatch-board span:nth-child(21) { --swatch: #c73010; }
.swatch-board span:nth-child(22) { --swatch: #2f2a28; }
.swatch-board span:nth-child(23) { --swatch: #0b243d; }
.swatch-board span:nth-child(24) { --swatch: #405b7d; }
.swatch-board span:nth-child(25) { --swatch: #c51231; }
.swatch-board span:nth-child(26) { --swatch: #7a2386; }
.swatch-board span:nth-child(27) { --swatch: #760f2b; }
.swatch-board span:nth-child(28) { --swatch: #4a2376; }
.swatch-board span:nth-child(29) { --swatch: #006260; }
.swatch-board span:nth-child(30) { --swatch: #525252; }
.swatch-board span:nth-child(31) { --swatch: #435066; }
.swatch-board span:nth-child(32) { --swatch: #6b6742; }
.swatch-board span:nth-child(33) { --swatch: #69747b; }
.swatch-board span:nth-child(34) { --swatch: #f1b928; }
.swatch-board span:nth-child(35) { --swatch: #7c2a22; }
.swatch-board span:nth-child(36) { --swatch: #005b55; }
.swatch-board span:nth-child(37) { --swatch: #1047ad; }
.material-band p.fabric-swatch-note { margin: 16px 0 0; color: #52635c; font-size: 13px; }
.material-band ol { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); margin: 12px 0 0; padding: 0; border-top: 1px solid #52675f; list-style: none; }
.material-band li { display: grid; gap: 28px; padding: 22px; border-right: 1px solid #52675f; font-weight: 750; }
.material-band li:last-child { border-right: 0; }
.material-band li b { color: #f2aa88; font-family: var(--font-data); font-size: 10px; }
.material-marquee { display: grid; grid-column: 1 / -1; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 18px; margin-top: 8px; border-top: 1px solid #52675f; border-bottom: 1px solid #52675f; }
.material-marquee button { min-height: 44px; padding: 8px 16px 8px 0; border: 0; border-right: 1px solid #52675f; color: #eef6f2; background: transparent; font-size: 11px; font-weight: 700; white-space: nowrap; }
.material-marquee-window { min-width: 0; overflow: hidden; }
.material-marquee-track { display: flex; width: max-content; animation: material-loop 32s linear infinite; }
.material-marquee-track span { padding: 13px 24px; color: #c7d3ce; font-family: var(--font-data); font-size: 10px; letter-spacing: .04em; white-space: nowrap; }
.material-marquee:is(:hover, :focus-within) .material-marquee-track, .material-marquee.is-paused .material-marquee-track { animation-play-state: paused; }

@keyframes material-loop { to { transform: translateX(-50%); } }
.card-quote { display: inline-flex; margin-top: 18px; color: var(--green); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin: 25px 0 30px; }
.proof-list article { padding-top: 17px; border-top: 1px solid var(--line); }
.proof-list article:last-child { grid-column: 1 / -1; }
.proof-list h3 { font-size: 18px; }
.proof-list p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

.application-section { background: var(--surface); }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.application-grid a { display: grid; min-height: 280px; align-content: end; padding: clamp(26px, 4vw, 48px); border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); transition: color 180ms var(--ease-out), background-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.application-grid a:hover { color: #eef6f2; background: var(--brand); }
.application-grid a:active { transform: scale(.99); }
.application-grid h3 { max-width: 16ch; margin: 0 0 12px; font-size: clamp(28px, 3.2vw, 46px); }
.application-grid p { max-width: 560px; color: var(--muted); }
.application-grid a:hover p { color: #b7c5c0; }
.application-grid b { font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }

.scenario-section { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(40px, 8vw, 110px); background: var(--cream); }
.scenario-heading h2 { max-width: 10ch; margin-top: 0; font-size: clamp(40px, 5vw, 68px); }
.scenario-list { border-top: 1px solid var(--line-strong); }
.scenario-list article { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr); gap: 30px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--line); }
.scenario-list h3 { font-size: 22px; }
.scenario-list p { color: var(--muted); }

.faq-section { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(46px, 8vw, 120px); }
.faq-heading { align-self: start; }
.faq-heading h2 { max-width: 10ch; margin: 0 0 20px; font-size: clamp(42px, 5vw, 68px); }
.faq-heading > p:last-child { max-width: 440px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; min-height: 62px; padding: 19px 48px 19px 0; font-weight: 780; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 19px; right: 8px; color: var(--accent); content: "+"; font-family: var(--font-data); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; margin: -4px 0 22px; color: var(--muted); }

.solution-map { color: var(--text); background: var(--paper); }
.solution-map .section-lead p, .solution-map-grid a { color: var(--muted); }
.solution-map-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.solution-map-grid > div { display: flex; min-height: 300px; grid-column: span 4; flex-direction: column; padding: clamp(24px, 3vw, 40px); background: var(--surface); }
.solution-map-grid > div:first-child { grid-column: span 5; }
.solution-map-grid > div:last-child { grid-column: span 3; }
.solution-map-grid h3 { margin: 0 0 24px; font-size: 27px; }
.solution-map-grid a { padding: 7px 0; }
.solution-map-grid a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

.home-quote-section { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr); gap: clamp(44px, 8vw, 110px); padding: clamp(70px, 9vw, 130px) max(22px, calc((100vw - var(--content-max)) / 2)); background: var(--paper); }
.quote-intro h2 { max-width: 11ch; margin: 12px 0 24px; font-size: clamp(44px, 5.6vw, 76px); }
.quote-intro > p:not(.eyebrow) { max-width: 580px; color: var(--muted); }
.quote-intro dl div { grid-template-columns: 110px 1fr; }
.home-inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-content: start; padding: clamp(24px, 4vw, 44px); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-md); }
.home-inquiry-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 750; }
.home-inquiry-form .full { grid-column: 1 / -1; }
.home-inquiry-form input, .home-inquiry-form select, .home-inquiry-form textarea { width: 100%; min-height: 47px; padding: 11px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--text); background: var(--surface); }
.home-inquiry-form textarea { resize: vertical; }
.home-inquiry-form small { color: var(--muted); }

.sitemap-hero h1 { max-width: 14ch; }
.sitemap-directory { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.sitemap-directory > div { display: flex; min-height: 390px; flex-direction: column; padding: clamp(26px, 4vw, 48px); background: var(--surface); }
.sitemap-directory span { color: var(--accent); font-family: var(--font-data); font-size: 10px; }
.sitemap-directory h2 { margin: 35px 0 22px; font-size: clamp(28px, 3.2vw, 44px); }
.sitemap-directory a { padding: 6px 0; color: var(--muted); }
.sitemap-directory a:hover { color: var(--text); text-decoration: underline; text-underline-offset: 4px; }

.site-footer { grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); gap: clamp(48px, 8vw, 110px); }
.footer-wordmark { display: inline-flex; align-items: center; gap: 12px; }
.footer-wordmark img { width: 44px; height: 44px; }
.footer-wordmark strong { font-family: var(--font-display); font-size: clamp(22px, 2vw, 30px); letter-spacing: -.03em; }
.footer-map { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.site-footer .footer-map nav { display: flex; flex-direction: column; gap: 9px; }
.footer-map nav > strong { margin-bottom: 6px; color: #fff; font-size: 13px; }
.site-footer .footer-map nav a { font-size: 12px; }

@media (prefers-color-scheme: dark) {
  :root {
    --text: #e7f0ec;
    --ink: var(--text);
    --green: #72c6aa;
    --accent: #e56d42;
    --accent-strong: #f07d54;
    --paper: #0f1b17;
    --cream: #17251f;
    --surface: #14211d;
    --line: #33473f;
    --line-strong: #50665d;
    --muted: #a6b8b1;
  }
  .site-header { background: color-mix(in srgb, var(--surface) 92%, transparent); }
  .brand-mark, .cart-link { border-color: #5f756c; }
  .cart-link strong { color: var(--brand); }
  .product-card > a, .hero-media, .gallery, .proof-preview, .certificate-image { color-scheme: light; }
}

@media (max-width: 1100px) {
  .header-quote { display: none; }
  .desktop-nav { gap: 14px; }
  .desktop-nav > a, .nav-menu > summary { font-size: 12px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-section .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-section .product-card:first-child { grid-column: auto; }
  .category-media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-media-grid a:first-child, .category-media-grid a:last-child { grid-column: auto; }
  .certificate-grid article { grid-template-columns: 1fr; }
  .certificate-image { border-right: 0; border-bottom: 1px solid var(--line); }
  .cart-layout, .checkout-layout { grid-template-columns: minmax(0, 1fr) 340px; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto; padding-inline: 18px; }
  .desktop-nav { display: none; }
  .mobile-nav { position: relative; display: block; }
  .mobile-nav > summary { display: inline-flex; min-height: 44px; align-items: center; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; font-weight: 750; list-style: none; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav[open] > summary { border-color: var(--accent); }
  .mobile-nav nav { position: fixed; top: calc(var(--header-height) - 1px); right: 0; left: 0; display: grid; max-height: calc(100dvh - var(--header-height)); overflow: auto; overscroll-behavior: contain; padding: 10px 18px 20px; border-bottom: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-md); }
  .mobile-nav nav a { min-height: 48px; padding: 13px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-nav nav span { padding: 19px 4px 7px; color: var(--accent); font-family: var(--font-data); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 64px 78px; }
  .home-page .hero { padding-top: 36px; padding-bottom: 44px; }
  .hero-media { max-width: 720px; }
  .trust-rail dl { grid-template-columns: 1fr 1fr; }
  .trust-rail div:nth-child(2) { border-right: 0; }
  .trust-rail div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .category-media-grid {
    display: grid;
    min-height: 0;
    grid-auto-columns: calc((100% - 12px) / 2);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-padding-inline: 1px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--brand) var(--surface-alt);
    scrollbar-width: thin;
  }
  .category-media-grid a, .category-media-grid a:is(:hover, :focus-visible) { min-width: 0; height: clamp(220px, 32vw, 260px); min-height: 0; scroll-snap-align: start; }
  .category-media-grid img, .category-media-grid a:is(:hover, :focus-visible) img { height: 100%; min-height: 0; object-fit: cover; }
  .category-media-grid a:not(:hover):not(:focus-visible) strong { writing-mode: horizontal-tb; transform: none; }
  .featured-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .capability-section, .proof-section, .category-hero, .certificate-hero { grid-template-columns: 1fr; }
  .material-band, .scenario-section, .faq-section, .home-quote-section, .workflow-section { grid-template-columns: 1fr; }
  .material-band { gap: 34px; }
  .solution-map-grid { grid-template-columns: 1fr 1fr; }
  .solution-map-grid > div, .solution-map-grid > div:first-child { grid-column: auto; }
  .solution-map-grid > div:last-child { grid-column: 1 / -1; }
  .capability-intro { position: static; }
  .proof-preview { max-width: 420px; }
  .workflow-intro { position: static; }
  .workflow-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .workflow-stack li { position: static; min-height: 250px; margin: 0; box-shadow: var(--shadow-sm); }
  .category-hero > div { min-height: auto; }
  .category-hero img { width: min(100%, 640px); height: auto; min-height: 0; justify-self: center; aspect-ratio: 1; object-fit: contain; }
  .certificate-grid { grid-template-columns: 1fr; }
  .certificate-grid .certificate-featured { grid-column: auto; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); }
  .product-layout { grid-template-columns: 1fr; }
  .product-copy { position: static; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: 1fr; }
  .footer-map { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .content-cta { align-items: flex-start; flex-direction: column; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid article:nth-child(3n) { grid-column: auto; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout .summary-card, .checkout-layout .summary-card { position: static; }
}

@media (max-width: 680px) {
  .brand-name { display: inline-flex; font-size: 12px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
  .featured-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-section .product-card:first-child { grid-column: auto; grid-row: auto; }
  .featured-section .product-card:first-child img { aspect-ratio: 1; }
  .section-heading { grid-template-columns: 1fr; }
  .category-grid a:first-child, .category-grid a:last-child { grid-column: auto; }
  .hero-docket { grid-template-columns: 1fr; }
  .hero-docket-four { grid-template-columns: 1fr 1fr; }
  .hero-docket div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-docket-four div:nth-child(odd) { border-right: 1px solid var(--line); }
  .hero-docket div:last-child { border-bottom: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article, .capability-grid article:nth-child(2), .capability-grid article:nth-child(3) { grid-column: auto; }
  .capability-grid article { min-height: auto; }
  .category-hero > div { padding: 48px 22px 42px; }
  .category-hero h1 { font-size: clamp(40px, 11vw, 52px); }
  .category-hero p:not(.eyebrow) { font-size: 16px; }
  .category-hero img { width: 100%; height: auto; min-height: 0; }
  .catalog-heading { align-items: flex-start; flex-direction: column; }
  .catalog-heading > p:last-child { text-align: left; }
  .certificate-grid .certificate-featured, .certificate-grid article { grid-template-columns: 1fr; }
  .certificate-hero dl { grid-template-columns: 1fr; }
  .certificate-hero dl div { border-right: 0; }
  .content-sections article > div { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .application-grid, .solution-map-grid, .sitemap-directory { grid-template-columns: 1fr; }
  .application-grid a { min-height: 250px; }
  .solution-map-grid > div, .solution-map-grid > div:first-child, .solution-map-grid > div:last-child { grid-column: auto; }
  .fabric-swatch-head { grid-template-columns: 1fr; gap: 5px; }
  .swatch-board { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .material-band ol { grid-template-columns: 1fr 1fr; }
  .material-marquee { grid-template-columns: 1fr; gap: 0; }
  .material-marquee button { width: 100%; padding-inline: 0; border-right: 0; border-bottom: 1px solid #52675f; text-align: left; }
  .material-band li:nth-child(2) { border-right: 0; }
  .material-band li { border-bottom: 1px solid #52675f; }
  .material-band li:nth-last-child(-n + 2) { border-bottom: 0; }
  .scenario-list article { grid-template-columns: 1fr; gap: 8px; }
  .scenario-list p { margin-top: 0; }
  .home-inquiry-form { grid-template-columns: 1fr; }
  .home-inquiry-form .full { grid-column: auto; }
  .footer-map { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: auto; }
  .product-purchase-actions { grid-template-columns: 1fr; }
  .footer-meta { align-items: flex-start; flex-direction: column; }
  .cart-item { grid-template-columns: 84px minmax(0, 1fr); }
  .cart-item img { width: 84px; height: 84px; }
  .cart-item > strong, .cart-item button { grid-column: 2; }
  .cart-toast { right: 16px; bottom: 112px; left: 16px; min-width: 0; }
}

@media (max-width: 430px) {
  .site-header { gap: 8px; }
  .brand-name { gap: 2px; font-size: 10px; letter-spacing: -.01em; }
  .header-actions { gap: 7px; }
  .cart-link { padding-left: 10px; }
  .hero h1 { font-size: 43px; }
  .hero-media > img { height: 300px; }
  .hero-video-shell video { height: 300px; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-section .product-grid { grid-template-columns: 1fr; }
  .product-card-copy { min-height: auto; }
  .category-grid { grid-template-columns: 1fr; }
  .category-media-grid { grid-auto-columns: min(82vw, 300px); grid-template-columns: none; }
  .category-media-grid a, .category-media-grid a:is(:hover, :focus-visible) { height: clamp(210px, 68vw, 250px); min-height: 0; }
  .category-media-grid img, .category-media-grid a:is(:hover, :focus-visible) img { height: 100%; min-height: 0; }
  .workflow-stack { grid-template-columns: 1fr; }
  .workflow-stack li { min-height: 230px; }
  .site-footer nav { grid-template-columns: 1fr 1fr; }
  .home-page .hero h1 { font-size: 44px; }
  .trust-rail dl { grid-template-columns: 1fr; }
  .trust-rail div, .trust-rail div:nth-child(2), .trust-rail div:nth-child(-n + 2) { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-rail div:last-child { border-bottom: 0; }
  .home-page .hero-docket { grid-template-columns: 1fr 1fr; }
  .home-page .hero-docket div:nth-child(odd) { border-right: 1px solid var(--line); }
  .footer-map { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  .home-page .category-showcase { padding-block: 12px; }
  .home-page .category-showcase .section-lead { gap: 4px; margin-bottom: 12px; }
  .home-page .category-showcase .section-lead h2 { max-width: none; font-size: 30px; line-height: 1; }
  .home-page .category-showcase .section-lead p { max-width: 760px; font-size: 13px; line-height: 1.35; }
  .home-page .category-media-grid a,
  .home-page .category-media-grid a:is(:hover, :focus-visible) { height: 160px; }
}

@media (max-width: 360px) {
  .brand-name { display: none; }
}

@media (min-width: 901px) and (max-width: 1100px) and (min-height: 650px) and (max-height: 900px) {
  .home-page .category-showcase { padding-block: 34px; }
  .home-page .category-showcase .section-lead { gap: 8px; max-width: 920px; margin-bottom: 18px; }
  .home-page .category-showcase .section-lead h2 { max-width: none; font-size: clamp(34px, 4vw, 40px); }
  .home-page .category-showcase .section-lead p { font-size: 15px; }
  .home-page .category-media-grid { height: clamp(380px, 54vh, 420px); min-height: 0; }
  .home-page .category-media-grid img { min-height: 0; }
}

/* Compact one-screen rhythm for 14-inch laptop viewports. */
@media (min-width: 1101px) and (min-height: 650px) and (max-height: 900px) {
  .home-page .section { padding-block: clamp(34px, 5vh, 46px); }
  .home-page .section-lead { gap: 8px; margin-bottom: 20px; }
  .home-page .section-lead h2 { font-size: clamp(34px, 3vw, 44px); }
  .home-page .section-lead p { font-size: 15px; }

  .home-page .category-showcase .section-lead { max-width: 1040px; }
  .home-page .category-showcase .section-lead h2 { max-width: none; }
  .home-page .category-media-grid { height: clamp(420px, 63vh, 460px); min-height: 0; }
  .home-page .category-media-grid img { min-height: 0; }

  .home-page .capability-section { gap: clamp(36px, 5vw, 72px); }
  .home-page .capability-intro { position: static; }
  .home-page .capability-intro h2 { margin: 8px 0 16px; font-size: clamp(38px, 3.7vw, 52px); }
  .home-page .capability-intro .button { margin-top: 10px; }
  .home-page .capability-grid article { min-height: 210px; padding: 22px; }
  .home-page .capability-grid h3 { margin-bottom: 8px; font-size: clamp(21px, 1.8vw, 26px); }
  .home-page .capability-grid p { margin: 0; font-size: 13px; }

  .home-page .material-band { column-gap: clamp(38px, 5vw, 72px); row-gap: 20px; padding-block: 38px; }
  .home-page .material-band h2 { font-size: clamp(40px, 3.8vw, 52px); }
  .home-page .fabric-swatch-panel { padding: 18px; }
  .home-page .fabric-swatch-head { margin-bottom: 12px; }
  .home-page .material-band ol { margin-top: 0; }
  .home-page .material-band li { gap: 14px; padding: 16px 20px; }
  .home-page .material-marquee { margin-top: 0; }

  .home-page .featured-section { padding-block: 42px 48px; }
  .home-page .featured-section .section-lead { max-width: 1180px; margin-bottom: 24px; }
  .home-page .featured-section .section-lead h2 { max-width: none; font-size: clamp(38px, 3vw, 46px); }
  .home-page .featured-section .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 26px 20px; }
  .home-page .featured-section .product-card:first-child { grid-column: auto; grid-row: auto; }
  .home-page .featured-section .product-card img,
  .home-page .featured-section .product-card:first-child img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
  .home-page .featured-section .product-card-copy { min-height: 154px; padding: 14px 2px 18px; }
  .home-page .featured-section .product-card p { font-size: 11px; }
  .home-page .featured-section .product-card h3,
  .home-page .featured-section .product-card:first-child h3 { display: -webkit-box; min-height: 38px; margin: 6px 0 10px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 15px; line-height: 1.25; }
  .home-page .featured-section .product-card-meta span { font-size: 10px; }
  .home-page .featured-section .product-card-meta strong { font-size: 17px; }
  .home-page .featured-section .card-quote { margin-top: 12px; font-size: 12px; }

  .home-page .proof-section { gap: clamp(36px, 5vw, 72px); }
  .home-page .proof-preview { max-width: 350px; padding: 16px; }
  .home-page .proof-preview img { max-height: 420px; }
  .home-page .proof-copy h2 { margin: 8px 0 14px; font-size: clamp(38px, 3.5vw, 48px); }
  .home-page .proof-copy > p:not(.eyebrow) { font-size: 15px; }
  .home-page .proof-list { gap: 10px 22px; margin: 14px 0 18px; }
  .home-page .proof-list article { padding-top: 10px; }
  .home-page .proof-list h3 { font-size: 16px; }
  .home-page .proof-copy small { margin-top: 10px; }

  .home-page .application-section .section-lead { max-width: 1040px; }
  .home-page .application-section .section-lead h2 { max-width: none; }
  .home-page .application-grid a { min-height: 185px; padding: 22px 26px; }
  .home-page .application-grid h3 { margin-bottom: 7px; font-size: clamp(25px, 2.4vw, 32px); }
  .home-page .application-grid p { margin: 0 0 8px; font-size: 13px; line-height: 1.45; }

  .home-page .workflow-section { align-items: center; gap: clamp(38px, 5vw, 72px); }
  .home-page .workflow-intro { position: static; }
  .home-page .workflow-intro h2 { font-size: clamp(40px, 3.7vw, 52px); }
  .home-page .workflow-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .home-page .workflow-stack li { position: static; min-height: 190px; margin: 0; padding: 22px; box-shadow: var(--shadow-sm); }
  .home-page .workflow-stack li strong { font-size: clamp(22px, 2vw, 28px); }
  .home-page .workflow-stack li p { font-size: 13px; line-height: 1.45; }

  .home-page .scenario-section { gap: clamp(36px, 5vw, 72px); }
  .home-page .scenario-heading h2 { font-size: clamp(40px, 3.7vw, 50px); }
  .home-page .scenario-list article { padding: 18px 0; }
  .home-page .scenario-list h3 { font-size: 19px; }
  .home-page .scenario-list p { margin: 0; font-size: 14px; }

  .home-page .faq-section { gap: clamp(38px, 5vw, 72px); }
  .home-page .faq-heading h2 { font-size: clamp(40px, 3.7vw, 50px); }
  .home-page .faq-list summary { min-height: 54px; padding-block: 15px; }
  .home-page .faq-list summary::after { top: 14px; }
  .home-page .faq-list p { margin-bottom: 14px; font-size: 14px; }

  .home-page .solution-map .section-lead { max-width: 1040px; }
  .home-page .solution-map .section-lead h2 { max-width: none; }
  .home-page .solution-map-grid > div { min-height: 220px; padding: 22px 26px; }
  .home-page .solution-map-grid h3 { margin-bottom: 14px; font-size: 22px; }
  .home-page .solution-map-grid a { padding: 5px 0; font-size: 14px; }

  .home-page .home-quote-section { gap: clamp(38px, 5vw, 72px); padding-block: 38px; }
  .home-page .quote-intro h2 { margin: 8px 0 16px; font-size: clamp(42px, 3.8vw, 54px); }
  .home-page .quote-intro dl { margin: 18px 0 0; }
  .home-page .quote-intro dl div { padding: 9px 0; }
  .home-page .home-inquiry-form { gap: 12px; padding: 22px; }
  .home-page .home-inquiry-form label { gap: 4px; font-size: 12px; }
  .home-page .home-inquiry-form input,
  .home-page .home-inquiry-form select { min-height: 42px; padding-block: 8px; }
  .home-page .home-inquiry-form textarea { height: 90px; min-height: 90px; padding-block: 8px; }
}

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

@media (forced-colors: active) {
  .button, .cart-link, .brand-mark { border: 2px solid ButtonText; }
}
