:root {
  --ink: #171614;
  --ink-soft: #2f302d;
  --paper: #f4f6f3;
  --white: #ffffff;
  --line: #dce1dc;
  --muted: #666b66;
  --green: #163f36;
  --green-soft: #dfe8e2;
  --copper: #b85f34;
  --copper-dark: #934724;
  --slate: #5f6f78;
  --shadow: 0 22px 60px rgba(23, 22, 20, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(246, 245, 240, 0.94);
  border-bottom: 1px solid rgba(23, 22, 20, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
}

.brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76vh;
  padding: 110px 0 84px;
  background-image: linear-gradient(90deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.64) 45%, rgba(10, 12, 11, 0.2)), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.landing-hero {
  min-height: 68vh;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  max-width: 760px;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 860px;
  font-size: 64px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}

.landing-hero h1 {
  font-size: 58px;
}

.hero-lede,
.page-hero p,
.section-intro p,
.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

.btn-primary:hover {
  background: var(--copper-dark);
}

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

.btn-ghost {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(23, 22, 20, 0.28);
}

.hero .btn-ghost,
.cta-band .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.is-copied {
  border-color: var(--green);
}

.metrics-band {
  background: var(--ink);
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-areas: "china-moq china-bulk sampling bangladesh-moq bangladesh-bulk";
  color: var(--white);
}

.metric-china-moq {
  grid-area: china-moq;
}

.metric-china-bulk {
  grid-area: china-bulk;
}

.metric-sampling {
  grid-area: sampling;
}

.metric-bangladesh-moq {
  grid-area: bangladesh-moq;
}

.metric-bangladesh-bulk {
  grid-area: bangladesh-bulk;
}

.metrics-strip div {
  min-height: 96px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics-strip strong {
  display: block;
  margin-bottom: 8px;
  color: #f1b892;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 800;
}

.metrics-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section {
  padding: 84px 0;
}

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

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

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

.section-ink .kicker {
  color: #f1b892;
}

.section-ink p,
.section-ink .comparison-table span {
  color: rgba(255, 255, 255, 0.76);
}

.section-intro {
  margin-bottom: 34px;
}

.section-intro h2,
.showcase-head h2,
.page-hero h1,
.cta-band h2,
.two-column h2,
.related-links h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: 0;
}

.narrow-intro {
  max-width: 720px;
}

.product-showcase {
  padding-top: 64px;
}

.showcase-head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 28px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.showcase-head h2 {
  margin: 0;
  max-width: 680px;
  font-size: 34px;
  line-height: 1.12;
}

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

.showcase-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.01);
  transition: transform 220ms ease, opacity 220ms ease;
}

.showcase-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.04), rgba(8, 10, 9, 0.78));
  content: "";
}

.showcase-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.showcase-card div {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
}

.showcase-card p {
  margin: 0 0 8px;
  color: #f1b892;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1;
}

.showcase-card small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.showcase-grid.compact .showcase-card {
  min-height: 320px;
}

.manufacturing-snapshot {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 110px 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 25, 27, 0.88), rgba(5, 25, 27, 0.78) 34%, rgba(5, 25, 27, 0.38) 52%, rgba(5, 25, 27, 0.08) 100%),
    var(--snapshot-image);
  background-position: center;
  background-size: cover;
}

.snapshot-layout {
  display: block;
}

.snapshot-layout h2 {
  max-width: 980px;
  margin: 0 0 22px;
  color: #f7efe3;
  line-height: 0.98;
  text-transform: uppercase;
}

.snapshot-layout h2 span {
  display: block;
  font-size: clamp(58px, 6.4vw, 80px);
}

.snapshot-title-main {
  white-space: nowrap;
}

.snapshot-layout p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.snapshot-layout .snapshot-lead {
  max-width: 700px;
  margin-bottom: 14px;
  color: #f1b892;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.snapshot-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 820px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.snapshot-facts div {
  padding: 18px 16px 18px 0;
}

.snapshot-facts strong {
  display: block;
  color: #f1b892;
  font-size: 25px;
  line-height: 1;
}

.snapshot-facts span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

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

.family-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.family-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.family-panel h3 {
  margin: 0;
  max-width: 440px;
  font-size: 23px;
  line-height: 1.24;
  font-weight: 720;
}

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

.family-lanes a {
  display: block;
  min-height: 92px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(23, 22, 20, 0.08);
  border-radius: 6px;
  text-decoration: none;
}

.family-lanes span {
  display: block;
  margin-bottom: 7px;
  color: var(--copper);
  font-weight: 900;
}

.family-lanes small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
}

.capability-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.capability-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability-rows article {
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.capability-rows span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.capability-rows h3 {
  margin: 0;
  font-size: 24px;
}

.capability-rows p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.credibility-band {
  padding: 32px 0;
  background: #f0eee7;
  border-bottom: 1px solid var(--line);
}

.credibility-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.credibility-copy h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

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

.credibility-stats div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.credibility-stats strong {
  display: block;
  color: var(--copper);
  font-size: 25px;
  line-height: 1;
}

.credibility-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.credibility-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.credibility-certs span {
  padding: 8px 10px;
  color: var(--ink-soft);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.section-intro p,
.two-column p,
.service-tile p,
.product-card p,
.fabric-list p,
.project-grid p,
.faq-list p,
.facility-card p,
.office-grid p,
.support-copy {
  color: var(--muted);
}

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

.proof-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid strong {
  display: block;
  color: var(--copper);
  font-size: 40px;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

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

.product-family-stack {
  display: grid;
  gap: 52px;
}

.product-family {
  display: grid;
  gap: 18px;
}

.family-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}

.family-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.product-card,
.service-tile,
.project-grid article {
  overflow: hidden;
  border: 1px solid rgba(23, 22, 20, 0.1);
  border-radius: 6px;
  background: var(--white);
}

.product-card {
  box-shadow: 0 14px 28px rgba(23, 22, 20, 0.06);
}

.product-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

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

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

.facility-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.facility-card > div {
  padding: 26px;
}

.facility-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.08;
}

.product-card-body {
  padding: 22px;
}

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

.product-card h3,
.service-tile h3,
.fabric-list h3,
.project-grid h3,
.step-item h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.product-card p {
  font-size: 14px;
  line-height: 1.65;
}

.compact-tile {
  padding: 22px;
}

.product-card h3 a,
.text-link,
.related-links a,
.footer-grid a {
  text-decoration: none;
}

.text-link,
.related-links a {
  color: var(--copper);
  font-weight: 800;
}

.page-hero {
  padding: 92px 0 64px;
  background: var(--ink);
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.two-column,
.process-layout,
.checklist-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.comparison-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table div {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.2fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-table div:last-child {
  border-bottom: 0;
}

.comparison-table span {
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.comparison-table span:first-child {
  color: #f1b892;
  font-weight: 800;
}

.comparison-table span:last-child {
  border-right: 0;
}

.process-layout {
  align-items: center;
}

.process-image,
.detail-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-list {
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
}

.step-item span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 900;
}

.step-item p,
.step-item h3 {
  margin-top: 0;
}

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

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

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

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cert-grid span {
  padding: 10px 12px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.sustainability-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.sustainability-images img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 22, 20, 0.12);
}

.compact-section {
  padding: 52px 0;
}

.mini-list {
  margin-top: 18px;
  color: var(--ink-soft) !important;
  font-weight: 800;
}

.service-tile,
.project-grid article {
  padding: 24px;
}

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

.checklist div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 64px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 700;
}

.checklist span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 7px;
  background: var(--copper);
}

.clean-list,
.marked-list,
.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 800;
}

.marked-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  color: var(--muted);
}

.marked-list li::before {
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 900;
  content: "+";
}

.marked-list.neutral li::before {
  color: var(--slate);
  content: "-";
}

.fabric-list {
  display: grid;
  gap: 14px;
}

.fabric-list div,
.number-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.faq-list {
  max-width: 880px;
}

.faq-list.compact {
  max-width: 980px;
}

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

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

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

.related-links a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.matrix div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number-list strong {
  display: block;
  color: var(--copper);
  font-size: 36px;
  line-height: 1;
}

.number-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact-grid > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.office-grid > div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-link {
  display: block;
  margin: 10px 0 20px;
  color: var(--copper);
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.cta-band a {
  color: var(--white);
}

.site-footer {
  padding: 52px clamp(20px, 5vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
}

.copyright {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #1f8f52;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

@media (max-width: 960px) {
  .site-nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .landing-hero h1,
  .section-intro h2,
  .showcase-head h2,
  .page-hero h1,
  .cta-band h2,
  .two-column h2,
  .related-links h2 {
    font-size: 38px;
  }

  .credibility-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .architecture-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-head,
  .snapshot-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .manufacturing-snapshot {
    min-height: 560px;
    padding: 88px 0;
  }

  .snapshot-layout h2 {
    max-width: 760px;
  }

  .snapshot-layout h2 span {
    font-size: clamp(50px, 6.6vw, 62px);
  }

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

  .sticky-intro {
    position: static;
  }

  .family-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-rows article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .capability-rows p {
    grid-column: 2;
  }

  .credibility-certs {
    justify-content: flex-start;
  }

  .metrics-strip,
  .product-grid,
  .service-grid,
  .service-grid.two-up,
  .project-grid,
  .fabric-matrix .matrix,
  .facility-grid,
  .office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-strip {
    grid-template-areas:
      "china-moq bangladesh-moq"
      "china-bulk bangladesh-bulk"
      "sampling .";
  }

  .two-column,
  .process-layout,
  .checklist-layout,
  .contact-grid,
  .certification-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    padding: 10px 18px;
  }

  .brand-name {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 61px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .landing-hero {
    min-height: auto;
    padding: 72px 0 48px;
    background-image: linear-gradient(90deg, rgba(10, 12, 11, 0.86), rgba(10, 12, 11, 0.58)), var(--hero-image);
  }

  .hero h1,
  .landing-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-lede,
  .page-hero p,
  .section-intro p,
  .cta-band p {
    font-size: 17px;
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

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

  .family-lanes {
    grid-template-columns: 1fr;
  }

  .family-panel {
    padding: 24px 0;
  }

  .capability-rows article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .capability-rows p {
    grid-column: auto;
  }

  .metrics-strip,
  .product-grid,
  .service-grid,
  .service-grid.two-up,
  .project-grid,
  .fabric-matrix .matrix,
  .facility-grid,
  .office-grid,
  .proof-grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .metrics-strip {
    grid-template-areas:
      "china-moq"
      "china-bulk"
      "sampling"
      "bangladesh-moq"
      "bangladesh-bulk";
  }

  .sustainability-images {
    grid-template-columns: 1fr;
  }

  .family-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .metrics-strip div {
    min-height: 86px;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 66px 0 48px;
  }

  .section-intro h2,
  .showcase-head h2,
  .page-hero h1,
  .cta-band h2,
  .two-column h2,
  .related-links h2 {
    font-size: 32px;
  }

  .showcase-head {
    margin-bottom: 22px;
  }

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

  .showcase-card,
  .showcase-grid.compact .showcase-card {
    min-height: 330px;
  }

  .manufacturing-snapshot {
    min-height: 520px;
    padding: 70px 0;
    background-image:
      linear-gradient(90deg, rgba(5, 25, 27, 0.9), rgba(5, 25, 27, 0.76) 58%, rgba(5, 25, 27, 0.28)),
      var(--snapshot-image);
  }

  .snapshot-layout h2 {
    line-height: 1.03;
  }

  .snapshot-layout h2 span {
    font-size: clamp(34px, 9.1vw, 44px);
  }

  .snapshot-layout .snapshot-lead {
    font-size: 23px;
  }

  .snapshot-facts {
    grid-template-columns: 1fr;
  }

  .comparison-table div {
    grid-template-columns: 1fr;
  }

  .comparison-table span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table span:last-child {
    border-bottom: 0;
  }

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

  .contact-link {
    font-size: 22px;
  }
}
