:root {
  --ink: #171b1f;
  --charcoal: #273138;
  --muted: #657078;
  --line: #d9dee1;
  --soft: #f4f6f5;
  --soft-warm: #f7f3f0;
  --white: #ffffff;
  --accent: #c64f2c;
  --accent-dark: #963a20;
  --green: #2d665a;
  --green-dark: #1f4c44;
  --shadow: 0 14px 40px rgba(23, 27, 31, 0.08);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(198, 79, 44, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 7px 22px rgba(23, 27, 31, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.brand-text span:first-child {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.brand-text span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 26px;
}

.nav-links a {
  position: relative;
  padding: 25px 0 23px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.btn-secondary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: #aeb6bb;
}

.btn-outline:hover {
  border-color: var(--ink);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: 56px;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

p {
  margin-bottom: 18px;
  color: var(--muted);
}

.home-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.hero-carousel,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-shade {
  z-index: 1;
  background: rgba(8, 13, 14, 0.66);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: 60px 0;
}

.hero-copy h1 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero-copy .eyebrow {
  color: #ff9b78;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.home-hero .btn-outline {
  color: var(--white);
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.home-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-note span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: #66c39b;
  border-radius: 50%;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: background-color 180ms ease;
}

.hero-dot.is-active,
.hero-dot:hover,
.hero-dot:focus-visible {
  background: var(--white);
}

.trust-strip {
  background: var(--ink);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.trust-item {
  min-height: 104px;
  padding: 25px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

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

.trust-item strong {
  color: var(--white);
  font-size: 15px;
}

.trust-item span {
  margin-top: 6px;
  color: #bfc7cb;
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-warm {
  background: var(--soft-warm);
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center p {
  margin-right: auto;
  margin-left: auto;
}

.section-head p {
  max-width: 700px;
}

.section-dark .section-head h2,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #c3cbce;
}

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

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover {
  border-color: #aeb6bb;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.category-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

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

.category-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.category-card-body p {
  flex: 1 1 auto;
  margin-bottom: 18px;
  font-size: 14px;
}

.category-code,
.product-code {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.buyer-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 70px;
}

.buyer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.buyer-list li {
  padding: 20px 18px 20px 0;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.buyer-list li:nth-child(odd) {
  margin-right: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.split-layout.reverse .split-media {
  order: 2;
}

.split-media {
  min-width: 0;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

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

.factory-photo {
  margin: 0;
}

.factory-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
}

.factory-photo figcaption {
  padding-top: 11px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px 24px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

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

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

.process-step {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step strong {
  display: block;
  margin-bottom: 46px;
  color: var(--accent-dark);
  font-size: 13px;
}

.process-step p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.proof-block {
  padding: 34px;
  background: #22282d;
  border-top: 3px solid var(--accent);
}

.proof-block p {
  margin-bottom: 24px;
}

.proof-block .text-link {
  color: #ffb69f;
}

.cta-band {
  padding: 72px 0;
  color: var(--white);
  background: var(--green-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  gap: 44px;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.cta-copy p {
  margin-bottom: 0;
  color: #d2e0dc;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.page-hero {
  overflow: hidden;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: 470px;
  margin: 0 auto;
  gap: 54px;
}

.page-hero-copy {
  max-width: 760px;
  padding: 60px 0;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  font-size: 18px;
}

.page-hero-media {
  align-self: stretch;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
}

.page-hero.photo-hero {
  position: relative;
  color: var(--white);
  background-color: var(--ink);
}

.page-hero.photo-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(15, 19, 22, 0.72);
}

.page-hero.photo-hero .page-hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 430px;
}

.page-hero.photo-hero .page-hero-copy {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
}

.page-hero.photo-hero h1 {
  color: var(--white);
}

.page-hero.photo-hero p:not(.eyebrow) {
  color: #d7dddf;
}

.production-hero {
  background-color: var(--ink);
  background-image: url("/assets/factory/apparel-production-floor.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.quality-hero {
  background-color: var(--ink);
  background-image: url("/assets/factory/business-suits-finishing-line.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-hero {
  background-color: var(--ink);
  background-image: url("/assets/site/apparel-rack.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.anchor-nav {
  position: sticky;
  top: 76px;
  z-index: 40;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.anchor-nav-inner {
  display: flex;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  gap: 24px;
}

.anchor-nav a {
  flex: 0 0 auto;
  padding: 16px 0 14px;
  color: var(--charcoal);
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
}

.anchor-nav a:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.category-section {
  scroll-margin-top: 135px;
}

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

.category-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 30px;
}

.category-title-row .section-head {
  margin-bottom: 0;
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 220ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.018);
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.product-card-body h3 {
  font-size: 19px;
}

.product-card-body > p {
  margin-bottom: 18px;
  font-size: 14px;
}

.spec-list {
  margin: auto 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.spec-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  gap: 10px;
  font-size: 12px;
}

.spec-list strong {
  color: var(--charcoal);
  font-weight: 800;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.product-actions .text-link {
  font-size: 13px;
}

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

.feature-item {
  min-height: 178px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-item p {
  margin-bottom: 0;
  font-size: 14px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.content-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 44px;
}

.rfq-form {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b9c1c6;
  border-radius: 3px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(198, 79, 44, 0.14);
}

.field-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 18px;
}

.form-footer p {
  margin: 0;
  font-size: 12px;
}

.form-message {
  display: none;
  margin: 0 0 20px;
  padding: 14px 16px;
  color: #17483f;
  background: #e7f2ef;
  border: 1px solid #a9c9c1;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  color: #7b2b1b;
  background: #f9eae5;
  border-color: #dfb2a4;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.contact-panel strong {
  margin-bottom: 15px;
  overflow-wrap: anywhere;
  color: var(--charcoal);
  font-size: 14px;
}

.contact-panel strong:last-child {
  margin-bottom: 0;
}

.direct-contact {
  display: grid;
  gap: 10px;
}

.footer {
  padding: 62px 0 24px;
  color: var(--white);
  background: #111518;
}

.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1.15fr;
  gap: 44px;
}

.footer-grid-compact {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(56px, 10vw, 150px);
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 18px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 13px;
}

.footer p,
.footer li,
.footer a {
  color: #afb8bc;
  font-size: 13px;
}

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

.footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 7px;
}

.footer-about > p {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.75;
}

.footer-contact {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.footer-contact p {
  margin-bottom: 10px;
  line-height: 1.65;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
}

.footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer .social-link:hover,
.footer .social-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

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

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

.social-whatsapp {
  background: #25d366;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  color: #879196;
  border-top: 1px solid #30383d;
  font-size: 12px;
}

.whatsapp-link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(31, 76, 68, 0.25);
  font-size: 13px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-link.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.not-found {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 70px 24px;
  text-align: center;
}

.not-found-inner {
  max-width: 680px;
}

.not-found-code {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 46px;
  }

  .nav-wrap {
    gap: 18px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-actions .btn {
    display: none;
  }

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

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

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

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 22px 24px 40px;
    overflow-y: auto;
    background: var(--white);
    gap: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-links a::after {
    display: none;
  }

  .home-hero {
    min-height: 610px;
  }

  .home-hero-inner {
    min-height: 610px;
  }

  .hero-copy {
    max-width: 720px;
    padding: 62px 0 88px;
  }

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

  .trust-item:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .buyer-row,
  .split-layout,
  .contact-layout,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-layout.reverse .split-media {
    order: 0;
  }

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

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .page-hero-inner {
    grid-template-columns: 1fr 280px;
    min-height: 410px;
  }

  .anchor-nav {
    top: 68px;
  }

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

  .footer-grid-compact {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 19px;
  }

  .nav-wrap,
  .home-hero-inner,
  .trust-strip-inner,
  .section-inner,
  .page-hero-inner,
  .anchor-nav-inner,
  .cta-inner,
  .footer-inner {
    width: min(100% - 32px, var(--container));
  }

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

  .brand-text span:last-child {
    display: none;
  }

  .hero-copy {
    padding: 48px 0 88px;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-dots {
    right: auto;
    bottom: 28px;
    left: 0;
  }

  .trust-strip-inner,
  .category-grid,
  .product-grid,
  .process-grid,
  .feature-grid,
  .factory-gallery,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-self: start;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:nth-child(odd) {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .section {
    padding: 68px 0;
  }

  .category-media {
    aspect-ratio: 1 / 1;
  }

  .buyer-list {
    grid-template-columns: 1fr;
  }

  .buyer-list li:nth-child(odd) {
    margin-right: 0;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 190px;
  }

  .process-step strong {
    margin-bottom: 28px;
  }

  .page-hero-inner {
    display: block;
    min-height: auto;
  }

  .page-hero-copy {
    padding: 44px 0 14px;
  }

  .page-hero-media {
    height: 270px;
  }

  .page-hero.photo-hero .page-hero-inner,
  .page-hero.photo-hero .page-hero-copy {
    min-height: 360px;
  }

  .category-title-row,
  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .rfq-form {
    padding: 22px 18px;
  }

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

  .form-footer .btn {
    width: 100%;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .whatsapp-link {
    right: 12px;
    bottom: 12px;
  }
}

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

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