:root {
  color-scheme: light;
  --bg: #f3f3ef;
  --surface: #fafaf7;
  --surface-2: #e7e7e1;
  --ink: #181a1c;
  --muted: #61666a;
  --line: #c8c9c4;
  --accent: #e96524;
  --accent-ink: #23160f;
  --header: rgb(243 243 239 / 0.92);
  --shadow: 0 18px 55px rgb(43 45 48 / 0.12);
  --radius: 14px;
  --shell: min(1380px, calc(100vw - 64px));
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #151719;
  --surface: #1c1f21;
  --surface-2: #25292b;
  --ink: #f0f1ed;
  --muted: #adb1b2;
  --line: #3b3f41;
  --accent: #f27634;
  --accent-ink: #1d120d;
  --header: rgb(21 23 25 / 0.92);
  --shadow: 0 22px 70px rgb(0 0 0 / 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 72px;
  border-bottom: 1px solid transparent;
  background: var(--header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  height: 100%;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--bg);
  font: 700 12px/1 var(--font-mono);
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  white-space: nowrap;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

.theme-toggle {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.theme-icon {
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 6px -1px 0 var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.button-dark {
  background: var(--ink);
  color: var(--bg);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: color-mix(in srgb, var(--accent) 88%, white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--accent);
  font-size: 20px;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.hero {
  min-height: calc(100dvh - 72px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: calc(100dvh - 72px);
  grid-template-columns: minmax(340px, 0.86fr) minmax(540px, 1.42fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 32px;
  padding-block: 34px 20px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font: 700 11px/1.2 var(--font-mono);
  letter-spacing: 0.14em;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6.3vw, 94px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 505px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

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

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d7d8d6;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.4);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 50px minmax(0, 430px);
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.note-index {
  color: var(--accent);
  font: 700 11px/1.5 var(--font-mono);
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.interface-bar {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.interface-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 94px;
}

.interface-grid > p,
.interface-grid > a {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.interface-grid > a {
  color: var(--ink);
}

.interface-list {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 62px);
}

.interface-list span {
  color: var(--ink);
  font: 700 clamp(16px, 1.5vw, 21px)/1 var(--font-mono);
  letter-spacing: -0.03em;
}

.section {
  padding-block: clamp(86px, 10vw, 150px);
}

.section-heading {
  max-width: 750px;
  margin-bottom: 52px;
}

.section-heading h2,
.selection-intro h2,
.applications-copy h2,
.resource-heading h2,
.company-statement h2,
.quote-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 620;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.section-heading p,
.selection-intro > p,
.applications-copy > p,
.resource-heading > p,
.company-copy p,
.quote-copy > p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-featured {
  grid-column: span 7;
}

.product-card-wide {
  grid-column: span 7;
}

.product-card-accessories {
  grid-column: span 5;
  background: var(--ink);
  color: var(--bg);
}

.product-card > a {
  display: grid;
  height: 100%;
  min-height: 560px;
  grid-template-rows: 1fr auto auto;
}

.product-card:not(.product-card-featured):not(.product-card-wide) > a {
  min-height: 520px;
}

.product-image {
  min-height: 350px;
  overflow: hidden;
  background: #eef0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 18px;
}

.product-copy p,
.company-statement > p {
  margin-bottom: 8px;
  color: var(--accent);
  font: 700 10px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
}

.product-copy h3 {
  margin-bottom: 0;
  font-size: clamp(23px, 2.3vw, 35px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.product-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0 26px 26px;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font: 650 10px/1 var(--font-mono);
  text-transform: uppercase;
}

.product-card-accessories .product-copy p,
.product-card-accessories .tag-list li {
  color: var(--accent);
}

.product-card-accessories .product-arrow,
.product-card-accessories .tag-list li {
  border-color: rgb(255 255 255 / 0.22);
}

.product-image-dark {
  background: #2b2e30;
}

.selection {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.selection-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(70px, 9vw, 150px);
}

.selection-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.selection-intro > p {
  margin-bottom: 30px;
}

.selection-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.selection-steps article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.selection-steps article:nth-child(2),
.selection-steps article:nth-child(3) {
  background: var(--surface-2);
}

.selection-steps span,
.resource-meta,
.resource-list > a > span,
.quote-details span {
  color: var(--accent);
  font: 700 10px/1.2 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selection-steps h3 {
  margin: 58px 0 12px;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.selection-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.applications-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(540px, 1.25fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

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

.application-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease;
}

.application-list a:hover,
.application-list a:focus-visible {
  padding-inline: 12px;
  color: var(--accent);
}

.application-list span {
  font-size: 18px;
  font-weight: 620;
}

.application-list strong {
  color: var(--muted);
  font: 650 11px/1.3 var(--font-mono);
  text-align: right;
  text-transform: uppercase;
}

.resources {
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.resource-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.15fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.resource-heading {
  padding-right: 28px;
}

.resource-heading h2 {
  font-size: clamp(34px, 3.7vw, 54px);
}

.resource-feature {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  transition: transform 180ms ease;
}

.resource-feature:hover,
.resource-feature:focus-visible {
  transform: translateY(-4px);
}

.resource-meta {
  display: flex;
  justify-content: space-between;
}

.resource-feature h3 {
  max-width: 590px;
  margin: auto 0 22px;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.resource-feature p {
  max-width: 520px;
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  font-size: 14px;
}

.resource-link {
  margin-top: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-list > a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 180ms ease, transform 180ms ease;
}

.resource-list > a:hover,
.resource-list > a:focus-visible {
  transform: translateX(4px);
  border-color: var(--accent);
}

.resource-list h3 {
  margin: 20px 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.resource-list small {
  color: var(--muted);
  font-size: 12px;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(440px, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(80px, 12vw, 200px);
}

.company-statement h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.company-copy {
  align-self: end;
}

.company-copy p + p {
  margin-top: 24px;
}

.quote-section {
  padding-block: clamp(86px, 9vw, 130px);
  background: var(--ink);
  color: var(--bg);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: start;
}

.quote-copy h2 {
  margin-bottom: 28px;
}

.quote-copy > p {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
}

.quote-details {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.quote-details div {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.quote-details strong {
  font-size: 13px;
  font-weight: 620;
}

.quote-form {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ink) 90%, white);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: color-mix(in srgb, var(--bg) 78%, transparent);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 9px;
  outline: 0;
  background: #242729;
  color: #f3f3ef;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 50px;
  padding-inline: 14px;
}

.field textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}

.field [aria-invalid="true"] {
  border-color: #ff8d7c;
}

.field-error {
  min-height: 15px;
  color: #ffb0a4;
  font-size: 11px;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.submit-loading {
  display: none;
}

.quote-form.is-loading .submit-label {
  display: none;
}

.quote-form.is-loading .submit-loading {
  display: inline;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: color-mix(in srgb, var(--bg) 78%, transparent);
  font-size: 12px;
}

.form-status.is-success {
  color: #9fe4b1;
}

.site-footer {
  padding-block: 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, 430px);
  gap: 40px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #151719;
    --surface: #1c1f21;
    --surface-2: #25292b;
    --ink: #f0f1ed;
    --muted: #adb1b2;
    --line: #3b3f41;
    --accent: #f27634;
    --accent-ink: #1d120d;
    --header: rgb(21 23 25 / 0.92);
    --shadow: 0 22px 70px rgb(0 0 0 / 0.34);
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1040px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a:nth-child(4),
  .site-nav a:nth-child(5) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(300px, 0.86fr) minmax(430px, 1.14fr);
  }

  .resource-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .resource-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .resource-list > a {
    min-height: 210px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .site-header {
    height: 66px;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .brand-copy small,
  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    grid-column: 3;
    grid-row: 1;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    background: var(--bg);
    transition: max-height 220ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100dvh - 66px);
    border-bottom: 1px solid var(--line);
  }

  .site-nav a,
  .site-nav a:nth-child(4),
  .site-nav a:nth-child(5) {
    display: block;
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 17px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
    padding-block: 58px 20px;
  }

  h1 {
    max-width: 650px;
    font-size: clamp(47px, 12vw, 74px);
  }

  .hero-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .hero-note {
    grid-column: auto;
  }

  .interface-grid {
    grid-template-columns: 1fr auto;
  }

  .interface-list {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    padding-bottom: 22px;
  }

  .interface-grid > p,
  .interface-grid > a {
    padding-top: 20px;
  }

  .product-card,
  .product-card-featured,
  .product-card-wide,
  .product-card-accessories {
    grid-column: 1 / -1;
  }

  .selection-grid,
  .applications-grid,
  .company-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .selection-intro {
    position: static;
  }

  .resource-layout {
    grid-template-columns: 1fr;
  }

  .resource-list {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .resource-list > a {
    min-height: 190px;
  }

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

  .footer-grid > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section {
    padding-block: 78px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .hero-grid {
    gap: 20px;
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
    margin-bottom: 18px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero-intro {
    margin-bottom: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .interface-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .product-card > a,
  .product-card:not(.product-card-featured):not(.product-card-wide) > a {
    min-height: 480px;
  }

  .product-image {
    min-height: 300px;
  }

  .product-copy {
    padding: 20px 20px 16px;
  }

  .tag-list {
    padding: 0 20px 22px;
  }

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

  .selection-steps article {
    min-height: 220px;
  }

  .application-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 106px;
    padding-block: 18px;
  }

  .application-list strong {
    text-align: left;
  }

  .resource-feature {
    min-height: 480px;
    padding: 26px;
  }

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

  .quote-form {
    padding: 22px;
  }

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

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

/* Unified graphite multi-page theme */
:root {
  color-scheme: dark;
  --bg: #15191b;
  --surface: #1b2022;
  --surface-2: #22282a;
  --surface-3: #2a3032;
  --ink: #f0f2ef;
  --muted: #a5adae;
  --line: #353c3e;
  --accent: #ed7138;
  --accent-ink: #1a100b;
  --header: rgb(21 25 27 / 0.92);
  --shadow: 0 24px 70px rgb(5 8 9 / 0.34);
}

html {
  background: var(--bg);
}

body,
.products,
.applications,
.company,
.site-footer {
  background: var(--bg);
  color: var(--ink);
}

.header-sentinel {
  position: absolute;
  top: 30px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header .nav-shell {
  border-color: rgb(255 255 255 / 0.15);
  background: rgb(21 25 27 / 0.9);
  color: var(--ink);
  box-shadow: 0 12px 38px rgb(5 8 9 / 0.28);
}

.site-header.is-scrolled .nav-shell {
  border-bottom-color: var(--line);
  background: rgb(21 25 27 / 0.96);
  box-shadow: 0 10px 32px rgb(5 8 9 / 0.24);
}

.site-header .brand-mark {
  background: var(--surface-3);
  color: var(--ink);
}

.site-header .brand-copy small,
.site-header .site-nav a {
  color: var(--muted);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header .site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.site-header .button-dark {
  background: var(--accent);
  color: var(--accent-ink);
}

.site-header .button-dark:hover,
.site-header .button-dark:focus-visible {
  background: #f08a59;
  color: var(--accent-ink);
}

.interface-bar {
  background: #121618;
}

.section-heading-centered p:last-child,
.section-heading p,
.selection-intro > p,
.applications-copy > p,
.resource-heading > p,
.company-copy p,
.quote-copy > p {
  color: var(--muted);
}

.product-image {
  border-color: #394043;
}

.product-copy h3,
.product-arrow {
  color: var(--ink);
}

.product-arrow {
  border-color: #495154;
}

.selection,
.resources {
  border-color: var(--line);
  background: var(--surface);
}

.selection-steps article,
.selection-steps article:nth-child(2),
.selection-steps article:nth-child(3) {
  border-color: var(--line);
  background: var(--surface-2);
}

.selection-steps article:nth-child(2),
.selection-steps article:nth-child(3) {
  background: var(--surface-3);
}

.selection-steps p,
.application-list strong,
.resource-list small {
  color: var(--muted);
}

.application-list,
.application-list a {
  border-color: var(--line);
}

.resource-feature {
  background: #121618;
  color: var(--ink);
}

.resource-feature p {
  color: var(--muted);
}

.resource-list > a {
  border-color: var(--line);
  background: var(--surface-2);
}

.quote-section {
  background: #101416;
  color: var(--ink);
}

.quote-copy > p {
  color: var(--muted);
}

.quote-form {
  border-color: var(--line);
  background: var(--surface);
}

.field label {
  color: #d0d5d4;
}

.field input,
.field select,
.field textarea {
  border-color: #4a5254;
  background: #111517;
  color: var(--ink);
}

.form-status {
  color: var(--muted);
}

.site-footer {
  border-color: var(--line);
}

.site-footer .brand-mark {
  background: var(--surface-3);
  color: var(--ink);
}

.footer-links a,
.footer-grid > p,
.site-footer .brand-copy small {
  color: var(--muted);
}

/* Inner pages */
.inner-page {
  min-height: 100%;
  background: var(--bg);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(700px, 78dvh);
  overflow: hidden;
  background: #171c1e;
}

.page-hero-media,
.page-hero-shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.78) brightness(0.8);
}

.page-hero-products .page-hero-media img {
  object-position: 76% 48%;
}

.page-hero-company .page-hero-media img {
  object-position: 58% center;
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgb(8 12 13 / 0.94) 0%, rgb(8 12 13 / 0.78) 42%, rgb(8 12 13 / 0.24) 74%, rgb(8 12 13 / 0.44) 100%),
    linear-gradient(0deg, rgb(8 12 13 / 0.54), transparent 55%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding-block: 170px 72px;
}

.page-hero-content .eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
}

.page-hero-content h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.2vw, 88px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.page-hero-content > p:last-child {
  max-width: 610px;
  margin: 0;
  color: #c7cecd;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.inner-section {
  padding-block: clamp(82px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.inner-section-tint {
  background: var(--surface);
}

.family-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: start;
}

.family-row-reverse {
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
}

.family-row-reverse .family-copy {
  grid-column: 2;
  grid-row: 1;
}

.family-row-reverse .family-products {
  grid-column: 1;
  grid-row: 1;
}

.family-copy {
  position: sticky;
  top: 116px;
}

.family-copy > span,
.application-case .media-copy-grid > div > span,
.resource-hero-card > span,
.resource-index-list article > span,
.contact-evidence span {
  color: var(--accent);
  font: 700 10px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.family-copy h2,
.media-copy-grid h2,
.guide-intro h2,
.input-board h2,
.topic-board h2,
.company-story h2,
.focus-statement h2,
.page-cta h2 {
  margin: 14px 0 20px;
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 610;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.family-copy p,
.media-copy-grid p,
.guide-intro p,
.input-board > div:first-child p,
.topic-board > div:first-child p,
.company-story p,
.focus-statement p,
.page-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.family-copy .text-link {
  margin-top: 10px;
}

.family-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.family-products-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.family-products article {
  min-width: 0;
}

.family-products img,
.family-feature-image img,
.media-copy-grid figure img,
.capability-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid #3b4244;
  background: #e8eae8;
  object-fit: cover;
}

.family-products article:nth-child(2) img,
.family-products article:nth-child(3) img {
  padding: 18px;
  background: #f2f3f2;
  object-fit: contain;
}

.family-products h3 {
  margin: 18px 0 8px;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.025em;
}

.family-products p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.family-feature-image {
  max-width: 680px;
  justify-self: end;
}

.media-copy-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(58px, 9vw, 140px);
  align-items: center;
}

.media-copy-grid-reverse figure {
  grid-column: 2;
}

.media-copy-grid-reverse > div {
  grid-column: 1;
  grid-row: 1;
}

.media-copy-grid figure {
  margin: 0;
}

.media-copy-grid > div {
  max-width: 560px;
}

.media-copy-grid .button {
  margin-top: 16px;
}

.page-cta {
  padding-block: clamp(76px, 8vw, 112px);
  background: #101416;
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: end;
}

.page-cta h2 {
  max-width: 790px;
  margin: 0;
}

.page-cta p {
  margin-bottom: 24px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(64px, 9vw, 138px);
}

.guide-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.guide-intro .button {
  margin-top: 18px;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.guide-steps article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.guide-steps article:nth-child(2),
.guide-steps article:nth-child(3) {
  background: var(--surface-2);
}

.guide-steps > article > span {
  color: var(--accent);
  font: 700 10px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.guide-steps h3 {
  margin: 52px 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.guide-steps p {
  color: var(--muted);
  font-size: 14px;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.guide-tags b {
  padding: 7px 9px;
  border: 1px solid #465052;
  color: #c7cecd;
  font: 650 9px/1 var(--font-mono);
}

.input-board,
.topic-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(500px, 1.32fr);
  gap: clamp(60px, 9vw, 150px);
}

.input-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.input-groups article {
  min-height: 260px;
  padding: 26px;
  border-top: 2px solid var(--accent);
  background: var(--surface-2);
}

.input-groups h3 {
  margin-bottom: 60px;
  font-size: 21px;
}

.input-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.application-case .media-copy-grid > div > span {
  display: inline-block;
  margin-bottom: 12px;
}

.resource-index {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(340px, 0.85fr);
  gap: 16px;
}

.resource-hero-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  padding: clamp(30px, 4vw, 58px);
  background: #101416;
}

.resource-hero-card h2 {
  max-width: 790px;
  margin: auto 0 22px;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 1;
}

.resource-hero-card p {
  max-width: 620px;
  color: var(--muted);
}

.resource-index-list {
  display: grid;
  gap: 12px;
}

.resource-index-list article {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.resource-index-list h3 {
  margin: 14px 0 6px;
  font-size: 21px;
}

.resource-index-list p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.resource-index-list a {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

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

.topic-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  transition: transform 180ms ease, border-color 180ms ease;
}

.topic-grid a:hover,
.topic-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.topic-grid strong {
  color: var(--accent);
  font: 700 10px/1.2 var(--font-mono);
  text-transform: uppercase;
}

.topic-grid span {
  font-size: 19px;
  font-weight: 650;
}

.company-story {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(70px, 11vw, 180px);
}

.company-story h2 {
  margin-top: 0;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

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

.capability-list h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.capability-list p,
.focus-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.focus-statement h2 {
  max-width: 760px;
}

.focus-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.focus-columns p {
  min-height: 160px;
  padding: 22px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
}

.contact-layout {
  min-height: 100dvh;
  padding-block: 152px 86px;
  background:
    linear-gradient(110deg, rgb(15 19 21 / 0.98), rgb(21 25 27 / 0.88)),
    url("assets/hero-tooling.jpg") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.contact-copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(46px, 4.8vw, 68px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #c4cbca;
  font-size: 17px;
}

.contact-evidence {
  display: grid;
  gap: 16px;
  margin-top: 46px;
}

.contact-evidence article {
  display: grid;
  gap: 7px;
  padding-top: 15px;
  border-top: 1px solid #3b4345;
}

.contact-evidence strong {
  font-size: 13px;
}

.contact-page .quote-form {
  box-shadow: var(--shadow);
}

.contact-media {
  padding-block: 28px;
  background: var(--surface);
}

.contact-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-media-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .family-row,
  .family-row-reverse {
    grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
    gap: 44px;
  }

  .family-row-reverse {
    grid-template-columns: minmax(0, 1.42fr) minmax(220px, 0.58fr);
  }

  .family-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-products article:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
  }

  .family-products-two article:last-child {
    grid-column: auto;
    max-width: none;
  }

  .input-board,
  .topic-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    border-color: rgb(255 255 255 / 0.14);
    background: rgb(21 25 27 / 0.96);
  }

  .site-header .menu-toggle {
    border-color: #465052;
    color: var(--ink);
  }

  .site-header .site-nav {
    background: var(--surface);
  }

  .site-header .site-nav a,
  .site-header .site-nav a:nth-child(4),
  .site-header .site-nav a:nth-child(5) {
    border-color: var(--line);
    color: var(--ink);
  }

  .site-header .site-nav a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--accent);
  }

  .page-hero {
    min-height: 72dvh;
  }

  .page-hero-content {
    padding-block: 138px 50px;
  }

  .page-hero-content h1 {
    font-size: clamp(48px, 10.5vw, 72px);
  }

  .family-row,
  .family-row-reverse,
  .media-copy-grid,
  .guide-layout,
  .resource-index,
  .company-story,
  .capability-layout,
  .contact-grid,
  .page-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .family-row-reverse .family-copy,
  .family-row-reverse .family-products,
  .media-copy-grid-reverse figure,
  .media-copy-grid-reverse > div {
    grid-column: auto;
    grid-row: auto;
  }

  .family-copy,
  .guide-intro {
    position: static;
  }

  .family-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-products article:last-child {
    grid-column: auto;
    max-width: none;
  }

  .family-feature-image {
    justify-self: stretch;
  }

  .guide-steps,
  .capability-list,
  .focus-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-columns p:last-child {
    grid-column: 1 / -1;
  }

  .contact-layout {
    padding-top: 132px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    min-height: 76dvh;
  }

  .page-hero-media img {
    object-position: 70% center;
  }

  .page-hero-shade {
    background: linear-gradient(90deg, rgb(8 12 13 / 0.94), rgb(8 12 13 / 0.58));
  }

  .page-hero-content h1,
  .contact-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .family-products,
  .family-products-two,
  .guide-steps,
  .input-groups,
  .topic-grid,
  .capability-list,
  .focus-columns,
  .contact-media-grid {
    grid-template-columns: 1fr;
  }

  .focus-columns p:last-child {
    grid-column: auto;
  }

  .family-products article:last-child {
    grid-column: auto;
  }

  .resource-hero-card {
    min-height: 500px;
    padding: 28px;
  }

  .resource-hero-card h2 {
    font-size: 40px;
  }

  .contact-layout {
    padding-block: 118px 68px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final compact contact dock override. */
.contact-rail {
  top: auto;
  right: 18px;
  bottom: 22px;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  overflow: visible;
  transform: none;
  box-shadow: none;
}

.contact-rail-actions {
  display: grid;
  max-height: 0;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: max-height 180ms ease, opacity 160ms ease, transform 180ms ease;
}

.contact-rail.is-open .contact-rail-actions {
  max-height: 210px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-rail .contact-rail-lead {
  display: flex;
  width: 116px;
  min-height: 48px;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  border: 1px solid #444c4e;
  border-radius: 12px;
  background: rgb(16 20 22 / 0.96);
  color: var(--ink);
  box-shadow: 0 14px 34px rgb(3 6 7 / 0.34);
}

.contact-rail .contact-rail-lead:hover,
.contact-rail .contact-rail-lead:focus-visible {
  background: #202628;
  outline: 2px solid rgb(237 113 56 / 0.38);
  outline-offset: 2px;
}

.contact-rail .contact-rail-lead span {
  display: inline;
  writing-mode: initial;
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-rail .contact-rail-lead i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 19px;
}

.contact-rail .contact-rail-action,
.contact-rail.is-open .contact-rail-action {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #444c4e;
  border-radius: 10px;
  background: rgb(30 36 38 / 0.98);
  color: var(--ink);
  box-shadow: 0 10px 24px rgb(3 6 7 / 0.28);
}

.contact-rail .contact-rail-action:hover,
.contact-rail .contact-rail-action:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  outline: 0;
  transform: translateX(-2px);
}

.contact-rail .contact-rail-action i {
  font-size: 19px;
}

.contact-rail .contact-rail-action::after {
  right: calc(100% + 8px);
  border-radius: 7px;
  background: #101416;
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-rail,
  .contact-rail.is-open {
    top: auto;
    right: 13px;
    bottom: 13px;
    width: auto;
    grid-template-columns: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    transform: none;
    box-shadow: none;
    transition: none;
  }

  .contact-rail .contact-rail-lead {
    width: 48px;
    min-height: 48px;
    padding: 6px;
  }

  .contact-rail .contact-rail-lead span {
    display: none;
  }

  .contact-rail .contact-rail-action,
  .contact-rail.is-open .contact-rail-action {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid #444c4e;
  }
}

/* Catalog architecture, mega menu and compact conversion dock. */
.site-header,
.site-header .nav-shell {
  overflow: visible;
}

.site-header .site-nav {
  align-items: center;
  gap: clamp(13px, 1.45vw, 24px);
  overflow: visible;
}

.site-header .site-nav > a,
.nav-product-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 12.5px;
}

.nav-product-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-submenu-toggle {
  display: grid;
  width: 24px;
  height: 34px;
  margin-left: -3px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.nav-submenu-toggle i {
  font-size: 12px;
  transition: transform 180ms ease;
}

.nav-product-group:hover .nav-submenu-toggle i,
.nav-product-group:focus-within .nav-submenu-toggle i,
.nav-product-group.is-open .nav-submenu-toggle i {
  transform: rotate(180deg);
}

.product-mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 12;
  display: grid;
  width: min(680px, calc(100vw - 48px));
  grid-template-columns: 210px 1fr;
  overflow: visible;
  border: 1px solid #434b4d;
  border-radius: 14px;
  background: rgb(20 24 26 / 0.98);
  box-shadow: 0 24px 70px rgb(3 6 7 / 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-34%, -8px);
  transition: opacity 160ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.product-mega-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 20px;
  content: "";
}

.nav-product-group:hover .product-mega-menu,
.nav-product-group:focus-within .product-mega-menu,
.nav-product-group.is-open .product-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-34%, 0);
  visibility: visible;
}

.product-mega-intro {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-radius: 13px 0 0 13px;
  background: linear-gradient(145deg, #2b3234, #171b1d);
}

.product-mega-intro > span {
  color: var(--accent);
  font: 650 10px/1.3 var(--font-mono);
  letter-spacing: 0.16em;
}

.product-mega-intro > strong {
  max-width: 150px;
  font-size: 24px;
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.site-header .product-mega-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
}

.product-mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 10px;
}

.site-header .product-mega-links > a {
  display: grid;
  min-height: 82px;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 11px;
  padding: 15px 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  transition: background 160ms ease, transform 160ms ease;
}

.site-header .product-mega-links > a:hover,
.site-header .product-mega-links > a:focus-visible {
  background: #293032;
  transform: translateY(-1px);
}

.product-mega-links > a > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #444c4e;
  border-radius: 8px;
  color: var(--accent);
  font-size: 17px;
}

.product-mega-links span {
  display: grid;
  gap: 4px;
}

.product-mega-links strong {
  font-size: 12px;
  font-weight: 650;
}

.product-mega-links small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 450;
  line-height: 1.35;
}

.site-header .nav-product-link[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--accent);
}

/* Compact floating conversion entry. */
.contact-rail {
  position: fixed;
  top: auto;
  right: 18px;
  bottom: 22px;
  z-index: 9;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  overflow: visible;
  transform: none;
  box-shadow: none;
}

.contact-rail-actions {
  display: grid;
  max-height: 0;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: max-height 180ms ease, opacity 160ms ease, transform 180ms ease;
}

.contact-rail.is-open .contact-rail-actions {
  max-height: 210px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-rail .contact-rail-lead {
  display: flex;
  width: 116px;
  min-height: 48px;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  border: 1px solid #444c4e;
  border-radius: 12px;
  background: rgb(16 20 22 / 0.96);
  color: var(--ink);
  box-shadow: 0 14px 34px rgb(3 6 7 / 0.34);
}

.contact-rail .contact-rail-lead:hover,
.contact-rail .contact-rail-lead:focus-visible {
  background: #202628;
  outline: 2px solid rgb(237 113 56 / 0.38);
  outline-offset: 2px;
}

.contact-rail .contact-rail-lead span {
  display: inline;
  writing-mode: initial;
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-rail .contact-rail-lead i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 19px;
}

.contact-rail .contact-rail-action {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #444c4e;
  border-radius: 10px;
  background: rgb(30 36 38 / 0.98);
  color: var(--ink);
  box-shadow: 0 10px 24px rgb(3 6 7 / 0.28);
}

.contact-rail .contact-rail-action:hover,
.contact-rail .contact-rail-action:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  outline: 0;
  transform: translateX(-2px);
}

.contact-rail .contact-rail-action i {
  font-size: 19px;
}

.contact-rail .contact-rail-action::after {
  right: calc(100% + 8px);
  border-radius: 7px;
  background: #101416;
  color: var(--ink);
}

/* Product catalog and category pages. */
.catalog-page,
.category-page,
.product-detail-page,
.news-page {
  background: var(--bg);
}

.catalog-hero {
  display: flex;
  min-height: 72dvh;
  align-items: flex-end;
  padding: 150px 0 72px;
  background:
    linear-gradient(90deg, rgb(12 16 18 / 0.94) 0%, rgb(12 16 18 / 0.73) 48%, rgb(12 16 18 / 0.28) 100%),
    url("assets/hero-furui-tooling.jpg") center 42% / cover no-repeat;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 740px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
}

.catalog-hero h1,
.news-hero h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  font-size: clamp(42px, 5.3vw, 72px);
  font-weight: 480;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.catalog-hero p:not(.eyebrow),
.news-hero > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #c3c9c9;
  font-size: 16px;
}

.catalog-hero-count {
  display: grid;
  min-width: 170px;
  padding: 18px 0 4px 24px;
  border-left: 1px solid rgb(255 255 255 / 0.25);
}

.catalog-hero-count strong {
  font: 500 50px/1 var(--font-sans);
  letter-spacing: -0.06em;
}

.catalog-hero-count span {
  margin-top: 8px;
  color: #c3c9c9;
  font-size: 11px;
}

.catalog-section,
.detail-section {
  padding: 92px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.category-card:first-child {
  grid-column: 1 / -1;
}

.category-card > a {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(270px, 1fr) auto;
}

.category-card:first-child > a {
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: none;
}

.category-card-image {
  min-height: 270px;
  overflow: hidden;
  background: #e8e9e7;
}

.category-card:first-child .category-card-image {
  min-height: 430px;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-card-image img {
  transform: scale(1.025);
}

.category-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.category-card-copy > span,
.category-hero-copy > p,
.catalog-product-copy > p,
.product-model,
.news-card > a > span {
  margin: 0;
  color: var(--accent);
  font: 650 10px/1.3 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card-copy h2 {
  margin: 11px 0 12px;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.category-card-copy p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.category-card-copy strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 30px;
  font-size: 11px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 124px;
  color: var(--muted);
  font-size: 10.5px;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs i {
  font-size: 10px;
}

.breadcrumbs span {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-hero {
  display: grid;
  min-height: 570px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.category-hero-copy h1 {
  margin: 17px 0 22px;
  font-size: clamp(43px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.category-hero-copy > span {
  max-width: 48ch;
  color: var(--muted);
  font-size: 14px;
}

.category-hero figure,
.category-hero img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.category-hero img {
  object-fit: cover;
}

.catalog-section-heading,
.detail-heading {
  display: flex;
  max-width: 740px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 42px;
}

.catalog-section-heading h2,
.detail-heading h2,
.detail-media-grid h2,
.shipping-grid h2,
.faq-grid h2 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 510;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.catalog-section-heading p,
.detail-heading p,
.detail-media-grid p,
.shipping-grid p,
.faq-grid > div:first-child p {
  max-width: 60ch;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.catalog-product-card:hover {
  border-color: #596264;
  transform: translateY(-3px);
}

.catalog-product-card > a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.catalog-product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e9e7;
}

.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-product-card:hover img {
  transform: scale(1.025);
}

.catalog-product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.catalog-product-copy h3 {
  margin: 9px 0 26px;
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.catalog-product-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--muted);
  font-size: 10.5px;
}

.category-help {
  padding: 54px 0;
  background: #101416;
}

.category-help-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  align-items: center;
  gap: 44px;
}

.category-help h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.category-help-grid > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.category-help-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Product detail pages. */
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  gap: clamp(42px, 6vw, 88px);
  padding-top: 34px;
  padding-bottom: 94px;
}

.product-detail-gallery {
  min-width: 0;
}

.product-main-image {
  aspect-ratio: 1.08;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8e9e7;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 82px);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #e8e9e7;
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy {
  align-self: center;
}

.product-detail-copy h1 {
  max-width: 650px;
  margin: 17px 0 22px;
  font-size: clamp(39px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.product-detail-copy > p:not(.product-model) {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.availability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 34px 0 24px;
}

.availability > div {
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.availability span {
  color: var(--muted);
  font-size: 10px;
}

.availability strong {
  margin: 5px 0 3px;
  font-size: 19px;
  font-weight: 580;
}

.availability small {
  color: #798183;
  font-size: 9px;
}

.product-detail-copy .button {
  width: 100%;
}

.product-secondary-link {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.detail-section {
  border-top: 1px solid var(--line);
}

.spec-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-card-grid > div {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  padding: 22px;
  border-radius: 10px;
  background: var(--surface);
}

.spec-card-grid span {
  color: var(--muted);
  font-size: 10px;
}

.spec-card-grid strong {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 520;
  letter-spacing: -0.03em;
}

.detail-media-section {
  background: var(--surface);
}

.detail-media-grid,
.shipping-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.detail-media-grid figure,
.shipping-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-media-grid img,
.shipping-grid img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.detail-media-grid ul {
  display: grid;
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.detail-media-grid li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
}

.detail-media-grid li i {
  color: var(--accent);
}

.shipping-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.shipping-grid img {
  min-height: 390px;
}

.shipping-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.shipping-notes span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 10px;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(50px, 8vw, 120px);
}

.faq-list {
  display: grid;
  align-content: start;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  flex: 0 0 auto;
  color: var(--accent);
  transition: transform 160ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 64ch;
  margin: -4px 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.related-section .catalog-section-heading {
  max-width: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

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

/* News listing. */
.news-hero {
  padding-top: 180px;
  padding-bottom: 86px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.news-card:first-child {
  grid-row: span 2;
}

.news-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 16px 16px 26px;
}

.news-card > a > div {
  aspect-ratio: 16 / 7;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 9px;
  background: #e8e9e7;
}

.news-card:first-child > a > div {
  aspect-ratio: 4 / 3;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover img {
  transform: scale(1.025);
}

.news-card h2 {
  margin: 12px 8px 10px;
  font-size: clamp(21px, 2.4vw, 34px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.news-card p {
  max-width: 56ch;
  margin: 0 8px 24px;
  color: var(--muted);
  font-size: 12px;
}

.news-card > a > span,
.news-card > a > strong {
  margin-inline: 8px;
}

.news-card > a > strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 10.5px;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    gap: 15px;
  }

  .site-header .site-nav {
    gap: 11px;
  }

  .site-header .site-nav > a,
  .nav-product-link {
    font-size: 10.5px;
  }

  .site-header .brand-copy {
    display: none;
  }

  .site-header .nav-actions .button {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .site-header .site-nav {
    align-items: stretch;
    gap: 0;
  }

  .site-header .site-nav > a,
  .nav-product-link {
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 12px;
  }

  .nav-product-group {
    display: grid;
  }

  .nav-product-link {
    width: 100%;
  }

  .nav-submenu-toggle {
    position: absolute;
    top: 9px;
    right: 11px;
    width: 38px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
  }

  .product-mega-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #111517;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-product-group:hover .product-mega-menu,
  .nav-product-group:focus-within .product-mega-menu {
    display: none;
    transform: none;
  }

  .nav-product-group.is-open .product-mega-menu {
    display: grid;
    transform: none;
  }

  .product-mega-menu::before,
  .product-mega-intro {
    display: none;
  }

  .product-mega-links {
    grid-template-columns: 1fr;
    padding: 8px 12px 12px;
  }

  .site-header .product-mega-links > a {
    min-height: 58px;
    grid-template-columns: 30px 1fr;
    padding: 11px 8px;
  }

  .product-mega-links > a > i {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .contact-rail {
    right: 13px;
    bottom: 13px;
    width: auto;
    grid-template-columns: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }

  .contact-rail.is-open {
    width: auto;
    grid-template-columns: none;
  }

  .contact-rail .contact-rail-lead {
    width: 48px;
    min-height: 48px;
    padding: 6px;
  }

  .contact-rail .contact-rail-lead span {
    display: none;
  }

  .contact-rail .contact-rail-action,
  .contact-rail.is-open .contact-rail-action {
    display: grid;
    width: 42px;
    height: 42px;
    border: 1px solid #444c4e;
  }

  .catalog-hero {
    min-height: 70dvh;
    padding: 132px 0 54px;
    background-position: 62% 50%;
  }

  .catalog-hero-grid,
  .category-hero,
  .product-detail-hero,
  .detail-media-grid,
  .shipping-grid,
  .faq-grid,
  .category-help-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .catalog-hero-count {
    display: none;
  }

  .catalog-hero h1,
  .news-hero h1 {
    font-size: clamp(39px, 11vw, 58px);
  }

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

  .category-card:first-child {
    grid-column: auto;
  }

  .category-card:first-child > a {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 1fr) auto;
  }

  .category-card:first-child .category-card-image {
    min-height: 300px;
  }

  .category-hero {
    min-height: 0;
  }

  .category-hero-copy {
    padding: 38px 26px;
  }

  .category-hero figure {
    min-height: 390px;
  }

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

  .category-help-grid > div {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .product-detail-hero {
    padding-bottom: 70px;
  }

  .product-detail-copy h1 {
    margin-top: 12px;
  }

  .detail-media-grid > figure {
    order: 2;
  }

  .shipping-grid figure {
    margin-top: 12px;
  }

  .related-product-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .related-product-grid .catalog-product-card {
    scroll-snap-align: start;
  }

  .news-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .breadcrumbs {
    padding-top: 104px;
  }

  .breadcrumbs a:first-child,
  .breadcrumbs a:first-child + i {
    display: none;
  }

  .catalog-section,
  .detail-section {
    padding: 66px 0;
  }

  .category-card-copy {
    padding: 24px;
  }

  .category-card-copy p {
    font-size: 12px;
  }

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

  .catalog-product-image {
    aspect-ratio: 1.12;
  }

  .category-help-grid > div,
  .availability,
  .spec-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-help-grid {
    gap: 26px;
  }

  .product-main-image {
    aspect-ratio: 1;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, 68px);
  }

  .product-detail-copy h1 {
    font-size: 38px;
  }

  .detail-media-grid img,
  .shipping-grid img {
    min-height: 290px;
  }

  .related-section .catalog-section-heading {
    align-items: flex-start;
    gap: 18px;
  }

  .related-product-grid {
    grid-template-columns: repeat(3, minmax(76vw, 1fr));
  }

  .news-hero {
    padding-top: 132px;
    padding-bottom: 50px;
  }
}

/* Refined typography scale inspired by the supplied reference site. */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body {
  font-size: 15.5px;
  letter-spacing: -0.008em;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.brand-copy small {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.site-nav a,
.footer-links a {
  font-size: 12px;
  font-weight: 550;
}

.button {
  font-size: 12px;
  font-weight: 650;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.6vw, 80px);
  font-weight: 540;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.hero-intro {
  max-width: 560px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

.page-hero-content {
  padding-bottom: 66px;
}

.page-hero-content h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.05vw, 58px);
  font-weight: 520;
  letter-spacing: -0.036em;
  line-height: 1.08;
}

.page-hero-content > p:last-child {
  max-width: 540px;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.7;
}

.contact-copy h1 {
  max-width: 600px;
  font-size: clamp(42px, 4.05vw, 58px);
  font-weight: 520;
  letter-spacing: -0.036em;
  line-height: 1.08;
}

.section-heading h2,
.selection-intro h2,
.applications-copy h2,
.resource-heading h2,
.company-statement h2,
.quote-copy h2,
.family-copy h2,
.media-copy-grid h2,
.guide-intro h2,
.input-board h2,
.topic-board h2,
.company-story h2,
.focus-statement h2,
.page-cta h2 {
  font-size: clamp(32px, 3.55vw, 52px);
  font-weight: 520;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.section-heading-centered {
  max-width: 700px;
}

.section-heading p,
.selection-intro > p,
.applications-copy > p,
.resource-heading > p,
.company-copy p,
.quote-copy > p,
.family-copy p,
.media-copy-grid p,
.guide-intro p,
.input-board > div:first-child p,
.topic-board > div:first-child p,
.company-story p,
.focus-statement p,
.page-cta p {
  font-size: 15px;
  line-height: 1.72;
}

.product-copy h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 560;
  letter-spacing: -0.024em;
}

.family-products h3,
.guide-steps h3,
.resource-index-list h3,
.capability-list h3 {
  font-weight: 560;
}

.resource-hero-card h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(48px, 10vw, 68px);
  }

  .page-hero-content h1,
  .contact-copy h1 {
    font-size: clamp(39px, 8.5vw, 52px);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(43px, 12.5vw, 55px);
  }

  .page-hero-content h1,
  .contact-copy h1 {
    font-size: clamp(36px, 10.7vw, 44px);
    line-height: 1.1;
  }

  .section-heading h2,
  .selection-intro h2,
  .applications-copy h2,
  .resource-heading h2,
  .company-statement h2,
  .quote-copy h2,
  .family-copy h2,
  .media-copy-grid h2,
  .guide-intro h2,
  .input-board h2,
  .topic-board h2,
  .company-story h2,
  .focus-statement h2,
  .page-cta h2 {
    font-size: 36px;
  }
}

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

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

/* Full-screen catalog direction inspired by the supplied layout reference. */
:root {
  color-scheme: light;
  --bg: #f2f3f1;
  --surface: #ffffff;
  --surface-2: #e9ebe8;
  --ink: #15191b;
  --muted: #62686a;
  --line: #d7dad7;
  --accent: #ef6a25;
  --accent-ink: #24130b;
  --shadow: 0 22px 60px rgb(20 24 27 / 0.13);
  --radius: 4px;
}

body {
  background: var(--bg);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 104px;
  padding-top: 16px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: height 240ms ease, padding 240ms ease;
}

.site-header .nav-shell {
  height: 72px;
  padding-inline: 18px;
  border: 1px solid rgb(255 255 255 / 0.58);
  border-radius: 16px;
  background: rgb(255 255 255 / 0.94);
  color: #15191b;
  box-shadow: 0 12px 36px rgb(7 12 14 / 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: width 240ms ease, height 240ms ease, border-radius 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  padding-top: 0;
}

.site-header.is-scrolled .nav-shell {
  width: 100%;
  height: 74px;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  border-color: transparent;
  border-bottom-color: var(--line);
  border-radius: 0;
  box-shadow: 0 8px 28px rgb(7 12 14 / 0.08);
}

.site-header .brand-mark {
  background: #15191b;
  color: #f6f6f2;
}

.site-header .brand-copy small,
.site-header .site-nav a {
  color: #697072;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #15191b;
}

.site-header .button-dark {
  background: #15191b;
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #1d2325;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  background: #1d2325;
}

.hero-media::after {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(7 11 13 / 0.83) 0%, rgb(7 11 13 / 0.62) 35%, rgb(7 11 13 / 0.15) 70%, rgb(7 11 13 / 0.24) 100%),
    linear-gradient(0deg, rgb(7 11 13 / 0.52) 0%, transparent 42%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
  padding-block: 190px 72px;
}

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

.hero .eyebrow {
  margin-bottom: 24px;
  color: #ff8a4a;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 26px;
  font-size: clamp(58px, 7.1vw, 108px);
  font-weight: 610;
  letter-spacing: -0.066em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 36px;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  gap: 28px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.hero-text-link span {
  color: #ff8a4a;
  font-size: 18px;
  transition: transform 180ms ease;
}

.hero-text-link:hover span,
.hero-text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-index {
  display: grid;
  width: 216px;
  grid-template-columns: 28px 1fr;
  gap: 12px 15px;
  padding: 22px 24px;
  border: 1px solid rgb(255 255 255 / 0.24);
  background: rgb(13 18 20 / 0.44);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-index span {
  color: #ff8a4a;
  font: 700 10px/1.5 var(--font-mono);
}

.hero-index p {
  margin: 0;
  color: rgb(255 255 255 / 0.84);
  font-size: 12px;
  font-weight: 650;
}

.interface-bar {
  border: 0;
  background: #15191b;
  color: #ffffff;
}

.interface-grid {
  min-height: 102px;
}

.interface-grid > p,
.interface-grid > a {
  color: rgb(255 255 255 / 0.64);
}

.interface-grid > a {
  color: #ffffff;
}

.interface-list span {
  color: #ffffff;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font: 700 11px/1.2 var(--font-mono);
  letter-spacing: 0.16em;
}

.section-heading-centered {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading-centered h2 {
  margin-bottom: 18px;
}

.section-heading-centered p:last-child {
  margin-inline: auto;
}

.products {
  background: #f3f4f2;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
}

.product-card,
.product-card-featured,
.product-card-wide,
.product-card-accessories {
  grid-column: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-card:hover {
  box-shadow: none;
  transform: translateY(-4px);
}

.product-card > a,
.product-card:not(.product-card-featured):not(.product-card-wide) > a {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto;
}

.product-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #e1e3e0;
  background: #e9eceb;
}

.product-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.34);
  content: "";
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-external .product-image {
  padding: clamp(12px, 1.4vw, 24px);
  background: #ffffff;
}

.product-card-external .product-image img {
  object-fit: contain;
}

.product-card-external .product-image-landscape img {
  transform: scale(1.11);
}

.product-card-external:hover .product-image-landscape img {
  transform: scale(1.14);
}

.product-copy {
  align-items: center;
  gap: 18px;
  padding: 19px 2px 0;
}

.product-copy p {
  margin-bottom: 7px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.product-copy h3 {
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.15;
}

.product-arrow {
  width: 36px;
  height: 36px;
  border-color: #c9cdca;
  border-radius: 50%;
  font-size: 15px;
}

.tag-list {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: light;
    --bg: #f2f3f1;
    --surface: #ffffff;
    --surface-2: #e9ebe8;
    --ink: #15191b;
    --muted: #62686a;
    --line: #d7dad7;
    --accent: #ef6a25;
    --accent-ink: #24130b;
    --shadow: 0 22px 60px rgb(20 24 27 / 0.13);
  }
}

@media (max-width: 1100px) {
  .site-header.is-scrolled .nav-shell {
    padding-inline: 20px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero-index {
    width: 190px;
  }

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

@media (max-width: 820px) {
  .site-header {
    height: 86px;
    padding-top: 10px;
  }

  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    width: var(--shell);
    height: 66px;
    padding-inline: 13px;
    border: 1px solid rgb(255 255 255 / 0.58);
    border-radius: 13px;
  }

  .site-header.is-scrolled {
    height: 76px;
    padding-top: 5px;
  }

  .site-header .menu-toggle {
    border-color: #cfd2cf;
    color: #15191b;
  }

  .site-header .site-nav {
    inset: 76px 16px auto;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgb(7 12 14 / 0.16);
  }

  .site-header .site-nav a,
  .site-header .site-nav a:nth-child(4),
  .site-header .site-nav a:nth-child(5) {
    color: #15191b;
  }

  .hero,
  .hero-layout {
    min-height: 100svh;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 34px;
    padding-block: 148px 44px;
  }

  .hero h1 {
    font-size: clamp(54px, 11.4vw, 82px);
  }

  .hero-index {
    display: none;
  }

  .hero-media {
    aspect-ratio: auto;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 16px;
  }
}

@media (max-width: 560px) {
  .site-header .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero-layout {
    gap: 0;
    padding-block: 126px 42px;
  }

  .hero h1 {
    max-width: 460px;
    margin-bottom: 20px;
    font-size: clamp(49px, 14.2vw, 66px);
  }

  .hero-intro {
    max-width: 420px;
    margin-bottom: 26px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 16px;
  }

  .interface-grid {
    min-height: 130px;
  }

  .interface-label {
    padding-top: 18px;
  }

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

  .product-image {
    aspect-ratio: 1 / 0.88;
  }

  .product-copy {
    padding-top: 16px;
  }

  .product-copy h3 {
    font-size: 24px;
  }
}

/* Final typography lock: smaller, lighter and more editorial. */
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body {
  font-size: 15.5px;
  letter-spacing: -0.008em;
}

.brand-copy strong {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.brand-copy small {
  font-size: 9px;
  letter-spacing: 0.14em;
}

.site-nav a,
.footer-links a {
  font-size: 12px;
  font-weight: 550;
}

.button {
  font-size: 12px;
  font-weight: 650;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.25vw, 76px);
  font-weight: 520;
  letter-spacing: -0.048em;
  line-height: 0.99;
}

.hero-intro {
  max-width: 560px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

.page-hero-content {
  padding-bottom: 66px;
}

.page-hero-content h1,
.contact-copy h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(40px, 3.65vw, 52px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.contact-copy h1 {
  max-width: 600px;
}

.page-hero-content > p:last-child {
  max-width: 540px;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.7;
}

.section-heading h2,
.selection-intro h2,
.applications-copy h2,
.resource-heading h2,
.company-statement h2,
.quote-copy h2,
.family-copy h2,
.media-copy-grid h2,
.guide-intro h2,
.input-board h2,
.topic-board h2,
.company-story h2,
.focus-statement h2,
.page-cta h2 {
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.section-heading-centered {
  max-width: 700px;
}

.section-heading p,
.selection-intro > p,
.applications-copy > p,
.resource-heading > p,
.company-copy p,
.quote-copy > p,
.family-copy p,
.media-copy-grid p,
.guide-intro p,
.input-board > div:first-child p,
.topic-board > div:first-child p,
.company-story p,
.focus-statement p,
.page-cta p {
  font-size: 15px;
  line-height: 1.72;
}

.product-copy h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 560;
  letter-spacing: -0.024em;
}

.family-products h3,
.guide-steps h3,
.resource-index-list h3,
.capability-list h3 {
  font-weight: 560;
}

.resource-hero-card h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: clamp(48px, 10vw, 68px);
  }

  .page-hero-content h1,
  .contact-copy h1 {
    font-size: clamp(39px, 8.5vw, 52px);
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(43px, 12.5vw, 55px);
  }

  .page-hero-content h1,
  .contact-copy h1 {
    font-size: clamp(36px, 10.7vw, 44px);
    line-height: 1.1;
  }

  .section-heading h2,
  .selection-intro h2,
  .applications-copy h2,
  .resource-heading h2,
  .company-statement h2,
  .quote-copy h2,
  .family-copy h2,
  .media-copy-grid h2,
  .guide-intro h2,
  .input-board h2,
  .topic-board h2,
  .company-story h2,
  .focus-statement h2,
  .page-cta h2 {
    font-size: 36px;
  }
}

/* Inner-page banners occupy the full first viewport. */
.page-hero {
  min-height: 100dvh;
}

/* Product catalog hero: compact editorial scale on desktop. */
@media (min-width: 821px) {
  .page-hero-products .page-hero-content h1 {
    max-width: 1120px;
    font-size: clamp(38px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -0.022em;
    line-height: 1.18;
    white-space: nowrap;
  }
}

/* Final palette lock: one graphite theme across every route. */
:root,
:root:not([data-theme="light"]) {
  color-scheme: dark;
  --bg: #15191b;
  --surface: #1b2022;
  --surface-2: #22282a;
  --surface-3: #2a3032;
  --ink: #f0f2ef;
  --muted: #a5adae;
  --line: #353c3e;
  --accent: #ed7138;
  --accent-ink: #1a100b;
  --header: rgb(21 25 27 / 0.92);
  --shadow: 0 24px 70px rgb(5 8 9 / 0.34);
}

html,
body,
.products,
.applications,
.company,
.site-footer {
  background: var(--bg);
  color: var(--ink);
}

.site-header .nav-shell,
.site-header.is-scrolled .nav-shell {
  border-color: rgb(255 255 255 / 0.15);
  background: rgb(21 25 27 / 0.94);
  color: var(--ink);
  box-shadow: 0 12px 38px rgb(5 8 9 / 0.28);
}

.site-header.is-scrolled .nav-shell {
  border-bottom-color: var(--line);
  background: rgb(21 25 27 / 0.97);
}

.site-header .brand-mark,
.site-footer .brand-mark {
  background: var(--surface-3);
  color: var(--ink);
}

.site-header .brand-copy small,
.site-header .site-nav a,
.site-footer .brand-copy small,
.footer-links a,
.footer-grid > p {
  color: var(--muted);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-header .site-nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.site-header .button-dark,
.button-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.interface-bar,
.quote-section,
.page-cta {
  background: #101416;
}

.products,
.inner-section {
  background: var(--bg);
}

.selection,
.resources,
.inner-section-tint,
.contact-media {
  border-color: var(--line);
  background: var(--surface);
}

.selection-steps article,
.selection-steps article:nth-child(2),
.selection-steps article:nth-child(3),
.resource-list > a {
  border-color: var(--line);
  background: var(--surface-2);
}

.resource-feature {
  background: #101416;
  color: var(--ink);
}

.product-copy h3,
.product-arrow,
.text-link {
  color: var(--ink);
}

.product-arrow {
  border-color: #4a5254;
}

.quote-form {
  border-color: var(--line);
  background: var(--surface);
}

.field input,
.field select,
.field textarea {
  border-color: #4a5254;
  background: #111517;
  color: var(--ink);
}

.site-footer {
  border-color: var(--line);
}

@media (max-width: 820px) {
  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    border-color: rgb(255 255 255 / 0.14);
    background: rgb(21 25 27 / 0.97);
  }

  .site-header .menu-toggle {
    border-color: #465052;
    color: var(--ink);
  }

  .site-header .site-nav {
    background: var(--surface);
  }

  .site-header .site-nav a,
  .site-header .site-nav a:nth-child(4),
  .site-header .site-nav a:nth-child(5) {
    border-color: var(--line);
    color: var(--ink);
  }

  .site-header .site-nav a[aria-current="page"] {
    box-shadow: inset 3px 0 0 var(--accent);
  }
}

/* Persistent contact rail inspired by the supplied vertical reference. */
.contact-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9;
  display: grid;
  width: 76px;
  overflow: visible;
  transform: translateY(-50%);
  box-shadow: 0 18px 48px rgb(5 8 9 / 0.28);
}

.contact-rail a,
.contact-rail button {
  color: var(--ink);
}

.contact-rail-lead {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 0;
  border: 0;
  background: #101416;
  cursor: pointer;
  font-family: inherit;
  transition: background 180ms ease;
}

.contact-rail-lead i {
  font-size: 28px;
}

.contact-rail-lead span {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.contact-rail-action {
  position: relative;
  display: grid;
  height: 68px;
  place-items: center;
  border-top: 1px solid #495052;
  background: #2a3032;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-rail-action i {
  font-size: 27px;
}

.contact-rail-action-primary {
  border-top-color: rgb(255 255 255 / 0.24);
  background: var(--accent);
  color: var(--accent-ink) !important;
}

.contact-rail-lead:hover,
.contact-rail-lead:focus-visible,
.contact-rail-action:hover,
.contact-rail-action:focus-visible {
  background: #394043;
  outline: 0;
}

.contact-rail-action-primary:hover,
.contact-rail-action-primary:focus-visible {
  background: #d95f2d;
}

.contact-rail-action:active {
  transform: translateX(-2px);
}

.contact-rail-action::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101416;
  color: var(--ink);
  content: attr(data-label);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.contact-rail-action:hover::after,
.contact-rail-action:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.page-hero-oem .page-hero-media img {
  object-position: 72% 48%;
}

@media (min-width: 821px) and (max-width: 1100px) {
  .site-header .nav-shell,
  .site-header.is-scrolled .nav-shell {
    gap: 16px;
  }

  .site-header .site-nav {
    gap: 12px;
  }

  .site-header .site-nav a,
  .site-header .site-nav a:nth-child(4),
  .site-header .site-nav a:nth-child(5) {
    display: inline-flex;
    font-size: 11px;
  }

  .site-header .nav-actions .button {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-copy,
  .quote-form {
    width: 100%;
    max-width: none;
  }

  .contact-rail {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: auto;
    width: 56px;
    grid-template-columns: 56px;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.12);
    border-radius: 13px;
    transform: none;
    box-shadow: 0 16px 38px rgb(5 8 9 / 0.36);
    transition: width 180ms ease;
  }

  .contact-rail.is-open {
    width: 272px;
    grid-template-columns: 56px repeat(4, 54px);
  }

  .contact-rail-lead {
    min-height: 54px;
    gap: 0;
  }

  .contact-rail-lead i {
    font-size: 24px;
  }

  .contact-rail-lead span,
  .contact-rail-action::after {
    display: none;
  }

  .contact-rail-action {
    display: none;
    height: 54px;
    border-top: 0;
    border-left: 1px solid #495052;
  }

  .contact-rail.is-open .contact-rail-action {
    display: grid;
  }

  .contact-rail-action i {
    font-size: 23px;
  }

  .contact-rail-action:active {
    transform: translateY(1px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
