:root {
  --ink: #16191b;
  --panel: #202326;
  --muted: #676b70;
  --paper: #f2efe9;
  --paper-2: #e7e1d7;
  --line: #d7d0c5;
  --red: #a71930;
  --red-2: #c5163a;
  --gold: #b39a68;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(22, 25, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(242, 239, 233, 0.92);
  border-bottom: 1px solid rgba(215, 208, 197, 0.78);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 188px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #33373a;
  font: 700 13px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--red);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.language-switcher a {
  min-width: 32px;
  padding: 6px 7px;
  color: #34383b;
  font-size: 11px;
  text-align: center;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--white);
  background: var(--red);
}

.localized-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: var(--panel);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.95) 0%, rgba(16, 18, 20, 0.75) 45%, rgba(16, 18, 20, 0.25) 100%),
    linear-gradient(180deg, rgba(16, 18, 20, 0.15), rgba(16, 18, 20, 0.76));
}

.hero::after {
  content: "";
  position: absolute;
  top: -9vh;
  right: 7vw;
  width: 210px;
  height: 58vh;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 440px);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  min-height: 96vh;
  padding: 132px clamp(20px, 6vw, 84px) 72px;
}

.hero-copy {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.eyebrow.gold {
  color: var(--gold);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font: 800 clamp(48px, 8vw, 96px) / 0.92 "Segoe UI", Arial, sans-serif;
}

h2 {
  margin-bottom: 18px;
  font: 800 clamp(30px, 4.2vw, 56px) / 1 "Segoe UI", Arial, sans-serif;
}

h3 {
  font: 800 21px / 1.1 "Segoe UI", Arial, sans-serif;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #d8d2c8;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font: 800 13px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.primary,
.filter.active {
  color: var(--white);
  background: var(--red);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.filter {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.product-filter-panel {
  margin-bottom: 34px;
  padding: 26px 0 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.filter-kicker {
  margin-bottom: 7px;
  color: var(--red);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.filter-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
}

.product-result-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-result-count strong {
  color: var(--ink);
  font-size: 20px;
}

.product-filter-panel .filter-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.product-filter-panel .filter {
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 68px;
  padding: 10px 14px;
  border-color: var(--line);
  border-radius: 4px;
  background: #f8f6f2;
  text-align: left;
  text-transform: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-filter-panel .filter:hover {
  border-color: #a9a196;
  background: var(--white);
  transform: translateY(-1px);
}

.product-filter-panel .filter:focus-visible {
  outline: 3px solid rgba(184, 22, 52, 0.3);
  outline-offset: 2px;
}

.product-filter-panel .filter.active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 8px 18px rgba(184, 22, 52, 0.18);
}

.filter-label {
  min-width: 0;
  line-height: 1.25;
}

.filter-count {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: #e9e4dc;
  font-size: 12px;
}

.filter.active .filter-count {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-card div {
  min-height: 112px;
  padding: 22px;
  background: rgba(242, 239, 233, 0.96);
}

.hero-card strong {
  display: block;
  color: var(--red);
  font: 800 31px "Segoe UI", Arial, sans-serif;
}

.hero-card span {
  color: var(--muted);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-band {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-band p,
.section-title p,
.customization p,
.contact-copy p,
.footer span {
  color: var(--muted);
  font-size: 17px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-title.light {
  color: var(--white);
}

.section-title.light p {
  color: #cfc7ba;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(22, 25, 27, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(22, 25, 27, 0.13);
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f4ee);
}

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

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
  border-top: 5px solid var(--red);
}

.product-body .tag {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--gold);
  font: 800 11px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 6px;
}

.product-body > p {
  color: var(--muted);
}

.product-name {
  min-height: 48px;
}

.specs {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 12px;
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #ece7df;
  padding-top: 9px;
  font-size: 14px;
}

.specs span:first-child {
  color: var(--muted);
}

.specs span:last-child {
  font-weight: 800;
  text-align: right;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px -22px -22px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--ink);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.product-link:hover {
  background: var(--red);
}

.product-page {
  padding-top: 76px;
  background: var(--paper);
}

.product-breadcrumb {
  padding: 28px 0 18px;
  color: var(--muted);
  font: 700 13px "Segoe UI", Arial, sans-serif;
}

.product-breadcrumb a {
  color: var(--red);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.product-detail-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
  padding: clamp(20px, 4vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-copy h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(54px, 8vw, 92px);
}

.product-detail-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(27px, 3vw, 40px);
}

.product-detail-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.product-spec-section {
  padding: clamp(58px, 8vw, 92px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(30px, 6vw, 82px);
}

.color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.color-chip {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
  border-left: 4px solid var(--gold);
  font: 700 13px "Segoe UI", Arial, sans-serif;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.detail-specs div {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-specs span:first-child {
  color: var(--muted);
}

.detail-specs span:last-child {
  font-weight: 800;
}

.spec-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
}

.spec-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ece7df;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 42%;
  color: var(--muted);
  font-weight: 700;
}

.spec-table td {
  color: var(--ink);
  font-weight: 800;
}

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

.product-cta .split {
  align-items: center;
}

.product-cta h2 {
  margin-bottom: 0;
}

.product-cta .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

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

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
}

.factory-main img,
.factory-stack img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.factory-main img {
  height: 566px;
}

.factory-stack {
  display: grid;
  gap: 18px;
}

.factory-stack img {
  height: 176px;
}

.flow-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.flow-grid article,
.service-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font: 800 12px "Segoe UI", Arial, sans-serif;
}

.flow-grid strong,
.service-grid strong {
  display: block;
  margin-bottom: 8px;
  font: 800 18px "Segoe UI", Arial, sans-serif;
}

.flow-grid p {
  margin-bottom: 0;
  color: #cfc7ba;
  font-size: 15px;
}

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

.customization .btn {
  margin-top: 12px;
}

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

.service-grid article {
  background: var(--white);
  border-color: var(--line);
}

.position {
  padding: 0;
  background: var(--paper);
}

.position-panel {
  position: relative;
  padding: clamp(38px, 7vw, 72px);
  color: var(--white);
  background: var(--panel);
}

.position-panel::before {
  content: "";
  position: absolute;
  top: clamp(38px, 7vw, 72px);
  bottom: clamp(38px, 7vw, 72px);
  left: 0;
  width: 6px;
  background: var(--red);
}

.position-panel > div {
  max-width: 980px;
}

.position-panel h2 {
  margin-bottom: 0;
  font-size: clamp(27px, 3.4vw, 44px);
}

.contact {
  background:
    linear-gradient(110deg, rgba(22, 25, 27, 0.98) 0%, rgba(22, 25, 27, 0.91) 58%, rgba(167, 25, 48, 0.84) 100%),
    url("assets/factory/factory-warehouse.webp") center/cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-copy img {
  width: 310px;
  margin-bottom: 42px;
}

.contact-copy h2 {
  max-width: 520px;
}

.contact-copy p {
  max-width: 620px;
  color: #d8d1c6;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf7;
  font: 16px Corbel, "Segoe UI", Arial, sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.floating-actions {
  position: fixed;
  z-index: 18;
  right: 16px;
  bottom: 18px;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  font: 800 12px "Segoe UI", Arial, sans-serif;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 84px);
  color: #d8d1c6;
  background: #111315;
}

.footer div {
  display: grid;
  gap: 6px;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 0;
  }

  .language-switcher {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
    background: var(--white);
  }

  .hero-content,
  .split,
  .factory-layout,
  .product-detail-hero,
  .product-spec-layout,
  .contact-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: none;
  }

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

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

  .factory-main img,
  .factory-stack img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 150px;
  }

  .main-nav {
    top: 68px;
  }

  .product-page {
    padding-top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    width: 120px;
    height: 42vh;
    right: -22px;
  }

  .hero-content {
    min-height: auto;
    padding: 112px 20px 46px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-card,
  .product-grid,
  .service-grid,
  .flow-grid,
  .contact-form,
  .position-panel,
  .detail-specs {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    aspect-ratio: 1 / 1;
  }

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

  .detail-specs div {
    border-right: 0;
  }

  .product-cta .hero-actions {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .product-image {
    aspect-ratio: 1 / 1;
    padding: 10px;
  }

  .position-panel {
    padding: 34px 24px;
  }

  .footer {
    padding-bottom: 86px;
  }
}

/* Multi-page B2B site */
.site-header {
  min-height: 72px;
}

.brand img {
  width: 176px;
  height: auto;
}

.main-nav {
  gap: clamp(12px, 1.7vw, 24px);
  font-size: 11px;
}

.main-nav .nav-contact {
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
}

.b2b-hero {
  min-height: calc(100vh - 104px);
}

.b2b-hero .hero-content {
  min-height: calc(100vh - 104px);
  padding-top: 112px;
  padding-bottom: 42px;
}

.b2b-hero .hero-copy {
  max-width: 720px;
}

.b2b-hero h1 {
  font-size: clamp(48px, 6.6vw, 82px);
}

.hero-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  color: var(--white);
  font: 700 13px "Segoe UI", Arial, sans-serif;
}

.hero-text-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.trust-band {
  color: var(--white);
  background: var(--red);
}

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

.trust-grid article {
  min-height: 132px;
  padding: 30px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  font: 800 16px "Segoe UI", Arial, sans-serif;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.split-heading,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.split-heading {
  max-width: none;
}

.split-heading h2,
.two-column h2 {
  margin-bottom: 0;
}

.split-heading p,
.two-column p,
.section-heading > p,
.data-note {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  color: var(--red);
  font-weight: 800;
}

.product-grid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-grid-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.dark-band p {
  color: #d2ccc2;
}

.capability-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.capability-list article {
  padding: 24px;
  background: #24282b;
}

.capability-list h3,
.capability-list p {
  margin-bottom: 6px;
}

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

.format-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
}

.format-grid span,
.qc-grid span,
.manufacturing-flow > article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font: 800 13px "Segoe UI", Arial, sans-serif;
}

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

.factory-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.factory-feature-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.factory-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.spare-parts-band {
  background: var(--white);
}

.inquiry-band {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(22, 25, 27, 0.98), rgba(22, 25, 27, 0.9)),
    url("assets/factory/packing-stock.webp") center / cover;
}

.inquiry-band p {
  color: #d8d1c6;
}

.inner-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 430px;
  padding-top: 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 18, 20, 0.96), rgba(16, 18, 20, 0.58), rgba(16, 18, 20, 0.36));
}

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

.products-hero .inner-hero-media::after {
  background: linear-gradient(90deg, rgba(16, 18, 20, 0.96) 0%, rgba(16, 18, 20, 0.78) 35%, rgba(16, 18, 20, 0.34) 68%, rgba(16, 18, 20, 0.12) 100%);
}

.products-hero .inner-hero-media img {
  object-position: center 52%;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 58px;
}

.inner-hero-content h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 76px);
}

.inner-hero-content > p:not(.eyebrow) {
  max-width: 760px;
  color: #ded8ce;
  font-size: 19px;
}

.inner-hero:not(.with-media) .inner-hero-content {
  max-width: 1180px;
}

.slim-section {
  padding: 70px 0;
}

.support-strip {
  background: var(--white);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.capability-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-top: 4px solid var(--red);
}

.process-list li > span {
  color: var(--red);
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.manufacturing-flow {
  display: grid;
  gap: 54px;
}

.manufacturing-flow > article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.manufacturing-flow img,
.editable-data {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manufacturing-flow img {
  height: auto;
}

.manufacturing-flow .step-03 {
  object-position: 50% 49%;
}

.manufacturing-flow .step-04 {
  object-position: 50% 42%;
}

.editable-data {
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px dashed #afa798;
  text-align: center;
}

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

.qc-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.quality-note {
  margin-top: 24px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.quality-note strong {
  display: block;
  margin-bottom: 6px;
}

.quality-note p {
  margin-bottom: 0;
  color: #d8d1c6;
}

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

.report-heading {
  align-items: end;
  margin-bottom: 34px;
}

.report-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.report-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.report-preview {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #ece9e4;
}

.report-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.report-card:hover .report-preview img {
  transform: scale(1.02);
}

.report-content {
  padding: 22px;
}

.report-content span {
  color: var(--red);
  font: 800 11px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.report-content h3 {
  margin: 8px 0 10px;
  font-size: 21px;
}

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

.report-disclaimer {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 24px 26px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.report-disclaimer p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.report-disclaimer strong {
  color: var(--ink);
}

.report-disclaimer .btn {
  flex: 0 0 auto;
}

.case-study-list {
  display: grid;
  gap: 28px;
}

.case-study {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 4px;
  background: var(--white);
}

.case-study-heading {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.case-number,
.case-market {
  color: var(--red);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.case-market {
  margin-bottom: 5px;
}

.case-study-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, auto));
  gap: 12px 28px;
  margin: 0;
}

.case-meta dt,
.case-meta dd {
  margin: 0;
}

.case-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.case-meta dd {
  font-weight: 750;
}

.case-study-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
}

.case-section {
  padding: 30px;
}

.case-section + .case-section {
  border-left: 1px solid var(--line);
}

.case-section h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.case-section p {
  margin: 0;
  color: var(--muted);
}

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

.solution-list li {
  position: relative;
  padding-left: 17px;
}

.solution-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  content: "";
}

.case-result {
  background: var(--paper-2);
}

.contact-details dl {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  margin: 24px 0 0;
}

.contact-details dt,
.contact-details dd {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
}

.values-band {
  background: var(--paper-2);
}

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

.value-grid article {
  padding: 26px;
  background: var(--white);
  border-top: 5px solid var(--red);
}

.value-grid strong {
  color: var(--red);
  font: 800 36px "Segoe UI", Arial, sans-serif;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font: 800 17px "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--red);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 34px 22px 0;
  color: var(--muted);
}

.faq-contact {
  position: sticky;
  top: 100px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.contact-details {
  padding: 30px;
  background: var(--white);
  border-top: 5px solid var(--red);
}

.contact-details dl {
  grid-template-columns: 120px minmax(0, 1fr);
}

.inquiry-form {
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 0;
  font: 16px Corbel, "Segoe UI", Arial, sans-serif;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(167, 25, 48, 0.35);
  border-color: var(--red);
}

.full-field {
  grid-column: 1 / -1;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  text-transform: none !important;
  font-weight: 600 !important;
}

.consent-field input {
  min-height: 0;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.full-width {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted) !important;
  font-size: 14px;
}

.form-status.success {
  color: #176534 !important;
}

.form-status.error {
  color: #a71930 !important;
}

.inquiry-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.legal-page {
  background: var(--white);
}

.narrow-shell {
  max-width: 820px;
}

.legal-page h2 {
  margin-top: 38px;
  font-size: 28px;
}

.error-page {
  display: grid;
  min-height: 72vh;
  align-items: center;
  padding-top: 72px;
}

.error-page h1 {
  color: var(--ink);
}

.site-footer {
  color: #d8d1c6;
  background: #111315;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 44px;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 10px;
  color: #bdb6aa;
  font-size: 14px;
}

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

.site-footer .footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 16px 0 18px;
  padding: 11px 15px;
  color: var(--white);
  background: #187f49;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  font-weight: 800;
}

.footer-whatsapp img,
.whatsapp-float img,
.social-link img {
  display: block;
  filter: brightness(0) invert(1);
}

.site-footer .footer-whatsapp:hover {
  color: var(--white);
  background: #11693b;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.site-footer .social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #d8d1c6;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-footer .social-links a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.site-footer .social-links .linkedin {
  background: #0a66c2;
}

.site-footer .social-links .facebook {
  background: #1877f2;
}

.site-footer .social-links .instagram {
  background: #e4405f;
}

.site-footer .social-links .tiktok {
  background: #000;
}

.site-footer .social-links .youtube {
  background: #f00;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  margin: 0;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  z-index: 18;
  right: 18px;
  bottom: 18px;
  padding: 13px 16px;
  color: var(--white);
  background: #187f49;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  font: 800 12px "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 18px;
  color: var(--muted);
  font: 700 13px "Segoe UI", Arial, sans-serif;
}

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

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

.three-column article {
  padding: 28px;
  background: var(--white);
  border-top: 5px solid var(--red);
}

.three-column h2 {
  font-size: 27px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.packing-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.related-models {
  display: grid;
  gap: 12px;
}

.related-models a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
}

.related-models img {
  width: 96px;
  height: 72px;
  object-fit: contain;
}

.related-models span,
.related-models strong {
  display: block;
}

.related-models span {
  color: var(--muted);
  font-size: 13px;
}

.related-models strong {
  color: var(--ink);
  font-size: 17px;
}

.card-specs {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.card-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid #ece7df;
  font-size: 13px;
}

.card-specs span {
  color: var(--muted);
}

.card-specs strong {
  text-align: right;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 10px;
  }

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

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

@media (max-width: 980px) {
  .site-header {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .main-nav a,
  .main-nav .nav-contact {
    padding: 13px 0;
    color: var(--ink);
    background: transparent;
    font-size: 12px;
  }

  .language-switcher {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
    background: var(--white);
  }

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

  .split-heading,
  .two-column,
  .factory-feature,
  .contact-page-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .manufacturing-flow > article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .manufacturing-flow img,
  .manufacturing-flow .editable-data {
    grid-column: 2;
  }

  .case-study-heading {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .case-meta {
    grid-column: 2;
  }

  .case-study-body {
    grid-template-columns: 1fr;
  }

  .case-section + .case-section {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-contact {
    position: static;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 150px;
  }

  .filter-heading {
    display: grid;
    gap: 10px;
  }

  .filter-heading h2 {
    font-size: 24px;
  }

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

  .product-filter-panel .filter {
    min-height: 72px;
    padding: 10px 12px;
  }

  .b2b-hero,
  .b2b-hero .hero-content {
    min-height: auto;
  }

  .b2b-hero .hero-content {
    padding-top: 108px;
  }

  .b2b-hero .hero-card {
    display: none;
  }

  .hero-text-links {
    display: grid;
  }

  .trust-grid,
  .format-grid,
  .capability-grid,
  .process-list,
  .qc-grid,
  .value-grid,
  .three-column,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: auto;
    padding: 22px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .inner-hero {
    min-height: 390px;
    padding-top: 68px;
  }

  .products-hero .inner-hero-media img {
    object-position: 54% center;
  }

  .products-hero .inner-hero-media::after {
    background: linear-gradient(90deg, rgba(16, 18, 20, 0.92), rgba(16, 18, 20, 0.58));
  }

  .inner-hero-content {
    padding-top: 64px;
    padding-bottom: 42px;
  }

  .inner-hero-content h1 {
    font-size: 43px;
  }

  .format-grid article,
  .capability-grid article,
  .qc-grid article {
    min-height: auto;
  }

  .manufacturing-flow > article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .manufacturing-flow img,
  .manufacturing-flow .editable-data {
    grid-column: 1;
  }

  .contact-details dl {
    grid-template-columns: 1fr;
  }

  .contact-details dt {
    padding-bottom: 2px;
  }

  .contact-details dd {
    padding-top: 2px;
    border-top: 0;
  }

  .case-study-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .case-meta {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
    margin-top: 8px;
  }

  .case-section {
    padding: 24px 20px;
  }

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

  .report-disclaimer {
    display: grid;
    gap: 18px;
    padding: 22px 20px;
  }

  .report-disclaimer .btn {
    width: 100%;
  }

  .inquiry-form {
    padding: 20px;
  }

  .full-field {
    grid-column: auto;
  }

  .footer-grid {
    padding-top: 46px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 86px;
  }

  .packing-note {
    display: grid;
  }

  .product-grid-footer {
    display: grid;
  }

  .product-grid-footer .btn {
    width: 100%;
  }

  .product-detail-hero {
    padding-top: 0;
  }
}
