:root {
  --ink: #102532;
  --muted: #5c6d73;
  --lab: #e8eeeb;
  --paper: #f8faf7;
  --blue: #2d6b5e;
  --blue-deep: #173f43;
  --amber: #789b49;
  --amber-soft: #dce8d2;
  --mint: #dfe8e3;
  --line: rgba(16, 37, 50, 0.14);
  --recess-shell: #d7e1dc;
  --recess-floor: #f0f4f1;
  --recess-dark: rgba(16, 37, 50, 0.22);
  --recess-light: rgba(255, 255, 255, 0.88);
  --recess-depth: inset 10px 10px 22px var(--recess-dark), inset -8px -8px 18px var(--recess-light);
  --recess-control: inset 4px 4px 8px rgba(16, 37, 50, 0.24), inset -3px -3px 7px rgba(255, 255, 255, 0.76);
  --shadow: none;
  --container: min(1360px, calc(100vw - 48px));
  --display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  --body: "Aptos", "Segoe UI Variable Text", sans-serif;
  --mono: "Cascadia Mono", "Aptos Mono", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--lab);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--lab);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus { top: 20px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(84px, 9vw, 150px) 0; }
.section-tight { padding: clamp(58px, 6vw, 92px) 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 { font-size: clamp(3.3rem, 6.8vw, 6.9rem); }
h2 { font-size: clamp(2.5rem, 4.9vw, 5.1rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
.lede { max-width: 680px; color: var(--muted); font-size: clamp(1.08rem, 1.4vw, 1.3rem); }
.mono { font-family: var(--mono); }

.nav-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  pointer-events: none;
}

.site-nav {
  width: 100%;
  min-height: 76px;
  margin: auto;
  padding: 8px max(24px, calc((100vw - 1360px) / 2));
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(248, 250, 247, 0.94);
  box-shadow: none;
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
  transition: transform 280ms var(--ease), background 280ms var(--ease);
}

.brand {
  width: 112px;
  height: 65px;
  display: block;
  flex: 0 0 auto;
}

.brand-logo,
.footer-brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}

.brand-logo { background-image: url("/wp-content/themes/ymg-b2b-2026/site-assets/brand/ymg-logo-footer.png"); background-size: 145px auto; }
.footer-brand-logo { width: 132px; height: 76px; margin-bottom: 18px; background-image: url("/wp-content/themes/ymg-b2b-2026/site-assets/brand/ymg-logo-header.png"); background-size: 171px auto; }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.button) { font-size: 0.9rem; font-weight: 700; }
.nav-links > a:not(.button):hover { color: var(--blue); }
.nav-links > a[aria-current="page"] { color: var(--blue); box-shadow: inset 0 -2px 0 var(--blue); }

.button {
  min-height: 48px;
  padding: 10px 12px 10px 20px;
  border: 0;
  border-radius: 0;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}

.button::after {
  content: "↗";
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  transition: transform 240ms var(--ease);
}

.button:hover { background: var(--blue-deep); transform: translateY(-2px); }
.button:hover::after { transform: rotate(45deg); }
.button-dark { background: var(--ink); }
.button-dark::after { color: var(--ink); }
.button-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px rgba(16, 37, 50, 0.22); }
.button-ghost::after { background: var(--ink); color: #fff; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.hero {
  min-height: 900px;
  padding: 76px 0 0;
  display: grid;
  align-items: stretch;
}

.hero-shell {
  width: 100%;
  margin: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  box-shadow: none;
}

.hero-copy {
  padding: clamp(42px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 { max-width: 820px; margin-bottom: 28px; font-size: clamp(3.8rem, 4.5vw, 4.2rem); }
.hero-copy h1 span { display: block; }
.hero-copy .lede { max-width: 590px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 28px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.75rem; }

.hero-visual {
  position: relative;
  min-height: 720px;
  padding: 14px;
  border-left: 1px solid rgba(16, 37, 50, 0.22);
  background: var(--recess-shell);
  box-shadow: var(--recess-depth);
  isolation: isolate;
  overflow: hidden;
}

.hero-layer {
  position: absolute;
  inset: 14px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(16, 37, 50, 0.34), 0 12px 28px rgba(16, 37, 50, 0.16);
  transition: opacity 560ms var(--ease), transform 700ms var(--ease);
}

.hero-layer img { width: 100%; height: 100%; object-fit: cover; }
.hero-product { opacity: 0; transform: scale(0.96); background: #eef3f4; }
.hero-product img { object-fit: contain; padding: clamp(42px, 6vw, 100px); mix-blend-mode: multiply; }
.hero-visual[data-view="product"] .hero-scene { opacity: 0; transform: scale(1.03); }
.hero-visual[data-view="product"] .hero-product { opacity: 1; transform: scale(1); }

.hero-view-switch {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  padding: 6px;
  border: 1px solid rgba(16, 37, 50, 0.28);
  border-radius: 0;
  background: var(--recess-shell);
  box-shadow: var(--recess-control);
  display: flex;
  gap: 4px;
}

.view-button,
.chip-button {
  min-height: 44px;
  padding: 9px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.view-button.is-active,
.chip-button.is-active { background: var(--ink); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.42); }

.hero-signal {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  width: min(360px, calc(100% - 48px));
  padding: 20px;
  border-radius: 0;
  background: rgba(8, 19, 27, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-signal strong { display: block; font-family: var(--display); font-size: 1.35rem; }
.hero-signal span { color: rgba(255,255,255,0.72); font-size: 0.86rem; }

.fact-ribbon {
  width: min(1360px, calc(100vw - 48px));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.fact-ribbon > div {
  min-height: 128px;
  padding: 22px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}
.fact-ribbon > div:first-child { border-left: 1px solid var(--line); }

.fact-ribbon strong { display: block; font-family: var(--display); font-size: clamp(1.4rem, 2vw, 2.2rem); line-height: 1.05; }
.fact-ribbon span { color: var(--muted); font-size: 0.82rem; }

.section-head {
  margin-bottom: clamp(42px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 48px;
  padding-top: 24px;
  border-top: 4px solid var(--ink);
}

.section-head h2 { margin-bottom: 0; }
.section-head .lede { margin-bottom: 8px; }

.brief-lab {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  box-shadow: none;
}

.brief-controls { padding: clamp(30px, 4vw, 64px); }
.brief-controls h3 { font-size: clamp(2rem, 3.3vw, 3.6rem); margin-bottom: 16px; }
.brief-controls > p:not(.eyebrow) { color: rgba(255,255,255,0.64); max-width: 560px; }
.control-group { margin-top: 34px; }
.control-label { display: block; margin-bottom: 12px; color: rgba(255,255,255,0.58); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.brief-controls .chip-button { background: rgba(255,255,255,0.09); color: #fff; box-shadow: inset 2px 2px 5px rgba(0,0,0,0.46), inset -1px -1px 2px rgba(255,255,255,0.08); }
.brief-controls .chip-button.is-active { background: var(--amber); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28), 0 2px 0 #4f743c; }

.brief-output {
  position: relative;
  min-height: 650px;
  border-left: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  padding: 14px;
  background: var(--recess-shell);
  box-shadow: var(--recess-depth);
  color: var(--ink);
  overflow: hidden;
}

.brief-image { position: absolute; inset: 14px; overflow: hidden; background: var(--recess-floor); box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28); }
.brief-image img { width: 100%; height: 100%; object-fit: contain; padding: 58px 58px 170px; mix-blend-mode: multiply; }
.brief-summary {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 22px 18px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255,255,255,0.94);
  box-shadow: none;
}

.brief-summary small { color: var(--blue); font-family: var(--mono); font-weight: 700; text-transform: uppercase; }
.brief-summary p { margin: 8px 0 15px; max-width: 65ch; }
.text-action { min-height: 44px; padding: 0; border: 0; background: transparent; color: var(--blue); font-weight: 800; cursor: pointer; }
.copy-status { margin-left: 12px; color: var(--muted); font-size: 0.82rem; }

.families { background: #dfe8e3; overflow: hidden; }
.family-stage { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 10px; }
.family-tabs { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--ink); }
.family-tab {
  min-height: 82px;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid rgba(16, 37, 50, 0.22);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.family-tab:hover { transform: translateX(4px); }
.family-tab.is-active { background: var(--ink); color: #fff; }
.family-tab span { color: var(--blue); font-family: var(--mono); font-size: 0.72rem; }
.family-tab strong { font-family: var(--display); font-size: 1.08rem; }

.family-panel {
  min-height: 650px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  background: var(--recess-shell);
  box-shadow: var(--recess-depth);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
}

.family-media { position: relative; min-height: 520px; overflow: hidden; background: #d9e3e6; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28), 0 10px 24px rgba(16, 37, 50,0.14); }
.family-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease), opacity 300ms var(--ease); }
.family-panel:hover .family-media img { transform: scale(1.025); }
.family-copy { padding: clamp(36px, 5vw, 72px); border-left: 1px solid rgba(16, 37, 50, 0.22); background: var(--recess-floor); box-shadow: inset 8px 0 20px rgba(16, 37, 50,0.08); display: flex; flex-direction: column; justify-content: center; }
.family-copy h3 { font-size: clamp(2.5rem, 4vw, 4.7rem); margin-bottom: 20px; }
.family-copy p { color: var(--muted); }
.family-status { margin: 20px 0 28px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; font-family: var(--mono); font-size: 0.76rem; }

.problem-line { position: relative; max-width: 1100px; margin: auto; }
.problem-line::before { content: ""; position: absolute; left: 49%; top: 0; bottom: 0; width: 4px; border-radius: 99px; background: linear-gradient(var(--blue), var(--amber)); }
.problem-row { min-height: 230px; display: grid; grid-template-columns: 1fr 100px 1fr; align-items: center; gap: 24px; }
.problem-row > div:first-child { text-align: right; }
.problem-row h3 { margin: 0 0 12px; }
.problem-row p { margin: 0; color: var(--muted); }
.problem-node { position: relative; z-index: 1; width: 56px; height: 56px; margin: auto; border-radius: 50%; background: var(--amber); display: grid; place-items: center; font-family: var(--mono); font-weight: 800; }

.proof-stage {
  min-height: 720px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  background: var(--recess-shell);
  box-shadow: var(--recess-depth);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.proof-media { position: relative; min-height: 640px; overflow: hidden; background: var(--recess-floor); box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28), 0 10px 24px rgba(16, 37, 50,0.14); }
.proof-media img { width: 100%; height: 100%; object-fit: contain; padding: 58px; mix-blend-mode: multiply; transition: opacity 300ms var(--ease), transform 450ms var(--ease); }
.proof-media.is-scene img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.proof-copy { padding: clamp(38px, 5vw, 78px); border-left: 1px solid var(--line); background: var(--recess-floor); box-shadow: inset 8px 0 20px rgba(16, 37, 50,0.08); display: flex; flex-direction: column; justify-content: center; }
.proof-copy h2 { font-size: clamp(2.8rem, 4.8vw, 5.4rem); }
.proof-copy p { color: var(--muted); }
.proof-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; padding: 6px; background: var(--recess-shell); box-shadow: var(--recess-control); }
.proof-tabs .chip-button { background: transparent; }
.proof-tabs .chip-button.is-active { background: var(--ink); }

.company-stage { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; background: var(--paper); overflow: hidden; display: grid; grid-template-columns: 1.18fr 0.82fr; box-shadow: none; }
.company-photo { min-height: 680px; padding: 12px; position: relative; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.company-photo img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28), 0 10px 24px rgba(16, 37, 50,0.14); }
.company-photo::after { content: "YMG / GUZHEN"; position: absolute; left: 12px; bottom: 12px; padding: 12px 18px; border-radius: 0; background: #fff; font-family: var(--mono); font-size: 0.66rem; font-weight: 700; }
.company-copy { padding: clamp(42px, 6vw, 90px); border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.company-copy h2 { font-size: clamp(3rem, 4.6vw, 5.3rem); }
.company-copy > p { color: var(--muted); }
.company-facts { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.company-fact { padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.company-fact strong { display: block; font-family: var(--display); font-size: 1.45rem; }
.company-fact span { color: var(--muted); font-size: 0.78rem; }

.process-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-step { min-height: 280px; padding: 24px; border-right: 1px solid var(--line); border-radius: 0; background: transparent; display: flex; flex-direction: column; }
.process-step:first-child { border-left: 1px solid var(--line); }
.process-step:nth-child(even) { margin-top: 0; }
.process-step span { color: var(--blue); font-family: var(--mono); font-size: 0.72rem; }
.process-step h3 { margin: auto 0 14px; font-size: 1.45rem; }
.process-step p { min-height: 72px; margin: 0; color: var(--muted); font-size: 0.88rem; }

.contact-lab { padding: clamp(38px, 6vw, 84px); border-top: 5px solid var(--blue); border-radius: 0; background: var(--ink); color: #fff; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(36px, 7vw, 100px); }
.contact-lab h2 { font-size: clamp(3rem, 5.2vw, 6rem); }
.contact-lab .eyebrow { color: var(--amber); }
.contact-lab p { color: rgba(255,255,255,0.75); }
.contact-lab .button-dark { background: var(--blue); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid rgba(255,255,255,0.24); border-radius: 0; background: rgba(0,0,0,0.18); color: #fff; box-shadow: inset 5px 5px 10px rgba(0,0,0,0.36), inset -2px -2px 5px rgba(255,255,255,0.04); }
.field select option { color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { margin-top: 16px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.form-status { color: rgba(255,255,255,0.72); font-size: 0.85rem; }

.site-footer { padding: 42px 0 30px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 0.6fr); gap: 48px; }
.footer-grid h4 { margin: 0 0 14px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 8px; color: rgba(255,255,255,0.73); font-size: 0.9rem; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.52); font-size: 0.78rem; }

.page-hero { padding: 150px 0 70px; }
.page-hero-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(3.8rem, 5vw, 4.8rem); }
.page-hero h1 span { display: block; }
.page-hero .lede { margin-bottom: 28px; }
.page-hero-media { min-height: 650px; padding: 12px; border-radius: 0; overflow: hidden; position: relative; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28), 0 10px 24px rgba(16, 37, 50,0.14); }
.catalog-toolbar { padding: 14px 0; border-top: 3px solid var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.catalog-toolbar p { margin: 0 0 0 10px; color: var(--muted); }
.catalog-toolbar .proof-tabs { margin: 0; }

.product-grid { margin-top: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid var(--line); }
.product-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; overflow: hidden; transition: background 260ms var(--ease); }
.product-card:hover { background: rgba(255,255,255,0.42); transform: none; box-shadow: none; }
.product-card-media { aspect-ratio: 1; padding: 10px; background: var(--recess-shell); position: relative; overflow: hidden; box-shadow: var(--recess-depth); }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 28px; background: var(--recess-floor); box-shadow: 0 0 0 1px rgba(16, 37, 50,0.24); mix-blend-mode: multiply; transition: transform 500ms var(--ease); }
.product-card[data-view="scene"] .product-card-media img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.product-card:hover img { transform: scale(1.025); }
.product-card-body { padding: 22px 0 28px; margin: 0 22px; border-top: 1px solid var(--line); }
.product-card-body h3 { margin: 0 0 8px; }
.product-card-body p { min-height: 52px; margin: 0 0 20px; color: var(--muted); font-size: 0.9rem; }
.product-card-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.model { color: var(--blue); font-family: var(--mono); font-size: 0.75rem; font-weight: 700; }
.mini-link { min-height: 44px; display: inline-flex; align-items: center; font-weight: 800; font-size: 0.84rem; }

.detail-hero { min-height: 860px; padding: 140px 0 70px; display: grid; align-items: center; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr); gap: 12px; }
.detail-media { min-height: 700px; padding: 14px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; background: var(--recess-shell); box-shadow: var(--recess-depth); overflow: hidden; position: relative; }
.detail-media img { width: 100%; height: 100%; object-fit: contain; padding: clamp(38px, 5vw, 80px); background: var(--recess-floor); box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28); mix-blend-mode: multiply; }
.detail-media.is-scene img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.media-tabs { position: absolute; top: 28px; left: 28px; right: 28px; padding: 6px; background: var(--recess-shell); box-shadow: var(--recess-control); display: flex; flex-wrap: wrap; gap: 6px; }
.media-tabs .chip-button { background: transparent; }
.media-tabs .chip-button.is-active { background: var(--ink); }
.detail-copy { padding: clamp(38px, 5vw, 72px); border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); border-radius: 0; background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.detail-copy h1 { font-size: clamp(3.5rem, 5.6vw, 6.1rem); margin-bottom: 18px; }
.detail-copy .lede { margin-bottom: 26px; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.spec-chip { padding: 10px 13px; border: 1px solid rgba(16, 37, 50,0.12); border-radius: 0; background: var(--recess-shell); box-shadow: inset 3px 3px 6px rgba(16, 37, 50,0.16), inset -2px -2px 5px rgba(255,255,255,0.75); font-family: var(--mono); font-size: 0.72rem; }
.detail-note { margin-top: 18px; color: var(--muted); font-size: 0.82rem; }

.spec-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 80px; }
.spec-list { margin: 0; }
.spec-row { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 28px; }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 700; }

.oem-hero { padding: 122px 0 76px; }
.oem-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(480px, 0.92fr) minmax(0, 1.08fr); }
.oem-hero-copy { padding: clamp(42px, 5vw, 76px) clamp(32px, 5vw, 72px) clamp(42px, 5vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.oem-hero-copy h1 { max-width: 680px; margin-bottom: 28px; font-size: clamp(3.5rem, 4vw, 3.8rem); }
.oem-hero-copy h1 span { display: block; white-space: nowrap; }
.oem-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.oem-limit { max-width: 560px; margin: 26px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 0.72rem; }

.oem-console { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-rows: minmax(420px, 1fr) auto; }
.oem-console-media { position: relative; overflow: hidden; background: var(--recess-floor); box-shadow: 0 0 0 1px rgba(16, 37, 50,0.28), 0 10px 24px rgba(16, 37, 50,0.14); }
.oem-console-media img { width: 100%; height: 100%; object-fit: contain; padding: clamp(44px, 6vw, 92px); mix-blend-mode: multiply; transition: opacity 260ms var(--ease), transform 480ms var(--ease); }
.oem-console-media.is-scene img { object-fit: cover; padding: 0; mix-blend-mode: normal; }
.oem-console-index { position: absolute; left: 18px; top: 18px; padding: 8px 10px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.08em; }
.oem-console-controls { border-top: 12px solid var(--recess-shell); display: grid; grid-template-columns: 0.78fr 1.22fr; }
.oem-switch { padding: 6px; background: var(--recess-shell); box-shadow: var(--recess-control); display: grid; grid-template-columns: repeat(2, 1fr); }
.oem-switch-button { min-height: 52px; padding: 10px 12px; border: 0; background: transparent; color: var(--ink); font-size: 0.76rem; font-weight: 800; cursor: pointer; }
.oem-switch-button.is-active { background: var(--ink); color: #fff; }
.oem-record-copy { min-height: 188px; padding: 24px 28px; background: var(--ink); color: #fff; }
.oem-record-copy .eyebrow { margin-bottom: 10px; color: var(--amber); }
.oem-record-copy h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 2.5vw, 2.8rem); }
.oem-record-copy p:last-child { margin-bottom: 0; color: rgba(255,255,255,0.68); font-size: 0.9rem; }

.scope-matrix { border-top: 1px solid var(--ink); }
.scope-row { min-height: 150px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 72px minmax(180px, 0.65fr) minmax(220px, 1fr) minmax(220px, 1fr); align-items: start; gap: 28px; padding: 28px 20px; transition: background 220ms var(--ease); }
.scope-row:not(.scope-heading):hover { background: rgba(255,255,255,0.5); }
.scope-heading { min-height: auto; padding-top: 12px; padding-bottom: 12px; color: var(--muted); font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase; }
.scope-row h3, .scope-row p { margin: 0; }
.scope-row h3 { font-size: 1.5rem; }
.scope-row p { color: var(--muted); font-size: 0.92rem; }
.scope-index { color: var(--blue); font-family: var(--mono); font-size: 0.75rem; font-weight: 700; }

.oem-inputs { background: var(--ink); color: #fff; }
.buyer-input-stage { border-top: 1px solid rgba(255,255,255,0.25); border-bottom: 1px solid rgba(255,255,255,0.25); display: grid; grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr); }
.buyer-input-copy { padding: clamp(40px, 5vw, 76px); border-right: 1px solid rgba(255,255,255,0.2); }
.buyer-input-copy .eyebrow { color: var(--amber); }
.buyer-input-copy h2 { font-size: clamp(2.7rem, 4.2vw, 4.8rem); }
.buyer-input-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.68); }
.buyer-input-list { display: grid; grid-template-columns: repeat(2, 1fr); }
.buyer-input-list > div { min-height: 230px; padding: 28px; border-right: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); display: flex; flex-direction: column; }
.buyer-input-list span { color: var(--amber); font-family: var(--mono); font-size: 0.72rem; }
.buyer-input-list strong { margin-top: auto; font-family: var(--display); font-size: 1.55rem; }
.buyer-input-list p { margin: 12px 0 0; color: rgba(255,255,255,0.62); font-size: 0.88rem; }

.production-evidence { background: #dfe8e3; }
.production-strip { display: grid; grid-template-columns: 1.35fr 0.82fr 0.82fr; gap: 12px; }
.production-frame { margin: 0; padding: 10px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.production-frame img { width: 100%; height: 520px; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.24); }
.production-frame:not(.production-frame-wide) img { object-position: center; }
.production-frame figcaption { min-height: 62px; padding: 18px 10px 8px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; font-weight: 800; }
.production-frame figcaption span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }

.faq-grid { display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-ledger { border-top: 1px solid var(--ink); }
.faq-ledger details { border-bottom: 1px solid var(--ink); }
.faq-ledger summary { min-height: 94px; padding: 24px 0; list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.faq-ledger summary::-webkit-details-marker { display: none; }
.faq-ledger summary span { color: var(--blue); font-family: var(--mono); font-size: 1.1rem; transition: transform 220ms var(--ease); }
.faq-ledger details[open] summary span { transform: rotate(45deg); }
.faq-ledger details p { max-width: 720px; margin: -4px 0 28px; color: var(--muted); }

.manufacturing-hero { padding: 122px 0 76px; }
.manufacturing-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr); }
.manufacturing-hero-copy { padding: clamp(42px, 5vw, 76px) clamp(34px, 5vw, 72px) clamp(42px, 5vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.manufacturing-hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.7rem, 4.7vw, 5rem); }
.manufacturing-hero-copy h1 span { display: block; white-space: nowrap; }
.manufacturing-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.manufacturing-note { margin: 26px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 0.7rem; }
.manufacturing-hero-media { min-width: 0; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; }
.manufacturing-hero-media img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.26), 0 10px 24px rgba(16, 37, 50,0.14); }
.manufacturing-hero-media figcaption { position: absolute; inset: auto 12px 12px; min-height: 74px; padding: 16px 20px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.manufacturing-hero-media figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.7rem; }

.factory-index { min-height: 680px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 210px minmax(0, 1fr) minmax(300px, 0.62fr); }
.factory-index-tabs { border-right: 12px solid var(--recess-shell); background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-rows: repeat(4, 1fr); }
.factory-index-button { min-height: 100px; padding: 22px 18px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 8px; }
.factory-index-button span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }
.factory-index-button strong { font-family: var(--display); font-size: 1.08rem; }
.factory-index-button.is-active { background: var(--ink); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.factory-index-button.is-active span { color: var(--amber); }
.factory-index-media { position: relative; overflow: hidden; background: var(--recess-floor); }
.factory-index-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 260ms var(--ease), transform 520ms var(--ease); }
.factory-index-media span { position: absolute; left: 18px; bottom: 18px; padding: 9px 11px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.08em; }
.factory-index-copy { padding: clamp(34px, 4vw, 60px); border-left: 12px solid var(--recess-shell); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.factory-index-copy .eyebrow { color: var(--amber); }
.factory-index-copy h3 { font-size: clamp(2.3rem, 3.2vw, 3.7rem); }
.factory-index-copy p:last-child { color: rgba(255,255,255,0.68); }

.manufacturing-record { background: var(--ink); color: #fff; }
.manufacturing-record .section-head { border-color: #fff; }
.manufacturing-record .section-head .lede { color: rgba(255,255,255,0.68); }
.manufacturing-record .eyebrow { color: var(--amber); }
.manufacturing-ledger { border-top: 1px solid rgba(255,255,255,0.3); }
.manufacturing-ledger-row { min-height: 142px; padding: 28px 18px; border-bottom: 1px solid rgba(255,255,255,0.24); display: grid; grid-template-columns: 70px minmax(200px, 0.72fr) minmax(260px, 1fr) minmax(220px, 0.7fr); align-items: center; gap: 28px; }
.manufacturing-ledger-row span { color: var(--amber); font-family: var(--mono); font-size: 0.72rem; }
.manufacturing-ledger-row h3, .manufacturing-ledger-row p { margin: 0; }
.manufacturing-ledger-row p { color: rgba(255,255,255,0.64); }
.manufacturing-ledger-row strong { text-align: right; font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; }

.equipment-section { background: #dfe8e3; }
.equipment-gallery { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 12px; }
.equipment-shot { margin: 0; padding: 10px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.equipment-shot img { width: 100%; height: 520px; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.24); }
.equipment-shot figcaption { min-height: 68px; padding: 18px 10px 8px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; font-weight: 800; }
.equipment-shot figcaption span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }

.about-manufacturing { background: var(--paper); }
.about-manufacturing-grid { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.08fr 0.92fr; }
.about-manufacturing-image { min-height: 680px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.about-manufacturing-image img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.24); }
.about-manufacturing-copy { padding: clamp(42px, 5vw, 76px); border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.about-manufacturing-copy h2 { font-size: clamp(3rem, 4.4vw, 5rem); }
.about-manufacturing-copy > p:not(.eyebrow) { color: var(--muted); }
.company-identity { margin: 28px 0 0; border-top: 1px solid var(--ink); }
.company-identity div { padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 22px; }
.company-identity dt { color: var(--muted); font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; }
.company-identity dd { margin: 0; font-weight: 700; }

.factory-cta { padding: clamp(38px, 6vw, 82px); border-top: 5px solid var(--blue); background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: clamp(42px, 8vw, 120px); }
.factory-cta .eyebrow { color: var(--amber); }
.factory-cta h2 { max-width: 800px; margin-bottom: 0; }
.factory-cta p { color: rgba(255,255,255,0.68); }

.contact-hero { padding: 122px 0 76px; }
.contact-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr); }
.contact-hero-copy { padding: clamp(42px, 5vw, 76px) clamp(34px, 5vw, 72px) clamp(42px, 5vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.contact-hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.45rem, 4.55vw, 4.9rem); }
.contact-hero-copy h1 span { display: block; white-space: nowrap; }
.contact-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.contact-direct { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 5px; }
.contact-direct span { margin-bottom: 5px; color: var(--blue); font-family: var(--mono); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; }
.contact-direct a { width: fit-content; font-weight: 700; }

.contact-hero-record { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.contact-record-head, .brief-receipt-head { min-height: 52px; padding: 0 16px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; }
.contact-record-head strong, .brief-receipt-head strong { color: var(--amber); }
.contact-record-product { min-height: 420px; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); position: relative; overflow: hidden; }
.contact-record-product::before { content: "PROJECT\A BRIEF"; white-space: pre; position: absolute; top: 28px; left: 30px; color: rgba(16, 37, 50,0.06); font-family: var(--display); font-size: clamp(4.5rem, 8vw, 9rem); font-weight: 800; line-height: 0.72; letter-spacing: -0.07em; }
.contact-record-product img { width: 100%; height: 100%; object-fit: contain; padding: 56px 40px; mix-blend-mode: multiply; position: relative; z-index: 1; }
.contact-record-product span { position: absolute; left: 18px; bottom: 18px; z-index: 2; padding: 9px 11px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 0.67rem; }
.contact-record-sample { margin: 0; border-top: 8px solid var(--recess-shell); background: var(--paper); display: grid; grid-template-columns: 1fr 1fr; }
.contact-record-sample div { min-height: 92px; padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-record-sample dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.contact-record-sample dd { margin: 7px 0 0; font-weight: 700; line-height: 1.25; }

.brief-primer { padding: clamp(68px, 7vw, 110px) 0; background: var(--ink); color: #fff; }
.brief-primer-head { max-width: 940px; margin-bottom: 54px; display: grid; grid-template-columns: minmax(0, 1fr) 0.55fr; gap: 52px; align-items: end; }
.brief-primer-head .eyebrow { grid-column: 1 / -1; margin-bottom: -22px; color: var(--amber); }
.brief-primer-head h2 { margin: 0; font-size: clamp(2.8rem, 4.6vw, 4.8rem); }
.brief-primer-head > p:last-child { margin: 0; color: rgba(255,255,255,0.64); }
.brief-primer-ledger { border-top: 1px solid rgba(255,255,255,0.34); display: grid; grid-template-columns: repeat(5, 1fr); }
.brief-primer-row { min-height: 230px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.34); display: flex; flex-direction: column; }
.brief-primer-row:first-child { border-left: 1px solid rgba(255,255,255,0.2); }
.brief-primer-row span { color: var(--amber); font-family: var(--mono); font-size: 0.7rem; }
.brief-primer-row strong { margin-top: auto; font-family: var(--display); font-size: 1.35rem; }
.brief-primer-row p { margin: 10px 0 0; color: rgba(255,255,255,0.58); font-size: 0.88rem; }

.contact-workspace-section { background: #dfe8e3; }
.contact-workspace { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); align-items: start; }
.project-brief-form { background: var(--paper); }
.brief-form-head { min-height: 56px; padding: 0 20px; border-bottom: 1px solid var(--ink); background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; }
.brief-form-head strong { color: var(--amber); }
.brief-field-row { min-height: 108px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 220px minmax(0, 1fr); }
.brief-field-row > label, .brief-priority-row legend { padding: 26px 22px; color: var(--muted); font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.brief-field-row > label span, .brief-priority-row legend span { float: right; color: var(--blue); }
.brief-field-row input, .brief-field-row select, .brief-field-row textarea { width: 100%; min-width: 0; padding: 24px; border: 0; border-left: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; color: var(--ink); }
.brief-field-row input:focus, .brief-field-row select:focus, .brief-field-row textarea:focus { background: #eef3f4; box-shadow: inset 4px 0 0 var(--blue); }
.brief-field-split { grid-template-columns: 170px minmax(140px, 1fr) 170px minmax(140px, 1fr); }
.brief-field-split label:nth-of-type(2) { border-left: 1px solid var(--line); }
.brief-field-message { min-height: 190px; }
.brief-field-message textarea { resize: vertical; }
.brief-priority-row { min-width: 0; margin: 0; padding: 0; border: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 220px repeat(2, 1fr); }
.brief-priority-row legend { float: left; grid-row: 1 / 3; width: 220px; height: 100%; border-right: 1px solid var(--line); }
.brief-priority-row label { min-height: 76px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; display: flex; align-items: center; gap: 12px; }
.brief-priority-row input { width: 18px; height: 18px; accent-color: var(--blue); }
.brief-priority-row input:checked + span { color: var(--blue); font-weight: 800; }
.brief-form-actions { padding: 28px 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.text-action { min-height: 44px; border-bottom: 1px solid currentColor; display: inline-flex; align-items: center; font-weight: 800; }
.form-status { margin: 0; padding: 0 22px 26px; color: var(--muted); font-size: 0.82rem; }

.brief-receipt { position: sticky; top: 76px; min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.brief-receipt-media { height: 400px; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); overflow: hidden; }
.brief-receipt-media img { width: 100%; height: 100%; padding: 38px; object-fit: contain; mix-blend-mode: multiply; }
.brief-receipt-body { min-height: 440px; padding: 30px; background: var(--ink); color: #fff; }
.brief-receipt-body .eyebrow { color: var(--amber); }
.brief-receipt-body h3 { margin-bottom: 24px; font-size: clamp(2rem, 3vw, 3.35rem); }
.brief-receipt-body dl { margin: 0; border-top: 1px solid rgba(255,255,255,0.22); }
.brief-receipt-body dl div { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.16); display: grid; grid-template-columns: 0.52fr 1.48fr; gap: 18px; }
.brief-receipt-body dt { color: rgba(255,255,255,0.52); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.brief-receipt-body dd { margin: 0; font-weight: 700; }
.brief-receipt-summary { margin: 24px 0 0; color: rgba(255,255,255,0.68); font-size: 0.9rem; }

.brief-next-step { background: var(--paper); }
.brief-next-grid { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.08fr 0.92fr; }
.brief-next-media { min-height: 680px; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; }
.brief-next-media img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.24); }
.brief-next-media figcaption { position: absolute; left: 28px; bottom: 28px; padding: 9px 11px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.67rem; }
.brief-next-copy { padding: clamp(42px, 5vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.brief-next-copy h2 { font-size: clamp(3rem, 4.3vw, 4.8rem); }
.brief-next-list { margin: 20px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.brief-next-list li { padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.brief-next-list li > span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }
.brief-next-list strong { font-family: var(--display); font-size: 1.25rem; }
.brief-next-list p { margin: 6px 0 0; color: var(--muted); font-size: 0.9rem; }

.contact-final { background: var(--blue); color: #fff; }
.contact-final-grid { padding-block: clamp(34px, 4vw, 62px); display: grid; grid-template-columns: 1fr 0.72fr; gap: clamp(48px, 9vw, 140px); align-items: end; }
.contact-final-grid .eyebrow { color: var(--amber-soft); }
.contact-final-grid h2 { margin-bottom: 0; }
.contact-final-grid p { color: rgba(255,255,255,0.76); }
.contact-final-grid .button { background: #fff; color: var(--blue); }
.contact-final-grid .button::after { background: var(--ink); color: #fff; }

.products-hero { padding: 122px 0 0; }
.products-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.18fr); }
.products-hero-copy { padding: clamp(42px, 5vw, 76px) clamp(34px, 5vw, 72px) clamp(42px, 5vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.products-hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.7rem, 4.8vw, 5.2rem); }
.products-hero-copy h1 span { display: block; white-space: nowrap; }
.products-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.products-hero-status { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 6px; }
.products-hero-status span { color: var(--blue); font-family: var(--mono); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; }
.products-hero-status strong { max-width: 520px; font-size: 0.92rem; }
.products-hero-media { min-width: 0; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; }
.products-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.26); }
.products-hero-media figcaption { position: absolute; inset: auto 12px 12px; min-height: 74px; padding: 16px 20px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.products-hero-media figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.7rem; }
.product-family-ribbon { width: var(--container); margin: 0 auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(5, 1fr); }
.product-family-ribbon span { min-height: 76px; border-right: 1px solid var(--line); display: grid; place-items: center; font-family: var(--mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-family-ribbon span:first-child { border-left: 1px solid var(--line); }

.range-index-section { background: #dfe8e3; }
.range-index { min-height: 720px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 200px minmax(0, 1fr) minmax(340px, 0.68fr); }
.range-index-tabs { background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-rows: repeat(5, 1fr); }
.range-index-button { min-height: 100px; padding: 22px 18px; border: 0; border-right: 12px solid var(--recess-shell); border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 8px; }
.range-index-button span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }
.range-index-button strong { font-family: var(--display); font-size: 1.08rem; }
.range-index-button.is-active { background: var(--ink); color: #fff; }
.range-index-button.is-active span { color: var(--amber); }
.range-index-media { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; overflow: hidden; }
.range-index-media img { width: 100%; height: 100%; padding: clamp(30px, 4vw, 70px); object-fit: contain; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); mix-blend-mode: multiply; transition: opacity 240ms var(--ease), transform 420ms var(--ease); }
.range-index-media > span { position: absolute; left: 30px; bottom: 30px; padding: 9px 11px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; }
.range-index-copy { padding: clamp(34px, 4vw, 58px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.range-index-copy h3 { margin-bottom: 18px; font-size: clamp(2.8rem, 3.6vw, 4.2rem); }
.range-index-copy > div > p:last-child { color: var(--muted); }
.range-index-copy dl { margin: 24px 0 30px; border-top: 1px solid var(--ink); }
.range-index-copy dl div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.range-index-copy dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.range-index-copy dd { margin: 5px 0 0; font-weight: 700; }
.range-index-copy .button { align-self: flex-start; }

.product-directory-section { background: var(--paper); }
.product-directory { border-top: 1px solid var(--ink); }
.product-directory-row { min-height: 150px; padding: 28px 18px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 62px minmax(180px, 0.72fr) minmax(280px, 1.2fr) minmax(150px, 0.5fr) minmax(160px, 0.55fr); align-items: center; gap: 24px; }
.product-directory-row span { color: var(--blue); font-family: var(--mono); font-size: 0.7rem; }
.product-directory-row h3, .product-directory-row p { margin: 0; }
.product-directory-row h3 { font-size: 1.7rem; }
.product-directory-row p { color: var(--muted); }
.product-directory-row strong { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; }
.product-directory-row a { min-height: 44px; border-bottom: 1px solid currentColor; display: inline-flex; align-items: center; justify-content: flex-end; text-align: right; font-weight: 800; }
.product-directory-row:hover { background: #eef2f3; }

.selection-paths { background: #dfe8e3; }
.selection-path-grid { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.selection-path { min-width: 0; display: grid; grid-template-rows: 520px auto; }
.selection-path + .selection-path { border-left: 1px solid var(--ink); }
.selection-path-media { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); overflow: hidden; }
.selection-path-media img { width: 100%; height: 100%; padding: 36px; object-fit: contain; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); mix-blend-mode: multiply; }
.selection-path-catalog .selection-path-media img { padding: 18px; }
.selection-path-copy { min-height: 300px; padding: clamp(34px, 4vw, 58px); background: var(--paper); }
.selection-path-copy > span { color: var(--blue); font-family: var(--mono); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; }
.selection-path-copy h3 { margin: 18px 0; font-size: clamp(2rem, 3vw, 3.3rem); }
.selection-path-copy p { max-width: 600px; color: var(--muted); }

.product-inputs { background: var(--ink); color: #fff; }
.product-inputs-head { max-width: 820px; margin-bottom: 50px; }
.product-inputs-head .eyebrow { color: var(--amber); }
.product-inputs-head h2 { margin: 0; }
.product-inputs-grid { border-top: 1px solid rgba(255,255,255,0.3); display: grid; grid-template-columns: repeat(4, 1fr); }
.product-inputs-grid > div { min-height: 220px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.3); display: flex; flex-direction: column; }
.product-inputs-grid > div:first-child { border-left: 1px solid rgba(255,255,255,0.2); }
.product-inputs-grid span { color: var(--amber); font-family: var(--mono); font-size: 0.7rem; }
.product-inputs-grid strong { margin-top: auto; font-family: var(--display); font-size: 1.35rem; }
.product-inputs-grid p { margin: 9px 0 0; color: rgba(255,255,255,0.58); font-size: 0.88rem; }

.product-range-cta-section { background: var(--lab); }
.product-range-cta { padding: clamp(38px, 6vw, 82px); border-top: 5px solid var(--blue); background: var(--paper); display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: clamp(42px, 8vw, 120px); }
.product-range-cta h2 { max-width: 820px; margin-bottom: 0; }
.product-range-cta p { color: var(--muted); }

.lawn-hero { padding: 122px 0 76px; }
.lawn-hero-grid { min-height: 790px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(430px, 0.8fr) minmax(0, 1.2fr); }
.lawn-hero-copy { padding: clamp(42px, 5vw, 76px) clamp(34px, 5vw, 72px) clamp(42px, 5vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.lawn-hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.7rem, 4.8vw, 5.2rem); }
.lawn-hero-copy h1 span { display: block; white-space: nowrap; }
.lawn-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.lawn-hero-data { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 0.45fr 1fr; gap: 20px; }
.lawn-hero-data div { display: grid; gap: 4px; }
.lawn-hero-data strong { font-family: var(--display); font-size: 1.25rem; }
.lawn-hero-data span { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.lawn-hero-media { min-width: 0; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; }
.lawn-hero-media img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 0 0 1px rgba(16, 37, 50,0.26); }
.lawn-hero-media figcaption { position: absolute; inset: auto 12px 12px; min-height: 74px; padding: 16px 20px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lawn-hero-media figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.67rem; }

.lawn-lineup-section { background: #dfe8e3; }
.lawn-explorer { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.lawn-lineup { min-height: 390px; border-bottom: 12px solid var(--recess-shell); display: grid; grid-template-columns: repeat(6, minmax(170px, 1fr)); overflow-x: auto; }
.lawn-model-button { min-width: 170px; padding: 18px 14px 16px; border: 0; border-right: 1px solid rgba(16, 37, 50,0.18); background: var(--recess-floor); cursor: pointer; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 10px; text-align: left; transition: background 220ms var(--ease), color 220ms var(--ease); }
.lawn-model-button > span, .lawn-model-button > small { font-family: var(--mono); font-size: 0.67rem; font-weight: 700; }
.lawn-model-button > span { color: var(--blue); }
.lawn-model-button > small { color: var(--muted); }
.lawn-model-button img { width: 100%; height: 280px; padding: 14px; object-fit: contain; mix-blend-mode: multiply; }
.lawn-model-button.is-active { background: var(--ink); color: #fff; }
.lawn-model-button.is-active > span { color: var(--amber); }
.lawn-model-button.is-active > small { color: rgba(255,255,255,0.65); }
.lawn-model-button.is-active img { mix-blend-mode: normal; background: var(--recess-floor); }

.lawn-record { min-height: 730px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr); }
.lawn-record-media { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; overflow: hidden; }
.lawn-record-media > img { width: 100%; height: 100%; padding: clamp(46px, 6vw, 90px); object-fit: contain; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); mix-blend-mode: multiply; }
.lawn-record-media.is-scene > img { padding: 0; object-fit: cover; mix-blend-mode: normal; }
.lawn-record-media > span { position: absolute; left: 30px; bottom: 30px; padding: 9px 11px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase; }
.lawn-view-switch { position: absolute; top: 30px; left: 30px; right: 30px; z-index: 2; padding: 6px; background: var(--recess-shell); box-shadow: var(--recess-control); display: flex; gap: 6px; }
.lawn-view-switch button { min-height: 44px; padding: 8px 16px; border: 0; background: transparent; cursor: pointer; font-size: 0.78rem; font-weight: 800; }
.lawn-view-switch button.is-active { background: var(--ink); color: #fff; }
.lawn-record-copy { padding: clamp(38px, 5vw, 68px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.lawn-record-title h3 { margin-bottom: 18px; font-size: clamp(2.5rem, 3.5vw, 4rem); }
.lawn-record-title > p:last-child { color: var(--muted); }
.lawn-spec-list { margin: 26px 0 30px; border-top: 1px solid var(--ink); }
.lawn-spec-list div { padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 20px; }
.lawn-spec-list dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.lawn-spec-list dd { margin: 0; font-weight: 700; }
.lawn-record-copy .button { align-self: flex-start; }
.lawn-source-note { max-width: 840px; margin: 22px 0 0 auto; color: var(--muted); font-family: var(--mono); font-size: 0.68rem; text-align: right; }

.lawn-applications { background: var(--paper); }
.lawn-application-strip { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.lawn-application-strip figure { min-width: 0; margin: 0; border-right: 1px solid var(--ink); position: relative; overflow: hidden; }
.lawn-application-strip figure:last-child { border-right: 0; }
.lawn-application-strip img { width: 100%; height: 620px; object-fit: cover; transition: transform 600ms var(--ease); }
.lawn-application-strip figure:hover img { transform: scale(1.025); }
.lawn-application-strip figcaption { position: absolute; inset: auto 0 0; min-height: 110px; padding: 20px 22px; background: linear-gradient(transparent, rgba(16, 37, 50,0.94)); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.lawn-application-strip figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.65rem; }
.lawn-application-strip figcaption strong { margin-top: 6px; }

.lawn-selection-ledger { background: var(--ink); color: #fff; }
.lawn-selection-ledger .section-head { border-color: #fff; }
.lawn-selection-ledger .section-head .lede { color: rgba(255,255,255,0.66); }
.lawn-selection-ledger .eyebrow { color: var(--amber); }
.lawn-decision-list { border-top: 1px solid rgba(255,255,255,0.3); }
.lawn-decision-list article { min-height: 145px; padding: 28px 18px; border-bottom: 1px solid rgba(255,255,255,0.24); display: grid; grid-template-columns: 64px minmax(200px, 0.72fr) minmax(280px, 1.2fr) minmax(220px, 0.68fr); align-items: center; gap: 26px; }
.lawn-decision-list span { color: var(--amber); font-family: var(--mono); font-size: 0.7rem; }
.lawn-decision-list h3, .lawn-decision-list p { margin: 0; }
.lawn-decision-list p { color: rgba(255,255,255,0.62); }
.lawn-decision-list strong { text-align: right; font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; }

.lawn-range-cta-section { background: var(--lab); }
.lawn-range-cta { padding: clamp(38px, 6vw, 82px); border-top: 5px solid var(--blue); background: var(--paper); display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: clamp(42px, 8vw, 120px); }
.lawn-range-cta h2 { margin-bottom: 0; }
.lawn-range-cta p { color: var(--muted); }

.cpd-hero { padding: 122px 0 78px; }
.cpd-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr); }
.cpd-hero-media { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; overflow: hidden; }
.cpd-hero-media > img { width: 100%; height: 100%; padding: clamp(62px, 7vw, 108px); object-fit: contain; background: var(--recess-floor); box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); mix-blend-mode: multiply; transition: opacity 260ms var(--ease), transform 520ms var(--ease); }
.cpd-hero-media.is-scene > img { padding: 0; object-fit: cover; mix-blend-mode: normal; }
.cpd-hero-media > span { position: absolute; left: 30px; bottom: 30px; padding: 9px 11px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.05em; }
.cpd-media-switch { position: absolute; z-index: 2; inset: 30px 30px auto; padding: 6px; background: var(--recess-shell); box-shadow: var(--recess-control); display: flex; gap: 5px; }
.cpd-media-switch button { min-height: 44px; padding: 8px 14px; border: 0; background: transparent; cursor: pointer; font-size: 0.76rem; font-weight: 800; }
.cpd-media-switch button.is-active { background: var(--ink); color: #fff; }
.cpd-hero-copy { padding: clamp(42px, 5vw, 72px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.cpd-hero-copy h1 { margin-bottom: 10px; font-size: clamp(4.2rem, 6vw, 6.8rem); }
.cpd-hero-copy h2 { max-width: 580px; margin-bottom: 26px; font-size: clamp(2rem, 3vw, 3.3rem); }
.cpd-hero-copy .lede { font-size: 1.08rem; }
.cpd-hero-facts { margin: 28px 0 30px; border-top: 1px solid var(--ink); }
.cpd-hero-facts div { padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 18px; }
.cpd-hero-facts dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.cpd-hero-facts dd { margin: 0; font-weight: 800; }
.cpd-hero-copy .button { align-self: flex-start; }
.cpd-source { margin: 20px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.64rem; }

.cpd-height-section { background: var(--ink); color: #fff; }
.cpd-height-section .section-head { border-color: rgba(255,255,255,0.7); }
.cpd-height-section .section-head .lede { color: rgba(255,255,255,0.66); }
.cpd-height-section .eyebrow { color: var(--amber); }
.cpd-height-register { border-top: 1px solid rgba(255,255,255,0.34); border-bottom: 1px solid rgba(255,255,255,0.34); display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr); }
.cpd-height-scale { min-height: 310px; padding: 38px 18px 28px; border-right: 1px solid rgba(255,255,255,0.26); display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.cpd-height-scale::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 50%; height: 1px; background: rgba(255,255,255,0.42); }
.cpd-height-scale button { min-width: 0; border: 0; background: transparent; color: rgba(255,255,255,0.56); cursor: pointer; display: grid; place-content: center; gap: 4px; position: relative; }
.cpd-height-scale button::before { content: ""; width: 14px; height: 14px; margin: 0 auto 24px; border: 1px solid rgba(255,255,255,0.75); background: var(--ink); transform: rotate(45deg); transition: background 220ms var(--ease), transform 220ms var(--ease); }
.cpd-height-scale button span { font-family: var(--display); font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 650; letter-spacing: -0.04em; }
.cpd-height-scale button small { font-family: var(--mono); font-size: 0.65rem; }
.cpd-height-scale button.is-active { color: #fff; }
.cpd-height-scale button.is-active::before { background: var(--amber); transform: rotate(45deg) scale(1.35); }
.cpd-height-output { min-height: 310px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.cpd-height-output > span { color: var(--amber); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; }
.cpd-height-output strong { margin: 16px 0; font-family: var(--display); font-size: clamp(2.7rem, 4vw, 4.8rem); line-height: 0.95; }
.cpd-height-output p { margin: 0; color: rgba(255,255,255,0.66); }
.cpd-height-note { grid-column: 1 / -1; margin: 0; padding: 16px 18px; border-top: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.54); font-family: var(--mono); font-size: 0.65rem; }

.cpd-spec-section { background: var(--paper); }
.cpd-spec-grid { display: grid; grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 140px); align-items: start; }
.cpd-spec-intro { position: sticky; top: 120px; }
.cpd-spec-intro h2 { margin-bottom: 28px; }
.cpd-spec-intro > p:last-child { max-width: 540px; color: var(--muted); }
.cpd-spec-ledger { margin: 0; border-top: 1px solid var(--ink); }
.cpd-spec-ledger div { min-height: 96px; padding: 24px 4px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr); align-items: center; gap: 24px; }
.cpd-spec-ledger dt { color: var(--muted); font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; }
.cpd-spec-ledger dd { margin: 0; font-family: var(--display); font-size: clamp(1.25rem, 1.8vw, 1.7rem); font-weight: 650; }

.cpd-detail-section { background: #dfe8e3; }
.cpd-detail-mosaic { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: repeat(2, 1fr); }
.cpd-detail-mosaic figure { min-width: 0; min-height: 0; margin: 0; padding: 10px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; overflow: hidden; }
.cpd-detail-mosaic figure + figure { border-left: 1px solid rgba(16, 37, 50,0.25); }
.cpd-detail-mosaic figure:last-child { border-top: 1px solid rgba(16, 37, 50,0.25); }
.cpd-detail-mosaic .cpd-detail-primary { grid-row: 1 / 3; }
.cpd-detail-mosaic img { width: 100%; height: 100%; object-fit: cover; box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.2); transition: transform 600ms var(--ease); }
.cpd-detail-mosaic figure:hover img { transform: scale(1.02); }
.cpd-detail-mosaic figcaption { position: absolute; inset: auto 22px 22px; padding: 13px 15px; background: rgba(16, 37, 50,0.9); color: #fff; display: grid; gap: 3px; }
.cpd-detail-mosaic figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.62rem; }

.cpd-application-section { padding: clamp(84px, 9vw, 150px) 0; background: var(--lab); }
.cpd-application-grid { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr); }
.cpd-application-main { min-width: 0; min-height: 720px; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); position: relative; }
.cpd-application-main img { width: 100%; height: 100%; object-fit: cover; box-shadow: inset 0 0 0 1px rgba(16, 37, 50,0.24); }
.cpd-application-main figcaption { position: absolute; left: 30px; bottom: 30px; padding: 9px 11px; background: var(--blue); color: #fff; font-family: var(--mono); font-size: 0.64rem; }
.cpd-application-copy { padding: clamp(42px, 5vw, 72px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.cpd-application-copy h2 { margin-bottom: 26px; font-size: clamp(2.7rem, 4vw, 4.6rem); }
.cpd-application-copy > p:not(.eyebrow) { color: var(--muted); }
.cpd-application-copy dl { margin: 28px 0 0; border-top: 1px solid var(--ink); }
.cpd-application-copy dl div { padding: 13px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 18px; }
.cpd-application-copy dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.cpd-application-copy dd { margin: 0; font-weight: 700; }

.cpd-confirm-section { background: var(--ink); color: #fff; }
.cpd-confirm-section .section-head { border-color: rgba(255,255,255,0.7); }
.cpd-confirm-section .section-head .lede { color: rgba(255,255,255,0.66); }
.cpd-confirm-section .eyebrow { color: var(--amber); }
.cpd-confirm-ledger { border-top: 1px solid rgba(255,255,255,0.3); }
.cpd-confirm-ledger article { min-height: 142px; padding: 28px 18px; border-bottom: 1px solid rgba(255,255,255,0.24); display: grid; grid-template-columns: minmax(160px, 0.55fr) minmax(260px, 0.9fr) minmax(0, 1.25fr); align-items: center; gap: 30px; }
.cpd-confirm-ledger span { color: var(--amber); font-family: var(--mono); font-size: 0.68rem; }
.cpd-confirm-ledger h3, .cpd-confirm-ledger p { margin: 0; }
.cpd-confirm-ledger p { color: rgba(255,255,255,0.64); }

.cpd-enquiry-section { background: #dfe8e3; }
.cpd-enquiry-grid { border-top: 5px solid var(--blue); background: var(--paper); display: grid; grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr); }
.cpd-enquiry-intro { padding: clamp(38px, 5vw, 68px); border-right: 1px solid var(--line); }
.cpd-enquiry-intro h2 { margin-bottom: 22px; font-size: clamp(2.7rem, 4vw, 4.4rem); }
.cpd-enquiry-intro > p:not(.eyebrow) { color: var(--muted); }
.cpd-enquiry-grid form { padding: clamp(38px, 5vw, 68px); }

.pole-hero { padding: 122px 0 78px; background: var(--lab); }
.pole-hero-grid { min-height: 760px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); display: grid; grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.22fr); }
.pole-hero-copy { padding: clamp(42px, 5vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.pole-hero-copy h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(3.55rem, 4.05vw, 4.55rem); }
.pole-hero-copy h1 span { display: block; white-space: nowrap; }
.pole-hero-copy .button { align-self: flex-start; margin-top: 10px; }
.pole-hero-facts { margin-top: 42px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 0.72fr 1.45fr 0.72fr; }
.pole-hero-facts div { min-height: 112px; padding: 19px 16px 12px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.pole-hero-facts div + div { padding-left: 16px; }
.pole-hero-facts div:last-child { border-right: 0; }
.pole-hero-facts strong { font-family: var(--display); font-size: clamp(1.35rem, 1.65vw, 1.8rem); letter-spacing: -0.04em; }
.pole-hero-facts span { color: var(--muted); font-family: var(--mono); font-size: 0.61rem; text-transform: uppercase; }
.pole-hero-media { min-width: 0; margin: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; }
.pole-hero-media img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; object-position: left center; transform: scale(1.12); transform-origin: left center; }
.pole-hero-media figcaption, .pole-catalog-media figcaption, .pole-evidence-grid figcaption { min-height: 64px; padding: 14px 16px; background: var(--paper); display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--mono); font-size: 0.62rem; }
.pole-hero-media figcaption span, .pole-catalog-media figcaption span, .pole-evidence-grid figcaption span { color: var(--blue); font-weight: 800; }

.pole-logic-section { background: var(--paper); }
.pole-head-axis { min-height: 360px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.pole-axis-line { position: absolute; left: 16.67%; right: 16.67%; top: 98px; height: 1px; background: var(--ink); }
.pole-head-axis article { min-width: 0; padding: 50px clamp(26px, 3vw, 48px); border-right: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.pole-head-axis article:last-child { border-right: 0; }
.pole-head-axis article > span { color: var(--blue); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; }
.pole-head-axis article > strong { width: 44px; height: 44px; margin: 30px 0 54px; border: 1px solid var(--ink); background: var(--paper); display: grid; place-items: center; position: relative; z-index: 1; font-family: var(--mono); font-size: 0.7rem; }
.pole-head-axis article h3 { margin-bottom: 15px; }
.pole-head-axis article p { max-width: 370px; margin-bottom: 0; color: var(--muted); }

.pole-catalog-section { background: #dfe8e3; }
.pole-catalog-workspace { min-height: 720px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 190px minmax(0, 1.45fr) minmax(320px, 0.62fr); }
.pole-catalog-tabs { border-right: 8px solid var(--recess-shell); background: var(--recess-floor); box-shadow: var(--recess-control); display: grid; grid-template-rows: repeat(5, 1fr); }
.pole-catalog-tabs button { min-width: 0; padding: 19px 16px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.18); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 7px; transition: background 220ms var(--ease), color 220ms var(--ease); }
.pole-catalog-tabs button:last-child { border-bottom: 0; }
.pole-catalog-tabs button span { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }
.pole-catalog-tabs button strong { font-family: var(--display); font-size: 1rem; }
.pole-catalog-tabs button.is-active { background: var(--ink); color: #fff; }
.pole-catalog-tabs button.is-active span { color: var(--amber); }
.pole-catalog-media { min-width: 0; margin: 0; border-right: 12px solid var(--recess-shell); background: #fff; display: grid; grid-template-rows: minmax(0, 1fr) auto; overflow: hidden; }
.pole-catalog-media img { width: 100%; height: 100%; min-height: 600px; padding: 16px; object-fit: contain; background: #fff; transition: opacity 220ms var(--ease); }
.pole-catalog-media figcaption { border-top: 1px solid var(--line); }
.pole-catalog-record { min-width: 0; padding: clamp(30px, 3.5vw, 52px); background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; }
.pole-catalog-record h3 { margin-bottom: 18px; font-size: clamp(2.5rem, 3.4vw, 4rem); }
.pole-catalog-record > div > p:last-child { color: var(--muted); }
.pole-catalog-record dl { margin: 28px 0; border-top: 1px solid var(--ink); }
.pole-catalog-record dl div { padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(90px, 0.65fr) minmax(0, 1.35fr); gap: 16px; }
.pole-catalog-record dt { color: var(--muted); font-family: var(--mono); font-size: 0.61rem; text-transform: uppercase; }
.pole-catalog-record dd { margin: 0; font-size: 0.86rem; font-weight: 800; }
.pole-catalog-record .button { align-self: flex-start; }
.pole-source-note { margin: 18px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.64rem; text-align: right; }

.pole-scale-section { background: var(--ink); color: #fff; }
.pole-scale-grid { display: grid; grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr); gap: clamp(58px, 8vw, 128px); }
.pole-scale-copy { align-self: center; }
.pole-scale-copy .eyebrow { color: var(--amber); }
.pole-scale-copy h2 { margin-bottom: 30px; }
.pole-scale-copy p { color: rgba(255,255,255,0.65); }
.pole-scale-copy .text-action { color: #fff; }
.pole-scale-ruler { min-height: 520px; padding: 28px 0 0; border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: repeat(4, 1fr); align-items: end; position: relative; }
.pole-scale-ruler::before, .pole-scale-ruler::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.14); }
.pole-scale-ruler::before { top: 33%; }
.pole-scale-ruler::after { top: 66%; }
.pole-scale-ruler div { height: 100%; padding: 0 14px; border-left: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.pole-scale-ruler div:last-child { border-right: 1px solid rgba(255,255,255,0.18); }
.pole-scale-ruler span { margin-bottom: auto; color: rgba(255,255,255,0.56); font-family: var(--mono); font-size: 0.58rem; }
.pole-scale-ruler strong { font-family: var(--display); font-size: clamp(1.6rem, 2.4vw, 2.8rem); letter-spacing: -0.04em; }
.pole-scale-ruler small { color: var(--amber); font-family: var(--mono); font-size: 0.58rem; }
.pole-scale-ruler i { width: 16px; height: var(--pole-height); margin: 13px auto 0; background: linear-gradient(to bottom, var(--amber) 0 12px, rgba(255,255,255,0.8) 12px 100%); display: block; position: absolute; left: calc(50% - 8px); bottom: 0; opacity: 0.75; }

.pole-brief-section { background: var(--paper); }
.pole-brief-ledger { border-top: 1px solid var(--ink); }
.pole-brief-ledger article { min-height: 145px; padding: 28px 18px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(120px, 0.44fr) minmax(260px, 0.78fr) minmax(0, 1.25fr); align-items: center; gap: 30px; }
.pole-brief-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.64rem; }
.pole-brief-ledger h3, .pole-brief-ledger p { margin: 0; }
.pole-brief-ledger p { color: var(--muted); }

.pole-evidence-section { background: #dfe8e3; }
.pole-evidence-grid { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr); }
.pole-evidence-grid figure { min-width: 0; margin: 0; border-right: 12px solid var(--recess-shell); background: #fff; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.pole-evidence-grid figure img { width: 100%; min-height: 540px; padding: 16px; object-fit: contain; background: #fff; }
.pole-evidence-grid > div { padding: clamp(42px, 5vw, 76px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.pole-evidence-grid > div h2 { margin-bottom: 28px; font-size: clamp(2.7rem, 4.3vw, 4.8rem); }
.pole-evidence-grid > div > p:not(.eyebrow) { color: var(--muted); }
.pole-evidence-grid .button { align-self: flex-start; margin-top: 16px; }

.pole-cta-section { background: var(--blue); color: #fff; }
.pole-cta { padding: clamp(42px, 6vw, 82px); border-top: 1px solid rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.6); display: grid; grid-template-columns: 1fr 0.64fr; align-items: end; gap: clamp(48px, 8vw, 128px); }
.pole-cta .eyebrow { color: var(--amber-soft); }
.pole-cta h2 { margin-bottom: 0; }
.pole-cta p { color: rgba(255,255,255,0.74); }
.pole-cta .button { background: #fff; color: var(--blue); }
.pole-cta .button::after { background: var(--ink); color: #fff; }

.wall-hero { min-height: 860px; padding-top: 76px; border-bottom: 1px solid var(--ink); background: var(--paper); display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(460px, 0.82fr); }
.wall-hero-scene { min-width: 0; overflow: hidden; position: relative; }
.wall-hero-scene::after { content: "BD4003 / APPLICATION RECORD"; position: absolute; left: 34px; bottom: 28px; padding: 10px 12px; background: rgba(16, 37, 50,0.88); color: #fff; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.06em; }
.wall-hero-scene img { width: 100%; height: 100%; object-fit: cover; object-position: left center; transform: scale(1.08); transform-origin: left center; }
.wall-hero-panel { padding: clamp(52px, 6vw, 96px); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.wall-hero-panel .eyebrow { color: var(--amber); }
.wall-hero-panel h1 { margin-bottom: 30px; font-size: clamp(3.7rem, 4.9vw, 5.9rem); }
.wall-hero-panel h1 span { display: block; white-space: nowrap; }
.wall-hero-panel .lede { color: rgba(255,255,255,0.68); }
.wall-hero-panel > .button { align-self: flex-start; margin-top: 12px; }
.wall-hero-meta { margin-top: 46px; border-top: 1px solid rgba(255,255,255,0.4); display: grid; grid-template-columns: repeat(3, 1fr); }
.wall-hero-meta div { min-height: 110px; padding: 18px 14px 10px 0; border-right: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; justify-content: space-between; }
.wall-hero-meta div + div { padding-left: 14px; }
.wall-hero-meta div:last-child { border-right: 0; }
.wall-hero-meta strong { color: #fff; font-family: var(--display); font-size: clamp(1.35rem, 1.8vw, 2rem); letter-spacing: -0.04em; }
.wall-hero-meta span { color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }

.wall-route-section { background: var(--paper); }
.wall-light-track { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.wall-light-track article { min-height: 390px; padding: 34px clamp(22px, 2.8vw, 42px); border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.wall-light-track article:last-child { border-right: 0; }
.wall-light-track article > span { color: var(--blue); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; }
.wall-beam { height: 74px; margin: 44px 0 50px; border-left: 8px solid var(--ink); position: relative; }
.wall-beam::after { content: ""; position: absolute; left: 8px; top: 32px; height: 10px; background: linear-gradient(90deg, rgba(120, 155, 73,0.95), rgba(120, 155, 73,0.08)); }
.wall-beam-short::after { width: 38%; }
.wall-beam-mid::after { width: 58%; }
.wall-beam-long::after { width: 78%; }
.wall-beam-wide::after { width: 100%; }
.wall-light-track h3 { margin-bottom: 16px; }
.wall-light-track p { margin-bottom: 0; color: var(--muted); }

.wall-register-section { background: #dfe8e3; }
.wall-register { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.58fr); }
.wall-register-tabs { grid-column: 1 / -1; border-bottom: 12px solid var(--recess-shell); background: var(--recess-floor); box-shadow: var(--recess-control); display: grid; grid-template-columns: repeat(6, 1fr); }
.wall-register-tabs button { min-width: 0; min-height: 88px; padding: 14px 16px; border: 0; border-right: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 6px; transition: background 220ms var(--ease), color 220ms var(--ease); }
.wall-register-tabs button:last-child { border-right: 0; }
.wall-register-tabs button span { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }
.wall-register-tabs button strong { font-family: var(--display); font-size: 1rem; }
.wall-register-tabs button.is-active { background: var(--ink); color: #fff; }
.wall-register-tabs button.is-active span { color: var(--amber); }
.wall-register-media { min-width: 0; margin: 0; border-right: 12px solid var(--recess-shell); background: #fff; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.wall-register-media img { width: 100%; height: 100%; min-height: 570px; padding: 14px; object-fit: contain; background: #fff; }
.wall-register-media figcaption { min-height: 64px; padding: 14px 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 22px; font-family: var(--mono); font-size: 0.61rem; }
.wall-register-media figcaption span { color: var(--blue); font-weight: 800; }
.wall-register-summary { min-width: 0; padding: clamp(34px, 4vw, 58px); background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; }
.wall-register-intro h3 { margin-bottom: 18px; font-size: clamp(3rem, 4.5vw, 5.2rem); }
.wall-register-intro > p:last-child { color: var(--muted); }
.wall-register-summary dl { margin: 30px 0; border-top: 1px solid var(--ink); }
.wall-register-summary dl div { padding: 11px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(92px, 0.68fr) minmax(0, 1.32fr); gap: 16px; }
.wall-register-summary dt { color: var(--muted); font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase; }
.wall-register-summary dd { margin: 0; font-size: 0.88rem; font-weight: 800; }
.wall-register-summary .button { align-self: flex-start; }
.wall-source-note { margin: 18px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.64rem; text-align: right; }

.wall-scenes-section { background: var(--paper); }
.wall-scene-sequence { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.wall-scene-sequence figure { min-width: 0; margin: 0; border-right: 1px solid var(--ink); overflow: hidden; }
.wall-scene-sequence figure:last-child { border-right: 0; }
.wall-scene-sequence img { width: 100%; height: 560px; object-fit: cover; object-position: left center; transition: transform 520ms var(--ease); }
.wall-scene-sequence figure:hover img { transform: scale(1.035); }
.wall-scene-sequence figcaption { min-height: 78px; padding: 17px 20px; border-top: 1px solid var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--mono); font-size: 0.62rem; }
.wall-scene-sequence figcaption span { color: var(--blue); font-weight: 800; }

.wall-range-section { background: var(--ink); color: #fff; }
.wall-range-grid { display: grid; grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr); gap: clamp(58px, 9vw, 140px); }
.wall-range-copy { align-self: center; }
.wall-range-copy .eyebrow { color: var(--amber); }
.wall-range-copy h2 { margin-bottom: 28px; }
.wall-range-copy p { color: rgba(255,255,255,0.64); }
.wall-range-copy .text-action { color: #fff; }
.wall-range-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.wall-range-ledger div { min-height: 118px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.22); display: grid; grid-template-columns: minmax(130px, 0.64fr) minmax(220px, 1fr) minmax(150px, 0.58fr); align-items: center; gap: 24px; }
.wall-range-ledger span, .wall-range-ledger small { color: rgba(255,255,255,0.52); font-family: var(--mono); font-size: 0.62rem; }
.wall-range-ledger strong { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.4rem); letter-spacing: -0.045em; }
.wall-range-ledger small { text-align: right; }

.wall-brief-section { background: var(--lab); }
.wall-brief-ledger { border-top: 1px solid var(--ink); }
.wall-brief-ledger article { min-height: 145px; padding: 28px 18px; border-bottom: 1px solid rgba(16, 37, 50,0.2); display: grid; grid-template-columns: minmax(130px, 0.48fr) minmax(260px, 0.82fr) minmax(0, 1.25fr); align-items: center; gap: 30px; }
.wall-brief-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.63rem; }
.wall-brief-ledger h3, .wall-brief-ledger p { margin: 0; }
.wall-brief-ledger p { color: var(--muted); }

.wall-cta-section { background: #dfe8e3; }
.wall-cta { min-height: 620px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr); }
.wall-cta figure { min-width: 0; margin: 0; border-right: 12px solid var(--recess-shell); overflow: hidden; }
.wall-cta figure img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.wall-cta > div { padding: clamp(42px, 5vw, 76px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.wall-cta h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 4.4vw, 5rem); }
.wall-cta > div > p:not(.eyebrow) { color: var(--muted); }
.wall-cta .button { align-self: flex-start; margin-top: 16px; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav-links { gap: 18px; }
  .nav-links > a:not(.button) { display: none; }
  .hero-shell, .page-hero-grid, .company-stage { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; }
  .hero-visual { min-height: 650px; }
  .fact-ribbon { grid-template-columns: repeat(2, 1fr); }
  .family-stage { grid-template-columns: 1fr; }
  .family-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
  .family-tab { min-width: 210px; }
  .process-strip { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(even) { margin-top: 0; }
  .contact-lab { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-media { min-height: 640px; }
  .detail-copy { min-height: 560px; }
  .oem-hero-grid { grid-template-columns: 1fr; }
  .oem-hero-copy { min-height: 620px; padding-left: 0; }
  .scope-row { grid-template-columns: 56px 0.8fr 1fr 1fr; gap: 18px; }
  .buyer-input-stage { grid-template-columns: 1fr; }
  .buyer-input-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .production-strip { grid-template-columns: 1fr 1fr; }
  .production-frame-wide { grid-column: 1 / -1; }
  .production-frame img { height: 460px; }
  .manufacturing-hero-grid { grid-template-columns: 1fr; }
  .manufacturing-hero-copy { min-height: 610px; padding-left: 0; }
  .factory-index { grid-template-columns: 180px minmax(0, 1fr); }
  .factory-index-copy { grid-column: 1 / -1; min-height: 340px; border-left: 0; border-top: 12px solid var(--recess-shell); }
  .manufacturing-ledger-row { grid-template-columns: 54px 0.7fr 1fr; }
  .manufacturing-ledger-row strong { grid-column: 2 / -1; text-align: left; }
  .equipment-gallery { grid-template-columns: 1fr 1fr; }
  .equipment-shot-wide { grid-column: 1 / -1; }
  .equipment-shot img { height: 460px; }
  .about-manufacturing-grid { grid-template-columns: 1fr; }
  .about-manufacturing-copy { border-top: 1px solid var(--line); border-left: 0; }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .contact-hero-copy { min-height: 610px; padding-left: 0; }
  .brief-primer-ledger { grid-template-columns: repeat(3, 1fr); }
  .brief-primer-row:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.2); }
  .contact-workspace { grid-template-columns: 1fr; }
  .brief-receipt { position: static; top: auto; }
  .brief-next-grid { grid-template-columns: 1fr; }
  .brief-next-copy { border-top: 1px solid var(--line); }
  .products-hero-grid { grid-template-columns: 1fr; }
  .products-hero-copy { min-height: 610px; padding-left: 0; }
  .range-index { grid-template-columns: 180px minmax(0, 1fr); }
  .range-index-copy { grid-column: 1 / -1; min-height: 360px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .product-directory-row { grid-template-columns: 52px 0.7fr 1.3fr; }
  .product-directory-row strong { grid-column: 2; }
  .product-directory-row a { grid-column: 3; justify-content: flex-start; text-align: left; }
  .selection-path { grid-template-rows: 440px auto; }
  .lawn-hero-grid { grid-template-columns: 1fr; }
  .lawn-hero-copy { min-height: 610px; padding-left: 0; }
  .lawn-record { grid-template-columns: 1fr; }
  .lawn-record-copy { min-height: 620px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .lawn-application-strip img { height: 520px; }
  .lawn-decision-list article { grid-template-columns: 52px 0.7fr 1.3fr; }
  .lawn-decision-list strong { grid-column: 2 / -1; text-align: left; }
  .cpd-hero-grid { grid-template-columns: 1fr; }
  .cpd-hero-media { min-height: 700px; }
  .cpd-hero-copy { min-height: 620px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .cpd-spec-grid { grid-template-columns: 1fr; gap: 52px; }
  .cpd-spec-intro { position: static; }
  .cpd-application-grid { grid-template-columns: 1fr; }
  .cpd-application-copy { min-height: 560px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .cpd-enquiry-grid { grid-template-columns: 1fr; }
  .cpd-enquiry-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .pole-hero-grid { grid-template-columns: 1fr; }
  .pole-hero-copy { min-height: 620px; }
  .pole-hero-media img { min-height: 650px; }
  .pole-catalog-workspace { grid-template-columns: 170px minmax(0, 1fr); }
  .pole-catalog-record { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); }
  .pole-scale-grid { grid-template-columns: 1fr; }
  .pole-evidence-grid { grid-template-columns: 1fr; }
  .pole-evidence-grid figure { border-right: 0; border-bottom: 12px solid var(--recess-shell); }
  .wall-hero { grid-template-columns: 1fr; }
  .wall-hero-scene { min-height: 650px; }
  .wall-hero-panel { min-height: 630px; }
  .wall-light-track { grid-template-columns: 1fr 1fr; }
  .wall-light-track article:nth-child(2) { border-right: 0; }
  .wall-light-track article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .wall-register { grid-template-columns: 1fr; }
  .wall-register-media { border-right: 0; border-bottom: 12px solid var(--recess-shell); }
  .wall-register-summary { min-height: 520px; }
  .wall-range-grid { grid-template-columns: 1fr; }
  .wall-cta { grid-template-columns: 1fr; }
  .wall-cta figure { min-height: 560px; border-right: 0; border-bottom: 12px solid var(--recess-shell); }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 680px); }
  body { font-size: 16px; }
  .section { padding: 78px 0; }
  .site-nav { min-height: 62px; padding-left: 18px; }
  .nav-links { position: fixed; inset: 76px 0 auto; padding: 24px; border-bottom: 1px solid var(--ink); border-radius: 0; background: #fff; box-shadow: none; display: none; flex-direction: column; align-items: stretch; }
  .menu-open .nav-links { display: flex; }
  .nav-links > a:not(.button) { display: flex; min-height: 48px; align-items: center; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links .button { width: 100%; }
  .hero { min-height: auto; padding-top: 98px; }
  .hero-shell { width: 100%; border-radius: 0; }
  .hero-copy { min-height: 600px; padding: 38px 24px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-visual { min-height: 520px; }
  .hero-product img { padding: 42px 26px 120px; }
  .hero-view-switch { right: 14px; top: 14px; }
  .hero-signal { left: 14px; bottom: 14px; width: calc(100% - 28px); }
  .fact-ribbon { width: calc(100vw - 32px); grid-template-columns: 1fr 1fr; }
  .fact-ribbon > div { min-height: 110px; padding: 17px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .brief-lab { grid-template-columns: 1fr; border-radius: 0; }
  .brief-controls { padding: 34px 24px; }
  .brief-output { min-height: 540px; }
  .brief-image img { padding: 32px 24px 190px; }
  .family-panel { grid-template-columns: 1fr; }
  .family-media { min-height: 430px; }
  .family-copy { padding: 34px 24px 40px; }
  .problem-line::before { left: 27px; }
  .problem-row { min-height: auto; margin-bottom: 46px; grid-template-columns: 56px 1fr; gap: 15px; }
  .problem-row > div:first-child { grid-column: 2; text-align: left; }
  .problem-row .problem-node { grid-column: 1; grid-row: 1 / 3; }
  .problem-row > div:last-child { grid-column: 2; }
  .proof-stage { grid-template-columns: 1fr; }
  .proof-media { min-height: 480px; }
  .proof-media img { padding: 28px; }
  .company-photo { min-height: 480px; }
  .company-copy { padding: 38px 24px; }
  .process-strip { grid-template-columns: 1fr; }
  .process-step { min-height: 220px; }
  .contact-lab { padding: 34px 22px; border-radius: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 120px; }
  .page-hero-grid { gap: 34px; }
  .page-hero h1 { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .page-hero-media { min-height: 500px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 116px; }
  .detail-media { min-height: 530px; }
  .detail-media img { padding: 70px 22px 30px; }
  .detail-copy { min-height: 520px; padding: 38px 24px; }
  .spec-section { grid-template-columns: 1fr; gap: 36px; }
  .spec-row { grid-template-columns: 1fr; gap: 5px; }
  .oem-hero { padding-top: 98px; }
  .oem-hero-copy { min-height: auto; padding: 48px 0 54px; }
  .oem-hero-copy h1 { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .oem-hero-copy h1 span { white-space: normal; }
  .oem-console { grid-template-rows: minmax(480px, 1fr) auto; }
  .oem-console-controls { grid-template-columns: 1fr; }
  .oem-record-copy { min-height: 210px; }
  .scope-heading { display: none; }
  .scope-row { min-height: auto; grid-template-columns: 44px 1fr; gap: 10px 16px; padding: 24px 0; }
  .scope-row h3 { grid-column: 2; }
  .scope-row p { grid-column: 2; }
  .scope-index { grid-row: 1 / 4; }
  .buyer-input-copy { padding: 38px 24px; }
  .buyer-input-list { grid-template-columns: 1fr; }
  .buyer-input-list > div { min-height: 190px; }
  .production-strip { grid-template-columns: 1fr; }
  .production-frame-wide { grid-column: auto; }
  .production-frame img { height: 430px; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .manufacturing-hero { padding-top: 98px; }
  .manufacturing-hero-copy { min-height: auto; padding: 48px 0 54px; }
  .manufacturing-hero-copy h1 { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .manufacturing-hero-copy h1 span { white-space: normal; }
  .manufacturing-hero-media { min-height: 540px; }
  .manufacturing-hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .factory-index { grid-template-columns: 1fr; }
  .factory-index-tabs { border-right: 0; border-bottom: 8px solid var(--recess-shell); grid-template-columns: repeat(4, minmax(128px, 1fr)); grid-template-rows: 1fr; overflow-x: auto; }
  .factory-index-button { min-width: 128px; }
  .factory-index-media { min-height: 470px; }
  .factory-index-copy { grid-column: auto; min-height: 300px; border-top-width: 8px; }
  .manufacturing-ledger-row { grid-template-columns: 40px 1fr; gap: 10px 16px; }
  .manufacturing-ledger-row h3, .manufacturing-ledger-row p, .manufacturing-ledger-row strong { grid-column: 2; }
  .manufacturing-ledger-row span { grid-row: 1 / 4; }
  .equipment-gallery { grid-template-columns: 1fr; }
  .equipment-shot-wide { grid-column: auto; }
  .equipment-shot img { height: 430px; }
  .about-manufacturing-image { min-height: 500px; }
  .about-manufacturing-copy { padding: 38px 24px; }
  .factory-cta { grid-template-columns: 1fr; }
  .contact-hero { padding-top: 98px; }
  .contact-hero-copy { min-height: auto; padding: 48px 0 54px; }
  .contact-hero-copy h1 { font-size: clamp(3.1rem, 13.5vw, 4.5rem); }
  .contact-hero-copy h1 span { white-space: normal; }
  .contact-hero-record { min-height: 650px; }
  .contact-record-product { min-height: 390px; }
  .brief-primer-head { grid-template-columns: 1fr; gap: 18px; }
  .brief-primer-head .eyebrow { grid-column: auto; margin-bottom: 0; }
  .brief-primer-ledger { grid-template-columns: 1fr; }
  .brief-primer-row { min-height: 160px; border-left: 1px solid rgba(255,255,255,0.2); }
  .brief-field-row, .brief-field-split { grid-template-columns: 1fr; }
  .brief-field-row > label { padding: 18px 20px 8px; }
  .brief-field-row input, .brief-field-row select, .brief-field-row textarea { padding: 14px 20px 22px; border-left: 0; }
  .brief-field-split label:nth-of-type(2) { border-top: 1px solid var(--line); border-left: 0; }
  .brief-priority-row { grid-template-columns: 1fr 1fr; }
  .brief-priority-row legend { float: none; grid-column: 1 / -1; grid-row: auto; width: 100%; height: auto; padding: 18px 20px; border-right: 0; }
  .brief-priority-row label { min-height: 84px; }
  .brief-form-actions { align-items: stretch; flex-direction: column; }
  .brief-form-actions .button, .brief-form-actions .text-action { width: 100%; justify-content: center; }
  .brief-receipt-media { height: 360px; }
  .brief-next-media { min-height: 500px; }
  .brief-next-copy { padding: 38px 24px; }
  .contact-final-grid { grid-template-columns: 1fr; }
  .products-hero { padding-top: 98px; }
  .products-hero-copy { min-height: auto; padding: 48px 0 54px; }
  .products-hero-copy h1 { font-size: clamp(3.1rem, 13.5vw, 4.5rem); }
  .products-hero-copy h1 span { white-space: normal; }
  .products-hero-media { min-height: 560px; }
  .products-hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .product-family-ribbon { width: calc(100vw - 32px); grid-template-columns: repeat(5, minmax(118px, 1fr)); overflow-x: auto; }
  .product-family-ribbon span { min-width: 118px; }
  .range-index { grid-template-columns: 1fr; }
  .range-index-tabs { border-bottom: 8px solid var(--recess-shell); grid-template-columns: repeat(5, minmax(118px, 1fr)); grid-template-rows: 1fr; overflow-x: auto; }
  .range-index-button { min-width: 118px; border-right: 1px solid rgba(16, 37, 50,0.2); }
  .range-index-media { min-height: 480px; }
  .range-index-copy { grid-column: auto; min-height: 380px; border-top-width: 8px; padding: 34px 24px; }
  .product-directory-row { grid-template-columns: 40px 1fr; gap: 10px 16px; }
  .product-directory-row span { grid-row: 1 / 5; }
  .product-directory-row h3, .product-directory-row p, .product-directory-row strong, .product-directory-row a { grid-column: 2; }
  .selection-path-grid { grid-template-columns: 1fr; }
  .selection-path + .selection-path { border-top: 1px solid var(--ink); border-left: 0; }
  .selection-path { grid-template-rows: 430px auto; }
  .selection-path-copy { min-height: 280px; padding: 36px 24px; }
  .product-inputs-grid { grid-template-columns: 1fr 1fr; }
  .product-inputs-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,0.2); }
  .product-range-cta { grid-template-columns: 1fr; }
  .lawn-hero { padding-top: 98px; }
  .lawn-hero-copy { min-height: auto; padding: 48px 0 54px; }
  .lawn-hero-copy h1 { font-size: clamp(3.1rem, 13.5vw, 4.5rem); }
  .lawn-hero-copy h1 span { white-space: normal; }
  .lawn-hero-media { min-height: 560px; }
  .lawn-hero-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .lawn-lineup { min-height: 340px; grid-template-columns: repeat(6, minmax(150px, 1fr)); }
  .lawn-model-button { min-width: 150px; }
  .lawn-model-button img { height: 230px; }
  .lawn-record { min-height: auto; }
  .lawn-record-media { min-height: 520px; }
  .lawn-record-copy { min-height: auto; padding: 38px 24px; border-top-width: 8px; }
  .lawn-view-switch { overflow-x: auto; }
  .lawn-spec-list div { grid-template-columns: 1fr; gap: 4px; }
  .lawn-source-note { text-align: left; }
  .lawn-application-strip { grid-template-columns: 1fr; }
  .lawn-application-strip figure { border-right: 0; border-bottom: 1px solid var(--ink); }
  .lawn-application-strip figure:last-child { border-bottom: 0; }
  .lawn-application-strip img { height: 520px; }
  .lawn-decision-list article { grid-template-columns: 40px 1fr; gap: 10px 16px; }
  .lawn-decision-list span { grid-row: 1 / 4; }
  .lawn-decision-list h3, .lawn-decision-list p, .lawn-decision-list strong { grid-column: 2; }
  .lawn-range-cta { grid-template-columns: 1fr; }
  .cpd-hero { padding-top: 98px; }
  .cpd-hero-media { min-height: 540px; }
  .cpd-hero-media > img { padding: 82px 24px 40px; }
  .cpd-hero-media.is-scene > img { padding: 0; }
  .cpd-media-switch { inset: 22px 22px auto; overflow-x: auto; }
  .cpd-media-switch button { flex: 0 0 auto; }
  .cpd-hero-copy { min-height: auto; padding: 46px 24px 54px; }
  .cpd-height-register { grid-template-columns: 1fr; }
  .cpd-height-scale { min-height: 240px; padding-inline: 4px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.26); }
  .cpd-height-output { min-height: 260px; padding: 34px 24px; }
  .cpd-spec-ledger div { min-height: 82px; grid-template-columns: 1fr; gap: 6px; }
  .cpd-detail-mosaic { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .cpd-detail-mosaic .cpd-detail-primary { grid-row: auto; }
  .cpd-detail-mosaic figure { height: 500px; border-left: 0 !important; border-top: 1px solid rgba(16, 37, 50,0.25); }
  .cpd-detail-mosaic figure:first-child { border-top: 0; }
  .cpd-application-main { min-height: 560px; }
  .cpd-application-copy { min-height: auto; padding: 42px 24px 50px; }
  .cpd-confirm-ledger article { min-height: auto; padding: 26px 0; grid-template-columns: 1fr; gap: 10px; }
  .cpd-enquiry-intro, .cpd-enquiry-grid form { padding: 38px 24px; }
  .pole-hero { padding-top: 98px; }
  .pole-hero-copy { min-height: auto; padding: 48px 24px 54px; }
  .pole-hero-copy h1 { font-size: clamp(3.1rem, 13.5vw, 4.5rem); }
  .pole-hero-copy h1 span { white-space: normal; }
  .pole-hero-facts { grid-template-columns: 1fr; }
  .pole-hero-facts div, .pole-hero-facts div + div { min-height: 84px; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .pole-hero-media img { min-height: 520px; }
  .pole-hero-media figcaption, .pole-catalog-media figcaption, .pole-evidence-grid figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .pole-head-axis { grid-template-columns: 1fr; }
  .pole-axis-line { left: 45px; right: auto; top: 80px; bottom: 80px; width: 1px; height: auto; }
  .pole-head-axis article { min-height: 240px; padding: 30px 24px 30px 86px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pole-head-axis article:last-child { border-bottom: 0; }
  .pole-head-axis article > strong { position: absolute; left: 24px; top: 64px; margin: 0; }
  .pole-head-axis article h3 { margin-top: 54px; }
  .pole-catalog-workspace { grid-template-columns: 1fr; padding: 8px; }
  .pole-catalog-tabs { border-right: 0; border-bottom: 8px solid var(--recess-shell); grid-template-columns: repeat(5, minmax(142px, 1fr)); grid-template-rows: 1fr; overflow-x: auto; }
  .pole-catalog-tabs button { min-width: 142px; min-height: 86px; border-right: 1px solid rgba(16, 37, 50,0.18); border-bottom: 0; }
  .pole-catalog-media { border-right: 0; border-bottom: 8px solid var(--recess-shell); }
  .pole-catalog-media img { min-height: 360px; padding: 8px; }
  .pole-catalog-record { grid-column: auto; min-height: auto; padding: 38px 24px; border-top: 0; }
  .pole-catalog-record dl div { grid-template-columns: 1fr; gap: 4px; }
  .pole-source-note { text-align: left; }
  .pole-scale-ruler { min-height: 420px; }
  .pole-scale-ruler div { padding-inline: 5px; }
  .pole-scale-ruler strong { font-size: 1.45rem; writing-mode: vertical-rl; transform: rotate(180deg); }
  .pole-brief-ledger article { min-height: auto; padding: 26px 0; grid-template-columns: 1fr; gap: 10px; }
  .pole-evidence-grid { padding: 8px; }
  .pole-evidence-grid figure { border-bottom-width: 8px; }
  .pole-evidence-grid figure img { min-height: 380px; padding: 8px; }
  .pole-evidence-grid > div { padding: 42px 24px; }
  .pole-cta { grid-template-columns: 1fr; }
  .wall-hero { min-height: auto; padding-top: 62px; }
  .wall-hero-scene { min-height: 520px; }
  .wall-hero-scene::after { left: 20px; bottom: 20px; }
  .wall-hero-panel { min-height: auto; padding: 48px 24px 54px; }
  .wall-hero-panel h1 { font-size: clamp(3.1rem, 13.5vw, 4.5rem); }
  .wall-hero-panel h1 span { white-space: normal; }
  .wall-hero-meta { grid-template-columns: 1fr; }
  .wall-hero-meta div, .wall-hero-meta div + div { min-height: 82px; padding: 14px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .wall-light-track { grid-template-columns: 1fr; }
  .wall-light-track article { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .wall-light-track article:nth-child(2) { border-right: 0; }
  .wall-beam { margin-block: 34px 38px; }
  .wall-register { padding: 8px; }
  .wall-register-tabs { border-bottom-width: 8px; grid-template-columns: repeat(6, minmax(140px, 1fr)); overflow-x: auto; }
  .wall-register-tabs button { min-width: 140px; min-height: 84px; }
  .wall-register-media { border-bottom-width: 8px; }
  .wall-register-media img { min-height: 360px; padding: 8px; }
  .wall-register-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .wall-register-summary { min-height: auto; padding: 38px 24px; }
  .wall-register-summary dl div { grid-template-columns: 1fr; gap: 4px; }
  .wall-source-note { text-align: left; }
  .wall-scene-sequence { grid-template-columns: 1fr; }
  .wall-scene-sequence figure { border-right: 0; border-bottom: 1px solid var(--ink); }
  .wall-scene-sequence figure:last-child { border-bottom: 0; }
  .wall-scene-sequence img { height: 520px; }
  .wall-range-ledger div { min-height: 110px; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
  .wall-range-ledger small { grid-column: 2; text-align: left; }
  .wall-brief-ledger article { min-height: auto; padding: 26px 0; grid-template-columns: 1fr; gap: 10px; }
  .wall-cta { padding: 8px; }
  .wall-cta figure { min-height: 460px; border-bottom-width: 8px; }
  .wall-cta > div { padding: 42px 24px; }
}

@media (max-width: 430px) {
  .brand { width: 94px; height: 54px; }
  .brand-logo { background-size: 122px auto; }
  .footer-brand-logo { width: 114px; height: 66px; background-size: 148px auto; }
  .hero-copy h1 { font-size: 2.85rem; overflow-wrap: normal; }
  .hero-actions .button { width: 100%; }
  .fact-ribbon { grid-template-columns: 1fr; }
  .fact-ribbon > div { min-height: 94px; }
  .company-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .media-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .oem-hero-copy h1 { font-size: 3rem; }
  .oem-console { padding: 8px; grid-template-rows: minmax(390px, 1fr) auto; }
  .oem-console-media img { padding: 66px 20px 34px; }
  .oem-console-controls { border-top-width: 8px; }
  .oem-switch { grid-template-columns: 1fr 1fr; }
  .oem-switch-button { min-height: 48px; padding-inline: 6px; font-size: 0.72rem; }
  .oem-record-copy { padding: 22px 18px; }
  .manufacturing-hero-copy h1 { font-size: 3rem; }
  .manufacturing-hero-media { min-height: 460px; }
  .factory-index-media { min-height: 390px; }
  .factory-index-copy { padding: 30px 22px; }
  .company-identity div { grid-template-columns: 1fr; gap: 4px; }
  .contact-hero-copy h1 { font-size: 2.85rem; }
  .contact-record-sample { grid-template-columns: 1fr; }
  .contact-record-sample div { min-height: 78px; }
  .contact-record-product img { padding: 38px 20px; }
  .brief-priority-row { grid-template-columns: 1fr; }
  .brief-priority-row legend { grid-column: auto; }
  .brief-receipt-body { padding: 26px 20px; }
  .products-hero-copy h1 { font-size: 2.85rem; }
  .products-hero-media { min-height: 480px; }
  .range-index-media { min-height: 390px; }
  .product-inputs-grid { grid-template-columns: 1fr; }
  .product-inputs-grid > div { min-height: 165px; border-left: 1px solid rgba(255,255,255,0.2); }
  .lawn-hero-copy h1 { font-size: 2.85rem; }
  .lawn-hero-data { grid-template-columns: 1fr; }
  .lawn-hero-media { min-height: 480px; }
  .lawn-record-media { min-height: 430px; }
  .lawn-record-media > img { padding: 76px 24px 42px; }
  .lawn-record-media.is-scene > img { padding: 0; }
  .lawn-view-switch { left: 20px; right: 20px; }
  .lawn-view-switch button { padding-inline: 10px; }
  .cpd-hero-copy h1 { font-size: 3.8rem; }
  .cpd-media-switch { left: 20px; right: 20px; }
  .cpd-hero-media > span { left: 20px; bottom: 20px; }
  .cpd-height-scale { min-height: 210px; }
  .cpd-height-scale button span { font-size: 1.7rem; }
  .cpd-height-scale button::before { width: 11px; height: 11px; margin-bottom: 20px; }
  .cpd-detail-mosaic figure { height: 410px; }
  .cpd-application-main { min-height: 470px; }
  .pole-hero-copy h1 { font-size: 3.25rem; }
  .pole-hero-media img { min-height: 430px; }
  .pole-catalog-media img { min-height: 300px; }
  .pole-scale-ruler { min-height: 360px; }
  .pole-scale-ruler span { writing-mode: vertical-rl; transform: rotate(180deg); }
  .pole-evidence-grid figure img { min-height: 300px; }
  .wall-hero-scene { min-height: 430px; }
  .wall-hero-panel h1 { font-size: 3.15rem; }
  .wall-register-media img { min-height: 300px; }
  .wall-scene-sequence img { height: 440px; }
  .wall-range-ledger div { grid-template-columns: 1fr; }
  .wall-range-ledger small { grid-column: auto; }
  .wall-cta figure { min-height: 390px; }
}

/* About YMG / manufacturer dossier */
.about-hero { padding: 112px 0 52px; background: var(--paper); }
.about-hero-grid { min-height: 700px; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr); }
.about-hero-copy { min-width: 0; padding: 40px clamp(40px, 4vw, 64px) 52px 0; display: flex; flex-direction: column; justify-content: center; }
.about-hero-content { width: 100%; max-width: 570px; }
.about-hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.15rem, 3.45vw, 3.9rem); line-height: 0.94; }
.about-hero-copy h1 span { display: block; white-space: nowrap; }
.about-hero-copy .button { align-self: flex-start; margin-top: 14px; }
.about-hero-media { min-width: 0; margin: 0; position: relative; overflow: hidden; background: #d7e1dc; box-shadow: var(--recess-depth); }
.about-hero-media > img { width: 100%; height: 100%; min-height: 700px; object-fit: cover; object-position: 50% center; }
.about-hero-media figcaption { position: absolute; right: 0; bottom: 0; width: min(520px, 76%); padding: 20px 24px; background: var(--ink); color: #fff; display: flex; justify-content: space-between; gap: 20px; font-family: var(--mono); font-size: 0.62rem; }
.about-year { position: absolute; left: 0; top: 0; min-width: 190px; padding: 22px 24px 18px; background: var(--blue); color: #fff; }
.about-year small { display: block; margin-bottom: 5px; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; }
.about-year strong { font-family: var(--display); font-size: clamp(3.4rem, 5vw, 5.8rem); line-height: 0.8; letter-spacing: -0.07em; }

.about-record-section { background: var(--lab); }
.about-identity { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.about-identity-name { padding: 58px 8vw 58px 0; border-right: 1px solid var(--ink); }
.about-identity-name > span, .about-identity-ledger dt { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.11em; }
.about-identity-name h3 { max-width: 520px; margin: 28px 0 20px; font-size: clamp(2.3rem, 4vw, 4.4rem); }
.about-identity-name p { color: var(--muted); }
.about-identity-ledger { margin: 0; }
.about-identity-ledger > div { min-height: 92px; padding: 20px 0 20px 38px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; }
.about-identity-ledger > div:last-child { border-bottom: 0; }
.about-identity-ledger dt { color: var(--blue); }
.about-identity-ledger dd { margin: 0; font-weight: 700; }
.about-identity-ledger a { text-decoration: underline; text-underline-offset: 4px; }

.about-buyer-section { background: var(--paper); }
.about-buyer-console { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 190px minmax(0, 1.18fr) minmax(340px, 0.82fr); }
.about-buyer-tabs { background: #f0f4f1; display: grid; grid-template-rows: repeat(3, 1fr); }
.about-buyer-tab { min-height: 152px; padding: 22px 18px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.about-buyer-tab:last-child { border-bottom: 0; }
.about-buyer-tab span { color: var(--blue); font-family: var(--mono); font-size: 0.62rem; }
.about-buyer-tab strong { font-family: var(--display); font-size: 1.05rem; }
.about-buyer-tab.is-active { background: var(--ink); color: #fff; }
.about-buyer-tab.is-active span { color: var(--amber); }
.about-buyer-media { min-width: 0; min-height: 650px; margin: 0; position: relative; overflow: hidden; border-left: 12px solid var(--recess-shell); background: #fff; }
.about-buyer-media img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; transition: transform 480ms var(--ease), opacity 220ms ease; }
.about-buyer-media.is-contain img { object-fit: contain; padding: clamp(28px, 5vw, 76px); }
.about-buyer-media:hover img { transform: scale(1.018); }
.about-buyer-media figcaption { position: absolute; inset: auto 22px 22px; padding: 16px 18px; background: rgba(16, 37, 50,0.93); color: #fff; display: flex; justify-content: space-between; gap: 18px; font-family: var(--mono); font-size: 0.58rem; }
.about-buyer-copy { min-width: 0; padding: clamp(42px, 5vw, 72px); border-left: 12px solid var(--recess-shell); background: #fff; display: flex; flex-direction: column; justify-content: center; }
.about-buyer-copy h3 { margin-bottom: 24px; font-size: clamp(2.4rem, 4vw, 4.8rem); }
.about-buyer-copy > p:not(.eyebrow) { color: var(--muted); }
.about-buyer-copy ul { margin: 20px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.about-buyer-copy li { padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 700; }

.about-range-section { background: var(--ink); color: #fff; }
.about-range-section .eyebrow { color: var(--amber); }
.about-range-section .lede { color: rgba(255,255,255,0.64); }
.about-range-index { border-top: 1px solid rgba(255,255,255,0.28); }
.about-range-index a { min-height: 128px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 0.7fr 1.2fr auto; align-items: center; gap: 34px; transition: color 220ms ease, padding 260ms var(--ease), background 220ms ease; }
.about-range-index a:hover { padding-inline: 24px; background: #fff; color: var(--ink); }
.about-range-index span { color: var(--amber); font-family: var(--mono); font-size: 0.66rem; }
.about-range-index strong { font-family: var(--display); font-size: clamp(2rem, 3.3vw, 3.8rem); letter-spacing: -0.05em; }
.about-range-index em { font-style: normal; font-weight: 800; }

.about-evidence-section { background: var(--lab); }
.about-evidence-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: stretch; }
.about-evidence-layout figure { margin: 0; position: relative; overflow: hidden; background: #fff; }
.about-evidence-layout figure img { width: 100%; height: 100%; object-fit: cover; }
.about-evidence-layout figcaption { position: absolute; inset: auto 20px 20px; padding: 14px 16px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; gap: 20px; font-family: var(--mono); font-size: 0.58rem; }
.about-evidence-production { grid-column: 1 / 8; min-height: 620px; }
.about-evidence-copy { grid-column: 8 / 13; padding: clamp(44px, 6vw, 88px); background: #fff; display: flex; flex-direction: column; justify-content: center; }
.about-evidence-copy h3 { margin-bottom: 26px; font-size: clamp(2.5rem, 4.2vw, 4.8rem); }
.about-evidence-copy > p:not(.eyebrow) { color: var(--muted); }
.about-evidence-copy .button { align-self: flex-start; margin-top: 18px; }
.about-evidence-test { grid-column: 4 / 11; min-height: 430px; margin-top: 12px !important; border: 12px solid var(--recess-shell); box-shadow: var(--recess-depth); }

.about-boundary-section { background: var(--amber-soft); }
.about-boundary-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(60px, 9vw, 150px); }
.about-boundary-intro h2 { max-width: 560px; font-size: clamp(3rem, 5vw, 5.4rem); }
.about-boundary-intro > p:last-child { max-width: 560px; color: var(--muted); }
.about-boundary-ledger { border-top: 1px solid var(--ink); }
.about-boundary-ledger > div { padding: 26px 0; border-bottom: 1px solid rgba(16, 37, 50,0.3); display: grid; grid-template-columns: 170px 1fr; gap: 32px; }
.about-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; }
.about-boundary-ledger p { margin: 0; }
.about-final { padding: clamp(46px, 7vw, 90px); background: var(--blue); color: #fff; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: end; }
.about-final .eyebrow { color: #fff; }
.about-final h2 { margin-bottom: 0; font-size: clamp(3rem, 5vw, 5.8rem); }
.about-final p { color: rgba(255,255,255,0.76); }
.about-final .button { background: #fff; color: var(--ink); }
.about-final .button::after { background: var(--ink); color: #fff; }

@media (max-width: 1120px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-copy { min-height: 520px; padding: 40px 0 52px; }
  .about-hero-content { max-width: 690px; }
  .about-hero-media, .about-hero-media > img { min-height: 660px; }
  .about-buyer-console { grid-template-columns: 170px minmax(0, 1fr); }
  .about-buyer-copy { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .about-evidence-production { grid-column: 1 / 9; }
  .about-evidence-copy { grid-column: 9 / 13; padding: 44px 30px; }
  .about-evidence-test { grid-column: 3 / 12; }
}

@media (max-width: 760px) {
  .about-hero { padding: 98px 0 26px; }
  .about-hero-copy { min-height: auto; padding: 54px 0; }
  .about-hero-copy h1 { font-size: clamp(2.75rem, 11vw, 4.25rem); }
  .about-hero-media, .about-hero-media > img { min-height: 560px; }
  .about-year { min-width: 145px; }
  .about-hero-media figcaption { width: calc(100% - 18px); flex-direction: column; }
  .about-identity { grid-template-columns: 1fr; }
  .about-identity-name { padding: 42px 0; border-right: 0; border-bottom: 1px solid var(--ink); }
  .about-identity-ledger > div { padding-left: 0; grid-template-columns: 110px 1fr; gap: 20px; }
  .about-buyer-console { padding: 8px; grid-template-columns: 1fr; }
  .about-buyer-tabs { grid-template-columns: repeat(3, minmax(145px, 1fr)); grid-template-rows: auto; overflow-x: auto; }
  .about-buyer-tab { min-width: 145px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .about-buyer-media { min-height: 540px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .about-buyer-media img { min-height: 540px; }
  .about-buyer-copy { min-height: auto; padding: 44px 24px; border-top-width: 8px; }
  .about-range-index a { min-height: 118px; grid-template-columns: 1fr auto; gap: 8px 20px; }
  .about-range-index span { grid-column: 1 / -1; }
  .about-range-index strong { font-size: 2.35rem; }
  .about-range-index em { font-size: 0; }
  .about-range-index em::after { content: "↗"; font-size: 1.2rem; }
  .about-evidence-layout { display: block; }
  .about-evidence-production { min-height: 520px; }
  .about-evidence-copy { padding: 48px 24px; }
  .about-evidence-test { min-height: 430px; margin-top: 8px !important; border-width: 8px; }
  .about-boundary-grid, .about-final { grid-template-columns: 1fr; gap: 46px; }
  .about-boundary-ledger > div { grid-template-columns: 1fr; gap: 10px; }
  .about-final { padding: 48px 24px; }
}

@media (max-width: 430px) {
  .about-hero-copy h1 { font-size: 2.5rem; }
  .about-hero-media, .about-hero-media > img { min-height: 500px; }
  .about-year strong { font-size: 3.8rem; }
  .about-identity-ledger > div { grid-template-columns: 1fr; gap: 8px; }
  .about-buyer-media, .about-buyer-media img { min-height: 430px; }
  .about-buyer-media figcaption { inset: auto 12px 12px; flex-direction: column; }
  .about-evidence-production { min-height: 440px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Pillar Lights / boundary register */
.pillar-hero { padding-top: 76px; border-bottom: 1px solid var(--ink); background: var(--paper); }
.pillar-hero-scene { height: clamp(540px, 61vh, 720px); overflow: hidden; position: relative; background: var(--ink); }
.pillar-hero-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,15,22,0.08), rgba(9,15,22,0) 55%, rgba(9,15,22,0.12)); pointer-events: none; }
.pillar-hero-scene img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: left center; transition: transform 900ms var(--ease); }
.pillar-hero:hover .pillar-hero-scene img { transform: scale(1.012); }
.pillar-hero-scene > span { position: absolute; left: max(24px, calc((100vw - 1360px) / 2)); bottom: 24px; z-index: 1; padding: 9px 12px; background: rgba(16, 37, 50,0.86); color: #fff; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.08em; }
.pillar-hero-rail { width: var(--container); margin: -1px auto 0; padding: clamp(34px, 4vw, 58px) 0; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.62fr) minmax(300px, 0.72fr); align-items: end; gap: clamp(34px, 5vw, 76px); }
.pillar-hero-rail h1 { max-width: 760px; margin-bottom: 0; font-size: clamp(3.6rem, 5vw, 6rem); line-height: 0.93; }
.pillar-hero-intro p { color: var(--muted); }
.pillar-hero-intro .button { margin-top: 8px; }
.pillar-hero-facts { align-self: stretch; border-left: 1px solid var(--ink); display: grid; }
.pillar-hero-facts div { min-height: 70px; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(86px, 0.55fr) 1fr; align-items: center; gap: 14px; }
.pillar-hero-facts div:last-child { border-bottom: 0; }
.pillar-hero-facts strong { font-family: var(--display); font-size: clamp(1.35rem, 2vw, 2.1rem); letter-spacing: -0.04em; }
.pillar-hero-facts span { color: var(--muted); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }

.pillar-geometry-section { background: var(--lab); }
.pillar-profile-line { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.pillar-profile-line article { min-height: 430px; padding: 38px clamp(20px, 2.7vw, 40px); border-right: 1px solid rgba(16, 37, 50,0.2); display: flex; flex-direction: column; }
.pillar-profile-line article:last-child { border-right: 0; }
.pillar-profile-line article > span { margin-top: auto; color: var(--blue); font-family: var(--mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; }
.pillar-profile-line h3 { margin: 12px 0 14px; }
.pillar-profile-line p { margin: 0; color: var(--muted); }
.pillar-profile-icon { width: 100%; height: 165px; margin-bottom: 40px; position: relative; display: grid; place-items: end center; }
.pillar-profile-icon::before, .pillar-profile-icon::after, .pillar-profile-icon i { content: ""; display: block; position: absolute; background: var(--ink); }
.pillar-profile-icon::after { width: 38%; height: 12px; bottom: 0; }
.pillar-profile-icon i { width: 18%; height: 72px; bottom: 12px; }
.pillar-profile-icon::before { z-index: 1; bottom: 72px; }
.pillar-profile-icon.is-round-disc::before { width: 64%; height: 28px; border-radius: 50%; box-shadow: 0 8px 0 rgba(120, 155, 73,0.48); }
.pillar-profile-icon.is-round-flare::before { width: 64%; height: 72px; border-radius: 50% 50% 34% 34%; clip-path: polygon(0 0, 100% 0, 68% 100%, 32% 100%); background: linear-gradient(180deg, var(--ink) 0 24%, rgba(120, 155, 73,0.72) 25% 100%); }
.pillar-profile-icon.is-square-lantern::before { width: 62%; height: 88px; clip-path: polygon(8% 0, 92% 0, 72% 100%, 28% 100%); background: linear-gradient(180deg, var(--ink) 0 18%, rgba(120, 155, 73,0.55) 19% 82%, var(--ink) 83%); }
.pillar-profile-icon.is-square-open::before { width: 58%; height: 86px; border: 18px solid var(--ink); border-top-width: 22px; background: rgba(120, 155, 73,0.48); }

.pillar-register-section { background: #dfe8e3; }
.pillar-register { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.pillar-register-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); display: grid; grid-template-columns: repeat(9, minmax(132px, 1fr)); overflow-x: auto; scrollbar-width: thin; }
.pillar-register-tabs button { min-width: 132px; min-height: 86px; padding: 14px 16px; border: 0; border-right: 1px solid rgba(16, 37, 50,0.18); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: center; gap: 6px; transition: background 220ms var(--ease), color 220ms var(--ease); }
.pillar-register-tabs button span { color: var(--muted); font-family: var(--mono); font-size: 0.54rem; }
.pillar-register-tabs button strong { font-family: var(--display); font-size: 0.88rem; }
.pillar-register-tabs button.is-active { background: var(--ink); color: #fff; }
.pillar-register-tabs button.is-active span { color: var(--amber); }
.pillar-view-switch { min-height: 68px; margin-top: 12px; padding: 10px; background: var(--paper); display: flex; justify-content: flex-end; gap: 8px; }
.pillar-view-switch button { min-width: 130px; min-height: 48px; padding: 10px 18px; border: 1px solid var(--line); background: transparent; font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; cursor: pointer; }
.pillar-view-switch button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.pillar-register-media { height: clamp(560px, 62vw, 810px); margin: 0; overflow: hidden; position: relative; background: #fff; }
.pillar-register-media img { width: 100%; height: 100%; object-fit: contain; transition: width 520ms var(--ease), transform 520ms var(--ease); }
.pillar-register[data-pillar-view="application"] .pillar-register-media img { width: 200%; max-width: none; object-fit: cover; object-position: left center; }
.pillar-register-media figcaption { position: absolute; left: 22px; right: 22px; bottom: 20px; min-height: 50px; padding: 12px 16px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 0.6rem; }
.pillar-register-media figcaption span { color: var(--amber-soft); }
.pillar-record-heading { min-height: 250px; margin-top: 12px; padding: clamp(34px, 4vw, 58px); background: var(--paper); display: grid; grid-template-columns: minmax(250px, 0.75fr) minmax(320px, 1.1fr) auto; align-items: end; gap: clamp(30px, 5vw, 74px); }
.pillar-record-heading h3 { margin-bottom: 0; font-size: clamp(3.2rem, 5vw, 5.8rem); line-height: 0.9; }
.pillar-record-heading > p { margin: 0; color: var(--muted); }
.pillar-record-heading .button { white-space: nowrap; }
.pillar-record-ledger { margin: 12px 0 0; background: var(--paper); display: grid; grid-template-columns: repeat(6, 1fr); }
.pillar-record-ledger div { min-height: 128px; padding: 24px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.pillar-record-ledger div:last-child { border-right: 0; }
.pillar-record-ledger dt { color: var(--muted); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.pillar-record-ledger dd { margin: 0; font-size: 0.88rem; font-weight: 800; }
.pillar-source-note { margin: 18px 0 0; color: var(--muted); font-family: var(--mono); font-size: 0.64rem; text-align: right; }

.pillar-scenes-section { background: var(--paper); }
.pillar-scene-band { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; }
.pillar-scene-band figure { min-width: 0; margin: 0; border-right: 1px solid var(--ink); }
.pillar-scene-band figure:last-child { border-right: 0; }
.pillar-scene-band figure > div { height: 540px; overflow: hidden; }
.pillar-scene-band .pillar-scene-wide > div { height: 650px; }
.pillar-scene-band img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: left center; transition: transform 520ms var(--ease); }
.pillar-scene-band figure:hover img { transform: scale(1.03); }
.pillar-scene-band figcaption { min-height: 76px; padding: 17px 20px; border-top: 1px solid var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 0.61rem; }
.pillar-scene-band figcaption span { color: var(--blue); font-weight: 800; }

.pillar-footprint-section { background: var(--lab); }
.pillar-footprint-grid { display: grid; grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr); gap: clamp(58px, 9vw, 140px); }
.pillar-footprint-copy { align-self: center; }
.pillar-footprint-copy h2 { margin-bottom: 28px; }
.pillar-footprint-copy p { color: var(--muted); }
.pillar-footprint-axis { border-top: 1px solid var(--ink); }
.pillar-footprint-axis > div { min-height: 104px; padding: 18px 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); display: grid; grid-template-columns: 110px minmax(0, 1fr) 220px; align-items: center; gap: 24px; }
.pillar-footprint-axis span, .pillar-footprint-axis strong { font-family: var(--mono); font-size: 0.64rem; }
.pillar-footprint-axis strong { text-align: right; }
.pillar-footprint-axis i { width: var(--footprint); height: 20px; background: linear-gradient(90deg, var(--blue), var(--blue) calc(100% - 12px), var(--amber) calc(100% - 12px)); position: relative; transition: width 700ms var(--ease); }
.pillar-footprint-axis i::after { content: ""; position: absolute; right: 0; top: -8px; width: 1px; height: 36px; background: var(--ink); }

.pillar-range-section { background: var(--ink); color: #fff; }
.pillar-range-grid { display: grid; grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr); gap: clamp(58px, 9vw, 140px); }
.pillar-range-copy { align-self: center; }
.pillar-range-copy .eyebrow { color: var(--amber); }
.pillar-range-copy h2 { margin-bottom: 28px; }
.pillar-range-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.64); }
.pillar-range-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.pillar-range-ledger div { min-height: 118px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.22); display: grid; grid-template-columns: minmax(130px, 0.64fr) minmax(220px, 1fr) minmax(150px, 0.58fr); align-items: center; gap: 24px; }
.pillar-range-ledger span, .pillar-range-ledger small { color: rgba(255,255,255,0.52); font-family: var(--mono); font-size: 0.62rem; }
.pillar-range-ledger strong { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.4rem); letter-spacing: -0.045em; }
.pillar-range-ledger small { text-align: right; }

.pillar-brief-section { background: var(--paper); }
.pillar-brief-ledger { border-top: 1px solid var(--ink); }
.pillar-brief-ledger article { min-height: 145px; padding: 28px 18px; border-bottom: 1px solid rgba(16, 37, 50,0.2); display: grid; grid-template-columns: minmax(130px, 0.48fr) minmax(260px, 0.82fr) minmax(0, 1.25fr); align-items: center; gap: 30px; }
.pillar-brief-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.63rem; }
.pillar-brief-ledger h3, .pillar-brief-ledger p { margin: 0; }
.pillar-brief-ledger p { color: var(--muted); }

.pillar-cta-section { background: #dfe8e3; }
.pillar-cta { min-height: 620px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr); }
.pillar-cta > div { padding: clamp(42px, 5vw, 76px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.pillar-cta h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 4.4vw, 5rem); }
.pillar-cta > div > p:not(.eyebrow) { color: var(--muted); }
.pillar-cta .button { align-self: flex-start; margin-top: 16px; }
.pillar-cta figure { min-width: 0; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; }
.pillar-cta figure img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: left center; }

@media (max-width: 1120px) {
  .pillar-hero-rail { grid-template-columns: 1fr 0.8fr; }
  .pillar-hero-facts { grid-column: 1 / -1; border-top: 1px solid var(--ink); border-left: 0; grid-template-columns: repeat(3, 1fr); }
  .pillar-hero-facts div { border-right: 1px solid var(--line); border-bottom: 0; }
  .pillar-profile-line { grid-template-columns: 1fr 1fr; }
  .pillar-profile-line article:nth-child(2) { border-right: 0; }
  .pillar-profile-line article:nth-child(-n+2) { border-bottom: 1px solid rgba(16, 37, 50,0.2); }
  .pillar-record-heading { grid-template-columns: 1fr 1fr; }
  .pillar-record-heading .button { justify-self: start; }
  .pillar-record-ledger { grid-template-columns: repeat(3, 1fr); }
  .pillar-record-ledger div:nth-child(3) { border-right: 0; }
  .pillar-record-ledger div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .pillar-scene-band { grid-template-columns: 1fr 1fr; }
  .pillar-scene-band .pillar-scene-wide { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--ink); }
  .pillar-footprint-grid, .pillar-range-grid { grid-template-columns: 1fr; }
  .pillar-cta { grid-template-columns: 1fr; }
  .pillar-cta figure { min-height: 560px; border-top: 12px solid var(--recess-shell); border-left: 0; }
}

@media (max-width: 760px) {
  .pillar-hero { padding-top: 62px; }
  .pillar-hero-scene { height: 480px; }
  .pillar-hero-scene > span { left: 20px; bottom: 20px; }
  .pillar-hero-rail { padding: 42px 0 50px; grid-template-columns: 1fr; gap: 34px; }
  .pillar-hero-rail h1 { font-size: clamp(3.1rem, 13.5vw, 4.4rem); }
  .pillar-hero-facts { grid-column: auto; grid-template-columns: 1fr; }
  .pillar-hero-facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar-profile-line { grid-template-columns: 1fr; }
  .pillar-profile-line article { min-height: 360px; border-right: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); }
  .pillar-profile-line article:nth-child(2) { border-right: 0; }
  .pillar-register { padding: 8px; }
  .pillar-register-tabs button { min-width: 142px; }
  .pillar-view-switch { margin-top: 8px; justify-content: stretch; }
  .pillar-view-switch button { min-width: 0; flex: 1; }
  .pillar-register-media { height: 440px; }
  .pillar-register-media figcaption { left: 12px; right: 12px; bottom: 12px; align-items: flex-start; flex-direction: column; gap: 3px; }
  .pillar-record-heading { min-height: auto; margin-top: 8px; padding: 38px 24px; grid-template-columns: 1fr; gap: 24px; }
  .pillar-record-heading h3 { font-size: 3.5rem; }
  .pillar-record-ledger { margin-top: 8px; grid-template-columns: 1fr 1fr; }
  .pillar-record-ledger div:nth-child(3) { border-right: 1px solid var(--line); }
  .pillar-record-ledger div:nth-child(even) { border-right: 0; }
  .pillar-record-ledger div:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .pillar-source-note { text-align: left; }
  .pillar-scene-band { grid-template-columns: 1fr; }
  .pillar-scene-band .pillar-scene-wide { grid-column: auto; }
  .pillar-scene-band figure, .pillar-scene-band figure:last-child { border-right: 0; border-bottom: 1px solid var(--ink); }
  .pillar-scene-band figure > div, .pillar-scene-band .pillar-scene-wide > div { height: 470px; }
  .pillar-footprint-axis > div { min-height: 118px; grid-template-columns: 82px 1fr; gap: 10px 16px; }
  .pillar-footprint-axis strong { grid-column: 2; text-align: left; }
  .pillar-range-ledger div { min-height: 110px; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
  .pillar-range-ledger small { grid-column: 2; text-align: left; }
  .pillar-brief-ledger article { min-height: auto; padding: 26px 0; grid-template-columns: 1fr; gap: 10px; }
  .pillar-cta { padding: 8px; }
  .pillar-cta > div { padding: 42px 24px; }
  .pillar-cta figure { min-height: 460px; border-top-width: 8px; }
}

@media (max-width: 430px) {
  .pillar-hero-scene { height: 410px; }
  .pillar-hero-rail h1 { font-size: 3.05rem; }
  .pillar-register-media { height: 340px; }
  .pillar-record-ledger { grid-template-columns: 1fr; }
  .pillar-record-ledger div, .pillar-record-ledger div:nth-child(3) { min-height: 104px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar-scene-band figure > div, .pillar-scene-band .pillar-scene-wide > div { height: 410px; }
  .pillar-footprint-axis > div { grid-template-columns: 1fr; }
  .pillar-footprint-axis strong { grid-column: auto; }
  .pillar-range-ledger div { grid-template-columns: 1fr; }
  .pillar-range-ledger small { grid-column: auto; }
  .pillar-cta figure { min-height: 390px; }
}

/* Buyer resources / procurement file */
.resources-hero { padding: 124px 0 72px; background: var(--ink); color: #fff; }
.resources-hero-grid { min-height: 760px; display: grid; grid-template-columns: minmax(30rem, 0.9fr) minmax(0, 1.1fr); align-items: stretch; }
.resources-hero-copy { padding: clamp(42px, 6vw, 86px) clamp(34px, 5vw, 74px) clamp(42px, 6vw, 76px) 0; display: flex; flex-direction: column; justify-content: center; }
.resources-hero-copy .eyebrow { color: var(--amber); }
.resources-hero-copy h1 { margin-bottom: 34px; font-size: clamp(3.5rem, 4.15vw, 5rem); line-height: 0.94; }
.resources-hero-copy h1 span { display: block; white-space: nowrap; }
.resources-hero-copy .lede { max-width: 650px; color: rgba(255,255,255,0.72); }
.resources-hero-copy .button { align-self: flex-start; margin-top: 12px; background: #fff; color: var(--ink); }
.resources-hero-copy .button::after { background: var(--blue); color: #fff; }
.resources-hero-note { max-width: 650px; margin: auto 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 0.66rem; }
.resources-hero-file { min-width: 0; padding: 12px; background: #d8dfe1; box-shadow: var(--recess-depth); display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 1.18fr 0.82fr auto; gap: 12px; }
.resources-hero-file figure { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #fff; }
.resources-hero-file figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.resources-hero-file figure:hover img { transform: scale(1.025); }
.resources-hero-file figure figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; background: rgba(16, 37, 50,0.88); color: #fff; font-family: var(--mono); font-size: 0.56rem; }
.resources-file-scene { grid-row: 1 / 3; }
.resources-file-product img, .resources-file-pack img { object-fit: contain !important; padding: 16px; }
.resources-file-index { grid-column: 1 / -1; min-height: 76px; padding: 16px 20px; background: var(--paper); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--mono); font-size: 0.62rem; }

.resources-desk-section { background: var(--lab); }
.resources-desk { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 190px minmax(0, 1.15fr) minmax(380px, 0.85fr); }
.resources-task-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.resources-task-tabs button { width: 100%; min-height: 94px; padding: 18px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; transition: background 220ms var(--ease), color 220ms var(--ease); }
.resources-task-tabs button:last-child { border-bottom: 0; }
.resources-task-tabs button span { color: var(--muted); font-family: var(--mono); font-size: 0.6rem; }
.resources-task-tabs button strong { font-family: var(--display); font-size: 1rem; }
.resources-task-tabs button.is-active { background: var(--ink); color: #fff; }
.resources-task-tabs button.is-active span { color: var(--amber); }
.resources-task-media { min-width: 0; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.resources-task-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.resources-task-media.is-contain img { padding: 36px; object-fit: contain; }
.resources-task-media figcaption { position: absolute; left: 20px; right: 20px; bottom: 20px; min-height: 56px; padding: 12px 16px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 0.59rem; }
.resources-task-media figcaption span { color: var(--amber-soft); }
.resources-task-copy { min-width: 0; padding: clamp(36px, 4.6vw, 64px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; }
.resources-task-copy h3 { margin-bottom: 22px; font-size: clamp(2.4rem, 3.7vw, 4.3rem); line-height: 0.96; }
.resources-task-copy > div > p:last-child { color: var(--muted); }
.resources-task-list { margin: 30px 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.resources-task-list li { min-height: 64px; padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; }
.resources-task-list span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.resources-task-list strong { font-size: 0.88rem; }
.resources-task-copy .button { align-self: flex-start; margin-top: auto; }

.resources-evidence-section { background: var(--paper); }
.resources-evidence-strip { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.resources-evidence-strip figure { min-width: 0; margin: 0; border-right: 1px solid var(--ink); display: grid; grid-template-rows: 360px 1fr; }
.resources-evidence-strip figure:last-child { border-right: 0; }
.resources-evidence-strip img { width: 100%; height: 100%; padding: 18px; object-fit: contain; background: #fff; }
.resources-evidence-strip figure:nth-child(2) img { padding: 0; object-fit: cover; }
.resources-evidence-strip figure:nth-child(4) img { padding: 0; object-fit: cover; object-position: right center; }
.resources-evidence-strip figcaption { min-height: 230px; padding: 24px 22px; border-top: 1px solid var(--ink); }
.resources-evidence-strip figcaption span { color: var(--blue); font-family: var(--mono); font-size: 0.6rem; }
.resources-evidence-strip figcaption strong { margin: 28px 0 12px; display: block; font-family: var(--display); font-size: 1.15rem; }
.resources-evidence-strip figcaption p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.resources-catalog-section { background: #dfe8e3; }
.resources-catalog { min-height: 620px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 180px minmax(350px, 0.72fr) minmax(0, 1.28fr); }
.resources-catalog-index { padding: 24px 18px; background: var(--ink); color: #fff; display: flex; flex-direction: column; }
.resources-catalog-index span { color: rgba(255,255,255,0.52); font-family: var(--mono); font-size: 0.58rem; }
.resources-catalog-index strong { margin: 8px 0 26px; font-family: var(--display); font-size: 1.25rem; line-height: 1.1; }
.resources-catalog-copy { padding: clamp(38px, 5vw, 72px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.resources-catalog-copy h2 { margin-bottom: 28px; }
.resources-catalog-copy > p:not(.eyebrow) { color: var(--muted); }
.resources-catalog-copy .button { align-self: flex-start; margin-top: 14px; }
.resources-catalog figure { min-width: 0; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.resources-catalog figure img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.resources-catalog figcaption { position: absolute; left: 20px; bottom: 20px; padding: 9px 12px; background: rgba(16, 37, 50,0.9); color: #fff; font-family: var(--mono); font-size: 0.58rem; }

.resource-request-section { background: var(--lab); }
.resource-request-workspace { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); align-items: start; }
.resource-request-form { min-width: 0; background: var(--paper); }
.resource-request-head, .resource-receipt-head { min-height: 70px; padding: 18px 24px; background: var(--ink); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 0.62rem; }
.resource-request-row { padding: 26px 28px; border-bottom: 1px solid var(--line); }
.resource-request-split { display: grid; grid-template-columns: 140px minmax(0, 1fr) 140px minmax(0, 1fr); align-items: center; gap: 18px; }
.resource-request-row label, .resource-record-options legend { font-family: var(--mono); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; }
.resource-request-row input, .resource-request-row select { width: 100%; min-height: 52px; padding: 11px 14px; border: 1px solid rgba(16, 37, 50,0.28); border-radius: 0; background: #fff; color: var(--ink); }
.resource-record-options { margin: 0; padding: 28px; border: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.resource-record-options legend { width: 100%; margin-bottom: 18px; float: left; }
.resource-record-options label { min-height: 58px; padding: 12px 14px; border: 1px solid rgba(16, 37, 50,0.2); cursor: pointer; display: flex; align-items: center; gap: 12px; }
.resource-record-options input { width: 18px; height: 18px; accent-color: var(--blue); }
.resource-request-actions { padding: 28px; display: flex; align-items: center; gap: 26px; }
.resource-request-form .form-status { margin: 0; padding: 0 28px 28px; }
.resource-request-receipt { min-width: 0; margin-left: 12px; background: var(--paper); position: sticky; top: 92px; }
.resource-receipt-head { background: var(--blue); }
.resource-receipt-body { min-height: 560px; padding: clamp(38px, 5vw, 70px); display: flex; flex-direction: column; }
.resource-receipt-body h3 { margin-bottom: 28px; font-size: clamp(2.6rem, 4vw, 4.7rem); line-height: 0.96; }
.resource-receipt-body > p:not(.eyebrow) { color: var(--muted); }
.resource-receipt-body dl { margin: auto 0 0; border-top: 1px solid var(--ink); }
.resource-receipt-body dl div { min-height: 68px; padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 100px 1fr; align-items: center; gap: 18px; }
.resource-receipt-body dt { color: var(--muted); font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase; }
.resource-receipt-body dd { margin: 0; font-weight: 800; }

.resources-terms-section { background: var(--ink); color: #fff; }
.resources-terms-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr); gap: clamp(60px, 9vw, 140px); }
.resources-terms-copy { align-self: center; }
.resources-terms-copy .eyebrow { color: var(--amber); }
.resources-terms-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.62); }
.resources-terms-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.resources-terms-ledger div { min-height: 98px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 26px; }
.resources-terms-ledger span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.62rem; }
.resources-terms-ledger strong { font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.7rem); }
.resources-final { background: var(--blue); color: #fff; }
.resources-final-grid { padding: clamp(42px, 5vw, 72px) 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1fr 0.72fr; align-items: end; gap: clamp(50px, 8vw, 120px); }
.resources-final-grid .eyebrow { color: var(--amber-soft); }
.resources-final-grid h2 { margin-bottom: 0; }
.resources-final-grid p { color: rgba(255,255,255,0.72); }
.resources-final-grid .button { background: #fff; color: var(--blue); }
.resources-final-grid .button::after { background: var(--ink); color: #fff; }

@media (max-width: 1120px) {
  .resources-hero-grid { grid-template-columns: 1fr; }
  .resources-hero-copy { min-height: 620px; padding-left: 0; }
  .resources-hero-file { min-height: 700px; }
  .resources-desk { grid-template-columns: 170px minmax(0, 1fr); }
  .resources-task-copy { grid-column: 1 / -1; min-height: 520px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .resources-evidence-strip { grid-template-columns: 1fr 1fr; }
  .resources-evidence-strip figure:nth-child(2) { border-right: 0; }
  .resources-evidence-strip figure:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .resources-catalog { grid-template-columns: 160px minmax(0, 1fr); }
  .resources-catalog figure { grid-column: 1 / -1; min-height: 540px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .resource-request-workspace { grid-template-columns: 1fr; }
  .resource-request-receipt { margin: 12px 0 0; position: static; }
  .resources-terms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .resources-hero { padding: 98px 0 54px; }
  .resources-hero-copy { min-height: auto; padding: 26px 0 54px; }
  .resources-hero-copy h1 { font-size: clamp(3.15rem, 14vw, 4.5rem); }
  .resources-hero-copy h1 span { white-space: normal; }
  .resources-hero-note { margin-top: 54px; }
  .resources-hero-file { min-height: 760px; padding: 8px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.1fr 0.8fr auto; gap: 8px; }
  .resources-file-scene { grid-column: 1 / -1; grid-row: auto; }
  .resources-file-index { min-height: 90px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .resources-desk { padding: 8px; grid-template-columns: 1fr; }
  .resources-task-tabs { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); overflow-x: auto; }
  .resources-task-tabs button { min-width: 150px; min-height: 94px; }
  .resources-task-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .resources-task-media img { min-height: 500px; }
  .resources-task-copy { min-height: auto; padding: 40px 24px; border-top-width: 8px; }
  .resources-task-copy .button { margin-top: 18px; }
  .resources-evidence-strip { grid-template-columns: 1fr; }
  .resources-evidence-strip figure, .resources-evidence-strip figure:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--ink); }
  .resources-evidence-strip figure { grid-template-rows: 420px auto; }
  .resources-evidence-strip figcaption { min-height: 210px; }
  .resources-catalog { padding: 8px; grid-template-columns: 1fr; }
  .resources-catalog-index { min-height: 180px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; }
  .resources-catalog-index strong { margin: 0 0 14px; }
  .resources-catalog-copy { padding: 42px 24px; border-top: 8px solid var(--recess-shell); }
  .resources-catalog figure { min-height: 430px; border-top-width: 8px; }
  .resource-request-workspace { padding: 8px; }
  .resource-request-split { grid-template-columns: 1fr; }
  .resource-record-options { grid-template-columns: 1fr; }
  .resource-request-actions { align-items: flex-start; flex-direction: column; }
  .resource-receipt-body { min-height: 500px; padding: 40px 24px; }
  .resources-terms-ledger div { grid-template-columns: 1fr; gap: 8px; }
  .resources-final-grid { grid-template-columns: 1fr; align-items: start; gap: 34px; }
}

@media (max-width: 430px) {
  .resources-hero-copy h1 { font-size: 3.05rem; }
  .resources-hero-file { min-height: 680px; grid-template-columns: 1fr; grid-template-rows: 320px 250px 250px auto; }
  .resources-file-product, .resources-file-pack { grid-column: auto; }
  .resources-task-media, .resources-task-media img { min-height: 420px; }
  .resources-evidence-strip figure { grid-template-rows: 360px auto; }
  .resources-catalog figure { min-height: 370px; }
  .resource-request-row, .resource-record-options, .resource-request-actions { padding-inline: 20px; }
  .resource-request-form .form-status { padding-inline: 20px; }
  .resource-receipt-body h3 { font-size: 2.8rem; }
}

/* Applications / site conditions atlas */
.applications-hero { min-height: 940px; padding-top: 78px; overflow: hidden; position: relative; background: var(--ink); color: #fff; }
.applications-hero-scene { position: absolute; inset: 0 0 0 44%; margin: 0; overflow: hidden; }
.applications-hero-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; transform: scale(1.01); animation: applicationHeroDrift 12s var(--ease) both; }
.applications-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.98) 35%, rgba(16, 37, 50,0.76) 54%, rgba(16, 37, 50,0.05) 84%); }
.applications-hero-content { min-height: 740px; padding-top: clamp(80px, 9vw, 132px); padding-bottom: 90px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.applications-hero-content .eyebrow { color: var(--amber); }
.applications-hero-content h1 { max-width: 860px; margin-bottom: 30px; font-size: clamp(4rem, 6.5vw, 7.8rem); line-height: 0.88; letter-spacing: -0.055em; }
.applications-hero-content .lede { max-width: 670px; color: rgba(255,255,255,0.76); }
.applications-hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 28px; }
.applications-hero-actions .button { background: #fff; color: var(--ink); }
.applications-hero-actions .button::after { background: var(--blue); color: #fff; }
.applications-hero-actions .text-action { color: #fff; }
.applications-route { min-height: 122px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.36); border-bottom: 1px solid rgba(255,255,255,0.36); display: grid; grid-template-columns: repeat(4, 1fr auto); align-items: center; }
.applications-route span { min-height: 120px; padding: 0 clamp(12px, 2vw, 30px); border-left: 1px solid rgba(255,255,255,0.24); display: flex; align-items: center; gap: 16px; font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; }
.applications-route span:first-child { border-left: 0; padding-left: 0; }
.applications-route span b { color: var(--amber); font-size: 0.58rem; }
.applications-route i { color: rgba(255,255,255,0.38); font-style: normal; }
@keyframes applicationHeroDrift { from { transform: scale(1.08); } to { transform: scale(1.01); } }

.applications-atlas-section { background: var(--lab); }
.application-atlas { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 208px minmax(0, 1.1fr) minmax(390px, 0.9fr); }
.application-atlas-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.application-atlas-tabs button { width: 100%; min-height: 118px; padding: 20px 18px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; color: var(--ink); text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; transition: background 220ms var(--ease), color 220ms var(--ease); }
.application-atlas-tabs button:last-child { border-bottom: 0; }
.application-atlas-tabs button span { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.06em; }
.application-atlas-tabs button strong { font-family: var(--display); font-size: 1rem; line-height: 1.15; }
.application-atlas-tabs button.is-active { background: var(--ink); color: #fff; }
.application-atlas-tabs button.is-active span { color: var(--amber); }
.application-atlas-media { min-width: 0; min-height: 590px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.application-atlas-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity 180ms var(--ease), transform 520ms var(--ease); }
.application-atlas-media:hover img { transform: scale(1.025); }
.application-atlas-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 58px; padding: 12px 15px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.57rem; }
.application-atlas-media figcaption span { color: var(--amber-soft); }
.application-atlas-brief { min-width: 0; border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; }
.application-atlas-heading { min-height: 270px; padding: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--line); }
.application-atlas-heading h3 { margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.7rem); line-height: 0.98; }
.application-atlas-heading > p:last-child { margin: 0; color: var(--muted); }
.application-atlas-inputs { padding: 24px clamp(30px, 4vw, 54px); }
.application-atlas-inputs > span { font-family: var(--mono); font-size: 0.58rem; font-weight: 700; }
.application-atlas-inputs ol { margin: 18px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.application-atlas-inputs li { min-height: 47px; padding: 10px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 8px; }
.application-atlas-inputs li b { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.application-atlas-inputs li strong { font-size: 0.82rem; line-height: 1.35; }
.application-atlas-route { margin-top: auto; padding: 20px clamp(30px, 4vw, 54px) 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.application-atlas-route > span { color: var(--blue); font-family: var(--mono); font-size: 0.56rem; font-weight: 700; }

.applications-reading-section { background: var(--ink); color: #fff; }
.applications-reading-grid { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: clamp(60px, 9vw, 144px); }
.applications-reading-intro { align-self: center; }
.applications-reading-intro .eyebrow { color: var(--amber); }
.applications-reading-intro h2 { margin-bottom: 26px; }
.applications-reading-intro > p:last-child { color: rgba(255,255,255,0.62); }
.applications-reading-axis { border-top: 1px solid rgba(255,255,255,0.42); }
.applications-reading-axis > div { min-height: 142px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 130px minmax(200px, 0.85fr) minmax(250px, 1.15fr); align-items: center; gap: 24px; }
.applications-reading-axis span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.58rem; }
.applications-reading-axis strong { font-family: var(--display); font-size: clamp(1.08rem, 1.6vw, 1.5rem); line-height: 1.15; }
.applications-reading-axis p { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.88rem; }

.applications-film-section { padding: 110px 0 0; background: #dfe8e3; overflow: hidden; }
.applications-film-head { margin-bottom: 54px; display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 50px; align-items: end; }
.applications-film-head .eyebrow { align-self: start; }
.applications-film-head h2 { max-width: 930px; margin: 0; }
.applications-film { display: grid; grid-template-columns: 0.8fr 1.4fr 0.8fr; }
.applications-film figure { min-width: 0; height: 650px; margin: 0; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; position: relative; background: var(--ink); }
.applications-film figure:last-child { border-right: 0; }
.applications-film img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: opacity 260ms var(--ease), transform 620ms var(--ease); }
.applications-film figure:nth-child(2) img { opacity: 1; }
.applications-film figure:hover img { opacity: 1; transform: scale(1.035); }
.applications-film figcaption { position: absolute; left: 0; right: 0; bottom: 0; min-height: 105px; padding: 22px clamp(20px, 3vw, 44px); background: rgba(16, 37, 50,0.88); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.applications-film figcaption span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.56rem; }
.applications-film figcaption strong { margin-top: 8px; font-family: var(--display); font-size: 1.25rem; }
.applications-film-note { min-height: 88px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--muted); font-family: var(--mono); font-size: 0.58rem; }

.applications-crossref-section { background: var(--paper); }
.applications-crossref { border-top: 1px solid var(--ink); }
.applications-crossref-head, .applications-crossref > a { min-height: 104px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.25fr 0.85fr 0.75fr 0.8fr; align-items: center; }
.applications-crossref-head { min-height: 50px; color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }
.applications-crossref-head span, .applications-crossref > a > * { padding: 0 24px; border-right: 1px solid var(--line); }
.applications-crossref-head span:first-child, .applications-crossref > a > *:first-child { padding-left: 0; }
.applications-crossref-head span:last-child, .applications-crossref > a > *:last-child { border-right: 0; }
.applications-crossref > a { color: var(--ink); transition: background 180ms var(--ease), color 180ms var(--ease); }
.applications-crossref > a:hover { background: var(--ink); color: #fff; }
.applications-crossref > a strong { font-family: var(--display); font-size: clamp(1.1rem, 1.7vw, 1.55rem); }
.applications-crossref > a span { font-size: 0.9rem; }
.applications-crossref > a em { color: var(--blue); font-family: var(--mono); font-size: 0.62rem; font-style: normal; font-weight: 700; text-align: right; }
.applications-crossref > a:hover em { color: var(--amber-soft); }

.applications-boundary-section { background: var(--lab); }
.applications-boundary-grid { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr); }
.applications-boundary-copy { padding: clamp(42px, 6vw, 84px); background: var(--paper); }
.applications-boundary-copy h2 { margin-bottom: 26px; }
.applications-boundary-copy > p:last-child { color: var(--muted); }
.applications-boundary-ledger { border-left: 12px solid var(--recess-shell); background: var(--ink); color: #fff; }
.applications-boundary-ledger > div { min-height: 168px; padding: 32px clamp(30px, 4vw, 54px); border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 30px; }
.applications-boundary-ledger > div:last-child { border-bottom: 0; }
.applications-boundary-ledger span { color: var(--amber); font-family: var(--mono); font-size: 0.58rem; }
.applications-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.6vw, 1.45rem); line-height: 1.25; }

.applications-final { padding: 96px 0; background: var(--blue); color: #fff; }
.applications-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.52); border-bottom: 1px solid rgba(255,255,255,0.52); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.applications-final-grid .eyebrow { color: var(--amber-soft); }
.applications-final-grid h2 { margin: 0; }
.applications-final-grid p { color: rgba(255,255,255,0.72); }
.applications-final-grid .button { background: #fff; color: var(--blue); }
.applications-final-grid .button::after { background: var(--ink); color: #fff; }

@media (max-width: 1180px) {
  .applications-hero-scene { left: 36%; }
  .application-atlas { grid-template-columns: 190px minmax(0, 1fr); }
  .application-atlas-brief { grid-column: 1 / -1; min-height: 560px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .application-atlas-heading { min-height: auto; }
  .applications-reading-grid { grid-template-columns: 1fr; }
  .applications-film figure { height: 560px; }
}

@media (max-width: 820px) {
  .applications-hero { min-height: 900px; }
  .applications-hero-scene { inset: 0; }
  .applications-hero-overlay { background: linear-gradient(0deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.88) 48%, rgba(16, 37, 50,0.2) 100%); }
  .applications-hero-content { min-height: 740px; padding-top: 310px; }
  .applications-route { grid-template-columns: 1fr 1fr; }
  .applications-route span { min-height: 76px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .applications-route i { display: none; }
  .application-atlas { padding: 8px; grid-template-columns: 1fr; }
  .application-atlas-tabs { display: grid; grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; }
  .application-atlas-tabs button { min-width: 150px; min-height: 102px; border-right: 1px solid rgba(16, 37, 50,0.2); border-bottom: 0; }
  .application-atlas-media { min-height: 600px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .application-atlas-brief { border-top-width: 8px; }
  .applications-reading-axis > div { grid-template-columns: 110px 1fr; }
  .applications-reading-axis p { grid-column: 2; }
  .applications-film-head { grid-template-columns: 1fr; gap: 16px; }
  .applications-film { grid-template-columns: 1fr; }
  .applications-film figure { height: 540px; border-right: 0; }
  .applications-crossref-head { display: none; }
  .applications-crossref > a { min-height: 150px; grid-template-columns: 1fr 1fr; padding: 24px 0; gap: 16px 0; }
  .applications-crossref > a > * { min-height: 28px; }
  .applications-crossref > a > *:first-child { padding-left: 24px; }
  .applications-crossref > a > *:nth-child(2) { border-right: 0; }
  .applications-crossref > a em { text-align: left; }
  .applications-boundary-grid { padding: 8px; grid-template-columns: 1fr; }
  .applications-boundary-ledger { border-top: 8px solid var(--recess-shell); border-left: 0; }
  .applications-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 520px) {
  .applications-hero { min-height: 860px; }
  .applications-hero-content { min-height: 650px; padding-top: 260px; padding-bottom: 54px; }
  .applications-hero-content h1 { font-size: 3.45rem; }
  .applications-hero-content .lede { font-size: 1rem; }
  .applications-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .applications-route span { min-height: 74px; padding: 0 12px; font-size: 0.58rem; }
  .application-atlas-media { min-height: 430px; }
  .application-atlas-media figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .application-atlas-heading { padding: 36px 24px; }
  .application-atlas-heading h3 { font-size: 2.6rem; }
  .application-atlas-inputs, .application-atlas-route { padding-inline: 24px; }
  .applications-reading-axis > div { grid-template-columns: 1fr; gap: 9px; }
  .applications-reading-axis p { grid-column: auto; }
  .applications-film-section { padding-top: 78px; }
  .applications-film figure { height: 470px; }
  .applications-film-note { padding: 20px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
  .applications-crossref > a { grid-template-columns: 1fr; }
  .applications-crossref > a > *, .applications-crossref > a > *:first-child { min-height: auto; padding: 0; border-right: 0; }
  .applications-crossref > a span { font-size: 0.82rem; }
  .applications-boundary-copy { padding: 42px 24px; }
  .applications-boundary-ledger > div { grid-template-columns: 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .applications-hero-scene img { animation: none; }
}

/* RFQ buying guide / procurement worksheet */
.rfq-hero { padding: 124px 0 72px; background: #dfe8e3; }
.rfq-hero-grid { min-height: 760px; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr); box-shadow: var(--recess-depth); }
.rfq-hero-copy { min-width: 0; padding: clamp(46px, 6vw, 86px); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.rfq-hero-copy .eyebrow { color: var(--amber); }
.rfq-hero-copy h1 { max-width: 760px; margin-bottom: 30px; font-size: clamp(3.4rem, 4.2vw, 4.8rem); line-height: 0.94; letter-spacing: -0.052em; }
.rfq-hero-copy h1 span { display: block; white-space: nowrap; }
.rfq-hero-copy .lede { max-width: 670px; color: rgba(255,255,255,0.72); }
.rfq-hero-actions { margin-top: 18px; display: flex; align-items: center; gap: 28px; }
.rfq-hero-actions .button { background: #fff; color: var(--ink); }
.rfq-hero-actions .button::after { background: var(--blue); color: #fff; }
.rfq-hero-actions .text-action { color: #fff; }
.rfq-hero-meta { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.28); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 0.57rem; }
.rfq-hero-product { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #fff; }
.rfq-hero-product img { width: 100%; height: 100%; padding: clamp(30px, 5vw, 72px); object-fit: contain; transition: transform 620ms var(--ease); }
.rfq-hero-product:hover img { transform: scale(1.025); }
.rfq-hero-product figcaption { position: absolute; left: 24px; right: 24px; bottom: 24px; min-height: 58px; padding: 12px 16px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 0.57rem; }
.rfq-hero-product figcaption span { color: var(--amber-soft); }
.rfq-hero-stamp { width: 126px; height: 126px; padding: 18px; position: absolute; top: 26px; right: 26px; border: 2px solid var(--blue); background: rgba(255,255,255,0.95); color: var(--blue); display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 0 8px; font-family: var(--mono); transform: rotate(2deg); }
.rfq-hero-stamp small { font-size: 0.58rem; }
.rfq-hero-stamp strong { grid-row: 1 / 3; grid-column: 2; font-family: var(--display); font-size: 3.6rem; line-height: 0.8; }
.rfq-hero-stamp span { font-size: 0.54rem; }

.rfq-context-section { background: var(--paper); }
.rfq-context-grid { display: grid; grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.rfq-context-copy h2 { margin-bottom: 28px; }
.rfq-context-copy p:not(.eyebrow) { color: var(--muted); }
.rfq-context-logic { border-top: 1px solid var(--ink); }
.rfq-context-logic > div { min-height: 112px; padding: 22px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 120px 1fr 190px; align-items: center; gap: 24px; }
.rfq-context-logic span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.rfq-context-logic strong { font-family: var(--display); font-size: clamp(1.05rem, 1.6vw, 1.45rem); }
.rfq-context-logic em { color: var(--muted); font-size: 0.82rem; font-style: normal; text-align: right; }

.rfq-worksheet-section { background: var(--lab); }
.rfq-worksheet { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr); align-items: start; }
.rfq-checklist { min-width: 0; margin: 0; background: var(--paper); }
.rfq-checklist label { min-height: 92px; padding: 18px 24px; border-bottom: 1px solid var(--line); cursor: pointer; display: grid; grid-template-columns: 28px 44px minmax(220px, 0.9fr) minmax(250px, 1.1fr); align-items: center; gap: 16px; transition: background 180ms var(--ease), color 180ms var(--ease); }
.rfq-checklist label:last-child { border-bottom: 0; }
.rfq-checklist label:hover { background: #fff; }
.rfq-checklist label:has(input:checked) { background: var(--ink); color: #fff; }
.rfq-checklist input { width: 22px; height: 22px; margin: 0; accent-color: var(--blue); }
.rfq-checklist span { color: var(--blue); font-family: var(--mono); font-size: 0.56rem; }
.rfq-checklist label:has(input:checked) span { color: var(--amber); }
.rfq-checklist strong { font-family: var(--display); font-size: 1rem; line-height: 1.25; }
.rfq-checklist em { color: var(--muted); font-size: 0.82rem; font-style: normal; line-height: 1.45; }
.rfq-checklist label:has(input:checked) em { color: rgba(255,255,255,0.58); }
.rfq-progress { min-width: 0; min-height: 610px; margin-left: 12px; padding: clamp(34px, 4.5vw, 62px); position: sticky; top: 92px; background: var(--blue); color: #fff; display: flex; flex-direction: column; align-items: flex-start; }
.rfq-progress .eyebrow { color: var(--amber-soft); }
.rfq-progress-count { margin: 22px 0 28px; display: flex; align-items: flex-end; gap: 10px; }
.rfq-progress-count strong { font-family: var(--display); font-size: clamp(5rem, 8vw, 8.6rem); line-height: 0.72; }
.rfq-progress-count span { color: rgba(255,255,255,0.48); font-family: var(--mono); font-size: 1rem; }
.rfq-progress h3 { max-width: 430px; margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 0.95; }
.rfq-progress > p:not(.eyebrow):not(.form-status) { color: rgba(255,255,255,0.72); }
.rfq-progress-track { width: 100%; height: 8px; margin: auto 0 30px; background: rgba(255,255,255,0.2); overflow: hidden; }
.rfq-progress-track span { width: 0; height: 100%; background: var(--amber); display: block; transition: width 240ms var(--ease); }
.rfq-progress .button { background: #fff; color: var(--blue); }
.rfq-progress .button::after { background: var(--ink); color: #fff; }
.rfq-progress .text-action { margin-top: 22px; color: #fff; }
.rfq-progress .form-status { min-height: 24px; margin: 18px 0 0; color: var(--amber-soft); font-size: 0.78rem; }

.rfq-decisions-section { background: #dfe8e3; }
.rfq-decisions-head { margin-bottom: 56px; display: grid; grid-template-columns: 0.45fr 1.55fr; align-items: end; gap: 50px; }
.rfq-decisions-head h2 { max-width: 880px; margin: 0; }
.rfq-decision-ledger { border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.rfq-decision-ledger > section { min-height: 390px; padding: clamp(38px, 5vw, 74px); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.rfq-decision-ledger > section:nth-of-type(even) { border-right: 0; }
.rfq-decision-ledger > section span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.rfq-decision-ledger > section h3 { max-width: 540px; margin: 34px 0 20px; font-size: clamp(2rem, 3.4vw, 4rem); line-height: 0.96; }
.rfq-decision-ledger > section p { max-width: 590px; margin: 0; color: var(--muted); }
.rfq-decision-image { min-width: 0; height: 560px; margin: 0; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; position: relative; background: #fff; }
.rfq-decision-image img { width: 100%; height: 100%; padding: 28px; object-fit: contain; transition: transform 520ms var(--ease); }
.rfq-decision-image:hover img { transform: scale(1.025); }
.rfq-decision-image figcaption { position: absolute; left: 18px; bottom: 18px; padding: 10px 12px; background: rgba(16, 37, 50,0.9); color: #fff; font-family: var(--mono); font-size: 0.56rem; }
.rfq-decision-scene { border-right: 0; }
.rfq-decision-scene img { padding: 0; object-fit: cover; }

.rfq-example-section { background: var(--ink); color: #fff; }
.rfq-example-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 150px); }
.rfq-example-copy .eyebrow { color: var(--amber); }
.rfq-example-copy h2 { margin-bottom: 26px; }
.rfq-example-copy > p:last-child { color: rgba(255,255,255,0.62); }
.rfq-example-brief { margin: 0; padding: clamp(40px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.rfq-example-brief > span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.rfq-example-brief p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.45; }
.rfq-example-brief b { color: var(--blue); }
.rfq-example-brief footer { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }

.rfq-boundary-section { background: var(--paper); }
.rfq-boundary-grid { display: grid; grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr); gap: clamp(60px, 9vw, 140px); }
.rfq-boundary-intro { align-self: center; }
.rfq-boundary-intro h2 { margin-bottom: 26px; }
.rfq-boundary-intro p:last-child { color: var(--muted); }
.rfq-boundary-ledger { border-top: 1px solid var(--ink); }
.rfq-boundary-ledger > div { min-height: 148px; padding: 28px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; }
.rfq-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.rfq-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.12rem, 1.8vw, 1.6rem); line-height: 1.3; }

.rfq-final { padding: 96px 0; background: var(--blue); color: #fff; }
.rfq-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.rfq-final-grid .eyebrow { color: var(--amber-soft); }
.rfq-final-grid h2 { margin: 0; }
.rfq-final-grid p { color: rgba(255,255,255,0.72); }
.rfq-final-grid .button { background: #fff; color: var(--blue); }
.rfq-final-grid .button::after { background: var(--ink); color: #fff; }

@media (max-width: 1100px) {
  .rfq-hero-grid { grid-template-columns: 1fr; }
  .rfq-hero-copy { min-height: 650px; }
  .rfq-hero-product { min-height: 650px; }
  .rfq-context-grid, .rfq-example-grid, .rfq-boundary-grid { grid-template-columns: 1fr; }
  .rfq-worksheet { grid-template-columns: 1fr; }
  .rfq-progress { min-height: 520px; margin: 12px 0 0; position: static; }
}

@media (max-width: 760px) {
  .rfq-hero { padding: 98px 0 54px; }
  .rfq-hero-copy { min-height: 620px; padding: 44px 24px; }
  .rfq-hero-copy h1 { font-size: clamp(2.35rem, 10.4vw, 4rem); }
  .rfq-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .rfq-hero-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .rfq-hero-product { min-height: 520px; }
  .rfq-hero-product figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .rfq-hero-stamp { width: 102px; height: 102px; top: 18px; right: 18px; }
  .rfq-hero-stamp strong { font-size: 2.8rem; }
  .rfq-context-logic > div { grid-template-columns: 1fr; gap: 10px; }
  .rfq-context-logic em { text-align: left; }
  .rfq-worksheet { padding: 8px; }
  .rfq-checklist label { min-height: 132px; padding: 20px; grid-template-columns: 26px 36px 1fr; gap: 8px 12px; }
  .rfq-checklist em { grid-column: 3; }
  .rfq-progress { min-height: 480px; margin-top: 8px; padding: 40px 24px; }
  .rfq-decisions-head { grid-template-columns: 1fr; gap: 16px; }
  .rfq-decision-ledger { grid-template-columns: 1fr; }
  .rfq-decision-ledger > section, .rfq-decision-ledger > section:nth-of-type(even), .rfq-decision-image { border-right: 0; }
  .rfq-decision-ledger > section { min-height: 360px; padding: 44px 24px; }
  .rfq-decision-image { height: 480px; }
  .rfq-example-brief { padding: 42px 24px; }
  .rfq-example-brief p { font-size: 1.3rem; }
  .rfq-boundary-ledger > div { grid-template-columns: 1fr; gap: 12px; }
  .rfq-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .rfq-hero-copy h1 { font-size: 2.35rem; line-height: 0.98; }
  .rfq-hero-product { min-height: 440px; }
  .rfq-hero-product img { padding: 38px 18px; }
  .rfq-hero-stamp { width: 88px; height: 88px; padding: 12px; }
  .rfq-hero-stamp strong { font-size: 2.35rem; }
  .rfq-checklist label { grid-template-columns: 24px 1fr; }
  .rfq-checklist span { display: none; }
  .rfq-checklist em { grid-column: 2; }
  .rfq-decision-image { height: 410px; }
}

/* Model comparison guide / shortlist bench */
.compare-hero { padding: 124px 0 72px; background: var(--ink); color: #fff; }
.compare-hero-grid { min-height: 780px; display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr); }
.compare-hero-copy { padding: clamp(44px, 6vw, 84px) clamp(34px, 5vw, 72px) 44px 0; display: flex; flex-direction: column; justify-content: center; }
.compare-hero-copy .button { color: #fff; }
.compare-hero-copy .eyebrow { color: var(--amber); }
.compare-hero-copy h1 { margin-bottom: 30px; font-size: clamp(3.4rem, 4.6vw, 5.4rem); line-height: 0.92; }
.compare-hero-copy h1 span { display: block; white-space: nowrap; }
.compare-hero-copy .lede { max-width: 650px; color: rgba(255,255,255,0.72); }
.compare-hero-copy .button { align-self: flex-start; margin-top: 18px; border: 1px solid rgba(255,255,255,0.5); background: transparent; }
.compare-hero-scene { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #000; }
.compare-hero-scene img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: transform 620ms var(--ease), opacity 260ms var(--ease); }
.compare-hero-scene:hover img { opacity: 1; transform: scale(1.025); }
.compare-hero-scene figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; min-height: 58px; padding: 12px 16px; background: rgba(16, 37, 50,0.9); display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.57rem; }
.compare-hero-scene figcaption span { color: var(--amber-soft); }

.compare-order-section { background: var(--paper); }
.compare-order-grid { display: grid; grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.compare-order-intro h2 { margin-bottom: 26px; }
.compare-order-intro p:last-child { color: var(--muted); }
.compare-order-axis { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.compare-order-axis li { min-height: 88px; padding: 18px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 50px 1fr 220px; align-items: center; gap: 18px; }
.compare-order-axis span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.compare-order-axis strong { font-family: var(--display); font-size: 1.18rem; }
.compare-order-axis em { color: var(--muted); font-size: 0.82rem; font-style: normal; text-align: right; }

.comparison-lens-section { background: var(--lab); }
.comparison-lens { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 170px minmax(0, 1.12fr) minmax(380px, 0.88fr); }
.comparison-lens-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.comparison-lens-tabs button { width: 100%; min-height: 114px; padding: 20px 17px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.comparison-lens-tabs button:last-child { border-bottom: 0; }
.comparison-lens-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }
.comparison-lens-tabs strong { font-family: var(--display); font-size: 1rem; }
.comparison-lens-tabs button.is-active { background: var(--ink); color: #fff; }
.comparison-lens-tabs button.is-active span { color: var(--amber); }
.comparison-lens-media { min-width: 0; min-height: 570px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.comparison-lens-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.comparison-lens-media.is-contain img { padding: 32px; object-fit: contain; }
.comparison-lens-media:hover img { transform: scale(1.025); }
.comparison-lens-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.9); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.56rem; }
.comparison-lens-media figcaption span { color: var(--amber-soft); }
.comparison-lens-copy { min-width: 0; padding: clamp(38px, 5vw, 66px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.comparison-lens-copy h3 { margin-bottom: 22px; font-size: clamp(2.25rem, 3.4vw, 4rem); line-height: 0.96; }
.comparison-lens-copy > p:not(.eyebrow) { color: var(--muted); }
.comparison-lens-copy ul { margin: 28px 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.comparison-lens-copy li { min-height: 52px; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 800; }
.comparison-lens-copy .text-action { align-self: flex-start; margin-top: 12px; }

.compare-record-section { background: var(--paper); }
.compare-record { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, 0.72fr); }
.compare-record-product { min-width: 0; min-height: 620px; margin: 0; overflow: hidden; position: relative; background: #fff; }
.compare-record-product img { width: 100%; height: 100%; padding: 48px; object-fit: contain; }
.compare-record-product figcaption { position: absolute; left: 20px; bottom: 20px; padding: 10px 12px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 0.56rem; }
.compare-record-ledger { margin: 0 0 0 12px; background: var(--ink); color: #fff; }
.compare-record-ledger div { min-height: 102px; padding: 20px 28px; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 20px; }
.compare-record-ledger div:last-child { border-bottom: 0; }
.compare-record-ledger dt { color: var(--amber); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.compare-record-ledger dd { margin: 0; font-family: var(--display); font-size: 1.08rem; }

.compare-table-section { background: #dfe8e3; }
.compare-table-head { margin-bottom: 48px; display: grid; grid-template-columns: 0.4fr 1.1fr 0.7fr; align-items: end; gap: 36px; }
.compare-table-head h2, .compare-table-head p { margin-bottom: 0; }
.compare-table-head p:last-child { color: var(--muted); }
.compare-table { border-top: 1px solid var(--ink); background: var(--paper); }
.compare-table-row { min-height: 82px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); align-items: stretch; }
.compare-table-row > * { padding: 20px 24px; border-right: 1px solid var(--line); display: flex; align-items: center; }
.compare-table-row > *:last-child { border-right: 0; }
.compare-table-row span { font-family: var(--display); font-weight: 800; }
.compare-table-row em { color: var(--muted); font-family: var(--mono); font-size: 0.62rem; font-style: normal; }
.compare-table-labels { min-height: 54px; background: var(--ink); color: #fff; }
.compare-table-labels span, .compare-table-labels strong { color: var(--amber-soft); font-family: var(--mono); font-size: 0.57rem; }

.compare-boundary-section { background: var(--ink); color: #fff; }
.compare-boundary-grid { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr); gap: clamp(60px, 9vw, 140px); }
.compare-boundary-copy { align-self: center; }
.compare-boundary-copy .eyebrow { color: var(--amber); }
.compare-boundary-copy p:last-child { color: rgba(255,255,255,0.62); }
.compare-boundary-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.compare-boundary-ledger div { min-height: 138px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 28px; }
.compare-boundary-ledger span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.58rem; }
.compare-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.compare-final { padding: 96px 0; background: var(--blue); color: #fff; }
.compare-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.compare-final-grid .eyebrow { color: var(--amber-soft); }
.compare-final-grid h2 { margin: 0; }
.compare-final-grid p { color: rgba(255,255,255,0.72); }
.compare-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .compare-hero-grid, .compare-order-grid, .compare-boundary-grid { grid-template-columns: 1fr; }
  .compare-hero-copy { min-height: 620px; }
  .compare-hero-scene { min-height: 650px; }
  .comparison-lens { grid-template-columns: 170px 1fr; }
  .comparison-lens-copy { grid-column: 1 / -1; min-height: 480px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .compare-table-head { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 760px) {
  .compare-hero { padding: 98px 0 54px; }
  .compare-hero-copy { min-height: 570px; padding: 40px 0 50px; }
  .compare-hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .compare-hero-scene { min-height: 530px; }
  .compare-order-axis li { grid-template-columns: 44px 1fr; }
  .compare-order-axis em { grid-column: 2; text-align: left; }
  .comparison-lens { padding: 8px; grid-template-columns: 1fr; }
  .comparison-lens-tabs { display: grid; grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; }
  .comparison-lens-tabs button { min-width: 130px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .comparison-lens-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .comparison-lens-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .compare-record { padding: 8px; grid-template-columns: 1fr; }
  .compare-record-product { min-height: 500px; }
  .compare-record-ledger { margin: 8px 0 0; }
  .compare-table { overflow-x: auto; }
  .compare-table-row { min-width: 720px; }
  .compare-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .compare-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .compare-hero-copy h1 { font-size: 2.55rem; }
  .compare-hero-scene { min-height: 440px; }
  .comparison-lens-media { min-height: 420px; }
  .comparison-lens-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .compare-record-product { min-height: 420px; }
  .compare-record-product img { padding: 28px 12px; }
  .compare-record-ledger div { grid-template-columns: 1fr; gap: 8px; }
}

/* OEM packaging artwork guide / approval desk */
.packaging-hero { padding: 124px 0 72px; background: var(--blue-deep); color: #fff; }
.packaging-hero-grid { min-height: 790px; display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr); }
.packaging-hero-copy { padding: clamp(44px, 6vw, 84px) clamp(34px, 5vw, 76px) 44px 0; display: flex; flex-direction: column; justify-content: center; }
.packaging-hero-copy .eyebrow { color: var(--amber-soft); }
.packaging-hero-copy h1 { margin-bottom: 30px; font-size: clamp(3.3rem, 4.65vw, 5.5rem); line-height: 0.92; }
.packaging-hero-copy h1 span { display: block; white-space: nowrap; }
.packaging-hero-copy .lede { color: rgba(255,255,255,0.72); }
.packaging-hero-copy .button { align-self: flex-start; margin-top: 18px; background: #fff; color: var(--blue-deep); }
.packaging-hero-evidence { min-width: 0; margin: 0; position: relative; overflow: hidden; background: #eef1f8; }
.packaging-hero-evidence > img { width: 100%; height: 100%; padding: clamp(24px, 4vw, 62px); object-fit: contain; transition: transform 620ms var(--ease); }
.packaging-hero-evidence:hover > img { transform: scale(1.02); }
.packaging-hero-evidence figcaption { position: absolute; left: 22px; right: 22px; bottom: 22px; min-height: 58px; padding: 12px 16px; background: rgba(16, 37, 50,0.92); display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.57rem; }
.packaging-hero-evidence figcaption span { color: var(--amber-soft); }
.packaging-hero-note { position: absolute; min-width: 154px; padding: 10px 12px; border-left: 2px solid var(--blue); background: rgba(248, 250, 247,0.94); color: var(--ink); box-shadow: 0 10px 30px rgba(16, 37, 50,0.12); display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 0.58rem; }
.packaging-hero-note b { color: var(--blue); }
.packaging-note-a { left: 5%; top: 16%; }
.packaging-note-b { right: 5%; top: 38%; }
.packaging-note-c { left: 9%; bottom: 15%; }

.packaging-order-section { background: var(--paper); }
.packaging-order-grid { display: grid; grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.packaging-order-intro h2 { margin-bottom: 26px; }
.packaging-order-intro p:last-child { color: var(--muted); }
.packaging-order-axis { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.packaging-order-axis li { min-height: 90px; padding: 18px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 72px 1fr 210px; align-items: center; gap: 18px; }
.packaging-order-axis span { color: var(--blue); font-family: var(--mono); font-size: 0.56rem; }
.packaging-order-axis strong { font-family: var(--display); font-size: 1.18rem; }
.packaging-order-axis em { color: var(--muted); font-size: 0.82rem; font-style: normal; text-align: right; }

.packaging-approval-section { background: var(--lab); }
.packaging-approval { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 176px minmax(0, 1fr) minmax(410px, 0.88fr); }
.packaging-approval-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.packaging-approval-tabs button { width: 100%; min-height: 116px; padding: 20px 17px; border: 0; border-bottom: 1px solid rgba(16, 37, 50,0.2); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.packaging-approval-tabs button:last-child { border-bottom: 0; }
.packaging-approval-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.56rem; }
.packaging-approval-tabs strong { font-family: var(--display); font-size: 1rem; line-height: 1.15; }
.packaging-approval-tabs button.is-active { background: var(--blue-deep); color: #fff; }
.packaging-approval-tabs button.is-active span { color: var(--amber-soft); }
.packaging-approval-media { min-width: 0; min-height: 580px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.packaging-approval-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease), opacity 180ms var(--ease); }
.packaging-approval-media.is-contain img { padding: 36px; object-fit: contain; }
.packaging-approval-media:hover img { transform: scale(1.022); }
.packaging-approval-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.56rem; }
.packaging-approval-media figcaption span { color: var(--amber-soft); }
.packaging-approval-copy { min-width: 0; padding: clamp(34px, 4.4vw, 62px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.packaging-approval-copy h3 { margin-bottom: 20px; font-size: clamp(2.15rem, 3.2vw, 3.75rem); line-height: 0.96; }
.packaging-approval-copy > p:not(.eyebrow) { color: var(--muted); }
.packaging-approval-ledgers { margin-top: 20px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.packaging-approval-ledgers section { padding: 20px 20px 12px 0; border-bottom: 1px solid var(--line); }
.packaging-approval-ledgers section + section { padding-left: 20px; border-left: 1px solid var(--line); }
.packaging-approval-ledgers span { color: var(--blue); font-family: var(--mono); font-size: 0.55rem; }
.packaging-approval-ledgers ul { margin: 14px 0 0; padding: 0; list-style: none; }
.packaging-approval-ledgers li { margin-bottom: 8px; font-size: 0.82rem; font-weight: 700; line-height: 1.35; }
.packaging-approval-copy .text-action { align-self: flex-start; margin-top: 24px; }

.packaging-handoff-section { background: #dfe8e3; }
.packaging-handoff-head { margin-bottom: 52px; display: grid; grid-template-columns: 0.35fr 1.05fr 0.7fr; align-items: end; gap: 36px; }
.packaging-handoff-head h2, .packaging-handoff-head p { margin-bottom: 0; }
.packaging-handoff-head p:last-child { color: var(--muted); }
.packaging-handoff-ledger { border-top: 1px solid var(--ink); }
.packaging-handoff-labels, .packaging-handoff-ledger article { min-height: 98px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 150px minmax(260px, 0.86fr) minmax(0, 1.14fr); align-items: center; gap: 32px; }
.packaging-handoff-labels { min-height: 48px; background: var(--ink); color: var(--amber-soft); }
.packaging-handoff-labels span { padding: 0 22px; font-family: var(--mono); font-size: 0.56rem; }
.packaging-handoff-ledger article { padding: 20px 22px; background: var(--paper); }
.packaging-handoff-ledger article b { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.packaging-handoff-ledger article h3 { margin: 0; font-size: 1.25rem; }
.packaging-handoff-ledger article p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.packaging-evidence-section { background: var(--paper); }
.packaging-evidence-grid { display: grid; grid-template-columns: minmax(320px, 0.65fr) minmax(0, 1.35fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.packaging-evidence-copy h2 { margin-bottom: 26px; }
.packaging-evidence-copy > p { color: var(--muted); }
.packaging-evidence-copy dl { margin: 34px 0 0; border-top: 1px solid var(--ink); }
.packaging-evidence-copy dl div { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.packaging-evidence-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.56rem; text-transform: uppercase; }
.packaging-evidence-copy dd { margin: 0; font-weight: 700; }
.packaging-evidence-pair { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.packaging-evidence-pair figure { min-width: 0; min-height: 530px; margin: 0; position: relative; overflow: hidden; background: #fff; }
.packaging-evidence-pair img { width: 100%; height: 100%; padding: 24px; object-fit: contain; transition: transform 520ms var(--ease); }
.packaging-evidence-pair figure:hover img { transform: scale(1.025); }
.packaging-evidence-pair figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 12px; background: rgba(16, 37, 50,0.92); color: #fff; font-family: var(--mono); font-size: 0.54rem; }

.packaging-boundary-section { background: var(--ink); color: #fff; }
.packaging-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.packaging-boundary-copy { align-self: center; }
.packaging-boundary-copy .eyebrow { color: var(--amber); }
.packaging-boundary-copy p:last-child { color: rgba(255,255,255,0.62); }
.packaging-boundary-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.packaging-boundary-ledger div { min-height: 140px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 160px 1fr; align-items: center; gap: 28px; }
.packaging-boundary-ledger span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.57rem; }
.packaging-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.packaging-final { padding: 96px 0; background: var(--blue); color: #fff; }
.packaging-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.packaging-final-grid .eyebrow { color: var(--amber-soft); }
.packaging-final-grid h2 { margin: 0; }
.packaging-final-grid p { color: rgba(255,255,255,0.72); }
.packaging-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .packaging-hero-grid, .packaging-order-grid, .packaging-evidence-grid, .packaging-boundary-grid { grid-template-columns: 1fr; }
  .packaging-hero-copy { min-height: 620px; }
  .packaging-hero-evidence { min-height: 650px; }
  .packaging-approval { grid-template-columns: 176px 1fr; }
  .packaging-approval-copy { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .packaging-handoff-head { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 760px) {
  .packaging-hero { padding: 98px 0 54px; }
  .packaging-hero-copy { min-height: 570px; padding: 40px 0 50px; }
  .packaging-hero-copy h1 { font-size: clamp(2.65rem, 11.7vw, 4rem); }
  .packaging-hero-evidence { min-height: 520px; }
  .packaging-hero-note { min-width: auto; }
  .packaging-note-a { left: 12px; top: 12px; }
  .packaging-note-b { right: 12px; top: 24%; }
  .packaging-note-c { left: 12px; bottom: 86px; }
  .packaging-order-axis li { grid-template-columns: 62px 1fr; }
  .packaging-order-axis em { grid-column: 2; text-align: left; }
  .packaging-approval { padding: 8px; grid-template-columns: 1fr; }
  .packaging-approval-tabs { display: grid; grid-template-columns: repeat(5, minmax(132px, 1fr)); overflow-x: auto; }
  .packaging-approval-tabs button { min-width: 132px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .packaging-approval-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .packaging-approval-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .packaging-approval-ledgers { grid-template-columns: 1fr; }
  .packaging-approval-ledgers section + section { padding-left: 0; border-left: 0; }
  .packaging-handoff-labels { display: none; }
  .packaging-handoff-ledger article { min-height: 190px; grid-template-columns: 1fr; align-content: center; gap: 10px; }
  .packaging-evidence-pair { padding: 8px; grid-template-columns: 1fr; gap: 8px; }
  .packaging-evidence-pair figure { min-height: 460px; }
  .packaging-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .packaging-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .packaging-hero-copy h1 { font-size: 2.45rem; }
  .packaging-hero-evidence { min-height: 450px; }
  .packaging-hero-evidence > img { padding: 28px 10px; }
  .packaging-hero-evidence figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .packaging-hero-note { font-size: 0.49rem; }
  .packaging-hero-note span { max-width: 90px; }
  .packaging-approval-media { min-height: 420px; }
  .packaging-approval-media.is-contain img { padding: 24px 8px; }
  .packaging-approval-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .packaging-evidence-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .packaging-evidence-pair figure { min-height: 390px; }
  .packaging-evidence-pair img { padding: 12px; }
}

/* Product records request guide / document register */
.records-hero { padding: 124px 0 72px; background: #dfe8e3; }
.records-hero-grid { min-height: 800px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.1fr); }
.records-hero-copy { min-width: 0; padding: clamp(40px, 4vw, 56px); background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.records-hero-copy .eyebrow { color: var(--amber); }
.records-hero-copy h1 { margin-bottom: 30px; font-size: clamp(2.5rem, 3.1vw, 3.5rem); line-height: 0.93; }
.records-hero-copy h1 span { display: block; white-space: nowrap; }
.records-hero-copy .lede { color: rgba(255,255,255,0.7); }
.records-hero-copy .button { align-self: flex-start; margin-top: 18px; background: #fff; color: var(--ink); }
.records-hero-file { min-width: 0; margin: 0 0 0 12px; padding: 64px 28px 28px; position: relative; overflow: hidden; background: var(--paper); }
.records-hero-file > img { width: 100%; height: 100%; object-fit: contain; transition: transform 620ms var(--ease); }
.records-hero-file:hover > img { transform: scale(1.012); }
.records-file-tabs { position: absolute; left: 28px; right: 28px; top: 20px; border-bottom: 1px solid var(--ink); display: flex; align-items: flex-end; gap: 2px; }
.records-file-tabs span { min-width: 92px; padding: 9px 12px 7px; background: var(--lab); color: var(--muted); font-family: var(--mono); font-size: 0.53rem; }
.records-file-tabs span:last-child { background: var(--blue); color: #fff; }
.records-hero-file figcaption { position: absolute; left: 28px; right: 28px; bottom: 28px; min-height: 58px; padding: 12px 16px; background: rgba(16, 37, 50,0.94); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.57rem; }
.records-hero-file figcaption span { color: var(--amber-soft); }

.records-order-section { background: var(--paper); }
.records-order-grid { display: grid; grid-template-columns: minmax(310px, 0.66fr) minmax(0, 1.34fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.records-order-copy h2 { margin-bottom: 26px; }
.records-order-copy p:last-child { color: var(--muted); }
.records-order-ledger { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.records-order-ledger li { min-height: 92px; padding: 20px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 24px; }
.records-order-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.records-order-ledger strong { max-width: 720px; font-family: var(--display); font-size: 1.2rem; line-height: 1.3; }

.record-register-section { background: var(--lab); }
.record-register { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.record-register-tabs { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--recess-floor); box-shadow: var(--recess-control); }
.record-register-tabs button { min-height: 92px; padding: 18px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.record-register-tabs button:last-child { border-right: 0; }
.record-register-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.record-register-tabs strong { font-family: var(--display); font-size: 1rem; }
.record-register-tabs button.is-active { background: var(--blue); color: #fff; }
.record-register-tabs button.is-active span { color: var(--amber-soft); }
.record-register-open-file { margin-top: 12px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(410px, 0.8fr); }
.record-register-media { min-width: 0; min-height: 610px; margin: 0; overflow: hidden; position: relative; background: #fff; }
.record-register-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.record-register-media.is-contain img { padding: 32px; object-fit: contain; }
.record-register-media:hover img { transform: scale(1.018); }
.record-register-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.56rem; }
.record-register-media figcaption span { color: var(--amber-soft); }
.record-register-copy { min-width: 0; padding: clamp(38px, 4.8vw, 68px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.record-register-copy h3 { margin-bottom: 22px; font-size: clamp(2.2rem, 3.2vw, 3.8rem); line-height: 0.96; }
.record-register-copy > p:not(.eyebrow) { color: var(--muted); }
.record-register-copy dl { margin: 26px 0 0; border-top: 1px solid var(--ink); }
.record-register-copy dl div { min-height: 78px; padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 20px; }
.record-register-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.record-register-copy dd { margin: 0; font-size: 0.88rem; font-weight: 800; line-height: 1.35; }
.record-register-copy .text-action { align-self: flex-start; margin-top: 26px; }

.records-stage-section { background: #dfe8e3; }
.records-stage-head { margin-bottom: 52px; display: grid; grid-template-columns: 0.34fr 1.05fr 0.72fr; align-items: end; gap: 36px; }
.records-stage-head h2, .records-stage-head p { margin-bottom: 0; }
.records-stage-head p:last-child { color: var(--muted); }
.records-stage-ledger { border-top: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr; }
.records-stage-ledger article { min-height: 340px; padding: clamp(38px, 5vw, 66px); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); display: flex; flex-direction: column; }
.records-stage-ledger article:nth-child(even) { border-right: 0; }
.records-stage-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.records-stage-ledger h3 { max-width: 520px; margin: 34px 0 18px; font-size: clamp(2rem, 3vw, 3.45rem); }
.records-stage-ledger p { max-width: 620px; color: var(--muted); }
.records-stage-ledger b { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); color: var(--blue); font-family: var(--mono); font-size: 0.56rem; }

.records-evidence-section { background: var(--paper); }
.records-evidence-grid { display: grid; grid-template-columns: minmax(330px, 0.62fr) minmax(0, 1.38fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.records-evidence-copy h2 { margin-bottom: 26px; }
.records-evidence-copy > p { color: var(--muted); }
.records-evidence-copy dl { margin: 34px 0 0; border-top: 1px solid var(--ink); }
.records-evidence-copy dl div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.records-evidence-copy dt { margin-bottom: 8px; color: var(--blue); font-family: var(--mono); font-size: 0.55rem; }
.records-evidence-copy dd { margin: 0; font-weight: 700; }
.records-evidence-strip { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.records-evidence-strip figure { min-width: 0; min-height: 500px; margin: 0; position: relative; overflow: hidden; background: #fff; }
.records-evidence-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.records-evidence-strip figure:first-child img, .records-evidence-strip figure:last-child img { padding: 20px; object-fit: contain; }
.records-evidence-strip figure:hover img { transform: scale(1.025); }
.records-evidence-strip figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 10px; background: rgba(16, 37, 50,0.92); color: #fff; font-family: var(--mono); font-size: 0.52rem; }

.records-request-section { background: var(--blue-deep); color: #fff; }
.records-request-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.records-request-copy .eyebrow { color: var(--amber-soft); }
.records-request-copy h2 { margin-bottom: 26px; }
.records-request-copy p { color: rgba(255,255,255,0.68); }
.records-request-copy .button { background: #fff; color: var(--blue-deep); }
.records-request-example { margin: 0; padding: clamp(42px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.records-request-example > span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.records-request-example p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.05vw, 2rem); line-height: 1.45; }
.records-request-example b { color: var(--blue); }
.records-request-example footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }

.records-boundary-section { background: var(--ink); color: #fff; }
.records-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.records-boundary-copy { align-self: center; }
.records-boundary-copy .eyebrow { color: var(--amber); }
.records-boundary-copy p:last-child { color: rgba(255,255,255,0.62); }
.records-boundary-ledger { border-top: 1px solid rgba(255,255,255,0.42); }
.records-boundary-ledger div { min-height: 138px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.2); display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 28px; }
.records-boundary-ledger span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.57rem; }
.records-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.records-final { padding: 96px 0; background: var(--blue); color: #fff; }
.records-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.records-final-grid .eyebrow { color: var(--amber-soft); }
.records-final-grid h2 { margin: 0; }
.records-final-grid p { color: rgba(255,255,255,0.72); }
.records-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .records-hero-grid, .records-order-grid, .records-evidence-grid, .records-request-grid, .records-boundary-grid { grid-template-columns: 1fr; }
  .records-hero-copy { min-height: 620px; }
  .records-hero-file { min-height: 650px; margin: 12px 0 0; }
  .record-register-open-file { grid-template-columns: 1fr; }
  .record-register-copy { min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .records-stage-head { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 760px) {
  .records-hero { padding: 98px 0 54px; }
  .records-hero-grid { padding: 8px; }
  .records-hero-copy { min-height: 590px; padding: 42px 20px; }
  .records-hero-copy h1 { font-size: clamp(2.55rem, 11vw, 3.8rem); }
  .records-hero-file { min-height: 480px; margin-top: 8px; padding: 58px 12px 12px; }
  .records-file-tabs { left: 12px; right: 12px; top: 14px; overflow-x: auto; }
  .records-file-tabs span { min-width: 82px; }
  .records-hero-file figcaption { left: 12px; right: 12px; bottom: 12px; align-items: flex-start; flex-direction: column; gap: 4px; }
  .records-order-ledger li { grid-template-columns: 70px 1fr; }
  .record-register { padding: 8px; }
  .record-register-tabs { display: flex; overflow-x: auto; }
  .record-register-tabs button { min-width: 142px; min-height: 92px; flex: 1 0 142px; }
  .record-register-open-file { margin-top: 8px; }
  .record-register-media { min-height: 480px; }
  .record-register-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .record-register-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .records-stage-ledger { grid-template-columns: 1fr; }
  .records-stage-ledger article, .records-stage-ledger article:nth-child(even) { min-height: 330px; border-right: 0; }
  .records-evidence-strip { padding: 8px; grid-template-columns: 1fr; gap: 8px; }
  .records-evidence-strip figure { min-height: 460px; }
  .records-request-example { padding: 42px 24px; }
  .records-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .records-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .records-hero-copy h1 { font-size: 1.85rem; }
  .records-hero-file { min-height: 420px; }
  .records-hero-file > img { object-position: center; }
  .record-register-media { min-height: 390px; }
  .record-register-media.is-contain img { padding: 18px 6px; }
  .record-register-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .records-evidence-strip figure { min-height: 390px; }
  .records-request-example p { font-size: 1.25rem; }
}

/* Sample approval guide / physical inspection bench */
.sample-hero { padding: 124px 0 72px; background: var(--ink); color: #fff; }
.sample-hero-grid { min-height: 790px; display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr); }
.sample-hero-copy { min-width: 0; padding: clamp(42px, 5vw, 76px) clamp(32px, 5vw, 72px) 42px 0; display: flex; flex-direction: column; justify-content: center; }
.sample-hero-copy .eyebrow { color: var(--amber); }
.sample-hero-copy h1 { margin-bottom: 30px; font-size: clamp(3rem, 4vw, 4.7rem); line-height: 0.93; letter-spacing: -0.048em; }
.sample-hero-copy h1 span { display: block; white-space: nowrap; }
.sample-hero-copy .lede { max-width: 660px; color: rgba(255,255,255,0.7); }
.sample-hero-copy .button { align-self: flex-start; margin-top: 18px; border: 1px solid rgba(255,255,255,0.45); background: transparent; color: #fff; }
.sample-hero-meta { margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.25); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.48); font-family: var(--mono); font-size: 0.56rem; }
.sample-hero-visual { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #f7f8f7; }
.sample-hero-visual > img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease); }
.sample-hero-visual:hover > img { transform: scale(1.018); }
.sample-hero-visual::before, .sample-hero-visual::after { content: ""; position: absolute; z-index: 1; pointer-events: none; }
.sample-hero-visual::before { inset: 30px; border: 1px solid rgba(45, 107, 94,0.5); }
.sample-hero-visual::after { left: 50%; top: 30px; bottom: 30px; border-left: 1px solid rgba(45, 107, 94,0.23); }
.sample-crosshair { position: absolute; z-index: 2; color: var(--blue); font-family: var(--mono); font-size: 0.54rem; display: flex; align-items: center; gap: 10px; }
.sample-crosshair i { width: 22px; height: 22px; border: 1px solid var(--blue); position: relative; display: block; }
.sample-crosshair i::before, .sample-crosshair i::after { content: ""; position: absolute; background: var(--blue); }
.sample-crosshair i::before { width: 30px; height: 1px; left: -5px; top: 10px; }
.sample-crosshair i::after { width: 1px; height: 30px; left: 10px; top: -5px; }
.sample-crosshair-a { left: 16%; top: 26%; }
.sample-crosshair-b { right: 12%; bottom: 31%; flex-direction: row-reverse; }
.sample-hero-visual figcaption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 30px; min-height: 58px; padding: 12px 16px; background: rgba(16, 37, 50,0.92); display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.57rem; }
.sample-hero-visual figcaption span { color: var(--amber-soft); }

.sample-baseline-section { background: var(--paper); }
.sample-baseline-grid { display: grid; grid-template-columns: minmax(310px, 0.66fr) minmax(0, 1.34fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.sample-baseline-copy h2 { margin-bottom: 26px; }
.sample-baseline-copy p:last-child { color: var(--muted); }
.sample-baseline-ledger { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.sample-baseline-ledger li { min-height: 90px; padding: 19px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 24px; }
.sample-baseline-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.sample-baseline-ledger strong { max-width: 710px; font-family: var(--display); font-size: 1.16rem; line-height: 1.3; }

.sample-bench-section { background: var(--lab); }
.sample-bench { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.sample-bench-tabs { display: grid; grid-template-columns: repeat(5, 1fr); background: var(--recess-floor); box-shadow: var(--recess-control); }
.sample-bench-tabs button { min-height: 94px; padding: 18px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.sample-bench-tabs button:last-child { border-right: 0; }
.sample-bench-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.sample-bench-tabs strong { font-family: var(--display); font-size: 1rem; }
.sample-bench-tabs button.is-active { background: var(--ink); color: #fff; }
.sample-bench-tabs button.is-active span { color: var(--amber); }
.sample-bench-open { margin-top: 12px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr); }
.sample-bench-media { min-width: 0; min-height: 620px; margin: 0; overflow: hidden; position: relative; background: #fff; }
.sample-bench-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease), opacity 180ms var(--ease); }
.sample-bench-media.is-contain img { padding: 34px; object-fit: contain; }
.sample-bench-media:hover img { transform: scale(1.02); }
.sample-bench-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.56rem; }
.sample-bench-media figcaption span { color: var(--amber-soft); }
.sample-bench-copy { min-width: 0; padding: clamp(38px, 4.8vw, 68px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.sample-bench-copy h3 { margin-bottom: 22px; font-size: clamp(2.15rem, 3.15vw, 3.7rem); line-height: 0.96; }
.sample-bench-copy > p:not(.eyebrow) { color: var(--muted); }
.sample-bench-copy dl { margin: 27px 0 0; border-top: 1px solid var(--ink); }
.sample-bench-copy dl div { min-height: 78px; padding: 16px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 20px; }
.sample-bench-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.sample-bench-copy dd { margin: 0; font-size: 0.88rem; font-weight: 800; line-height: 1.35; }
.sample-bench-copy .text-action { align-self: flex-start; margin-top: 26px; }

.sample-ledger-section { background: #dfe8e3; }
.sample-ledger-head { margin-bottom: 52px; display: grid; grid-template-columns: 0.34fr 1.05fr 0.72fr; align-items: end; gap: 36px; }
.sample-ledger-head h2, .sample-ledger-head p { margin-bottom: 0; }
.sample-ledger-head p:last-child { color: var(--muted); }
.sample-ledger { border-top: 1px solid var(--ink); background: var(--paper); }
.sample-ledger-labels, .sample-ledger article { display: grid; grid-template-columns: 0.54fr 1.05fr 1.05fr; gap: 36px; }
.sample-ledger-labels { padding: 15px 24px; background: var(--ink); color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 0.54rem; }
.sample-ledger article { min-height: 130px; padding: 27px 24px; border-bottom: 1px solid var(--ink); align-items: center; }
.sample-ledger article b { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.sample-ledger article p { margin: 0; font-size: 0.92rem; }
.sample-ledger article p:last-child { color: var(--muted); }

.sample-disposition-section { background: var(--paper); }
.sample-disposition-grid { display: grid; grid-template-columns: minmax(310px, 0.58fr) minmax(0, 1.42fr); gap: clamp(60px, 8vw, 120px); }
.sample-disposition-intro { align-self: start; position: sticky; top: 110px; }
.sample-disposition-intro h2 { margin-bottom: 26px; }
.sample-disposition-intro p:last-child { color: var(--muted); }
.sample-disposition-ledger { border-top: 1px solid var(--ink); }
.sample-disposition-ledger article { min-height: 300px; padding: clamp(34px, 4.6vw, 62px) 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 170px 1fr; grid-template-rows: auto auto 1fr; gap: 16px 34px; }
.sample-disposition-ledger span { grid-row: 1 / 4; color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.sample-disposition-ledger h3 { max-width: 690px; margin: 0; font-size: clamp(2rem, 3vw, 3.45rem); }
.sample-disposition-ledger p { max-width: 690px; margin: 0; color: var(--muted); }
.sample-disposition-ledger b { align-self: end; color: var(--blue); font-family: var(--mono); font-size: 0.56rem; }

.sample-handover-section { background: var(--ink); color: #fff; }
.sample-handover-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr); align-items: stretch; }
.sample-handover-evidence { min-width: 0; min-height: 680px; margin: 0; overflow: hidden; position: relative; background: #fff; }
.sample-handover-evidence img { width: 100%; height: 100%; padding: 34px; object-fit: contain; transition: transform 520ms var(--ease); }
.sample-handover-evidence:hover img { transform: scale(1.02); }
.sample-handover-evidence figcaption { position: absolute; left: 20px; right: 20px; bottom: 20px; padding: 12px 15px; background: rgba(16, 37, 50,0.94); color: #fff; font-family: var(--mono); font-size: 0.55rem; }
.sample-handover-copy { padding: clamp(42px, 6vw, 82px); border-left: 12px solid #25313b; display: flex; flex-direction: column; justify-content: center; }
.sample-handover-copy .eyebrow { color: var(--amber); }
.sample-handover-copy h2 { margin-bottom: 24px; }
.sample-handover-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.62); }
.sample-handover-copy dl { margin: 30px 0 0; border-top: 1px solid rgba(255,255,255,0.38); }
.sample-handover-copy dl div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.18); display: grid; grid-template-columns: 110px 1fr; gap: 20px; }
.sample-handover-copy dt { color: var(--amber-soft); font-family: var(--mono); font-size: 0.55rem; }
.sample-handover-copy dd { margin: 0; font-weight: 700; }

.sample-request-section { background: var(--blue-deep); color: #fff; }
.sample-request-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.sample-request-copy .eyebrow { color: var(--amber-soft); }
.sample-request-copy h2 { margin-bottom: 26px; }
.sample-request-copy p { color: rgba(255,255,255,0.68); }
.sample-request-copy .button { background: #fff; color: var(--blue-deep); }
.sample-request-example { margin: 0; padding: clamp(42px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.sample-request-example > span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.sample-request-example p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.05vw, 2rem); line-height: 1.45; }
.sample-request-example b { color: var(--blue); }
.sample-request-example footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }

.sample-boundary-section { background: var(--paper); }
.sample-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.sample-boundary-copy { align-self: center; }
.sample-boundary-copy h2 { margin-bottom: 26px; }
.sample-boundary-copy p:last-child { color: var(--muted); }
.sample-boundary-ledger { border-top: 1px solid var(--ink); }
.sample-boundary-ledger div { min-height: 142px; padding: 26px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 28px; }
.sample-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.sample-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.sample-final { padding: 96px 0; background: var(--blue); color: #fff; }
.sample-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.sample-final-grid .eyebrow { color: var(--amber-soft); }
.sample-final-grid h2 { margin: 0; }
.sample-final-grid p { color: rgba(255,255,255,0.72); }
.sample-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .sample-hero-grid, .sample-baseline-grid, .sample-disposition-grid, .sample-handover-grid, .sample-request-grid, .sample-boundary-grid { grid-template-columns: 1fr; }
  .sample-hero-copy { min-height: 640px; padding-right: 0; }
  .sample-hero-visual { min-height: 690px; }
  .sample-bench-open { grid-template-columns: 1fr; }
  .sample-bench-copy { min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .sample-ledger-head { grid-template-columns: 1fr; gap: 14px; }
  .sample-disposition-intro { position: static; }
  .sample-handover-copy { min-height: 560px; border-top: 12px solid #25313b; border-left: 0; }
}

@media (max-width: 760px) {
  .sample-hero { padding: 98px 0 54px; }
  .sample-hero-copy { min-height: 600px; padding: 40px 0 50px; }
  .sample-hero-copy h1 { font-size: clamp(2.5rem, 10.8vw, 3.9rem); }
  .sample-hero-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .sample-hero-visual { min-height: 530px; }
  .sample-hero-visual::before { inset: 16px; }
  .sample-hero-visual::after { top: 16px; bottom: 16px; }
  .sample-hero-visual figcaption { left: 16px; right: 16px; bottom: 16px; align-items: flex-start; flex-direction: column; gap: 4px; }
  .sample-crosshair-a { left: 9%; }
  .sample-crosshair-b { right: 8%; }
  .sample-baseline-ledger li { grid-template-columns: 130px 1fr; }
  .sample-bench { padding: 8px; }
  .sample-bench-tabs { display: flex; overflow-x: auto; }
  .sample-bench-tabs button { min-width: 142px; min-height: 92px; flex: 1 0 142px; }
  .sample-bench-open { margin-top: 8px; }
  .sample-bench-media { min-height: 500px; }
  .sample-bench-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .sample-bench-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .sample-ledger-labels { display: none; }
  .sample-ledger article { min-height: 230px; grid-template-columns: 1fr; align-content: center; gap: 11px; }
  .sample-disposition-ledger article { min-height: 360px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 18px; }
  .sample-disposition-ledger span { grid-row: auto; }
  .sample-handover-evidence { min-height: 500px; }
  .sample-handover-copy { min-height: auto; padding: 48px 24px; }
  .sample-request-example { padding: 42px 24px; }
  .sample-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .sample-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .sample-hero-copy h1 { font-size: 2.15rem; }
  .sample-hero-visual { min-height: 450px; }
  .sample-crosshair { font-size: 0.48rem; }
  .sample-crosshair i { width: 18px; height: 18px; }
  .sample-crosshair i::before { width: 24px; left: -4px; top: 8px; }
  .sample-crosshair i::after { height: 24px; left: 8px; top: -4px; }
  .sample-bench-media { min-height: 410px; }
  .sample-bench-media.is-contain img { padding: 20px 6px; }
  .sample-bench-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .sample-handover-evidence { min-height: 410px; }
  .sample-handover-evidence img { padding: 18px 8px; }
  .sample-handover-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .sample-request-example p { font-size: 1.24rem; }
}

/* Pre-shipment inspection guide / release rail */
.shipment-hero { min-height: 940px; padding-top: 78px; overflow: hidden; position: relative; background: var(--ink); color: #fff; }
.shipment-hero-image { position: absolute; inset: 0 0 0 36%; margin: 0; overflow: hidden; }
.shipment-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.01); animation: shipmentHeroSettle 10s var(--ease) both; }
.shipment-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.98) 34%, rgba(16, 37, 50,0.8) 50%, rgba(16, 37, 50,0.08) 84%); }
.shipment-hero-content { min-height: 730px; padding-top: clamp(78px, 8vw, 120px); padding-bottom: 78px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.shipment-hero-content .eyebrow { color: var(--amber); }
.shipment-hero-content h1 { max-width: 850px; margin-bottom: 30px; font-size: clamp(3.65rem, 5.6vw, 7rem); line-height: 0.89; letter-spacing: -0.054em; }
.shipment-hero-content h1 span { display: block; white-space: nowrap; }
.shipment-hero-content .lede { max-width: 650px; color: rgba(255,255,255,0.74); }
.shipment-hero-content .button { margin-top: 20px; background: #fff; color: var(--ink); }
.shipment-hero-route { min-height: 130px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr) auto) minmax(0, 1fr); align-items: stretch; }
.shipment-hero-route span { min-height: 128px; padding: 20px clamp(10px, 1.6vw, 24px); border-left: 1px solid rgba(255,255,255,0.22); display: flex; flex-direction: column; justify-content: center; gap: 14px; font-family: var(--mono); font-size: 0.6rem; font-weight: 700; }
.shipment-hero-route span:first-child { border-left: 0; padding-left: 0; }
.shipment-hero-route span b { color: var(--amber); font-size: 0.55rem; }
.shipment-hero-route i { padding: 0 6px; color: rgba(255,255,255,0.34); font-style: normal; display: flex; align-items: center; }
@keyframes shipmentHeroSettle { from { transform: scale(1.07); } to { transform: scale(1.01); } }

.shipment-baseline-section { background: var(--paper); }
.shipment-baseline-grid { display: grid; grid-template-columns: minmax(310px, 0.64fr) minmax(0, 1.36fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.shipment-baseline-copy h2 { margin-bottom: 26px; }
.shipment-baseline-copy p:last-child { color: var(--muted); }
.shipment-baseline-ledger { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.shipment-baseline-ledger li { min-height: 94px; padding: 20px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 26px; }
.shipment-baseline-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.shipment-baseline-ledger strong { max-width: 760px; font-family: var(--display); font-size: 1.17rem; line-height: 1.3; }

.shipment-desk-section { background: var(--lab); }
.shipment-desk { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); }
.shipment-progress { min-height: 76px; padding: 18px 22px; background: var(--ink); color: #fff; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px; }
.shipment-progress > div { height: 4px; background: rgba(255,255,255,0.18); overflow: hidden; }
.shipment-progress > div span { width: 20%; height: 100%; background: var(--amber); display: block; transition: width 280ms var(--ease); }
.shipment-progress strong { color: var(--amber-soft); font-family: var(--mono); font-size: 0.57rem; }
.shipment-desk-body { margin-top: 12px; display: grid; grid-template-columns: 180px minmax(0, 1.16fr) minmax(410px, 0.84fr); }
.shipment-desk-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.shipment-desk-tabs button { width: 100%; min-height: 118px; padding: 20px 18px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.shipment-desk-tabs button:last-child { border-bottom: 0; }
.shipment-desk-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.shipment-desk-tabs strong { font-family: var(--display); font-size: 1rem; line-height: 1.15; }
.shipment-desk-tabs button.is-active { background: var(--blue); color: #fff; }
.shipment-desk-tabs button.is-active span { color: var(--amber-soft); }
.shipment-desk-media { min-width: 0; min-height: 590px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.shipment-desk-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.shipment-desk-media.is-contain img { padding: 32px; object-fit: contain; }
.shipment-desk-media:hover img { transform: scale(1.02); }
.shipment-desk-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.55rem; }
.shipment-desk-media figcaption span { color: var(--amber-soft); }
.shipment-desk-copy { min-width: 0; padding: clamp(36px, 4.5vw, 64px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.shipment-desk-copy h3 { margin-bottom: 22px; font-size: clamp(2.1rem, 3vw, 3.65rem); line-height: 0.96; }
.shipment-desk-copy > p:not(.eyebrow) { color: var(--muted); }
.shipment-desk-copy dl { margin: 26px 0 0; border-top: 1px solid var(--ink); }
.shipment-desk-copy dl div { min-height: 76px; padding: 15px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 18px; }
.shipment-desk-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.shipment-desk-copy dd { margin: 0; font-size: 0.87rem; font-weight: 800; line-height: 1.35; }
.shipment-desk-copy .text-action { align-self: flex-start; margin-top: 25px; }

.shipment-evidence-section { background: #dfe8e3; }
.shipment-evidence-head { margin-bottom: 52px; display: grid; grid-template-columns: 0.32fr 1.05fr 0.73fr; align-items: end; gap: 36px; }
.shipment-evidence-head h2, .shipment-evidence-head p { margin-bottom: 0; }
.shipment-evidence-head p:last-child { color: var(--muted); }
.shipment-evidence-ledger { border-top: 1px solid var(--ink); background: var(--paper); }
.shipment-evidence-labels, .shipment-evidence-ledger article { display: grid; grid-template-columns: 0.72fr 1fr 1fr; gap: 38px; }
.shipment-evidence-labels { padding: 15px 24px; background: var(--ink); color: rgba(255,255,255,0.55); font-family: var(--mono); font-size: 0.54rem; }
.shipment-evidence-ledger article { min-height: 136px; padding: 28px 24px; border-bottom: 1px solid var(--ink); align-items: center; }
.shipment-evidence-ledger article b { font-family: var(--display); font-size: 1.14rem; }
.shipment-evidence-ledger article p { margin: 0; font-size: 0.92rem; }
.shipment-evidence-ledger article p:last-child { color: var(--muted); }

.shipment-decision-section { background: var(--ink); color: #fff; }
.shipment-decision-grid { display: grid; grid-template-columns: minmax(310px, 0.58fr) minmax(0, 1.42fr); gap: clamp(60px, 8vw, 120px); }
.shipment-decision-intro { align-self: start; position: sticky; top: 110px; }
.shipment-decision-intro .eyebrow { color: var(--amber); }
.shipment-decision-intro h2 { margin-bottom: 26px; }
.shipment-decision-intro p:last-child { color: rgba(255,255,255,0.62); }
.shipment-decision-rail { border-top: 1px solid rgba(255,255,255,0.46); }
.shipment-decision-rail article { min-height: 320px; padding: clamp(38px, 4.8vw, 66px) 0; border-bottom: 1px solid rgba(255,255,255,0.22); display: grid; grid-template-columns: 150px 1fr; grid-template-rows: auto auto 1fr; gap: 16px 34px; }
.shipment-decision-rail span { grid-row: 1 / 4; color: var(--amber); font-family: var(--mono); font-size: 0.6rem; }
.shipment-decision-rail h3 { max-width: 700px; margin: 0; font-size: clamp(2.05rem, 3vw, 3.5rem); }
.shipment-decision-rail p { max-width: 700px; margin: 0; color: rgba(255,255,255,0.62); }
.shipment-decision-rail b { align-self: end; color: var(--amber-soft); font-family: var(--mono); font-size: 0.56rem; }

.shipment-records-section { background: var(--paper); }
.shipment-records-grid { display: grid; grid-template-columns: minmax(340px, 0.66fr) minmax(0, 1.34fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.shipment-records-copy h2 { margin-bottom: 26px; }
.shipment-records-copy > p:not(.eyebrow) { color: var(--muted); }
.shipment-records-copy dl { margin: 34px 0 0; border-top: 1px solid var(--ink); }
.shipment-records-copy dl div { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 18px; }
.shipment-records-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.55rem; }
.shipment-records-copy dd { margin: 0; font-weight: 700; }
.shipment-records-visual { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 0.85fr 1.15fr; grid-template-rows: minmax(480px, 1fr) auto; gap: 12px; }
.shipment-records-visual figure { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #fff; }
.shipment-records-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.shipment-records-visual figure:first-child img { padding: 18px; object-fit: contain; }
.shipment-records-visual figure:hover img { transform: scale(1.02); }
.shipment-records-visual figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 12px; background: rgba(16, 37, 50,0.92); color: #fff; font-family: var(--mono); font-size: 0.53rem; }
.shipment-records-visual > div { grid-column: 1 / -1; min-height: 92px; padding: 18px 22px; background: var(--ink); color: #fff; display: grid; grid-template-columns: auto 1fr auto 1fr; align-items: center; gap: 20px; }
.shipment-records-visual > div span { color: var(--amber); font-family: var(--mono); font-size: 0.55rem; }
.shipment-records-visual > div strong { font-family: var(--display); font-size: 1rem; }
.shipment-records-visual > div i { color: var(--amber); font-family: var(--display); font-size: 1.6rem; font-style: normal; }

.shipment-request-section { background: var(--blue-deep); color: #fff; }
.shipment-request-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.shipment-request-copy .eyebrow { color: var(--amber-soft); }
.shipment-request-copy h2 { margin-bottom: 26px; }
.shipment-request-copy p { color: rgba(255,255,255,0.68); }
.shipment-request-copy .button { background: #fff; color: var(--blue-deep); }
.shipment-request-example { margin: 0; padding: clamp(42px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.shipment-request-example > span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.shipment-request-example p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.05vw, 2rem); line-height: 1.45; }
.shipment-request-example b { color: var(--blue); }
.shipment-request-example footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }

.shipment-boundary-section { background: var(--paper); }
.shipment-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.shipment-boundary-copy { align-self: center; }
.shipment-boundary-copy h2 { margin-bottom: 26px; }
.shipment-boundary-copy p:last-child { color: var(--muted); }
.shipment-boundary-ledger { border-top: 1px solid var(--ink); }
.shipment-boundary-ledger div { min-height: 142px; padding: 26px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 28px; }
.shipment-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.shipment-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.shipment-final { padding: 96px 0; background: var(--blue); color: #fff; }
.shipment-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.shipment-final-grid .eyebrow { color: var(--amber-soft); }
.shipment-final-grid h2 { margin: 0; }
.shipment-final-grid p { color: rgba(255,255,255,0.72); }
.shipment-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .shipment-hero-image { left: 28%; }
  .shipment-baseline-grid, .shipment-decision-grid, .shipment-records-grid, .shipment-request-grid, .shipment-boundary-grid { grid-template-columns: 1fr; }
  .shipment-desk-body { grid-template-columns: 170px minmax(0, 1fr); }
  .shipment-desk-copy { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .shipment-evidence-head { grid-template-columns: 1fr; gap: 14px; }
  .shipment-decision-intro { position: static; }
}

@media (max-width: 760px) {
  .shipment-hero { min-height: 970px; padding-top: 66px; }
  .shipment-hero-image { inset: 43% 0 0; }
  .shipment-hero-image img { object-position: 58% center; }
  .shipment-hero-overlay { background: linear-gradient(180deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.99) 42%, rgba(16, 37, 50,0.58) 64%, rgba(16, 37, 50,0.08) 100%); }
  .shipment-hero-content { min-height: 730px; padding-top: 54px; padding-bottom: 260px; justify-content: flex-start; }
  .shipment-hero-content h1 { font-size: clamp(2.6rem, 11.2vw, 4rem); line-height: 0.94; }
  .shipment-hero-content h1 span { white-space: normal; }
  .shipment-hero-route { min-height: 112px; grid-template-columns: repeat(5, minmax(128px, 1fr)); overflow-x: auto; }
  .shipment-hero-route span, .shipment-hero-route span:first-child { min-width: 128px; min-height: 110px; padding: 18px 16px; border-left: 1px solid rgba(255,255,255,0.22); }
  .shipment-hero-route i { display: none; }
  .shipment-baseline-ledger li { grid-template-columns: 90px 1fr; }
  .shipment-desk { padding: 8px; }
  .shipment-progress { padding: 16px; grid-template-columns: 1fr; gap: 10px; }
  .shipment-desk-body { margin-top: 8px; grid-template-columns: 1fr; }
  .shipment-desk-tabs { display: grid; grid-template-columns: repeat(5, minmax(142px, 1fr)); overflow-x: auto; }
  .shipment-desk-tabs button { min-width: 142px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .shipment-desk-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .shipment-desk-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .shipment-desk-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .shipment-evidence-labels { display: none; }
  .shipment-evidence-ledger article { min-height: 250px; grid-template-columns: 1fr; align-content: center; gap: 11px; }
  .shipment-decision-rail article { min-height: 370px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 18px; }
  .shipment-decision-rail span { grid-row: auto; }
  .shipment-records-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .shipment-records-visual { padding: 8px; grid-template-columns: 1fr; grid-template-rows: 430px 430px auto; gap: 8px; }
  .shipment-records-visual > div { grid-column: auto; grid-template-columns: 1fr; gap: 10px; }
  .shipment-request-example { padding: 42px 24px; }
  .shipment-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .shipment-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .shipment-hero { min-height: 940px; }
  .shipment-hero-content h1 { font-size: 2.15rem; }
  .shipment-hero-content .lede { font-size: 1rem; }
  .shipment-desk-media { min-height: 410px; }
  .shipment-desk-media.is-contain img { padding: 20px 6px; }
  .shipment-desk-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .shipment-records-visual { grid-template-rows: 380px 330px auto; }
  .shipment-records-visual figure:first-child img { padding: 10px; }
  .shipment-request-example p { font-size: 1.24rem; }
}

@media (prefers-reduced-motion: reduce) {
  .shipment-hero-image img { animation: none; }
}

/* Solar vs AC guide / dual-bus specification route */
.power-hero { min-height: 940px; padding-top: 78px; overflow: hidden; position: relative; background: var(--ink); color: #fff; }
.power-hero-scene { position: absolute; inset: 0 0 0 40%; margin: 0; overflow: hidden; }
.power-hero-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transform: scale(1.01); animation: powerHeroSettle 10s var(--ease) both; }
.power-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.98) 37%, rgba(16, 37, 50,0.73) 58%, rgba(16, 37, 50,0.06) 88%); }
.power-hero-content { min-height: 730px; padding-top: clamp(78px, 8vw, 118px); padding-bottom: 80px; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.power-hero-content .eyebrow { color: var(--amber); }
.power-hero-content h1 { max-width: 980px; margin-bottom: 30px; font-size: clamp(3.6rem, 5.4vw, 6.8rem); line-height: 0.9; letter-spacing: -0.052em; }
.power-hero-content h1 span { display: block; white-space: nowrap; }
.power-hero-content .lede { max-width: 680px; color: rgba(255,255,255,0.74); }
.power-hero-content .button { margin-top: 20px; background: #fff; color: var(--ink); }
.power-hero-bus { min-height: 130px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr) auto) minmax(0, 1fr); align-items: stretch; }
.power-hero-bus span { min-height: 128px; padding: 20px clamp(10px, 1.6vw, 24px); border-left: 1px solid rgba(255,255,255,0.22); display: flex; flex-direction: column; justify-content: center; gap: 14px; font-family: var(--mono); font-size: 0.6rem; font-weight: 700; }
.power-hero-bus span:first-child { border-left: 0; padding-left: 0; }
.power-hero-bus span b { color: var(--amber); font-size: 0.55rem; }
.power-hero-bus i { padding: 0 6px; color: rgba(255,255,255,0.34); font-style: normal; display: flex; align-items: center; }
@keyframes powerHeroSettle { from { transform: scale(1.07); } to { transform: scale(1.01); } }

.power-start-section { background: var(--paper); }
.power-start-grid { display: grid; grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.power-start-copy h2 { margin-bottom: 26px; }
.power-start-copy p:last-child { color: var(--muted); }
.power-start-ledger { border-top: 1px solid var(--ink); }
.power-start-ledger > div { min-height: 112px; padding: 24px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 28px; }
.power-start-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.power-start-ledger strong { max-width: 760px; font-family: var(--display); font-size: clamp(1.05rem, 1.65vw, 1.45rem); line-height: 1.3; }

.power-bus-section { background: #dfe8e3; }
.power-dual-bus { min-height: 520px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 190px 110px minmax(0, 1fr) 250px; grid-template-rows: 1fr 1fr; gap: 12px 0; }
.power-bus-label { grid-row: 1 / 3; padding: 28px 22px; background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.power-bus-label span, .power-bus-route span, .power-bus-merge span { font-family: var(--mono); font-size: 0.57rem; }
.power-bus-label span { color: var(--amber); }
.power-bus-label strong { margin-top: 26px; font-family: var(--display); font-size: 1.55rem; }
.power-bus-lines { grid-row: 1 / 3; position: relative; background: var(--recess-floor); }
.power-bus-lines::before { width: 1px; position: absolute; inset: 50% auto 50% 0; background: var(--ink); content: ""; }
.power-bus-lines i { height: 2px; position: absolute; left: 0; right: 0; }
.power-bus-lines i:first-child { top: 25%; background: var(--amber); }
.power-bus-lines i:last-child { bottom: 25%; background: var(--blue); }
.power-bus-lines i::after { width: 9px; height: 9px; position: absolute; top: -3px; right: 0; background: currentColor; border-radius: 50%; content: ""; }
.power-bus-lines i:first-child { color: var(--amber); }
.power-bus-lines i:last-child { color: var(--blue); }
.power-bus-route { padding: clamp(34px, 4vw, 58px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.power-bus-route span { margin-bottom: 26px; }
.power-bus-route strong { max-width: 700px; font-family: var(--display); font-size: clamp(1.3rem, 2.15vw, 2.15rem); line-height: 1.18; }
.power-bus-solar { border-bottom: 6px solid var(--amber); }
.power-bus-solar span { color: #62823f; }
.power-bus-ac { border-top: 6px solid var(--blue); }
.power-bus-ac span { color: var(--blue); }
.power-bus-merge { grid-column: 4; grid-row: 1 / 3; padding: 32px 26px; background: var(--blue-deep); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.power-bus-merge span { color: var(--amber-soft); }
.power-bus-merge strong { margin-top: 28px; font-family: var(--display); font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.18; }

.power-desk-section { background: var(--lab); }
.power-desk { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 180px minmax(0, 1.14fr) minmax(410px, 0.86fr); }
.power-desk-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.power-desk-tabs button { width: 100%; min-height: 118px; padding: 20px 18px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.power-desk-tabs button:last-child { border-bottom: 0; }
.power-desk-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.power-desk-tabs strong { font-family: var(--display); font-size: 1rem; }
.power-desk-tabs button.is-active { background: var(--ink); color: #fff; }
.power-desk-tabs button.is-active span { color: var(--amber); }
.power-desk-media { min-width: 0; min-height: 590px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.power-desk-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.power-desk-media.is-contain img { padding: 28px; object-fit: contain; }
.power-desk-media:hover img { transform: scale(1.02); }
.power-desk-media figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.55rem; }
.power-desk-media figcaption span { color: var(--amber-soft); }
.power-desk-copy { min-width: 0; padding: clamp(36px, 4.5vw, 64px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.power-desk-copy h3 { margin-bottom: 22px; font-size: clamp(2.1rem, 3vw, 3.65rem); line-height: 0.96; }
.power-desk-copy > p:not(.eyebrow) { color: var(--muted); }
.power-desk-copy dl { margin: 28px 0 0; border-top: 1px solid var(--ink); }
.power-desk-copy dl div { min-height: 78px; padding: 15px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 18px; }
.power-desk-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.power-desk-copy dd { margin: 0; font-size: 0.87rem; font-weight: 800; line-height: 1.35; }
.power-desk-copy .text-action { align-self: flex-start; margin-top: 25px; }

.power-models-section { background: var(--paper); }
.power-models-head { margin-bottom: 56px; display: grid; grid-template-columns: 0.3fr 1.05fr 0.72fr; align-items: end; gap: 36px; }
.power-models-head h2, .power-models-head p { margin-bottom: 0; }
.power-models-head p:last-child { color: var(--muted); }
.power-model-ledger { border-top: 1px solid var(--ink); }
.power-model-ledger article { min-height: 530px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr); }
.power-model-ledger figure { min-width: 0; margin: 0; border-right: 1px solid var(--ink); background: #fff; overflow: hidden; }
.power-model-ledger img { width: 100%; height: 100%; padding: 26px; object-fit: contain; transition: transform 520ms var(--ease); }
.power-model-ledger article:hover img { transform: scale(1.025); }
.power-model-ledger article > div { padding: clamp(38px, 6vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.power-model-ledger article > div > span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.power-model-ledger h3 { margin: 30px 0; font-size: clamp(2.2rem, 3.8vw, 4.4rem); }
.power-model-ledger dl { margin: 0; border-top: 1px solid var(--ink); }
.power-model-ledger dl div { min-height: 64px; padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 18px; }
.power-model-ledger dt { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.power-model-ledger dd { margin: 0; font-weight: 800; }
.power-model-ledger .text-action { align-self: flex-start; margin-top: 26px; }

.power-evidence-section { background: #dfe8e3; }
.power-evidence-grid { display: grid; grid-template-columns: minmax(330px, 0.66fr) minmax(0, 1.34fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.power-evidence-copy h2 { margin-bottom: 26px; }
.power-evidence-copy > p:not(.eyebrow) { color: var(--muted); }
.power-evidence-copy dl { margin: 34px 0 0; border-top: 1px solid var(--ink); }
.power-evidence-copy dl div { padding: 18px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 110px 1fr; gap: 18px; }
.power-evidence-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.55rem; }
.power-evidence-copy dd { margin: 0; font-weight: 700; }
.power-evidence-visual { min-width: 0; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: minmax(470px, 1fr) auto; gap: 12px; }
.power-evidence-visual figure { min-width: 0; margin: 0; overflow: hidden; position: relative; background: #fff; }
.power-evidence-visual img { width: 100%; height: 100%; padding: 18px; object-fit: contain; transition: transform 520ms var(--ease); }
.power-evidence-visual figure:hover img { transform: scale(1.02); }
.power-evidence-visual figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 10px 12px; background: rgba(16, 37, 50,0.92); color: #fff; font-family: var(--mono); font-size: 0.53rem; }
.power-evidence-visual > div { grid-column: 1 / -1; min-height: 92px; padding: 18px 22px; background: var(--ink); color: #fff; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 20px; }
.power-evidence-visual > div span { color: var(--amber); font-family: var(--mono); font-size: 0.55rem; }
.power-evidence-visual > div strong { font-family: var(--display); font-size: 1rem; }
.power-evidence-visual > div i { color: var(--amber); font-family: var(--display); font-size: 1.6rem; font-style: normal; }

.power-brief-section { background: var(--blue-deep); color: #fff; }
.power-brief-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.power-brief-copy .eyebrow { color: var(--amber-soft); }
.power-brief-copy h2 { margin-bottom: 26px; }
.power-brief-copy p { color: rgba(255,255,255,0.68); }
.power-brief-copy .button { background: #fff; color: var(--blue-deep); }
.power-brief-example { margin: 0; padding: clamp(42px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.power-brief-example > span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.power-brief-example p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.05vw, 2rem); line-height: 1.45; }
.power-brief-example b { color: var(--blue); }
.power-brief-example footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }

.power-boundary-section { background: var(--paper); }
.power-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.power-boundary-copy { align-self: center; }
.power-boundary-copy h2 { margin-bottom: 26px; }
.power-boundary-copy p:last-child { color: var(--muted); }
.power-boundary-ledger { border-top: 1px solid var(--ink); }
.power-boundary-ledger div { min-height: 142px; padding: 26px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 28px; }
.power-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.power-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.power-final { padding: 96px 0; background: var(--blue); color: #fff; }
.power-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.power-final-grid .eyebrow { color: var(--amber-soft); }
.power-final-grid h2 { margin: 0; }
.power-final-grid p { color: rgba(255,255,255,0.72); }
.power-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .power-hero-scene { left: 30%; }
  .power-start-grid, .power-evidence-grid, .power-brief-grid, .power-boundary-grid { grid-template-columns: 1fr; }
  .power-dual-bus { grid-template-columns: 160px 90px minmax(0, 1fr); }
  .power-bus-merge { grid-column: 1 / -1; grid-row: auto; min-height: 180px; }
  .power-desk { grid-template-columns: 170px minmax(0, 1fr); }
  .power-desk-copy { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .power-models-head { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 760px) {
  .power-hero { min-height: 980px; padding-top: 66px; }
  .power-hero-scene { inset: 44% 0 0; }
  .power-hero-shade { background: linear-gradient(180deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.99) 43%, rgba(16, 37, 50,0.56) 67%, rgba(16, 37, 50,0.06) 100%); }
  .power-hero-content { min-height: 740px; padding-top: 54px; padding-bottom: 270px; justify-content: flex-start; }
  .power-hero-content h1 { font-size: clamp(2.6rem, 11.2vw, 4rem); line-height: 0.94; }
  .power-hero-content h1 span { white-space: normal; }
  .power-hero-bus { min-height: 112px; grid-template-columns: repeat(5, minmax(128px, 1fr)); overflow-x: auto; }
  .power-hero-bus span, .power-hero-bus span:first-child { min-width: 128px; min-height: 110px; padding: 18px 16px; border-left: 1px solid rgba(255,255,255,0.22); }
  .power-hero-bus i { display: none; }
  .power-start-ledger > div { grid-template-columns: 1fr; gap: 10px; }
  .power-dual-bus { padding: 8px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; }
  .power-bus-label, .power-bus-lines, .power-bus-route, .power-bus-merge { grid-column: auto; grid-row: auto; }
  .power-bus-label { min-height: 150px; }
  .power-bus-lines { min-height: 56px; }
  .power-bus-lines i:first-child { top: 35%; }
  .power-bus-lines i:last-child { bottom: 35%; }
  .power-bus-route { min-height: 240px; padding: 36px 24px; }
  .power-bus-merge { min-height: 180px; }
  .power-desk { padding: 8px; grid-template-columns: 1fr; }
  .power-desk-tabs { display: grid; grid-template-columns: repeat(5, minmax(142px, 1fr)); overflow-x: auto; }
  .power-desk-tabs button { min-width: 142px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .power-desk-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .power-desk-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .power-desk-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .power-model-ledger article { grid-template-columns: 1fr; }
  .power-model-ledger figure { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .power-model-ledger article > div { padding: 44px 24px; }
  .power-model-ledger dl div { grid-template-columns: 1fr; gap: 8px; }
  .power-evidence-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .power-evidence-visual { padding: 8px; grid-template-columns: 1fr; grid-template-rows: 420px 420px auto; gap: 8px; }
  .power-evidence-visual > div { grid-column: auto; grid-template-columns: 1fr; gap: 10px; }
  .power-brief-example { padding: 42px 24px; }
  .power-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .power-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .power-hero { min-height: 950px; }
  .power-hero-content h1 { font-size: 2.15rem; }
  .power-hero-content .lede { font-size: 1rem; }
  .power-desk-media { min-height: 410px; }
  .power-desk-media.is-contain img { padding: 18px 4px; }
  .power-desk-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .power-model-ledger figure { min-height: 360px; }
  .power-evidence-visual { grid-template-rows: 360px 360px auto; }
  .power-brief-example p { font-size: 1.24rem; }
}

@media (prefers-reduced-motion: reduce) {
  .power-hero-scene img { animation: none; }
}

/* Outdoor lighting IP guide / protection boundary scanner */
.protection-hero { min-height: 940px; padding-top: 78px; overflow: hidden; position: relative; background: var(--ink); color: #fff; }
.protection-hero-scene { position: absolute; inset: 0 0 0 38%; margin: 0; overflow: hidden; }
.protection-hero-scene img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; transform: scale(1.01); animation: protectionHeroSettle 10s var(--ease) both; }
.protection-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.98) 36%, rgba(16, 37, 50,0.66) 58%, rgba(16, 37, 50,0.08) 88%); }
.protection-scan-frame { width: min(31vw, 460px); height: min(31vw, 460px); position: absolute; z-index: 1; top: 19%; right: 8%; border: 1px solid rgba(255,255,255,0.62); box-shadow: inset 0 0 0 12px rgba(16, 37, 50,0.22); pointer-events: none; }
.protection-scan-frame::before, .protection-scan-frame::after { position: absolute; background: var(--amber); content: ""; }
.protection-scan-frame::before { width: 32px; height: 2px; left: calc(50% - 16px); top: 50%; }
.protection-scan-frame::after { width: 2px; height: 32px; left: 50%; top: calc(50% - 16px); }
.protection-scan-frame i { height: 2px; position: absolute; left: 0; right: 0; top: 12%; background: var(--blue); box-shadow: 0 0 18px rgba(45, 107, 94,0.45); animation: protectionScan 4.8s var(--ease) infinite alternate; }
.protection-scan-frame span { position: absolute; right: 12px; bottom: 10px; color: rgba(255,255,255,0.72); font-family: var(--mono); font-size: 0.5rem; }
.protection-hero-content { min-height: 730px; padding-top: clamp(78px, 8vw, 118px); padding-bottom: 80px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.protection-hero-content .eyebrow { color: var(--amber); }
.protection-hero-content h1 { max-width: 980px; margin-bottom: 30px; font-size: clamp(3.6rem, 5.35vw, 6.7rem); line-height: 0.9; letter-spacing: -0.052em; }
.protection-hero-content h1 span { display: block; white-space: nowrap; }
.protection-hero-content .lede { max-width: 700px; color: rgba(255,255,255,0.76); }
.protection-hero-content .button { margin-top: 20px; background: #fff; color: var(--ink); }
.protection-hero-rail { min-height: 130px; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr) auto) minmax(0, 1fr); align-items: stretch; }
.protection-hero-rail span { min-height: 128px; padding: 20px clamp(10px, 1.6vw, 24px); border-left: 1px solid rgba(255,255,255,0.22); display: flex; flex-direction: column; justify-content: center; gap: 14px; font-family: var(--mono); font-size: 0.6rem; font-weight: 700; }
.protection-hero-rail span:first-child { border-left: 0; padding-left: 0; }
.protection-hero-rail span b { color: var(--amber); font-size: 0.55rem; }
.protection-hero-rail i { padding: 0 6px; color: rgba(255,255,255,0.34); font-style: normal; display: flex; align-items: center; }
@keyframes protectionHeroSettle { from { transform: scale(1.08); } to { transform: scale(1.01); } }
@keyframes protectionScan { from { top: 12%; } to { top: 88%; } }

.protection-start-section { background: var(--paper); }
.protection-start-grid { display: grid; grid-template-columns: minmax(310px, 0.65fr) minmax(0, 1.35fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.protection-start-copy h2 { margin-bottom: 26px; }
.protection-start-copy p:last-child { color: var(--muted); }
.protection-start-ledger { border-top: 1px solid var(--ink); }
.protection-start-ledger > div { min-height: 112px; padding: 24px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 28px; }
.protection-start-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.protection-start-ledger strong { max-width: 760px; font-family: var(--display); font-size: clamp(1.05rem, 1.65vw, 1.45rem); line-height: 1.3; }

.protection-map-section { background: #dfe8e3; }
.protection-map { min-height: 360px; padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr) 60px) minmax(0, 1fr); align-items: stretch; }
.protection-map div { padding: 30px 22px; background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.protection-map div:nth-of-type(3) { background: var(--ink); color: #fff; }
.protection-map div:nth-of-type(5) { background: var(--blue); color: #fff; }
.protection-map span { margin-bottom: 34px; color: var(--blue); font-family: var(--mono); font-size: 0.55rem; }
.protection-map div:nth-of-type(3) span, .protection-map div:nth-of-type(5) span { color: var(--amber); }
.protection-map strong { font-family: var(--display); font-size: clamp(1.1rem, 1.75vw, 1.6rem); line-height: 1.1; }
.protection-map small { margin-top: 16px; color: var(--muted); font-size: 0.76rem; }
.protection-map div:nth-of-type(3) small, .protection-map div:nth-of-type(5) small { color: rgba(255,255,255,0.62); }
.protection-map i { position: relative; background: var(--recess-floor); }
.protection-map i::before { height: 2px; position: absolute; left: 0; right: 0; top: 50%; background: var(--blue); content: ""; }
.protection-map i::after { width: 8px; height: 8px; position: absolute; right: 0; top: calc(50% - 3px); background: var(--blue); content: ""; }

.protection-desk-section { background: var(--lab); }
.protection-desk { padding: 12px; background: var(--recess-shell); box-shadow: var(--recess-depth); display: grid; grid-template-columns: 180px minmax(0, 1.14fr) minmax(410px, 0.86fr); }
.protection-desk-tabs { background: var(--recess-floor); box-shadow: var(--recess-control); }
.protection-desk-tabs button { width: 100%; min-height: 118px; padding: 20px 18px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between; }
.protection-desk-tabs button:last-child { border-bottom: 0; }
.protection-desk-tabs span { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }
.protection-desk-tabs strong { font-family: var(--display); font-size: 1rem; }
.protection-desk-tabs button.is-active { background: var(--ink); color: #fff; }
.protection-desk-tabs button.is-active span { color: var(--amber); }
.protection-desk-media { min-width: 0; min-height: 590px; margin: 0; border-left: 12px solid var(--recess-shell); overflow: hidden; position: relative; background: #fff; }
.protection-desk-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms var(--ease); }
.protection-desk-media.is-contain img { padding: 28px; object-fit: contain; }
.protection-desk-media:hover img { transform: scale(1.02); }
.protection-media-scan { z-index: 2; height: 2px; position: absolute; left: 0; right: 0; top: 15%; background: var(--blue); box-shadow: 0 0 18px rgba(45, 107, 94,0.42); animation: protectionDeskScan 5s var(--ease) infinite alternate; pointer-events: none; }
.protection-media-scan::after { width: 8px; height: 8px; position: absolute; right: 18px; top: -3px; background: var(--amber); content: ""; }
.protection-desk-media figcaption { z-index: 3; position: absolute; left: 18px; right: 18px; bottom: 18px; min-height: 56px; padding: 12px 15px; background: rgba(16, 37, 50,0.92); color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--mono); font-size: 0.55rem; }
.protection-desk-media figcaption span { color: var(--amber-soft); }
.protection-desk-copy { min-width: 0; padding: clamp(36px, 4.5vw, 64px); border-left: 12px solid var(--recess-shell); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.protection-desk-copy h3 { margin-bottom: 22px; font-size: clamp(2.1rem, 3vw, 3.65rem); line-height: 0.96; }
.protection-desk-copy > p:not(.eyebrow) { color: var(--muted); }
.protection-desk-copy dl { margin: 28px 0 0; border-top: 1px solid var(--ink); }
.protection-desk-copy dl div { min-height: 78px; padding: 15px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 18px; }
.protection-desk-copy dt { color: var(--blue); font-family: var(--mono); font-size: 0.54rem; }
.protection-desk-copy dd { margin: 0; font-size: 0.87rem; font-weight: 800; line-height: 1.35; }
.protection-desk-copy .text-action { align-self: flex-start; margin-top: 25px; }
@keyframes protectionDeskScan { from { top: 15%; } to { top: 80%; } }

.protection-register-section { background: var(--paper); }
.protection-register-head { margin-bottom: 56px; display: grid; grid-template-columns: 0.3fr 1.05fr 0.72fr; align-items: end; gap: 36px; }
.protection-register-head h2, .protection-register-head p { margin-bottom: 0; }
.protection-register-head p:last-child { color: var(--muted); }
.protection-register { border-top: 1px solid var(--ink); }
.protection-register-row { min-height: 126px; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 1.05fr 0.45fr 1fr 0.7fr; align-items: stretch; }
.protection-register-row > * { margin: 0; padding: 26px 24px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.protection-register-row > *:first-child { border-left: 0; padding-left: 0; }
.protection-register-row b { font-family: var(--display); font-size: 1.55rem; }
.protection-register-row small { margin-top: 5px; color: var(--muted); }
.protection-register-row > strong { color: var(--blue); font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.4rem); }
.protection-register-row > a { color: var(--blue); font-family: var(--mono); font-size: 0.62rem; font-weight: 700; }
.protection-register-labels { min-height: 58px; color: var(--muted); font-family: var(--mono); font-size: 0.54rem; }
.protection-register-labels > * { padding-top: 16px; padding-bottom: 16px; }
.protection-register-note { max-width: 920px; margin: 30px 0 0 auto; padding-left: 20px; border-left: 3px solid var(--amber); color: var(--muted); }
.protection-register-note b { color: var(--ink); }

.protection-evidence-section { background: #dfe8e3; }
.protection-evidence-grid { display: grid; grid-template-columns: minmax(310px, 0.5fr) minmax(0, 1.5fr); align-items: start; gap: clamp(60px, 8vw, 120px); }
.protection-evidence-copy { position: sticky; top: 110px; }
.protection-evidence-copy h2 { margin-bottom: 26px; }
.protection-evidence-copy p:last-child { color: var(--muted); }
.protection-evidence-track { border-top: 1px solid var(--ink); }
.protection-evidence-track figure { min-height: 410px; margin: 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr); }
.protection-evidence-track img { width: 100%; height: 100%; min-height: 410px; padding: 22px; border-right: 1px solid var(--ink); background: #fff; object-fit: contain; }
.protection-evidence-track figure:last-child img { padding: 0; object-fit: cover; }
.protection-evidence-track figcaption { padding: clamp(32px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.protection-evidence-track span { color: var(--blue); font-family: var(--mono); font-size: 0.56rem; }
.protection-evidence-track strong { margin: 28px 0 20px; font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.6rem); line-height: 1.08; }
.protection-evidence-track p { margin: 0; color: var(--muted); }

.protection-brief-section { background: var(--blue-deep); color: #fff; }
.protection-brief-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.protection-brief-copy .eyebrow { color: var(--amber-soft); }
.protection-brief-copy h2 { margin-bottom: 26px; }
.protection-brief-copy p { color: rgba(255,255,255,0.68); }
.protection-brief-copy .button { background: #fff; color: var(--blue-deep); }
.protection-brief-example { margin: 0; padding: clamp(42px, 6vw, 80px); background: var(--paper); color: var(--ink); box-shadow: var(--recess-depth); }
.protection-brief-example > span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.protection-brief-example p { margin: 34px 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.05vw, 2rem); line-height: 1.45; }
.protection-brief-example b { color: var(--blue); }
.protection-brief-example footer { margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); color: var(--muted); font-family: var(--mono); font-size: 0.55rem; }

.protection-boundary-section { background: var(--paper); }
.protection-boundary-grid { display: grid; grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr); gap: clamp(60px, 9vw, 140px); }
.protection-boundary-copy { align-self: center; }
.protection-boundary-copy h2 { margin-bottom: 26px; }
.protection-boundary-copy p:last-child { color: var(--muted); }
.protection-boundary-ledger { border-top: 1px solid var(--ink); }
.protection-boundary-ledger div { min-height: 142px; padding: 26px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 28px; }
.protection-boundary-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.57rem; }
.protection-boundary-ledger strong { font-family: var(--display); font-size: clamp(1.08rem, 1.7vw, 1.5rem); }
.protection-final { padding: 96px 0; background: var(--blue); color: #fff; }
.protection-final-grid { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.5); display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: clamp(60px, 9vw, 140px); }
.protection-final-grid .eyebrow { color: var(--amber-soft); }
.protection-final-grid h2 { margin: 0; }
.protection-final-grid p { color: rgba(255,255,255,0.72); }
.protection-final-grid .button { background: #fff; color: var(--blue); }

@media (max-width: 1100px) {
  .protection-hero-scene { left: 30%; }
  .protection-scan-frame { right: 4%; }
  .protection-start-grid, .protection-evidence-grid, .protection-brief-grid, .protection-boundary-grid { grid-template-columns: 1fr; }
  .protection-map { grid-template-columns: repeat(4, minmax(0, 1fr) 28px) minmax(0, 1fr); }
  .protection-desk { grid-template-columns: 170px minmax(0, 1fr); }
  .protection-desk-copy { grid-column: 1 / -1; min-height: 500px; border-top: 12px solid var(--recess-shell); border-left: 0; }
  .protection-register-head { grid-template-columns: 1fr; gap: 14px; }
  .protection-evidence-copy { position: static; }
}

@media (max-width: 760px) {
  .protection-hero { min-height: 980px; padding-top: 66px; }
  .protection-hero-scene { inset: 44% 0 0; }
  .protection-hero-shade { background: linear-gradient(180deg, rgba(16, 37, 50,1) 0%, rgba(16, 37, 50,0.99) 43%, rgba(16, 37, 50,0.54) 68%, rgba(16, 37, 50,0.08) 100%); }
  .protection-scan-frame { width: 210px; height: 210px; top: auto; right: 7%; bottom: 126px; }
  .protection-hero-content { min-height: 740px; padding-top: 54px; padding-bottom: 270px; justify-content: flex-start; }
  .protection-hero-content h1 { font-size: clamp(2.6rem, 11.2vw, 4rem); line-height: 0.94; }
  .protection-hero-content h1 span { white-space: normal; }
  .protection-hero-rail { min-height: 112px; grid-template-columns: repeat(5, minmax(128px, 1fr)); overflow-x: auto; }
  .protection-hero-rail span, .protection-hero-rail span:first-child { min-width: 128px; min-height: 110px; padding: 18px 16px; border-left: 1px solid rgba(255,255,255,0.22); }
  .protection-hero-rail i { display: none; }
  .protection-start-ledger > div { grid-template-columns: 1fr; gap: 10px; }
  .protection-map { padding: 8px; grid-template-columns: 1fr; gap: 8px; }
  .protection-map div { min-height: 180px; }
  .protection-map i { min-height: 46px; }
  .protection-map i::before { width: 2px; height: auto; inset: 0 auto 0 50%; }
  .protection-map i::after { right: auto; left: calc(50% - 3px); top: auto; bottom: 0; }
  .protection-desk { padding: 8px; grid-template-columns: 1fr; }
  .protection-desk-tabs { display: grid; grid-template-columns: repeat(5, minmax(142px, 1fr)); overflow-x: auto; }
  .protection-desk-tabs button { min-width: 142px; min-height: 96px; border-right: 1px solid var(--line); border-bottom: 0; }
  .protection-desk-media { min-height: 500px; border-top: 8px solid var(--recess-shell); border-left: 0; }
  .protection-desk-copy { min-height: auto; padding: 42px 24px; border-top-width: 8px; }
  .protection-desk-copy dl div { grid-template-columns: 1fr; gap: 8px; }
  .protection-register-row, .protection-register-labels { grid-template-columns: 1.1fr 0.55fr 1fr; }
  .protection-register-row > a, .protection-register-labels > span:last-child { grid-column: 1 / -1; min-height: 56px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .protection-evidence-track figure { grid-template-columns: 1fr; }
  .protection-evidence-track img { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .protection-evidence-track figcaption { min-height: 290px; }
  .protection-brief-example { padding: 42px 24px; }
  .protection-boundary-ledger div { grid-template-columns: 1fr; gap: 10px; }
  .protection-final-grid { grid-template-columns: 1fr; align-items: start; gap: 36px; }
}

@media (max-width: 430px) {
  .protection-hero { min-height: 950px; }
  .protection-hero-content h1 { font-size: 2.15rem; }
  .protection-hero-content .lede { font-size: 1rem; }
  .protection-scan-frame { width: 170px; height: 170px; bottom: 135px; }
  .protection-desk-media { min-height: 410px; }
  .protection-desk-media.is-contain img { padding: 18px 4px; }
  .protection-desk-media figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .protection-register-row, .protection-register-labels { grid-template-columns: 1.2fr 0.8fr; }
  .protection-register-row > span:nth-child(3), .protection-register-labels > span:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .protection-register-row > strong { font-size: 2.4rem; }
  .protection-evidence-track img { min-height: 340px; }
  .protection-brief-example p { font-size: 1.24rem; }
}

@media (prefers-reduced-motion: reduce) {
  .protection-hero-scene img, .protection-scan-frame i, .protection-media-scan { animation: none; }
}

/* B2B clarity pass: fewer choices, flatter hierarchy, one obvious next step */
:root {
  --container: min(1240px, calc(100vw - 48px));
  --recess-depth: none;
  --recess-control: none;
}

body { font-size: 16px; }
h1 { font-size: clamp(3rem, 5.3vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 3.8vw, 3.8rem); line-height: 1.02; }
h3 { line-height: 1.08; }
.section { padding: clamp(72px, 7vw, 112px) 0; }
.section-tight { padding: clamp(54px, 5vw, 78px) 0; }
.lede { max-width: 62ch; }

.site-nav { min-height: 72px; padding-inline: max(24px, calc((100vw - 1240px) / 2)); gap: 22px; }
.nav-links { gap: 25px; }
.nav-links > a[href="applications.html"],
.nav-links > a[href="resources.html"],
.nav-links > a[href="#process"],
.nav-links > a[href="contact.html"]:not(.button) { display: none; }
.nav-links > .button { min-height: 44px; padding: 0 20px; font-size: 0; }
.nav-links > .button::before { content: "Request a quote"; font-size: 0.86rem; }
.button { min-height: 46px; padding: 0 22px; gap: 10px; }
.button::after { width: auto; height: auto; background: transparent; color: inherit; content: "→"; }
.button:hover { transform: translateY(-1px); }
.button:hover::after { transform: translateX(3px); }

.range-index-section,
.lawn-selection-ledger,
.pole-logic-section,
.pole-evidence-section,
.wall-route-section,
.wall-range-section,
.pillar-geometry-section,
.pillar-footprint-section,
.pillar-range-section,
.about-buyer-section,
.about-boundary-section,
.applications-reading-section,
.applications-boundary-section,
.resources-desk-section,
.resources-evidence-section,
.power-bus-section,
.power-desk-section,
.rfq-worksheet-section,
.comparison-lens-section,
.packaging-approval-section,
.record-register-section,
.sample-bench-section,
.shipment-desk-section,
.protection-map-section,
.protection-desk-section,
#evidence-index { display: none; }

.oem-switch,
.lawn-view-switch,
.pillar-view-switch { display: none; }

.proof-stage,
.brief-lab,
.range-index,
.resources-desk,
.power-desk,
.protection-desk,
.comparison-lens,
.packaging-approval-console,
.record-register,
.sample-bench,
.shipment-release-desk { box-shadow: none; }

.site-footer { padding-top: 78px; }
.footer-grid { grid-template-columns: 1.3fr 0.72fr 0.72fr 0.85fr; gap: clamp(28px, 4vw, 58px); }
.footer-grid a, .footer-grid p { font-size: 0.84rem; }
.footer-bottom { margin-top: 36px; }

/* Warm editorial-industrial homepage */
.editorial-home { background: #eef2ef; }
.editorial-home .site-footer { background: #102532; color: #fff; }

.editorial-hero {
  min-height: max(820px, 100svh);
  padding-top: 76px;
  position: relative;
  overflow: hidden;
  background: #102532;
  color: #fff;
}
.editorial-hero-media,
.editorial-hero-media img,
.editorial-hero-wash { position: absolute; inset: 0; }
.editorial-hero-media { margin: 0; }
.editorial-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.editorial-hero-wash {
  background:
    linear-gradient(90deg, rgba(11, 30, 42, 0.96) 0%, rgba(11, 30, 42, 0.77) 38%, rgba(11, 30, 42, 0.12) 78%),
    linear-gradient(0deg, rgba(11, 30, 42, 0.74) 0%, transparent 35%);
}
.editorial-hero-inner {
  min-height: calc(max(820px, 100svh) - 76px);
  padding: clamp(110px, 15vh, 170px) 0 132px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-hero-copy { max-width: 920px; }
.editorial-hero-copy .eyebrow { color: #8aaa57; }
.editorial-hero-copy h1 { max-width: 1050px; margin-bottom: 30px; font-size: clamp(2.25rem, 6vw, 6.3rem); letter-spacing: -0.055em; }
.editorial-hero-copy h1 span { display: block; white-space: nowrap; }
.editorial-hero-copy .lede { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,0.8); font-size: clamp(1.08rem, 1.5vw, 1.34rem); }
.editorial-actions { margin-top: 38px; display: flex; align-items: center; gap: 34px; }
.editorial-actions .button { background: #fff; color: var(--ink); }
.editorial-actions .text-action { border-color: rgba(255,255,255,0.64); color: #fff; }
.editorial-proofline {
  min-height: 82px;
  padding-top: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255,255,255,0.36);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255,255,255,0.76);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.editorial-proofline span:not(:last-child)::after { margin-left: clamp(24px, 5vw, 80px); color: #8aaa57; content: "•"; }

.editorial-kicker {
  margin: 0;
  color: #2d6b5e;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.editorial-intro { padding: clamp(86px, 8vw, 132px) 0; background: #eef2ef; }
.editorial-intro-story {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: clamp(58px, 7vw, 118px);
}
.editorial-intro-visual {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.editorial-intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.editorial-intro-content { padding: 0; }
.editorial-intro-heading h2 { max-width: 740px; margin: 0; font-size: clamp(3.1rem, 5vw, 5.7rem); }
.editorial-intro-copy { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: 1.08rem; }
.editorial-challenges { margin-top: clamp(44px, 5vw, 72px); border-bottom: 1px solid rgba(16, 37, 50, 0.42); }
.editorial-challenges article {
  padding: 24px 0;
  border-top: 1px solid rgba(16, 37, 50, 0.42);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}
.editorial-challenge-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #2d6b5e;
}
.editorial-challenge-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-linecap: square; stroke-linejoin: miter; stroke-width: 1.6; }
.editorial-challenges strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: clamp(1.28rem, 1.7vw, 1.72rem); line-height: 1.08; }
.editorial-challenges p { max-width: 590px; margin: 0; color: var(--muted); }

.editorial-range { background: #f8faf7; }
.editorial-range-lead {
  padding: clamp(92px, 9vw, 148px) 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: clamp(64px, 8vw, 132px);
}
.editorial-range-copy h2 { max-width: 760px; margin: 0; font-size: clamp(3rem, 5.2vw, 5.8rem); }
.editorial-range-copy p { max-width: 500px; margin: 34px 0 0; color: var(--muted); font-size: 1.08rem; }
.editorial-range-visual { aspect-ratio: 1; margin: 0; position: relative; overflow: hidden; background: #d9e5df; }
.editorial-range-scene { width: 100%; height: 100%; object-fit: cover; }
.editorial-range-product {
  width: 38%;
  height: 38%;
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(16, 37, 50, 0.34);
  border-left: 1px solid rgba(16, 37, 50, 0.34);
  object-fit: contain;
  background: #fff;
}
.editorial-section-heading {
  padding: clamp(105px, 11vw, 170px) 0 clamp(76px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(500px, 1.05fr) minmax(280px, 0.63fr);
  align-items: end;
  gap: clamp(34px, 5vw, 86px);
}
.editorial-section-heading h2 { max-width: 830px; margin: 0; font-size: clamp(3rem, 5.2vw, 5.8rem); }
.editorial-section-heading > p:last-child { max-width: 480px; margin: 0; color: var(--muted); }
.editorial-family { min-height: 720px; border-top: 1px solid rgba(16, 37, 50,0.34); overflow: hidden; }
.editorial-family-grid { min-height: 720px; display: grid; grid-template-columns: minmax(350px, 0.78fr) minmax(560px, 1fr); align-items: center; gap: clamp(60px, 8vw, 130px); }
.editorial-family-copy { padding: 110px 0 90px; align-self: center; }
.editorial-family-copy > p:first-child { margin-bottom: 24px; color: #2d6b5e; font-family: var(--mono); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.editorial-family-copy h3 { margin-bottom: 24px; font-size: clamp(3.4rem, 6vw, 7.1rem); }
.editorial-family-copy h3 + p { max-width: 520px; margin-bottom: 36px; color: var(--muted); font-size: 1.06rem; }
.editorial-family-media { width: 100%; max-width: 720px; min-height: 0; aspect-ratio: 1; position: relative; justify-self: end; overflow: hidden; background: #fff; }
.editorial-family-scene { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: 1; transition: opacity 420ms var(--ease), transform 900ms var(--ease); }
.editorial-family-product {
  width: 100%;
  height: 100%;
  padding: clamp(28px, 4vw, 64px);
  position: absolute;
  inset: 0;
  object-fit: contain;
  background: #fff;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 420ms var(--ease), transform 700ms var(--ease);
}
.editorial-family-media:hover .editorial-family-scene,
.editorial-family-media:focus-visible .editorial-family-scene { opacity: 0; transform: scale(1.025); }
.editorial-family-media:hover .editorial-family-product,
.editorial-family-media:focus-visible .editorial-family-product { opacity: 1; transform: scale(1); }
.editorial-family--reverse { background: #e5ece8; }
.editorial-family--reverse .editorial-family-grid { grid-template-columns: minmax(560px, 1fr) minmax(350px, 0.78fr); }
.editorial-family--reverse .editorial-family-copy { order: 2; }
.editorial-family--reverse .editorial-family-media,
.editorial-family--reverse .editorial-pending-media { order: 1; }
.editorial-family--reverse .editorial-family-media { justify-self: start; }
.editorial-family--pending { min-height: 590px; background: #d9e5df; }
.editorial-family--pending .editorial-family-grid { min-height: 590px; }
.editorial-pending-media {
  min-height: 590px;
  padding: clamp(42px, 6vw, 86px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(125deg, transparent 0 48%, rgba(45, 107, 94,0.14) 48.2% 48.6%, transparent 48.8%),
    linear-gradient(160deg, #c7d8cf, #e8eeeb 74%);
}
.editorial-pending-media::before { position: absolute; top: 0; right: -0.05em; color: rgba(45, 107, 94,0.08); content: "PENDING"; font-family: var(--display); font-size: clamp(7rem, 15vw, 15rem); font-weight: 700; letter-spacing: -0.08em; line-height: 0.78; }
.editorial-pending-media span { color: #2d6b5e; font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; }
.editorial-pending-media strong { max-width: 620px; margin: 14px 0; font-family: var(--display); font-size: clamp(2.2rem, 3.6vw, 4rem); letter-spacing: -0.045em; line-height: 0.98; }
.editorial-pending-media p { max-width: 470px; margin: 0; color: var(--muted); }
.editorial-family--wall { background: #edf2ef; }
.editorial-family--pillar { background: #f4f7f4; }

.editorial-oem { padding-bottom: clamp(100px, 12vw, 180px); background: #102532; color: #fff; }
.editorial-section-heading--light .editorial-kicker { color: #8aaa57; }
.editorial-section-heading--light > p:last-child { color: rgba(255,255,255,0.66); }
.editorial-oem-story { display: grid; grid-template-columns: minmax(520px, 1.08fr) minmax(360px, 0.72fr); align-items: start; gap: clamp(70px, 9vw, 150px); }
.editorial-oem-visual { height: min(72vh, 760px); min-height: 560px; position: sticky; top: 104px; overflow: hidden; background: #f4f7f4; }
.editorial-oem-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity 500ms var(--ease), transform 900ms var(--ease); }
.editorial-oem-visual img[data-oem-media="model"],
.editorial-oem-visual img[data-oem-media="configuration"],
.editorial-oem-visual img[data-oem-media="packaging"] { padding: clamp(18px, 3vw, 42px); object-fit: contain; }
.editorial-oem-visual img.is-active { opacity: 1; transform: scale(1); }
.editorial-oem-caption { padding: 14px 18px; position: absolute; right: 0; bottom: 0; z-index: 2; background: #2d6b5e; color: #fff; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }
.editorial-oem-steps article { min-height: 62vh; padding: 70px 0 80px; border-top: 1px solid rgba(255,255,255,0.28); opacity: 0.36; transition: opacity 260ms var(--ease); }
.editorial-oem-steps article[aria-current="step"] { opacity: 1; }
.editorial-oem-steps article > span { color: #8aaa57; font-family: var(--mono); font-size: 0.68rem; }
.editorial-oem-steps h3 { margin: 30px 0 20px; font-size: clamp(2.4rem, 4vw, 4.6rem); }
.editorial-oem-steps p { max-width: 520px; color: rgba(255,255,255,0.66); }
.editorial-oem-steps .button { margin-top: 24px; background: #fff; color: var(--ink); }

.editorial-company { padding: clamp(110px, 12vw, 190px) 0; background: #eef2ef; }
.editorial-company-heading { display: grid; grid-template-columns: minmax(500px, 1.15fr) minmax(320px, 0.55fr); align-items: end; gap: clamp(70px, 10vw, 170px); }
.editorial-company-heading h2 { max-width: 900px; margin: 20px 0 0; font-size: clamp(3.2rem, 5.8vw, 6.3rem); }
.editorial-company-heading > div:last-child p { margin-bottom: 32px; color: var(--muted); }
.editorial-company-film { min-height: 850px; margin-top: clamp(74px, 8vw, 120px); position: relative; }
.editorial-company-film figure { margin: 0; position: absolute; overflow: hidden; }
.editorial-company-film img { width: 100%; height: 100%; object-fit: cover; }
.editorial-company-film figcaption { padding: 12px 0 0; color: #66777c; font-family: var(--mono); font-size: 0.57rem; letter-spacing: 0.08em; text-transform: uppercase; }
.editorial-company-exterior { width: 75%; height: 680px; top: 0; left: 0; }
.editorial-company-production { width: 42%; height: 380px; right: 0; bottom: 0; box-shadow: -24px -24px 0 #eef2ef; }
.editorial-company-record { margin-top: 70px; padding: 26px 0; border-top: 1px solid rgba(16, 37, 50,0.7); border-bottom: 1px solid rgba(16, 37, 50,0.7); display: flex; justify-content: space-between; gap: 30px; }
.editorial-company-record span { color: var(--muted); font-size: 0.8rem; }
.editorial-company-record strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--display); font-size: 1.18rem; }

.editorial-final { min-height: 680px; padding: clamp(100px, 12vw, 180px) 0; position: relative; isolation: isolate; overflow: hidden; display: grid; place-items: center; background: #102532; color: #fff; text-align: center; }
.editorial-final::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8, 25, 35, 0.42), rgba(8, 25, 35, 0.72)), linear-gradient(90deg, rgba(8, 25, 35, 0.36), rgba(8, 25, 35, 0.6) 50%, rgba(8, 25, 35, 0.36)); }
.editorial-final-background { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.editorial-final-inner { max-width: 960px; position: relative; z-index: 1; }
.editorial-final .editorial-kicker { color: #c7d9ad; }
.editorial-final h2 { margin: 22px 0 28px; font-size: clamp(3.4rem, 6.7vw, 7.2rem); }
.editorial-final p:not(.editorial-kicker) { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.78); }
.editorial-final .button { margin-top: 38px; background: #fff; color: #23564d; }

@media (max-width: 1080px) {
  .editorial-intro-story,
  .editorial-range-lead { grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr); gap: 54px; }
  .editorial-intro-grid,
  .editorial-section-heading { grid-template-columns: 150px minmax(0, 1fr); }
  .editorial-intro-copy,
  .editorial-section-heading > p:last-child { grid-column: 2; }
  .editorial-family-grid { grid-template-columns: minmax(290px, 0.7fr) minmax(480px, 1.3fr); gap: 54px; }
  .editorial-family--reverse .editorial-family-grid { grid-template-columns: minmax(480px, 1.3fr) minmax(290px, 0.7fr); }
  .editorial-oem-story { grid-template-columns: minmax(420px, 1fr) minmax(330px, 0.8fr); gap: 62px; }
  .editorial-company-film { min-height: 730px; }
  .editorial-company-exterior { height: 590px; }
  .editorial-company-production { height: 330px; }
}

@media (max-width: 820px) {
  .editorial-hero { min-height: 820px; }
  .editorial-hero-wash { background: linear-gradient(180deg, rgba(11, 30, 42,0.88) 0%, rgba(11, 30, 42,0.62) 55%, rgba(11, 30, 42,0.86) 100%); }
  .editorial-hero-inner { min-height: 744px; padding-top: 120px; }
  .editorial-hero-copy h1 { font-size: clamp(2.35rem, 8.8vw, 4.65rem); }
  .editorial-proofline { justify-content: flex-start; flex-wrap: wrap; column-gap: 24px; }
  .editorial-proofline span:not(:last-child)::after { margin-left: 24px; }
  .editorial-intro-story,
  .editorial-range-lead,
  .editorial-intro-grid,
  .editorial-section-heading,
  .editorial-family-grid,
  .editorial-family--reverse .editorial-family-grid,
  .editorial-oem-story,
  .editorial-company-heading { grid-template-columns: 1fr; }
  .editorial-intro-copy,
  .editorial-section-heading > p:last-child { grid-column: auto; }
  .editorial-intro-story,
  .editorial-range-lead { gap: 54px; }
  .editorial-intro-content { padding: 0; }
  .editorial-intro-visual,
  .editorial-range-visual { width: min(100%, 680px); justify-self: center; }
  .editorial-family-grid { gap: 0; }
  .editorial-family-copy { padding: 76px 0 58px; }
  .editorial-family-media { max-width: none; min-height: 0; justify-self: stretch; }
  .editorial-pending-media { min-height: 570px; }
  .editorial-family--reverse .editorial-family-copy { order: 1; }
  .editorial-family--reverse .editorial-family-media,
  .editorial-family--reverse .editorial-pending-media { order: 2; }
  .editorial-oem-story { gap: 60px; }
  .editorial-oem-visual { height: 58vh; min-height: 460px; top: 92px; z-index: 2; }
  .editorial-oem-steps article { min-height: 48vh; }
  .editorial-company-film { min-height: auto; display: grid; gap: 54px; }
  .editorial-company-film figure { width: 100%; height: auto; position: relative; inset: auto; overflow: visible; box-shadow: none; }
  .editorial-company-film img { aspect-ratio: 4 / 3; }
  .editorial-company-production { width: 74% !important; margin-left: auto !important; }
  .editorial-company-record { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .editorial-hero { min-height: 760px; }
  .editorial-hero-media img { object-position: 62% center; }
  .editorial-hero-inner { min-height: 684px; padding: 96px 0 142px; justify-content: flex-end; }
  .editorial-hero-copy h1 { font-size: clamp(2.05rem, 9.2vw, 3rem); }
  .editorial-hero-copy .lede { font-size: 1rem; }
  .editorial-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .editorial-proofline { min-height: 112px; padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
  .editorial-proofline span::after { display: none; }
  .editorial-intro,
  .editorial-company { padding: 86px 0; }
  .editorial-intro-story,
  .editorial-range-lead { gap: 40px; }
  .editorial-intro-heading h2,
  .editorial-range-copy h2 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .editorial-intro-copy,
  .editorial-range-copy p { margin-top: 22px; font-size: 1rem; }
  .editorial-challenges { margin-top: 38px; }
  .editorial-challenges article { grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
  .editorial-challenge-icon { width: 38px; height: 38px; }
  .editorial-challenge-icon svg { width: 34px; height: 34px; }
  .editorial-range-lead { padding: 82px 0; }
  .editorial-range-product { width: 42%; height: 42%; }
  .editorial-intro-grid h2,
  .editorial-section-heading h2 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .editorial-section-heading { padding: 84px 0 64px; }
  .editorial-family,
  .editorial-family-grid { min-height: auto; }
  .editorial-family-copy h3 { font-size: clamp(3rem, 16vw, 5rem); }
  .editorial-family-media { min-height: 0; }
  .editorial-pending-media { min-height: 430px; }
  .editorial-pending-media { padding: 30px; }
  .editorial-oem-visual { min-height: 390px; top: 82px; }
  .editorial-oem-steps article { min-height: 390px; padding: 54px 0; }
  .editorial-company-production { width: 100% !important; }
  .editorial-company-record { grid-template-columns: 1fr; }
  .editorial-final { min-height: 590px; }
  .editorial-final h2 { font-size: clamp(3rem, 15vw, 4.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-family-scene,
  .editorial-family-product,
  .editorial-oem-visual img { transition: none; }
}

/* Editorial category selection system */
.editorial-category {
  background: #eef2ef;
  color: #102532;
}

.editorial-category main { padding-top: 76px; }

.category-editorial-kicker {
  margin: 0;
  color: #2d6b5e;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-editorial-hero {
  min-height: calc(100svh - 76px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  grid-template-rows: 1fr auto;
  background: #102532;
  color: #fff;
}

.category-editorial-hero-copy {
  padding: clamp(74px, 7.5vw, 126px) clamp(38px, 6vw, 100px) 72px max(24px, calc((100vw - 1360px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-editorial-hero-copy .category-editorial-kicker { color: #8aaa57; }

.category-editorial-hero-copy h1 {
  max-width: 760px;
  margin: 26px 0 30px;
  font-size: clamp(3.9rem, 5.8vw, 6.6rem);
  line-height: 0.94;
}

.category-editorial-hero-copy > p:not(.category-editorial-kicker) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.category-editorial-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.category-editorial-actions > a:not(.button) {
  min-height: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
}

.category-editorial-hero-media {
  min-height: 700px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #0b1e2a;
}

.category-editorial-hero-media > img:first-child {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.category-editorial-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 37, 50, 0.32), transparent 42%), linear-gradient(0deg, rgba(16, 37, 50, 0.38), transparent 54%);
  content: "";
}

.category-editorial-hero-product {
  width: clamp(220px, 22vw, 410px);
  aspect-ratio: 1;
  position: absolute;
  right: clamp(28px, 5vw, 80px);
  bottom: 96px;
  z-index: 2;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
}

.category-editorial-hero-media figcaption {
  min-height: 72px;
  padding: 18px 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(16, 37, 50, 0.88);
}

.category-editorial-hero-media figcaption span {
  color: #8aaa57;
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.1em;
}

.category-editorial-hero-media figcaption strong { text-align: right; }

.category-editorial-proofline {
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #102532;
}

.category-editorial-proofline span {
  min-height: 78px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.category-editorial-proofline span:last-child { border-right: 1px solid rgba(255, 255, 255, 0.2); }

.category-selector,
.category-application-editorial,
.category-selection-editorial {
  padding: clamp(96px, 10vw, 166px) 0;
}

.category-selector { background: #eef2ef; }
.category-application-editorial { background: #f8faf7; }
.category-selection-editorial { background: #e5ece8; }

.category-selector-heading {
  margin-bottom: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: clamp(42px, 8vw, 130px);
}

.category-selector-heading h2 {
  max-width: 870px;
  margin: 18px 0 0;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
}

.category-selector-heading > p {
  max-width: 500px;
  margin: 0;
  color: #5c6d73;
}

.category-explorer { border-top: 1px solid #102532; }

.category-model-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-model-rail button {
  min-width: 150px;
  min-height: 112px;
  padding: 20px 18px;
  border: 0;
  border-right: 1px solid rgba(16, 37, 50, 0.24);
  border-bottom: 1px solid #102532;
  background: transparent;
  color: #102532;
  text-align: left;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.category-model-rail button:first-child { border-left: 1px solid rgba(16, 37, 50, 0.24); }
.category-model-rail button:hover,
.category-model-rail button.is-active { background: #102532; color: #fff; }
.category-model-rail button span { color: #2d6b5e; font-family: var(--mono); font-size: 0.58rem; }
.category-model-rail button.is-active span { color: #8aaa57; }
.category-model-rail button strong { margin: 12px 0 5px; display: block; font-family: var(--display); font-size: 1.25rem; }
.category-model-rail button small { color: currentColor; opacity: 0.62; }

.category-evidence-stage {
  min-height: 720px;
  border-bottom: 1px solid #102532;
  display: grid;
  grid-template-columns: minmax(0, 59fr) minmax(390px, 41fr);
}

.category-evidence-media {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #102532;
  background: #fff;
}

.category-evidence-media > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  padding: clamp(54px, 7vw, 110px);
  object-fit: contain;
  transition: opacity 160ms var(--ease), transform 460ms var(--ease), padding 360ms var(--ease);
}

.category-evidence-media.is-scene > img { padding: 0; object-fit: cover; }

.category-evidence-media > span {
  padding: 12px 16px;
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(248, 250, 247, 0.9);
  color: #5c6d73;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-media-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(248, 250, 247, 0.94);
  backdrop-filter: blur(14px);
}

.category-media-tabs button {
  min-height: 62px;
  border: 0;
  border-top: 1px solid #102532;
  border-right: 1px solid rgba(16, 37, 50, 0.24);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.category-media-tabs button:hover,
.category-media-tabs button.is-active { background: #102532; color: #fff; }

.category-evidence-copy {
  padding: clamp(52px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8faf7;
}

.category-record-model {
  margin: 0 0 24px;
  color: #2d6b5e;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.category-evidence-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.category-evidence-copy > p:not(.category-record-model) { color: #5c6d73; font-size: 1.06rem; }

.category-record-facts { margin: 34px 0; border-top: 1px solid rgba(16, 37, 50, 0.28); }

.category-record-facts div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(16, 37, 50, 0.28);
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 20px;
}

.category-record-facts dt { color: #5c6d73; font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.category-record-facts dd { margin: 0; font-weight: 750; }
.category-evidence-copy .button { align-self: flex-start; }
.category-source-note { max-width: 860px; margin: 22px 0 0 auto; color: #5c6d73; font-size: 0.78rem; }

.category-scene-sequence {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.12fr 0.78fr 0.9fr;
  align-items: end;
  gap: clamp(18px, 2.4vw, 38px);
}

.category-scene-sequence figure { margin: 0; position: relative; overflow: hidden; background: #d3dfda; }
.category-scene-sequence figure:nth-child(1) { height: 720px; }
.category-scene-sequence figure:nth-child(2) { height: 560px; align-self: start; }
.category-scene-sequence figure:nth-child(3) { height: 640px; }
.category-scene-sequence img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease), filter 500ms var(--ease); }
.category-scene-sequence figure:hover img { transform: scale(1.025); filter: saturate(1.08); }

.category-scene-sequence figcaption {
  padding: 22px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(16, 37, 50, 0.94), rgba(16, 37, 50, 0.06));
  color: #fff;
}

.category-scene-sequence figcaption span { color: #8aaa57; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; }
.category-scene-sequence figcaption strong { margin-top: 10px; display: block; font-size: 1rem; }

.category-decision-ledger {
  border-top: 1px solid #102532;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.category-decision-ledger article {
  min-height: 300px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid #102532;
}

.category-decision-ledger article + article { padding-left: 28px; border-left: 1px solid rgba(16, 37, 50, 0.24); }
.category-decision-ledger span { color: #2d6b5e; font-family: var(--mono); font-size: 0.64rem; }
.category-decision-ledger h3 { margin: 82px 0 16px; font-size: clamp(1.45rem, 2vw, 1.9rem); }
.category-decision-ledger p { margin: 0; color: #5c6d73; }

.category-editorial-cta { padding: clamp(96px, 10vw, 160px) 0; background: #2d6b5e; color: #fff; }
.category-editorial-cta .container { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); align-items: end; gap: clamp(60px, 10vw, 150px); }
.category-editorial-cta .category-editorial-kicker { color: #c7d9ad; }
.category-editorial-cta h2 { max-width: 830px; margin: 22px 0 0; font-size: clamp(3.3rem, 5.7vw, 6.2rem); }
.category-editorial-cta p { color: rgba(255, 255, 255, 0.76); }
.category-editorial-cta .button { margin-top: 22px; background: #fff; color: #23564d; }

@media (max-width: 1024px) {
  .editorial-category main { padding-top: 70px; }
  .category-editorial-hero { min-height: auto; grid-template-columns: 1fr; }
  .category-editorial-hero-copy { min-height: 650px; padding: 100px max(24px, calc((100vw - 920px) / 2)) 82px; }
  .category-editorial-hero-copy h1 { max-width: 850px; }
  .category-editorial-hero-media { min-height: 680px; }
  .category-editorial-proofline { padding: 0 max(24px, calc((100vw - 920px) / 2)); }
  .category-selector-heading { grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr); gap: 50px; }
  .category-model-rail { grid-template-columns: repeat(6, minmax(150px, 1fr)); }
  .category-evidence-stage { grid-template-columns: minmax(0, 55fr) minmax(350px, 45fr); }
  .category-evidence-copy { padding: 50px 42px; }
  .category-scene-sequence { min-height: 620px; }
  .category-scene-sequence figure:nth-child(1) { height: 590px; }
  .category-scene-sequence figure:nth-child(2) { height: 450px; }
  .category-scene-sequence figure:nth-child(3) { height: 520px; }
}

@media (max-width: 768px) {
  .category-editorial-hero-copy { min-height: 590px; padding-top: 84px; }
  .category-editorial-hero-copy h1 { font-size: clamp(3.1rem, 11vw, 5.3rem); }
  .category-editorial-hero-media { min-height: 570px; }
  .category-editorial-proofline { grid-template-columns: 1fr 1fr; }
  .category-editorial-proofline span { min-height: 64px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .category-selector-heading { grid-template-columns: 1fr; gap: 26px; }
  .category-selector-heading h2 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .category-evidence-stage { min-height: auto; grid-template-columns: 1fr; }
  .category-evidence-media { min-height: 620px; border-right: 0; border-bottom: 1px solid #102532; }
  .category-evidence-copy { min-height: 570px; }
  .category-scene-sequence { min-height: auto; grid-template-columns: 1fr 1fr; }
  .category-scene-sequence figure:nth-child(1) { height: 580px; grid-row: span 2; }
  .category-scene-sequence figure:nth-child(2),
  .category-scene-sequence figure:nth-child(3) { height: 280px; }
  .category-decision-ledger { grid-template-columns: 1fr 1fr; }
  .category-decision-ledger article { min-height: 250px; }
  .category-decision-ledger article:nth-child(3) { border-left: 0; padding-left: 0; }
  .category-editorial-cta .container { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px) {
  .category-editorial-hero-copy { min-height: 620px; padding: 72px 20px 60px; }
  .category-editorial-hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .category-editorial-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .category-editorial-hero-media { min-height: 470px; }
  .category-editorial-hero-product { width: 42%; right: 18px; bottom: 80px; }
  .category-editorial-hero-media figcaption { padding: 16px 18px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .category-editorial-hero-media figcaption strong { text-align: left; }
  .category-editorial-proofline { padding: 0; }
  .category-editorial-proofline span { padding: 0 16px; font-size: 0.72rem; }
  .category-selector,
  .category-application-editorial,
  .category-selection-editorial { padding: 84px 0; }
  .category-selector-heading h2 { font-size: clamp(2.55rem, 13vw, 3.8rem); }
  .category-model-rail button { min-width: 136px; min-height: 100px; }
  .category-evidence-media { min-height: 470px; }
  .category-evidence-media > img { padding: 58px 28px 78px; }
  .category-evidence-copy { min-height: auto; padding: 52px 22px 64px; }
  .category-evidence-copy h3 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .category-record-facts div { grid-template-columns: 108px 1fr; gap: 14px; }
  .category-scene-sequence { display: block; }
  .category-scene-sequence figure:nth-child(n) { height: 520px; margin-bottom: 18px; }
  .category-scene-sequence figure:nth-child(2) { width: 84%; margin-left: auto; }
  .category-scene-sequence figure:nth-child(3) { width: 92%; }
  .category-decision-ledger { grid-template-columns: 1fr; }
  .category-decision-ledger article,
  .category-decision-ledger article + article { min-height: 210px; padding: 26px 0; border-left: 0; }
  .category-decision-ledger h3 { margin-top: 46px; }
  .category-editorial-cta h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .category-model-rail button,
  .category-evidence-media > img,
  .category-scene-sequence img { transition: none; }
}

/*
 * Global editorial rule: section titles stand on their own.
 * Decorative eyebrow/kicker copy is retained in the document for legacy
 * interactive updates, but is intentionally not presented. Functional
 * product, specification, navigation, form and process labels remain visible.
 */
.eyebrow,
.editorial-kicker,
.category-editorial-kicker,
.directory-kicker,
.catalog-kicker,
.pdp-kicker,
.editorial-family-copy > p:first-child,
.catalog-section-intro > p:first-child,
.catalog-records-head > p:first-child,
.catalog-decisions-title > p:first-child,
.catalog-final-cta > div > p:first-child,
.pdp-config header > p:first-child,
.pdp-spec header > p:first-child,
.pdp-details header > p:first-child,
.pdp-application-copy > p:first-child,
.pdp-decisions header > p:first-child,
.pdp-enquiry-intro > p:first-child,
.pdp-related > div > p:first-child {
  display: none !important;
}

/* Reflow layouts that previously reserved a dedicated kicker column. */
.editorial-intro-grid {
  grid-template-columns: minmax(460px, 1.05fr) minmax(300px, 0.63fr);
}

.editorial-section-heading {
  grid-template-columns: minmax(500px, 1.05fr) minmax(280px, 0.63fr);
}

.editorial-hero-copy h1,
.category-editorial-hero-copy h1,
.directory-intro h1,
.directory-heading h2,
.category-editorial-cta h2,
.editorial-company-heading h2,
.editorial-final h2,
.directory-buying-note h2 {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .editorial-intro-grid,
  .editorial-section-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .editorial-intro-copy,
  .editorial-section-heading > p:last-child {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .editorial-intro-grid,
  .editorial-section-heading {
    grid-template-columns: 1fr;
  }
}

/* Products: independent 4 × 2 paginated catalog register */
.product-directory-page { background: #eef2ef; }
.product-directory-page main { padding-top: 76px; }

.directory-kicker {
  margin: 0;
  color: #2d6b5e;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.directory-intro {
  padding: clamp(82px, 8vw, 132px) 0 clamp(64px, 7vw, 104px);
  background-color: #102532;
  background-image:
    linear-gradient(90deg, rgba(8, 27, 39, 0.97) 0%, rgba(8, 27, 39, 0.92) 38%, rgba(8, 27, 39, 0.76) 68%, rgba(8, 27, 39, 0.48) 100%),
    url("/wp-content/themes/ymg-b2b-2026/site-assets/products/garden-lights/GGD003/scene-02.jpg");
  background-position: center, center 48%;
  background-size: cover;
  color: #fff;
}
.directory-intro-grid { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.68fr); align-items: end; gap: clamp(60px, 10vw, 160px); }
.directory-intro .directory-kicker { color: #8aaa57; }
.directory-intro h1 { max-width: 900px; margin: 24px 0 0; font-size: clamp(4rem, 6.3vw, 7rem); }
.directory-intro-grid > div:last-child > p { margin: 0 0 30px; color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; }
.directory-intro-grid > div:last-child > a { min-height: 46px; border-bottom: 1px solid rgba(255, 255, 255, 0.48); display: inline-flex; align-items: center; gap: 36px; font-weight: 800; }

.directory-shell { padding: clamp(62px, 7vw, 104px) 0 clamp(110px, 11vw, 170px); background: #eef2ef; }
.directory-toolbar { border-top: 1px solid #102532; }
.directory-tabs { display: grid; grid-template-columns: repeat(5, 1fr); overflow-x: auto; scrollbar-width: thin; }

.directory-tabs button {
  min-width: 178px;
  min-height: 106px;
  padding: 19px 20px;
  border: 0;
  border-right: 1px solid rgba(16, 37, 50, 0.25);
  border-bottom: 1px solid #102532;
  background: transparent;
  color: #102532;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 5px 14px;
  text-align: left;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}

.directory-tabs button:first-child { border-left: 0; }
.directory-tabs button:last-child { border-right: 0; }
.directory-tabs button span { color: #2d6b5e; font-family: var(--mono); font-size: 0.56rem; }
.directory-tabs button small { grid-column: 2; color: currentColor; font-family: var(--body); font-size: 0.7rem; font-weight: 500; opacity: 0.62; }
.directory-tabs button:hover,
.directory-tabs button.is-active { background: #102532; color: #fff; }
.directory-tabs button.is-active span { color: #8aaa57; }

.directory-heading {
  padding: clamp(50px, 6vw, 86px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(60px, 10vw, 160px);
}

.directory-heading h2 { margin: 17px 0 0; font-size: clamp(3.4rem, 5.6vw, 6.2rem); }
.directory-heading > div:last-child > p { margin: 0 0 24px; color: #5c6d73; }
.directory-heading > div:last-child > a { min-height: 44px; border-bottom: 1px solid #102532; display: inline-flex; align-items: center; gap: 34px; font-weight: 800; }

.directory-frame { border: 1px solid #102532; overflow: hidden; background: #f8faf7; }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); transition: opacity 150ms var(--ease), transform 180ms var(--ease); }
.directory-shell.is-updating .directory-grid { opacity: 0.3; transform: translateY(4px); }

.directory-product { min-width: 0; border-right: 1px solid rgba(16, 37, 50, 0.25); border-bottom: 1px solid rgba(16, 37, 50, 0.25); background: #fff; }
.directory-product:nth-child(4n) { border-right: 0; }
.directory-product:nth-child(n + 5) { border-bottom: 0; }
.directory-product a { height: 100%; display: flex; flex-direction: column; }
.directory-product a > div { aspect-ratio: 1 / 1; padding: clamp(18px, 2.5vw, 38px); overflow: hidden; background: #fff; }
.directory-product-media { position: relative; }
.directory-product img { width: 100%; height: 100%; object-fit: contain; transition: opacity 280ms var(--ease), transform 620ms var(--ease); }
.directory-product-scene { position: absolute; inset: 0; z-index: 1; object-fit: cover !important; opacity: 0; transform: scale(1.035); }
.directory-product-media > span { padding: 9px 11px; position: absolute; right: 14px; bottom: 14px; z-index: 2; background: rgba(16, 37, 50, 0.88); color: #fff; font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.08em; opacity: 0; text-transform: uppercase; transform: translateY(6px); transition: opacity 220ms var(--ease), transform 280ms var(--ease); }
.directory-product footer { min-height: 132px; padding: 20px 22px 22px; border-top: 1px solid rgba(16, 37, 50, 0.18); position: relative; background: #f8faf7; transition: background 180ms var(--ease), color 180ms var(--ease); }
.directory-product footer span { color: #2d6b5e; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase; }
.directory-product h3 { margin: 10px 0 14px; font-size: clamp(1.5rem, 2vw, 2rem); }
.directory-product em { color: #5c6d73; font-size: 0.72rem; font-style: normal; font-weight: 700; }
.directory-product a:hover footer { background: #102532; color: #fff; }
.directory-product a:hover footer span { color: #8aaa57; }
.directory-product a:hover em { color: rgba(255, 255, 255, 0.72); }

@media (hover: hover) and (pointer: fine) {
  .directory-product a:hover .directory-product-white,
  .directory-product a:focus-visible .directory-product-white { opacity: 0; transform: scale(0.97); }
  .directory-product a:hover .directory-product-scene,
  .directory-product a:focus-visible .directory-product-scene { opacity: 1; transform: scale(1); }
  .directory-product a:hover .directory-product-media > span,
  .directory-product a:focus-visible .directory-product-media > span { opacity: 1; transform: translateY(0); }
}

.directory-empty { min-height: 650px; padding: clamp(42px, 7vw, 100px); place-content: end start; background: #dfe8e3; position: relative; overflow: hidden; }
.directory-empty:not([hidden]) { display: grid; }
.directory-empty::before { position: absolute; top: -0.1em; right: -0.02em; color: rgba(45, 107, 94, 0.08); content: "PENDING"; font-family: var(--display); font-size: clamp(8rem, 17vw, 18rem); font-weight: 800; letter-spacing: -0.08em; line-height: 0.8; }
.directory-empty > * { max-width: 660px; position: relative; }
.directory-empty > span { color: #2d6b5e; font-family: var(--mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.12em; }
.directory-empty h3 { margin: 18px 0; font-size: clamp(3rem, 5vw, 5.5rem); }
.directory-empty p { color: #5c6d73; }
.directory-empty .button { margin-top: 20px; justify-self: start; }

.directory-pagination {
  min-height: 92px;
  border-top: 1px solid #102532;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: stretch;
}

.directory-pagination[hidden] { display: none; }
.directory-pagination > button { border: 0; background: #f8faf7; font-weight: 800; cursor: pointer; }
.directory-pagination > button:first-child { border-right: 1px solid rgba(16, 37, 50, 0.25); }
.directory-pagination > button:last-child { border-left: 1px solid rgba(16, 37, 50, 0.25); }
.directory-pagination > button:hover:not(:disabled) { background: #102532; color: #fff; }
.directory-pagination > button:disabled { color: #8a989b; cursor: not-allowed; }
.directory-pagination > div { display: flex; align-items: center; justify-content: center; gap: 8px; }
.directory-pagination > div button { width: 48px; height: 48px; border: 1px solid transparent; background: transparent; font-family: var(--mono); font-size: 0.64rem; cursor: pointer; }
.directory-pagination > div button:hover { border-color: #102532; }
.directory-pagination > div button.is-active { background: #2d6b5e; color: #fff; }

.directory-buying-note { padding: clamp(94px, 9vw, 148px) 0; background: #102532; color: #fff; }
.directory-buying-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(62px, 8vw, 132px);
}
.directory-buying-note .directory-kicker { color: #8aaa57; }
.directory-buying-note h2 { max-width: 820px; margin: 0; font-size: clamp(3.2rem, 5vw, 5.6rem); }
.directory-buying-note-copy > div { margin-top: clamp(42px, 5vw, 70px); padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.directory-buying-note-copy > div p { max-width: 650px; margin: 0; color: rgba(255, 255, 255, 0.7); }
.directory-buying-note .button { background: #fff; color: #102532; }
.directory-buying-note-copy .button { margin-top: 34px; }
.directory-buying-note-visual { aspect-ratio: 1; margin: 0; overflow: hidden; background: #eef2ef; }
.directory-buying-note-visual img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .product-directory-page main { padding-top: 70px; }
  .directory-intro-grid,
  .directory-heading { grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); gap: 56px; }
  .directory-grid { grid-template-columns: repeat(4, 1fr); }
  .directory-product footer { min-height: 126px; padding-inline: 16px; }
  .directory-buying-note-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr); gap: 54px; }
}

@media (max-width: 820px) {
  .directory-intro {
    background-image:
      linear-gradient(180deg, rgba(8, 27, 39, 0.94) 0%, rgba(8, 27, 39, 0.82) 100%),
      url("/wp-content/themes/ymg-b2b-2026/site-assets/products/garden-lights/GGD003/scene-02.jpg");
    background-position: center, 62% center;
  }
  .directory-intro-grid,
  .directory-heading { grid-template-columns: 1fr; gap: 34px; }
  .directory-tabs { grid-template-columns: repeat(5, minmax(168px, 1fr)); }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-product:nth-child(n) { border-right: 1px solid rgba(16, 37, 50, 0.25); border-bottom: 1px solid rgba(16, 37, 50, 0.25); }
  .directory-product:nth-child(2n) { border-right: 0; }
  .directory-product:nth-child(n + 7) { border-bottom: 0; }
  .directory-product footer { min-height: 132px; }
  .directory-pagination { grid-template-columns: 140px 1fr 140px; }
  .directory-buying-note-grid { grid-template-columns: 1fr; gap: 54px; }
  .directory-buying-note-visual { width: min(100%, 680px); justify-self: center; }
}

@media (max-width: 520px) {
  .directory-intro { padding: 78px 0 70px; }
  .directory-intro h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .directory-heading h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-product:nth-child(n) { border-right: 0; border-bottom: 1px solid rgba(16, 37, 50, 0.25); }
  .directory-product:last-child { border-bottom: 0; }
  .directory-product a > div { aspect-ratio: 1.1 / 1; padding: 32px; }
  .directory-product footer { min-height: 122px; }
  .directory-pagination { min-height: 82px; grid-template-columns: 72px 1fr 72px; }
  .directory-pagination > button { font-size: 0; }
  .directory-pagination > button span { font-size: 1.1rem; }
  .directory-pagination > div { gap: 2px; }
  .directory-pagination > div button { width: 40px; height: 40px; }
  .directory-empty { min-height: 540px; padding: 28px; }
  .directory-buying-note { padding: 78px 0; }
  .directory-buying-note h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .directory-buying-note-copy > div { margin-top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .directory-grid,
  .directory-tabs button,
  .directory-product img,
  .directory-product footer { transition: none; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 32px, 1240px); }
  .section { padding: 66px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

/* Approved-asset policy: brochure crops never stand in for product photography. */
.brief-receipt-media.is-pending,
.range-index-media.is-pending {
  display: grid;
  place-items: center;
  background: #e5ece8;
  box-shadow: inset 0 0 0 1px rgba(23, 63, 67, 0.18), inset 0 12px 28px rgba(23, 63, 67, 0.07);
}
.brief-receipt-media img[hidden],
.range-index-media img[hidden] { display: none !important; }
.brief-receipt-media.is-pending::after,
.range-index-media.is-pending::after {
  color: #6e7c81;
  content: "PRODUCT IMAGE PENDING";
  font-family: var(--mono);
  font-size: 0.53rem;
  letter-spacing: 0.16em;
  text-align: center;
}
.pending-category-hero,
.real-category-hero { padding: 142px 0 86px; background: var(--paper); }
.pending-category-hero-grid,
.real-category-hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
.pending-category-copy h1,
.real-category-copy h1 { max-width: 740px; margin-bottom: 26px; font-size: clamp(3.6rem, 5.5vw, 6rem); }
.pending-category-copy .lede,
.real-category-copy .lede { max-width: 680px; }
.pending-category-actions { margin-top: 34px; display: flex; align-items: center; gap: 30px; }
.pending-product-media { min-height: 620px; margin: 0; padding: 44px; border: 1px solid rgba(23, 63, 67, 0.2); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: #e5ece8; box-shadow: inset 0 18px 54px rgba(23, 63, 67, 0.08); }
.pending-product-media::before { width: 56px; height: 1px; margin-bottom: auto; background: var(--blue); content: ""; }
.pending-product-media span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.15em; }
.pending-product-media strong { margin-top: 14px; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3rem); }
.pending-product-media small { max-width: 390px; margin-top: 12px; color: var(--muted); font-size: 0.78rem; line-height: 1.7; }

.buyer-input-section { background: #e6ede9; }
.buyer-input-ledger { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.buyer-input-ledger article { min-height: 250px; padding: 30px 26px 28px; border-right: 1px solid rgba(16, 37, 50, 0.24); border-bottom: 1px solid var(--ink); }
.buyer-input-ledger article:first-child { border-left: 1px solid rgba(16, 37, 50, 0.24); }
.buyer-input-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.buyer-input-ledger h3 { margin: 54px 0 14px; font-size: clamp(1.3rem, 1.8vw, 1.8rem); }
.buyer-input-ledger p { margin: 0; color: var(--muted); }

.buyer-support-section { background: var(--paper); }
.buyer-support-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr); gap: clamp(60px, 8vw, 120px); }
.buyer-support-grid h2 { max-width: 580px; }
.buyer-support-list { border-top: 1px solid var(--ink); }
.buyer-support-list > div { min-height: 104px; padding: 22px 0; border-bottom: 1px solid rgba(16, 37, 50, 0.25); display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 20px; }
.buyer-support-list span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; }
.buyer-support-list p { margin: 0; color: var(--muted); }
.buyer-support-list strong { margin-bottom: 5px; display: block; color: var(--ink); font-family: var(--display); font-size: 1.25rem; }

.category-quote-section { background: var(--blue-deep); color: #fff; }
.category-quote { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr); align-items: end; gap: 80px; }
.category-quote h2 { max-width: 760px; margin: 0; }
.category-quote .eyebrow { color: var(--amber-soft); }
.category-quote p { color: rgba(255, 255, 255, 0.72); }
.category-quote .button { background: #fff; color: var(--blue-deep); }

.real-category-media { min-height: 620px; margin: 0; position: relative; overflow: hidden; background: #dfe8e3; }
.real-category-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.real-category-media figcaption { min-height: 78px; padding: 18px 22px; position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(16, 37, 50, 0.86); color: #fff; }
.real-category-media figcaption span { color: var(--amber-soft); font-family: var(--mono); font-size: 0.54rem; }
.real-model-section { background: var(--paper); }
.real-model-ledger { border-top: 1px solid var(--ink); }
.real-model-row { min-height: 420px; padding: 34px 0; border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(48px, 8vw, 110px); }
.real-model-row:nth-child(even) figure { order: 2; }
.real-model-row figure { height: 350px; margin: 0; overflow: hidden; background: #e6ede9; }
.real-model-row figure img { width: 100%; height: 100%; object-fit: contain; }
.real-model-row:nth-child(2) figure img { object-fit: cover; }
.real-model-row div > span { color: var(--blue); font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.12em; }
.real-model-row h3 { margin: 18px 0 14px; font-size: clamp(2rem, 3.5vw, 3.6rem); }
.real-model-row p { max-width: 600px; color: var(--muted); }

@media (max-width: 980px) {
  .pending-category-hero-grid,
  .real-category-hero-grid,
  .buyer-support-grid,
  .category-quote { grid-template-columns: 1fr; }
  .pending-product-media,
  .real-category-media { min-height: 520px; }
  .buyer-input-ledger { grid-template-columns: 1fr 1fr; }
  .real-model-row { grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr); }
}

@media (max-width: 760px) {
  .pending-category-hero,
  .real-category-hero { padding: 105px 0 60px; }
  .pending-category-hero-grid,
  .real-category-hero-grid { gap: 42px; }
  .pending-category-copy h1,
  .real-category-copy h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .pending-category-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .pending-product-media,
  .real-category-media { min-height: 390px; }
  .pending-product-media { padding: 28px; }
  .buyer-input-ledger { grid-template-columns: 1fr; }
  .buyer-input-ledger article { min-height: 190px; border-left: 1px solid rgba(16, 37, 50, 0.24); }
  .buyer-input-ledger h3 { margin-top: 32px; }
  .category-quote { gap: 28px; }
  .real-model-row { padding: 26px 0 34px; grid-template-columns: 1fr; gap: 28px; }
  .real-model-row:nth-child(even) figure { order: 0; }
  .real-model-row figure { height: 300px; }
}

/* Editorial product catalog and product evidence system */
.editorial-catalog,
.editorial-pdp { background: #eef2ef; }

.editorial-catalog main,
.editorial-pdp main { padding-top: 76px; }

.catalog-kicker,
.catalog-section-intro > p,
.catalog-records-head > p,
.catalog-decisions-title > p,
.catalog-final-cta > div > p:first-child,
.pdp-kicker,
.pdp-config header > p,
.pdp-spec header > p,
.pdp-details header > p,
.pdp-application-copy > p,
.pdp-decisions header > p,
.pdp-enquiry-intro > p,
.pdp-related > div > p {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.catalog-hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 43fr) minmax(0, 57fr);
  background: var(--ink);
  color: #fff;
}

.catalog-hero-copy {
  padding: clamp(70px, 8vw, 132px) clamp(36px, 6.5vw, 112px) 44px max(24px, calc((100vw - 1360px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-kicker { margin: 0 0 26px; color: var(--amber); }
.catalog-hero h1 { max-width: 780px; margin: 0 0 30px; font-size: clamp(3.7rem, 5.6vw, 6rem); }
.catalog-lede { max-width: 720px; margin: 0; color: rgba(255, 255, 255, 0.74); font-size: clamp(1.05rem, 1.25vw, 1.28rem); }
.catalog-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.catalog-text-link { min-height: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.48); display: inline-flex; align-items: center; font-weight: 700; }
.catalog-proofline { margin: auto 0 0; border-top: 1px solid rgba(255, 255, 255, 0.24); display: grid; grid-template-columns: repeat(3, 1fr); }
.catalog-proofline div { min-height: 104px; padding: 22px 22px 0 0; border-right: 1px solid rgba(255, 255, 255, 0.2); }
.catalog-proofline div + div { padding-left: 22px; }
.catalog-proofline dt { color: #fff; font-weight: 800; }
.catalog-proofline dd { margin: 6px 0 0; color: rgba(255, 255, 255, 0.58); font-size: 0.82rem; line-height: 1.4; }

.catalog-hero-visual { min-height: 720px; margin: 0; position: relative; overflow: hidden; background: #0b1e2a; }
.catalog-hero-scene { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 58% center; filter: saturate(0.82) contrast(1.06); }
.catalog-hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 37, 50, 0.32), transparent 42%), linear-gradient(0deg, rgba(16, 37, 50, 0.42), transparent 45%); }
.catalog-hero-product { width: clamp(220px, 22vw, 420px); height: clamp(220px, 22vw, 420px); position: absolute; right: clamp(28px, 5vw, 86px); bottom: 96px; z-index: 2; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.32)); }
.catalog-hero-visual figcaption { min-height: 72px; padding: 18px 30px; position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(16, 37, 50, 0.88); }
.catalog-hero-visual figcaption span { color: var(--amber); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; }
.catalog-hero-visual figcaption strong { text-align: right; }

.catalog-family-nav {
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
  position: sticky;
  top: 76px;
  z-index: 40;
  border-bottom: 1px solid var(--ink);
  background: rgba(248, 250, 247, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.catalog-family-label { display: flex; align-items: center; color: var(--muted); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; }
.catalog-family-nav > div { display: flex; }
.catalog-family-nav button { min-width: 118px; min-height: 54px; padding: 0 18px; border: 0; border-left: 1px solid var(--line); background: transparent; font-weight: 800; cursor: pointer; }
.catalog-family-nav button:last-child { border-right: 1px solid var(--line); }
.catalog-family-nav button:hover,
.catalog-family-nav button.is-active { background: var(--ink); color: #fff; }

.catalog-finder,
.catalog-records,
.catalog-decisions,
.catalog-final-cta,
.pdp-config,
.pdp-spec,
.pdp-details,
.pdp-decisions,
.pdp-enquiry,
.pdp-related { padding-inline: max(24px, calc((100vw - 1360px) / 2)); }

.catalog-finder { padding-top: clamp(84px, 9vw, 150px); padding-bottom: clamp(90px, 10vw, 168px); }
.catalog-section-intro,
.catalog-records-head,
.pdp-spec > header,
.pdp-details > header { margin-bottom: clamp(44px, 6vw, 88px); display: grid; grid-template-columns: 0.9fr 1.25fr 0.85fr; align-items: end; gap: clamp(24px, 5vw, 76px); }
.catalog-section-intro > p,
.catalog-records-head > p,
.pdp-spec header > p,
.pdp-details header > p { margin: 0; align-self: start; }
.catalog-section-intro h2,
.catalog-records-head h2,
.pdp-spec header h2,
.pdp-details header h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.6rem); }
.catalog-section-intro > span,
.catalog-records-head > span,
.pdp-spec header > span { color: var(--muted); }

.catalog-stage { min-height: 720px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr); }
.catalog-stage-media { min-height: 720px; position: relative; overflow: hidden; background: #ccd9d3; }
.catalog-stage-scene { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(0.74); }
.catalog-product-sheet { width: min(46%, 390px); aspect-ratio: 1; position: absolute; right: 0; bottom: 0; z-index: 2; border: 1px solid var(--ink); background: #fff; }
.catalog-product-sheet img { width: 100%; height: calc(100% - 42px); object-fit: contain; transition: opacity 220ms var(--ease), transform 420ms var(--ease); }
.catalog-product-sheet span { height: 42px; padding: 0 14px; border-top: 1px solid var(--line); display: flex; align-items: center; color: var(--muted); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; }
.catalog-pending { position: absolute; inset: 0; z-index: 3; padding: 58px; background: #d8e3de; display: none; align-content: end; }
.catalog-pending::before { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(16, 37, 50, 0.32); }
.catalog-pending span { position: relative; color: var(--blue); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; }
.catalog-pending strong { max-width: 440px; position: relative; display: block; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.7rem); line-height: 0.98; }
.catalog-stage-media.is-pending .catalog-stage-scene,
.catalog-stage-media.is-pending .catalog-product-sheet { display: none; }
.catalog-stage-media.is-pending .catalog-pending { display: grid; }
.catalog-stage-copy { padding: clamp(46px, 6vw, 92px); background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.catalog-stage-status { margin-bottom: 28px; color: var(--blue); font-family: var(--mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.catalog-stage-copy h3 { margin: 0 0 28px; font-size: clamp(3rem, 5.6vw, 6rem); }
.catalog-stage-copy > p:not(.catalog-stage-status) { max-width: 520px; color: var(--muted); font-size: 1.15rem; }
.catalog-stage-copy dl { margin: 34px 0; border-top: 1px solid var(--line); }
.catalog-stage-copy dl div { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 130px 1fr; gap: 24px; }
.catalog-stage-copy dt { color: var(--muted); font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; }
.catalog-stage-copy dd { margin: 0; font-weight: 750; }
.catalog-stage-copy .button { align-self: flex-start; }

.catalog-records { padding-top: clamp(84px, 9vw, 150px); background: var(--paper); }
.catalog-model-row { min-height: 610px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: minmax(0, 62fr) minmax(360px, 38fr); }
.catalog-model-row:last-child { border-bottom: 1px solid var(--ink); }
.catalog-model-row.is-reversed { grid-template-columns: minmax(360px, 38fr) minmax(0, 62fr); }
.catalog-model-row.is-reversed .catalog-model-media { order: 2; }
.catalog-model-media { min-height: 610px; position: relative; overflow: hidden; background: #dce6e1; }
.catalog-model-scene { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(0.8); }
.catalog-model-product { width: 34%; aspect-ratio: 1; position: absolute; right: 0; bottom: 0; border: 1px solid var(--ink); background: #fff; object-fit: contain; }
.catalog-model-copy { padding: clamp(44px, 5vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.catalog-model-copy > p { color: var(--blue); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; }
.catalog-model-copy h3 { margin: 18px 0 28px; font-size: clamp(2.8rem, 4.8vw, 5.2rem); }
.catalog-model-copy > span { color: var(--muted); }
.catalog-model-copy a { min-height: 48px; margin-top: 48px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); display: flex; align-items: center; justify-content: space-between; font-weight: 800; }

.catalog-decisions { padding-top: clamp(100px, 10vw, 170px); padding-bottom: clamp(100px, 10vw, 170px); background: var(--paper); }
.catalog-decisions-title { margin-bottom: 54px; display: grid; grid-template-columns: 0.45fr 1fr; gap: 64px; }
.catalog-decisions-title h2 { max-width: 820px; margin: 0; }
.catalog-decision-ledger,
.pdp-decision-ledger { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); }
.catalog-decision-ledger article,
.pdp-decision-ledger article { min-height: 280px; padding: 28px 28px 28px 0; border-bottom: 1px solid var(--ink); }
.catalog-decision-ledger article + article,
.pdp-decision-ledger article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.catalog-decision-ledger span,
.pdp-decision-ledger span { color: var(--blue); font-family: var(--mono); font-size: 0.65rem; }
.catalog-decision-ledger h3,
.pdp-decision-ledger h3 { margin: 72px 0 14px; font-size: 1.55rem; }
.catalog-decision-ledger p,
.pdp-decision-ledger p { color: var(--muted); font-size: 0.95rem; }

.catalog-final-cta { padding-top: clamp(84px, 8vw, 130px); padding-bottom: clamp(84px, 8vw, 130px); background: var(--blue-deep); color: #fff; display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: end; gap: 80px; }
.catalog-final-cta h2 { max-width: 800px; margin: 0; }
.catalog-final-cta > div:last-child > p { color: rgba(255, 255, 255, 0.7); }
.catalog-final-cta .button { margin-top: 22px; background: #fff; color: var(--blue-deep); }

.pdp-hero { min-height: calc(100svh - 76px); display: grid; grid-template-columns: minmax(0, 56fr) minmax(390px, 44fr); background: var(--paper); }
.pdp-media-panel { min-height: 720px; position: relative; overflow: hidden; border-right: 1px solid var(--ink); background: #fff; touch-action: pan-y; user-select: none; }
.pdp-media-panel:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.pdp-media-panel > img { width: 100%; height: 100%; position: absolute; inset: 0; padding: clamp(44px, 6vw, 100px); object-fit: contain; transition: padding 380ms var(--ease), transform 500ms var(--ease), opacity 200ms var(--ease); }
.pdp-media-panel.is-scene > img { padding: 0; object-fit: cover; }
.pdp-media-label { position: absolute; top: 26px; left: 28px; z-index: 2; color: var(--muted); font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pdp-media-carousel { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.pdp-media-carousel[hidden] { display: none; }
.pdp-media-carousel button { width: 54px; height: 54px; border: 1px solid var(--line); position: absolute; top: calc(50% - 27px); background: rgba(248, 250, 247, 0.94); color: var(--ink); font-size: 1.2rem; cursor: pointer; pointer-events: auto; }
.pdp-media-carousel button:hover { background: var(--ink); color: #fff; }
.pdp-media-carousel button:first-child { left: 20px; }
.pdp-media-carousel button:last-child { right: 20px; }
.pdp-media-carousel span { position: absolute; top: 26px; right: 28px; color: var(--muted); font-family: var(--mono); font-size: 0.62rem; }
.pdp-media-tabs { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(248, 250, 247, 0.94); backdrop-filter: blur(14px); }
.pdp-media-tabs button { min-height: 62px; border: 0; border-top: 1px solid var(--ink); border-right: 1px solid var(--line); background: transparent; font-weight: 800; cursor: pointer; }
.pdp-media-tabs button:hover,
.pdp-media-tabs button.is-active { background: var(--ink); color: #fff; }
.pdp-summary { min-width: 0; padding: clamp(48px, 5vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.pdp-kicker { margin: 0 0 24px; }
.pdp-summary h1 { margin: 0; font-size: clamp(4.7rem, 8.5vw, 9rem); line-height: 0.82; }
.pdp-cpd .pdp-summary h1 { font-size: clamp(4.3rem, 6.4vw, 7rem); }
.pdp-summary h2 { max-width: 700px; margin: 36px 0 24px; font-size: clamp(2.2rem, 3.6vw, 4rem); line-height: 1.02; }
.pdp-lede { max-width: 660px; color: var(--muted); font-size: 1.12rem; }
.pdp-hero-ledger { margin: 36px 0; border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, 1fr); }
.pdp-hero-ledger div { padding: 18px 12px 18px 0; border-bottom: 1px solid var(--ink); }
.pdp-hero-ledger div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.pdp-hero-ledger dt { color: var(--muted); font-family: var(--mono); font-size: 0.58rem; text-transform: uppercase; }
.pdp-hero-ledger dd { margin: 7px 0 0; font-weight: 800; }
.pdp-summary .button { align-self: flex-start; }
.pdp-back-link { min-height: 44px; margin-top: 22px; display: inline-flex; align-items: center; color: var(--muted); font-size: 0.9rem; }

.pdp-config { padding-top: clamp(90px, 9vw, 150px); padding-bottom: clamp(80px, 8vw, 132px); background: var(--ink); color: #fff; }
.pdp-config > header { max-width: 1160px; margin-bottom: 62px; display: grid; grid-template-columns: 0.4fr 1fr 0.65fr; align-items: end; gap: 54px; }
.pdp-config > header p { margin: 0; color: var(--amber); align-self: start; }
.pdp-config > header h2 { margin: 0; }
.pdp-config > header span { color: rgba(255, 255, 255, 0.62); }
.pdp-config-grid { border-top: 1px solid rgba(255, 255, 255, 0.32); display: grid; grid-template-columns: repeat(3, 1fr); }
.pdp-config-grid-cpd { grid-template-columns: repeat(2, 1fr); }
.pdp-config-group { min-width: 0; margin: 0; padding: 26px 30px 32px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.32); }
.pdp-config-group + .pdp-config-group { padding-left: 30px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.pdp-config-group legend { margin-bottom: 24px; color: rgba(255, 255, 255, 0.6); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-config-group > div { display: flex; }
.pdp-config-group button { min-width: 112px; min-height: 52px; padding: 10px 18px; border: 1px solid rgba(255, 255, 255, 0.32); background: transparent; color: #fff; cursor: pointer; }
.pdp-config-group button + button { border-left: 0; }
.pdp-config-group button:hover,
.pdp-config-group button.is-active { background: var(--amber); color: var(--ink); }
.pdp-config-summary { min-height: 94px; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.32); display: grid; grid-template-columns: 0.4fr 1fr auto; align-items: center; gap: 30px; }
.pdp-config-summary span { color: rgba(255, 255, 255, 0.6); font-family: var(--mono); font-size: 0.62rem; text-transform: uppercase; }
.pdp-config-summary strong { font-size: clamp(1.25rem, 2vw, 1.8rem); }
.pdp-config-summary a { min-height: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.45); display: flex; align-items: center; font-weight: 800; }
.pdp-height-register { padding: 48px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.32); display: grid; grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr); gap: 70px; align-items: end; }
.pdp-height-intro > span { color: var(--amber); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pdp-height-intro strong { margin: 12px 0; display: block; font-family: var(--display); font-size: 3rem; }
.pdp-height-intro p { margin: 0; color: rgba(255, 255, 255, 0.62); }
.pdp-height-scale { min-height: 210px; border-bottom: 1px solid rgba(255, 255, 255, 0.34); display: grid; grid-template-columns: repeat(4, 1fr); align-items: end; }
.pdp-height-scale button { min-height: var(--height-bar, 120px); padding: 16px 8px; border: 0; border-left: 1px solid rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; cursor: pointer; }
.pdp-height-scale button:nth-child(1) { --height-bar: 82px; }
.pdp-height-scale button:nth-child(2) { --height-bar: 122px; }
.pdp-height-scale button:nth-child(3) { --height-bar: 162px; }
.pdp-height-scale button:nth-child(4) { --height-bar: 202px; }
.pdp-height-scale button.is-active { background: var(--amber); color: var(--ink); }
.pdp-height-scale span { font-weight: 800; }
.pdp-height-scale small { margin-top: 3px; font-family: var(--mono); font-size: 0.56rem; }

.pdp-spec { padding-top: clamp(100px, 10vw, 170px); padding-bottom: clamp(100px, 10vw, 170px); background: var(--paper); }
.pdp-spec-ledger { margin: 0 0 0 33%; border-top: 1px solid var(--ink); }
.pdp-spec-ledger div { min-height: 78px; padding: 20px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 0.75fr 1.25fr; align-items: center; gap: 36px; }
.pdp-spec-ledger dt { color: var(--muted); }
.pdp-spec-ledger dd { margin: 0; font-size: 1.08rem; font-weight: 800; }

.pdp-details { padding-top: clamp(90px, 9vw, 150px); padding-bottom: clamp(90px, 9vw, 150px); background: #dfe8e3; }
.pdp-detail-mosaic { min-height: 780px; display: grid; grid-template-columns: 1.35fr 0.65fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.pdp-detail-mosaic figure { margin: 0; position: relative; overflow: hidden; background: #fff; }
.pdp-detail-mosaic .pdp-detail-large { grid-row: 1 / 3; }
.pdp-detail-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.pdp-detail-mosaic figcaption { padding: 16px 20px; position: absolute; right: 0; bottom: 0; left: 0; background: rgba(16, 37, 50, 0.86); color: #fff; font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.08em; }

.pdp-application { min-height: 760px; display: grid; grid-template-columns: minmax(0, 64fr) minmax(390px, 36fr); background: var(--ink); color: #fff; }
.pdp-application figure { min-height: 760px; margin: 0; overflow: hidden; }
.pdp-application figure img { width: 100%; height: 100%; object-fit: cover; }
.pdp-application-copy { padding: clamp(52px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.pdp-application-copy > p { color: var(--amber); }
.pdp-application-copy h2 { margin: 20px 0 28px; font-size: clamp(2.8rem, 4.5vw, 5rem); }
.pdp-application-copy > span { color: rgba(255, 255, 255, 0.66); }
.pdp-application-copy dl { margin-top: 42px; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.pdp-application-copy dl div { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.28); display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 24px; }
.pdp-application-copy dt { color: var(--amber-soft); font-family: var(--mono); font-size: 0.6rem; text-transform: uppercase; }
.pdp-application-copy dd { margin: 0; }

.pdp-decisions { padding-top: clamp(100px, 10vw, 170px); padding-bottom: clamp(100px, 10vw, 170px); background: var(--paper); }
.pdp-decisions > header { margin-bottom: 54px; display: grid; grid-template-columns: 0.45fr 1fr; gap: 64px; }
.pdp-decisions header h2 { max-width: 860px; margin: 0; }
.pdp-enquiry { padding-top: clamp(90px, 9vw, 150px); padding-bottom: clamp(90px, 9vw, 150px); background: #dfe8e3; display: grid; grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr); gap: clamp(54px, 9vw, 140px); }
.pdp-enquiry-intro h2 { margin: 22px 0 28px; }
.pdp-enquiry-intro > span { max-width: 520px; margin-bottom: 40px; display: block; color: var(--muted); }
.pdp-enquiry-intro > strong { line-height: 1.8; }
.pdp-enquiry form { align-self: center; }
.pdp-enquiry .field input,
.pdp-enquiry .field select,
.pdp-enquiry .field textarea { background: rgba(248, 250, 247, 0.7); }
.pdp-related { min-height: 330px; padding-top: 70px; padding-bottom: 70px; background: var(--blue-deep); color: #fff; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.pdp-related h2 { margin: 16px 0; }
.pdp-related > div > span { color: rgba(255, 255, 255, 0.68); }
.pdp-related > a { min-height: 54px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.6); display: flex; align-items: center; font-weight: 800; }

@media (max-width: 1100px) {
  .catalog-hero { grid-template-columns: 1fr 1fr; }
  .catalog-hero-copy { padding-right: 42px; }
  .catalog-proofline { grid-template-columns: 1fr; margin-top: 52px; }
  .catalog-proofline div { min-height: auto; padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
  .catalog-proofline div + div { padding-left: 0; }
  .catalog-family-nav button { min-width: 96px; }
  .catalog-stage,
  .catalog-model-row { grid-template-columns: 1.15fr 0.85fr; }
  .catalog-model-row.is-reversed { grid-template-columns: 0.85fr 1.15fr; }
  .catalog-section-intro,
  .catalog-records-head,
  .pdp-spec > header,
  .pdp-details > header { grid-template-columns: 0.4fr 1fr; }
  .catalog-section-intro > span,
  .catalog-records-head > span,
  .pdp-spec header > span { grid-column: 2; }
  .pdp-hero { grid-template-columns: 1.05fr 0.95fr; }
  .pdp-summary { padding: 58px; }
  .pdp-config > header { grid-template-columns: 0.35fr 1fr; }
  .pdp-config > header > span { grid-column: 2; }
  .pdp-detail-mosaic { min-height: 640px; }
}

@media (max-width: 820px) {
  .catalog-hero,
  .pdp-hero,
  .pdp-application { grid-template-columns: 1fr; }
  .catalog-hero-copy { min-height: 680px; padding: 76px 24px 46px; }
  .catalog-hero-visual { min-height: 620px; }
  .catalog-family-nav { top: 70px; min-height: auto; padding: 0; overflow-x: auto; }
  .catalog-family-label { display: none; }
  .catalog-family-nav > div { min-width: 100%; }
  .catalog-family-nav button { min-width: 0; padding-inline: 8px; flex: 1 1 20%; font-size: 0.82rem; }
  .catalog-stage,
  .catalog-model-row,
  .catalog-model-row.is-reversed { grid-template-columns: 1fr; }
  .catalog-stage-media { min-height: 580px; }
  .catalog-model-row.is-reversed .catalog-model-media { order: 0; }
  .catalog-model-media { min-height: 520px; }
  .catalog-decision-ledger,
  .pdp-decision-ledger { grid-template-columns: 1fr 1fr; }
  .catalog-decision-ledger article:nth-child(3),
  .pdp-decision-ledger article:nth-child(3) { border-left: 0; }
  .catalog-final-cta { grid-template-columns: 1fr; gap: 36px; }
  .pdp-media-panel { min-height: 650px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .pdp-summary { min-height: 650px; }
  .pdp-config > header,
  .pdp-height-register { grid-template-columns: 1fr; gap: 30px; }
  .pdp-config > header > span { grid-column: auto; }
  .pdp-config-summary { grid-template-columns: 0.35fr 1fr; }
  .pdp-config-summary a { grid-column: 2; justify-self: start; }
  .pdp-spec-ledger { margin-left: 0; }
  .pdp-application figure { min-height: 620px; }
  .pdp-enquiry { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .editorial-catalog main,
  .editorial-pdp main { padding-top: 70px; }
  .catalog-hero-copy { min-height: 660px; }
  .catalog-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .catalog-actions { align-items: flex-start; flex-direction: column; }
  .catalog-hero-visual { min-height: 520px; }
  .catalog-hero-product { width: 230px; height: 230px; right: 12px; bottom: 86px; }
  .catalog-hero-visual figcaption { align-items: flex-start; flex-direction: column; }
  .catalog-hero-visual figcaption strong { text-align: left; }
  .catalog-section-intro,
  .catalog-records-head,
  .pdp-spec > header,
  .pdp-details > header { grid-template-columns: 1fr; gap: 22px; }
  .catalog-section-intro > span,
  .catalog-records-head > span,
  .pdp-spec header > span { grid-column: auto; }
  .catalog-stage-media { min-height: 480px; }
  .catalog-product-sheet { width: 54%; }
  .catalog-stage-copy { padding: 44px 24px; }
  .catalog-stage-copy h3 { font-size: 3.2rem; }
  .catalog-stage-copy dl div { grid-template-columns: 1fr; gap: 5px; }
  .catalog-model-media { min-height: 420px; }
  .catalog-model-product { width: 43%; }
  .catalog-model-copy { padding: 42px 24px; }
  .catalog-decisions-title,
  .pdp-decisions > header { grid-template-columns: 1fr; gap: 24px; }
  .catalog-decision-ledger,
  .pdp-decision-ledger { grid-template-columns: 1fr; }
  .catalog-decision-ledger article + article,
  .pdp-decision-ledger article + article { padding-left: 0; border-left: 0; }
  .catalog-decision-ledger h3,
  .pdp-decision-ledger h3 { margin-top: 38px; }
  .catalog-final-cta { padding-inline: 24px; }
  .pdp-media-panel { min-height: 500px; }
  .pdp-media-panel > img { padding: 32px; }
  .pdp-media-tabs { overflow-x: auto; }
  .pdp-media-tabs button { min-width: 0; padding-inline: 4px; font-size: 0.82rem; }
  .pdp-summary { min-height: auto; padding: 64px 24px; }
  .pdp-summary h1 { font-size: clamp(4.5rem, 21vw, 6.5rem); }
  .pdp-summary h2 { font-size: 2.35rem; }
  .pdp-hero-ledger { grid-template-columns: 1fr; }
  .pdp-hero-ledger div + div { padding-left: 0; border-left: 0; }
  .pdp-config,
  .pdp-spec,
  .pdp-details,
  .pdp-decisions,
  .pdp-enquiry,
  .pdp-related { padding-inline: 24px; }
  .pdp-config-grid,
  .pdp-config-grid-cpd { grid-template-columns: 1fr; }
  .pdp-config-group + .pdp-config-group { padding-left: 0; border-left: 0; }
  .pdp-config-summary { grid-template-columns: 1fr; gap: 10px; }
  .pdp-config-summary a { grid-column: auto; }
  .pdp-height-scale { min-height: 180px; }
  .pdp-spec-ledger div { grid-template-columns: 1fr; gap: 7px; }
  .pdp-detail-mosaic { min-height: 980px; grid-template-columns: 1fr; grid-template-rows: 1.2fr 0.8fr 0.8fr; }
  .pdp-detail-mosaic .pdp-detail-large { grid-row: auto; }
  .pdp-application figure { min-height: 480px; }
  .pdp-application-copy { padding: 64px 24px; }
  .pdp-application-copy dl div { grid-template-columns: 1fr; gap: 6px; }
  .pdp-related { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .pdp-related > a { justify-self: start; }
}

/* Keep directory titles aligned after the shared kicker rule above. */
.directory-intro h1,
.directory-heading h2,
.directory-buying-note h2 {
  margin-top: 0;
}

