:root {
  color-scheme: dark;
  --black: #040404;
  --charcoal: #0c0d0f;
  --panel: #14161a;
  --panel-strong: #1d2025;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #ffffff;
  --muted: #a3a8ad;
  --soft: #e1e5e8;
  --red: #e7312a;
  --red-dark: #b91e18;
  --steel: #8a949f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --max: 1220px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: var(--white);
  min-width: 320px;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 4, 4, 0.82);
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231, 49, 42, 0.72), transparent);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark img {
  width: 154px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.nav-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(231, 49, 42, 0.26);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-quote:hover,
.nav-quote:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: #ff3b30;
  box-shadow: 0 18px 42px rgba(231, 49, 42, 0.38);
}

.section {
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/patterns/industrial-grid.svg");
  background-size: 360px 360px;
  background-position: center top;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.section > .shell,
.page-hero > .shell,
.detail-hero > .shell {
  position: relative;
  z-index: 1;
}

.section-tight {
  padding: 56px 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%),
    #090a0b;
}

.section-dark::before {
  opacity: 0.2;
}

.section-metal {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 30%),
    linear-gradient(180deg, #15171a, #08090a);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-metal::before {
  opacity: 0.24;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
  overflow: hidden;
  background-color: #050505;
}

.hero-home {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.52) 35%, rgba(0, 0, 0, 0.20) 65%, rgba(0, 0, 0, 0.02) 100%),
    url("/assets/images/hero-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px;
}

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

h1 {
  font-size: 56px;
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: 0;
  max-width: 780px;
  font-weight: 780;
}

h2 {
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: 0;
  font-weight: 760;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  color: var(--soft);
  font-size: 18px;
  max-width: 760px;
  line-height: 1.72;
}

.hero-copy .lead {
  max-width: 650px;
}

.hero-copy {
  max-width: 690px;
  position: relative;
  padding-left: 26px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 118px;
  background: linear-gradient(180deg, var(--red), rgba(231, 49, 42, 0));
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(231, 49, 42, 0.22);
}

.button.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 42px rgba(231, 49, 42, 0.32);
}

.button.small {
  min-height: 38px;
  padding-inline: 13px;
  font-size: 14px;
}

.line-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--red);
}

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

.section-head p {
  max-width: 640px;
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

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

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

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

.category-card,
.product-card,
.capability-card,
.metal-card,
.contact-card,
.spec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 20, 23, 0.9);
}

.category-card {
  min-height: 340px;
  height: 100%;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.66;
  padding: 32px 22px 82px;
  transform: scale(1);
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.32s ease, opacity 0.32s ease, filter 0.32s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 0.24s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74) 72%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 66%);
}

.category-card-content {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.category-card .line-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 49, 42, 0.62);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.category-card:hover::before {
  border-color: rgba(231, 49, 42, 0.38);
}

.category-card:hover img {
  transform: scale(1.035);
  opacity: 0.72;
  filter: saturate(1.04) contrast(1.08);
}

.category-card h3 {
  margin-bottom: 8px;
}

.category-card p {
  margin-bottom: 18px;
}

.category-card .card-action {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}

.category-card span,
.product-meta,
.mini-label {
  color: var(--steel);
  font-size: 13px;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.product-media {
  aspect-ratio: 4 / 3;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
}

.product-card:hover .product-media img {
  transform: none;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-title {
  margin-bottom: 2px;
}

.spec-list {
  display: grid;
  gap: 7px;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  color: var(--soft);
  font-size: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.spec-list dt {
  color: var(--steel);
}

.spec-list dd {
  margin: 0;
}

.product-card .actions {
  margin-top: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 62px;
  background:
    linear-gradient(135deg, rgba(231, 49, 42, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #08090a;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: 50px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.category-pill:hover,
.category-pill.is-active {
  color: var(--white);
  border-color: var(--red);
  background: rgba(231, 49, 42, 0.12);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.feature-photo {
  position: relative;
  min-height: 430px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
  clip-path: none;
  mask-image: none;
  border-image: none;
  isolation: isolate;
}

.feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.feature-photo-large {
  min-height: 520px;
}

.factory-system {
  display: grid;
  gap: 34px;
}

.factory-system-head {
  max-width: 900px;
}

.factory-system-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.factory-system-grid .feature-photo {
  min-height: 520px;
  height: 100%;
}

.process-grid-six {
  height: 100%;
  align-content: stretch;
  margin: 0;
}

.process-grid-six .process-card {
  min-height: 0;
}

.brand-statement {
  background:
    linear-gradient(180deg, #050505, #0c0d0f 52%, #050505);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-philosophy {
  background:
    linear-gradient(90deg, rgba(231, 49, 42, 0.08), transparent 46%),
    #08090a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.philosophy-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--red);
}

.philosophy-strip h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.philosophy-strip p {
  max-width: 820px;
  margin-bottom: 0;
}

.brand-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.statement-copy {
  position: relative;
  padding: 20px 0 20px 24px;
}

.statement-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--red), rgba(231, 49, 42, 0));
}

.statement-copy h2 {
  max-width: 780px;
  font-size: 44px;
}

.statement-cards {
  display: grid;
  gap: 14px;
  align-self: start;
}

.culture-panel {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 49, 42, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.culture-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.culture-panel strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1.25;
}

.culture-panel p {
  margin-bottom: 0;
  color: var(--soft);
}

.statement-card,
.process-card {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.statement-card .line-icon,
.process-card .line-icon {
  margin-bottom: 16px;
  color: var(--red);
}

.statement-card h3,
.process-card h3 {
  font-size: 18px;
}

.statement-card p,
.process-card p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.process-card {
  padding: 20px;
  border-left-color: rgba(231, 49, 42, 0.7);
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: rotate(28deg);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 700;
}

.proof-list .line-icon {
  width: 18px;
  height: 18px;
}

.metal-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.metal-card strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
}

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

.image-tile {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  clip-path: none;
  mask-image: none;
  border-image: none;
  isolation: isolate;
}

.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.74));
}

.image-tile:hover img {
  transform: scale(1.035);
  filter: contrast(1.06);
}

.image-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.74);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.image-tile .line-icon {
  width: 18px;
  height: 18px;
}

.detail-hero {
  padding: 52px 0 72px;
  background: linear-gradient(180deg, #101113, #050505);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: start;
}

.gallery-main {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f7f7;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumb {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--red);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
}

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

.spec-card {
  padding: 16px;
}

.spec-card span {
  display: block;
  color: var(--steel);
  font-size: 12px;
  margin-bottom: 5px;
}

.spec-card strong {
  color: var(--soft);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.description-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.78);
}

.brand-support-strip {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(231, 49, 42, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 49, 42, 0.12), transparent 42%),
    rgba(17, 18, 20, 0.82);
}

.brand-support-strip h2 {
  font-size: 20px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.brand-support-strip p {
  font-size: 14px;
  margin-bottom: 16px;
}

.capability-card {
  padding: 24px;
  min-height: 220px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 23, 0.92);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 68px;
  height: 1px;
  background: linear-gradient(90deg, rgba(231, 49, 42, 0.72), transparent);
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 49, 42, 0.5);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.capability-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 42px;
}

.capability-card .line-icon {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.86);
}

.capability-card .number {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 24px;
  min-width: 0;
}

.contact-profile {
  position: relative;
  overflow: hidden;
}

.contact-profile > h2,
.contact-profile > p,
.contact-profile > dl {
  position: relative;
  z-index: 1;
}

.map-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.map-card-primary {
  margin: 18px 0 22px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d0e10;
}

.about-company {
  max-width: 940px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-list dt {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--steel);
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-list .line-icon {
  width: 18px;
  height: 18px;
}

.contact-list dd {
  margin: 0;
  color: var(--soft);
}

.contact-persons {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-persons h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

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

.contact-person-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.contact-person-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-person-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-person-card p {
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

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

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

.field label {
  color: var(--steel);
  font-size: 13px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--white);
  background: #0d0e10;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 44px;
  padding: 11px 12px;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(255, 59, 48, 0.32);
  border-color: var(--red);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070708;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
}

.site-footer h2 {
  font-size: 15px;
  margin-bottom: 12px;
}

.site-footer p {
  font-size: 14px;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.footer-slogan {
  color: var(--white);
  font-weight: 700;
}

.footer-contact-person {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-person strong {
  color: var(--white);
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 18, 20, 0.8);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--steel);
  font-size: 13px;
  margin-bottom: 20px;
}

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

:focus-visible {
  outline: 2px solid rgba(231, 49, 42, 0.78);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .brand-statement-grid,
  .feature-band,
  .factory-system-grid,
  .detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .feature-photo-large,
  .feature-photo {
    min-height: 360px;
  }

  .factory-system-grid .feature-photo {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 10px 12px;
  }

  .header-actions {
    display: contents;
  }

  .brand-mark {
    min-width: 142px;
  }

  .brand-mark img {
    width: 142px;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    flex: 1 0 100%;
    gap: 4px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 8px 4px;
    font-size: 12px;
  }

  .nav-quote {
    order: 2;
    margin-left: auto;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  .hero {
    min-height: calc(100vh - 96px);
    align-items: center;
    padding-bottom: 42px;
  }

  .hero-home {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.52) 35%, rgba(0, 0, 0, 0.20) 65%, rgba(0, 0, 0, 0.02) 100%),
      url("/assets/images/hero-home.jpg");
    background-position: 62% center;
  }

  h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.66;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    display: block;
  }

  .philosophy-strip {
    display: grid;
    padding-left: 18px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .contact-person-grid,
  .product-grid,
  .image-row,
  .footer-grid,
  .form-grid,
  .process-grid,
  .spec-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .hero-copy::before {
    height: 84px;
  }

  .statement-copy {
    padding-left: 18px;
  }

  .statement-copy h2 {
    font-size: 31px;
  }

  .category-card {
    min-height: 300px;
    padding: 22px;
  }

  .category-card img {
    padding: 24px 16px 94px;
  }

  .product-media {
    padding: 22px;
  }

  .feature-photo {
    min-height: 280px;
  }

  .factory-system-grid .feature-photo {
    min-height: 280px;
  }

  .factory-system {
    gap: 24px;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
