:root {
  --ink: #151719;
  --iron: #262b2f;
  --graphite: #3c4146;
  --line: #d9dcdb;
  --paper: #f7f7f4;
  --white: #ffffff;
  --aluminum: #c6cbc8;
  --signal: #b94622;
  --signal-dark: #8f351c;
  --caution: #e1b84a;
  --green: #4e7762;
  --shadow: 0 18px 45px rgba(21, 23, 25, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Bahnschrift, Aptos, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(21, 23, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 25, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 42px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 247, 244, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 226px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.73rem;
}

.nav {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(21, 23, 25, 0.2);
}

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

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.nav a:hover {
  background: rgba(185, 70, 34, 0.14);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  color: var(--white);
  background: var(--signal);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--signal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/products/新能源汽车发动机壳.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  filter: saturate(0.88) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(21, 23, 25, 0.86), rgba(21, 23, 25, 0.46) 54%, rgba(21, 23, 25, 0.16)),
    linear-gradient(0deg, rgba(21, 23, 25, 0.86), transparent 42%);
}

.hero-content,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 150px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--caution);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.03;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.27rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button.primary {
  color: var(--white);
  background: var(--signal);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(21, 23, 25, 0.68);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  min-height: 100px;
  padding: 22px clamp(16px, 3vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.1rem;
  color: var(--white);
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section,
.intro-band,
.seo-band {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section[id] {
  scroll-margin-top: 78px;
}

.capabilities {
  scroll-margin-top: 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  background: var(--iron);
  color: var(--white);
}

.seo-band {
  background: #eeeee9;
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.section-heading,
.quality-grid,
.about-grid,
.rfq-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.about-copy p,
.rfq-grid p,
.quality-grid p {
  color: rgba(21, 23, 25, 0.72);
  font-size: 1rem;
}

.intro-grid p,
.intro-grid h2 {
  color: var(--white);
}

.intro-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.capability-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  margin: -4px 0 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(185, 70, 34, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(185, 70, 34, 0.08), rgba(185, 70, 34, 0.08) 1px, transparent 1px, transparent 11px);
  box-shadow: var(--shadow);
}

.capability-download h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.capability-download p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(21, 23, 25, 0.68);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 20px;
}

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

.seo-grid article {
  min-height: 210px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(21, 23, 25, 0.04);
}

.seo-grid h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.seo-grid p {
  margin-bottom: 0;
  color: rgba(21, 23, 25, 0.68);
  font-size: 0.94rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -8px 0 22px;
}

.product-summary div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-summary strong,
.product-summary span {
  display: block;
}

.product-summary strong {
  color: var(--signal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.product-summary span {
  margin-top: 7px;
  color: rgba(21, 23, 25, 0.64);
  font-weight: 800;
}

.filter-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: var(--white);
  cursor: pointer;
}

.filter-button.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(21, 23, 25, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--aluminum);
}

.product-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  forced-color-adjust: none;
  pointer-events: none;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, transparent 0 62%, rgba(21, 23, 25, 0.34));
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover .product-media::after {
  opacity: 1;
}

.product-zoom-control {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(21, 23, 25, 0.78);
  box-shadow: 0 8px 22px rgba(21, 23, 25, 0.18);
  cursor: pointer;
}

.product-zoom-control::before,
.product-zoom-control::after {
  content: "";
  position: absolute;
}

.product-zoom-control::before {
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-2px, -2px);
}

.product-zoom-control::after {
  width: 7px;
  height: 2px;
  background: currentColor;
  transform: translate(6px, 6px) rotate(45deg);
}

.product-card:hover .product-zoom-control,
.product-zoom-control:hover,
.product-zoom-control:focus-visible {
  background: var(--signal);
}

.product-zoom-control:focus-visible {
  outline: 3px solid rgba(185, 70, 34, 0.34);
  outline-offset: 3px;
}

.product-body {
  padding: 16px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--signal-dark);
  background: rgba(185, 70, 34, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-body h3 {
  min-height: 52px;
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-body p {
  min-height: 48px;
  margin-bottom: 0;
  color: rgba(21, 23, 25, 0.68);
  font-size: 0.92rem;
}

.product-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 23, 25, 0.72);
  backdrop-filter: blur(8px);
}

.product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  height: min(820px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.product-modal-toolbar {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-modal-tool,
.product-modal-level {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 23, 25, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(21, 23, 25, 0.14);
}

.product-modal-tool {
  cursor: pointer;
}

.product-modal-tool.is-wide {
  padding: 0 11px;
}

.product-modal-level {
  min-width: 54px;
  color: rgba(21, 23, 25, 0.78);
}

.product-modal-tool:hover,
.product-modal-tool:focus-visible {
  color: var(--white);
  background: var(--signal);
}

.product-modal-viewport {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, rgba(21, 23, 25, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(21, 23, 25, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(21, 23, 25, 0.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(21, 23, 25, 0.06) 75%),
    #e4e5e2;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
  cursor: default;
  touch-action: none;
}

.product-modal-viewport.is-zoomed {
  cursor: grab;
}

.product-modal-viewport.is-dragging {
  cursor: grabbing;
}

.product-modal-image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: none !important;
  forced-color-adjust: none;
  user-select: none;
  -webkit-user-drag: none;
}

.capabilities {
  background: #ecece8;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
}

.capability-panel,
.rfq-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-panel {
  padding: 26px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(21, 23, 25, 0.74);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--signal);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  min-height: 260px;
  border: 1px solid rgba(21, 23, 25, 0.16);
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7) 10px,
    rgba(198, 203, 200, 0.28) 10px,
    rgba(198, 203, 200, 0.28) 20px
  );
}

.process-rail span {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 18px 10px;
  border-right: 1px solid rgba(21, 23, 25, 0.14);
  font-weight: 800;
  text-align: center;
}

.process-rail span:nth-child(odd) {
  background: rgba(255, 255, 255, 0.46);
}

.quality {
  color: var(--white);
  background: var(--ink);
}

.quality h2,
.quality p {
  color: var(--white);
}

.quality-grid > div > p {
  color: rgba(255, 255, 255, 0.74);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--caution);
  font-weight: 800;
}

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

.quality-matrix div,
.industry-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.quality-matrix div {
  min-height: 118px;
  padding: 18px;
}

.quality-matrix strong,
.quality-matrix span {
  display: block;
}

.quality-matrix span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
}

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

.industry-grid article {
  min-height: 260px;
  padding: 22px;
  border-color: var(--line);
  background: var(--white);
}

.industry-grid p {
  color: rgba(21, 23, 25, 0.7);
}

.industry-grid span {
  display: block;
  margin-top: 18px;
  color: var(--signal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.about {
  background: #dedfdb;
}

.about-copy {
  column-count: 2;
  column-gap: 28px;
}

.about-copy p {
  break-inside: avoid;
}

.rfq-section {
  background: var(--white);
}

.rfq-contact {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(185, 70, 34, 0.18);
  border-left: 5px solid var(--signal);
  background: #fff7f2;
  box-shadow: 0 14px 34px rgba(21, 23, 25, 0.08);
}

.rfq-contact span {
  color: rgba(21, 23, 25, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rfq-email {
  color: var(--signal-dark);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  user-select: all;
}

.rfq-contact-actions,
.rfq-result-actions,
.rfq-result-address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copy-button,
.link-button {
  min-height: 38px;
  border-radius: var(--radius);
  padding: 9px 12px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.copy-button {
  border: 1px solid rgba(185, 70, 34, 0.36);
  color: var(--signal-dark);
  background: var(--white);
}

.copy-button:hover {
  background: rgba(185, 70, 34, 0.08);
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--signal);
  color: var(--white);
  background: var(--signal);
  text-decoration: none;
}

.link-button:hover {
  background: var(--signal-dark);
}

.rfq-form {
  padding: 24px;
}

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

.form-row-single {
  grid-template-columns: minmax(0, 1fr);
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: rgba(21, 23, 25, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input[type="file"] {
  padding: 9px;
}

input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 70, 34, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--signal);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background: var(--signal-dark);
}

.file-field {
  align-content: start;
}

.file-help,
.file-list {
  display: block;
  line-height: 1.35;
  font-size: 0.78rem;
}

.file-help {
  margin-top: -4px;
  color: rgba(21, 23, 25, 0.6);
  font-weight: 700;
}

.file-list {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px dashed rgba(21, 23, 25, 0.22);
  border-radius: var(--radius);
  color: rgba(21, 23, 25, 0.62);
  background: rgba(247, 247, 244, 0.72);
  font-weight: 800;
}

.file-list.has-files {
  color: var(--signal-dark);
  border-color: rgba(185, 70, 34, 0.38);
  background: rgba(185, 70, 34, 0.08);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 70, 34, 0.2);
  border-color: var(--signal);
}

.full {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--signal-dark);
}

.rfq-result {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(28, 105, 80, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(28, 105, 80, 0.07);
}

.rfq-result p {
  margin: 0;
  color: rgba(21, 23, 25, 0.76);
  line-height: 1.55;
}

.rfq-result-address {
  padding: 10px;
  border: 1px dashed rgba(21, 23, 25, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.rfq-result-address span {
  color: rgba(21, 23, 25, 0.56);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.rfq-result-address strong {
  color: var(--signal-dark);
  overflow-wrap: anywhere;
  user-select: all;
}

.rfq-result pre {
  max-height: 240px;
  margin: 0;
  padding: 12px;
  overflow: auto;
  border: 1px solid rgba(21, 23, 25, 0.14);
  border-radius: var(--radius);
  color: rgba(21, 23, 25, 0.82);
  background: var(--white);
  font: 0.82rem/1.55 Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--iron);
}

.site-footer p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  justify-self: end;
  color: var(--caution);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

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

  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail span {
    min-height: 58px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 23, 25, 0.14);
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 108px 0 76px;
  }

  .hero-proof,
  .intro-grid,
  .capability-download,
  .section-heading,
  .quality-grid,
  .about-grid,
  .rfq-grid,
  .capability-layout,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .product-grid,
  .industry-grid,
  .quality-matrix,
  .seo-grid,
  .product-summary {
    grid-template-columns: 1fr;
  }

  .seo-grid article {
    min-height: auto;
  }

  .about-copy {
    column-count: 1;
  }

  .site-footer a {
    justify-self: start;
  }

  .product-modal {
    padding: 14px;
  }

  .product-modal-panel {
    height: min(620px, calc(100vh - 28px));
  }

  .product-zoom-control {
    width: 28px;
    height: 28px;
  }

  .product-modal-toolbar {
    left: 10px;
    right: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
