:root {
  --black: #080a0b;
  --black-2: #111416;
  --steel: #1e2428;
  --steel-2: #2d3438;
  --paper: #f5f3ef;
  --paper-2: #e8e4dc;
  --ink: #111315;
  --muted: #6a6e70;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(17, 19, 21, 0.14);
  --orange: #f26a16;
  --orange-2: #d94d08;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(242, 106, 22, 0.2);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 80px;
  padding: 0 clamp(22px, 3vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 11, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: clamp(226px, 18vw, 310px);
  height: auto;
  max-height: 60px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  line-height: 1;
}

.brand-copy strong {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 26px);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.tool-button,
.header-cta,
.btn {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.tool-button {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
}

.header-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(242, 106, 22, 0.26);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(242, 106, 22, 0.34);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 696px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 80px 0 0 0;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.hero-bg::before {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.76) 0%, rgba(8, 10, 11, 0.58) 34%, rgba(8, 10, 11, 0.2) 58%, rgba(8, 10, 11, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.12), rgba(8, 10, 11, 0));
}

.hero-bg::after {
  background:
    radial-gradient(circle at 82% 24%, rgba(242, 106, 22, 0.16), transparent 24%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.2), transparent 58%);
}

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

.hero-grid {
  position: absolute;
  inset: 80px 0 auto 0;
  z-index: 3;
  height: 58%;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, black 0%, transparent 74%);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(690px, calc(100% - 40px));
  padding: 132px 0 50px clamp(22px, 3vw, 58px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  max-width: 670px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 5.6vw, 86px);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76em;
  letter-spacing: 0.015em;
}

.hero-lede {
  max-width: 610px;
  margin: 22px 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  max-width: 650px;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 11, 0.36);
  backdrop-filter: blur(8px);
}

.proof-rail article {
  min-height: 72px;
  padding: 13px 14px;
  border-right: 1px solid rgba(242, 106, 22, 0.42);
}

.proof-rail article:last-child {
  border-right: 0;
}

.proof-rail span {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.proof-rail strong {
  display: block;
  margin-top: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.technical-label {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 12px minmax(130px, auto);
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

.technical-label::before {
  position: absolute;
  right: calc(100% - 7px);
  width: clamp(60px, 13vw, 190px);
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.node {
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 22, 0.16);
}

.label-top {
  top: 156px;
  right: 18%;
}

.label-mid {
  top: 45%;
  right: 35%;
}

.label-low {
  right: 17%;
  bottom: 13%;
}

.hero-dots {
  position: absolute;
  right: clamp(28px, 4vw, 56px);
  bottom: 34px;
  z-index: 6;
  display: flex;
  gap: 11px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
}

.hero-dots button.active {
  background: var(--orange);
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 2.1fr);
  align-items: center;
  min-height: 88px;
  padding: 14px clamp(22px, 3vw, 58px);
  border-bottom: 1px solid var(--line-dark);
  background: linear-gradient(90deg, #f6f5f2, #ffffff);
  color: #313436;
  gap: clamp(20px, 4vw, 58px);
}

.brand-strip__label {
  display: grid;
  gap: 6px;
  padding-right: 22px;
  border-right: 1px solid rgba(17, 19, 21, 0.16);
}

.brand-strip__label span {
  color: #4e5355;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-strip__label small {
  max-width: 330px;
  color: #7b7f82;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.logo-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(88px, 1fr));
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-rail li {
  display: grid;
  min-height: 52px;
  place-items: center;
}

.logo-rail img {
  width: auto;
  max-width: 112px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.86;
}

.wordmark {
  display: block;
  color: #3e4245;
  text-align: center;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.9;
}

.qiaodan {
  max-width: 124px;
  line-height: 1.04;
}

.lilanz {
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: 0.08em;
}

.miniso {
  font-size: clamp(17px, 1.45vw, 21px);
  letter-spacing: 0.1em;
}

.section {
  padding: clamp(54px, 6vw, 86px) clamp(22px, 3vw, 58px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 950;
  line-height: 1;
}

.text-link {
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-section {
  padding-top: 30px;
}

.product-section .section-head {
  margin-bottom: 18px;
}

.product-section h2 {
  max-width: 940px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.04;
}

.product-section .section-kicker {
  margin-bottom: 8px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 19, 21, 0.08);
  transition:
    transform 190ms ease,
    box-shadow 190ms ease,
    border-color 190ms ease;
}

.category-card:hover {
  border-color: rgba(242, 106, 22, 0.42);
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(17, 19, 21, 0.16);
}

.category-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.category-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: auto;
  padding: 34px 14px 13px;
  background: linear-gradient(0deg, rgba(8, 10, 11, 0.88), rgba(8, 10, 11, 0));
  color: var(--white);
}

.category-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
}

.category-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
}

.category-card p {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.solution-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  border-top: 1px solid rgba(17, 19, 21, 0.1);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 238, 231, 0.96) 45%, rgba(219, 225, 224, 0.9) 100%),
    var(--paper-2);
  color: var(--ink);
}

.solution-band::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(17, 19, 21, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 21, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.36));
}

.solution-band::after {
  position: absolute;
  right: -8%;
  top: -22%;
  z-index: -1;
  width: 42%;
  height: 144%;
  background:
    linear-gradient(90deg, rgba(242, 106, 22, 0.12), transparent 54%),
    linear-gradient(145deg, rgba(17, 19, 21, 0.08), rgba(255, 255, 255, 0));
  content: "";
  transform: skewX(-11deg);
}

.solution-copy {
  position: relative;
  padding-left: clamp(18px, 2vw, 28px);
}

.solution-copy::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 86px;
  border-radius: 8px;
  background: var(--orange);
  content: "";
}

.solution-copy h2 {
  color: var(--ink);
}

.about-band h2 {
  color: var(--white);
}

.solution-copy p {
  max-width: 610px;
  color: #596064;
  font-size: 17px;
  line-height: 1.55;
}

.solution-matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.solution-matrix article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 52px rgba(17, 19, 21, 0.08);
}

.solution-matrix span,
.spec-grid span,
.project-card span,
.catalog-strip span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-matrix strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.solution-matrix p {
  margin: 16px 0 0;
  color: #61676a;
  line-height: 1.48;
}

.capability-section {
  background: var(--paper-2);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.factory-photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--steel);
  box-shadow: var(--shadow);
}

.factory-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 11, 0.18), transparent);
  content: "";
}

.factory-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.capability-copy p {
  max-width: 640px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.spec-grid article {
  min-height: 130px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 20px;
}

.spec-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.18;
}

.project-section {
  background: var(--paper);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.project-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 10, 11, 0.9), transparent 62%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.42), transparent);
  content: "";
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.project-card strong {
  display: block;
  margin-top: 8px;
  max-width: 480px;
  font-size: 23px;
  line-height: 1.12;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.92), rgba(8, 10, 11, 0.72)),
    url("/assets/factory-8.jpg") center / cover;
  color: var(--white);
}

.about-band > p {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.catalog-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px clamp(22px, 3vw, 58px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--white);
}

.catalog-strip strong {
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.15;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: start;
  background: var(--paper);
}

.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  padding: 13px 16px;
  font-weight: 850;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(8, 10, 11, 0.18);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  padding: clamp(18px, 2.6vw, 34px);
  box-shadow: var(--shadow);
}

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

.quote-form label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 13px 12px;
}

.quote-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-nav a.is-active {
  color: var(--white);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.tool-button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dark:hover {
  background: #24282b;
  transform: translateY(-1px);
}

.inner-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 150px clamp(22px, 3vw, 58px) 72px;
}

.inner-hero__media {
  position: absolute;
  inset: 80px 0 0;
}

.inner-hero__media::before,
.inner-hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.inner-hero__media::before {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.82), rgba(8, 10, 11, 0.54) 42%, rgba(8, 10, 11, 0.12)),
    linear-gradient(0deg, rgba(8, 10, 11, 0.72), rgba(8, 10, 11, 0.08) 58%);
}

.inner-hero__media::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

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

.inner-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: var(--orange);
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.inner-hero__copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
}

.inner-hero .hero-actions {
  margin-top: 26px;
}

.listing-section {
  background: var(--paper);
}

.section-tight {
  padding-top: 12px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

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

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

.listing-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(17, 19, 21, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.listing-card:hover {
  border-color: rgba(242, 106, 22, 0.48);
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(17, 19, 21, 0.14);
}

.listing-card img {
  width: 100%;
  height: 252px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.listing-card > div {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 22px;
}

.listing-card span,
.side-panel > strong,
.detail-panel .section-kicker {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listing-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.04;
}

.listing-card p {
  margin: 15px 0 0;
  color: #62686b;
  line-height: 1.55;
}

.listing-card--wide {
  grid-template-columns: 0.86fr 1fr;
}

.listing-card--wide img {
  height: 100%;
  min-height: 330px;
}

.listing-card--case img {
  height: 340px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip-list span {
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: 999px;
  background: #f4f1eb;
  color: #4d5356;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.content-grid-section {
  background: var(--paper);
}

.content-grid,
.detail-layout,
.rfq-layout,
.resource-layout,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.content-main h2,
.detail-panel h2,
.rfq-guidance h2,
.resource-article h2,
.cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 950;
  line-height: 1.02;
}

.content-main p,
.detail-panel p,
.rfq-guidance p,
.resource-article p,
.cta-panel p,
.side-panel p {
  color: #596064;
  font-size: 17px;
  line-height: 1.58;
}

.side-panel {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    var(--white);
  padding: 26px;
  box-shadow: 0 20px 54px rgba(17, 19, 21, 0.08);
}

.side-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.check-list,
.compact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.compact-list li {
  position: relative;
  padding-left: 24px;
  color: #44494c;
  line-height: 1.5;
}

.check-list li::before,
.compact-list li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.detail-section {
  background: var(--paper-2);
}

.detail-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
}

.detail-layout--reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-gallery__main {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.detail-gallery__main img {
  width: 100%;
  height: min(58vw, 620px);
  min-height: 420px;
  object-fit: cover;
}

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

.thumb-grid img {
  width: 100%;
  height: 120px;
  border-radius: var(--radius);
  object-fit: cover;
}

.detail-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 20px 58px rgba(17, 19, 21, 0.08);
}

.detail-panel h3 {
  margin: 28px 0 8px;
  font-size: 24px;
}

.detail-panel .hero-actions {
  margin-top: 26px;
}

.spec-section {
  background: var(--paper);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 21, 0.06);
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 260px;
  background: #eeebe4;
  color: #2d3336;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.spec-table td {
  color: #555b5e;
  line-height: 1.55;
}

.cta-panel {
  overflow: hidden;
  border-top: 1px solid rgba(17, 19, 21, 0.1);
  border-bottom: 1px solid rgba(17, 19, 21, 0.1);
  background:
    linear-gradient(116deg, #ffffff 0%, #efede8 48%, #dfe4e3 100%),
    var(--paper-2);
}

.cta-panel > div {
  align-self: center;
}

.cta-panel figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-panel figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

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

.factory-gallery figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--steel);
}

.factory-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.process-section {
  background: var(--paper-2);
}

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

.process-list article {
  min-height: 260px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  padding: 22px;
}

.process-list span {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 950;
}

.process-list h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.08;
}

.process-list p {
  color: #606669;
  line-height: 1.52;
}

.rfq-layout {
  background: var(--paper);
}

.rfq-layout .quote-form {
  position: sticky;
  top: 108px;
}

.resource-layout {
  background: var(--paper);
  align-items: start;
}

.resource-article {
  max-width: 820px;
}

.resource-article section + section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.resource-article h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.legal-page {
  max-width: 900px;
}

.legal-page p {
  color: #555b5e;
  font-size: 17px;
  line-height: 1.65;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 54px clamp(22px, 3vw, 58px) 28px;
}

.site-footer .brand {
  min-width: 0;
}

.site-footer .brand-logo {
  width: min(310px, 100%);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 62px);
  padding: 34px 0;
}

.footer-grid div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.mobile-action-bar {
  display: none;
}

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

  .site-nav,
  .header-tools {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .menu-toggle span + span {
    margin-top: -13px;
  }

  body.nav-open .site-nav,
  body.nav-open .header-tools {
    position: fixed;
    left: 18px;
    right: 18px;
    z-index: 80;
    display: grid;
    background: rgba(8, 10, 11, 0.98);
  }

  body.nav-open .site-nav {
    top: 94px;
    justify-content: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.nav-open .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-open .site-nav a::after {
    display: none;
  }

  body.nav-open .site-nav a.is-active {
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
  }

  body.nav-open .header-tools {
    top: 395px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.nav-open .header-cta {
    grid-column: 1 / -1;
  }

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

  .brand-strip {
    grid-template-columns: 1fr;
    padding-block: 18px;
  }

  .brand-strip__label {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.12);
  }

  .logo-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .listing-grid--three,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-card--wide {
    grid-template-columns: 1fr;
  }

  .listing-card--wide img {
    height: 300px;
  }

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

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    inset: 80px 0 0 0;
    opacity: 0.82;
  }

  .hero-copy {
    width: auto;
    padding: 148px 20px 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

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

  .technical-label,
  .hero-dots {
    display: none;
  }

  .section-head,
  .solution-band,
  .capability-layout,
  .about-band,
  .contact-section,
  .content-grid,
  .detail-layout,
  .detail-layout--reverse,
  .rfq-layout,
  .resource-layout,
  .cta-panel,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .solution-matrix,
  .spec-grid,
  .project-grid,
  .quote-form,
  .catalog-strip,
  .listing-grid,
  .listing-grid--two,
  .listing-grid--three,
  .process-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: auto;
    padding: 132px 20px 58px;
  }

  .inner-hero__media {
    inset: 80px 0 0;
    opacity: 0.84;
  }

  .inner-hero h1 {
    font-size: clamp(40px, 11vw, 62px);
  }

  .listing-card > div {
    min-height: auto;
  }

  .listing-card img,
  .listing-card--case img {
    height: 250px;
  }

  .side-panel,
  .rfq-layout .quote-form {
    position: static;
  }

  .detail-gallery__main img {
    height: auto;
    min-height: 340px;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .spec-table td {
    padding-top: 0;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 88;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(8, 10, 11, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  body {
    padding-bottom: 64px;
  }

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

  .factory-photo,
  .factory-photo img {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 214px;
    max-height: 46px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .brand-copy small {
    font-size: 10px;
  }

  .hero-bg {
    top: 72px;
  }

  .hero-copy {
    padding: 126px 16px 56px;
  }

  .hero-actions,
  .contact-methods {
    display: grid;
  }

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

  .logo-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .logo-rail li {
    min-height: 46px;
  }

  .logo-rail img {
    max-width: 104px;
    max-height: 30px;
  }

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

  .proof-rail article {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 106, 22, 0.36);
    padding: 11px 12px;
  }

  .proof-rail article:nth-child(odd) {
    border-right: 1px solid rgba(242, 106, 22, 0.36);
  }

  .proof-rail article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .brand-strip__label small {
    max-width: none;
  }

  .section {
    padding: 48px 16px;
  }

  .category-card div {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
