:root {
  --ink: #17181f;
  --muted: #666a78;
  --paper: #fffdf8;
  --soft: #f6f1e8;
  --mist: #eef4ef;
  --line: #e4dccf;
  --brand: #11148a;
  --brand-dark: #07094e;
  --brand-soft: #eceeff;
  --coral: #c23e59;
  --orange: #f26a12;
  --gold: #f4bd35;
  --leaf: #3f725f;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(17, 20, 138, 0.14);
  --soft-shadow: 0 14px 42px rgba(23, 24, 31, 0.1);
  --surface: rgba(255, 255, 255, 0.82);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(228, 220, 207, 0.86);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(23, 24, 31, 0.04);
}

.utility-bar {
  border-bottom: 1px solid rgba(228, 220, 207, 0.72);
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-links a {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 76px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 750;
  color: #3b3d48;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-parent {
  position: static;
}

.mega-menu {
  left: auto;
  right: max(16px, calc((100vw - var(--max)) / 2));
  width: min(760px, calc(100vw - 32px));
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
}

.resources-menu {
  width: min(1120px, calc(100vw - 32px));
  grid-template-columns: 1.25fr repeat(4, 1fr);
  align-items: start;
}

.dropdown-panel {
  min-width: 330px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  min-height: 38px;
  padding: 7px 8px;
  border-radius: var(--radius);
  color: #3b3d48;
}

.dropdown-menu a:hover {
  background: var(--brand-soft);
}

.dropdown-panel a {
  display: grid;
  align-items: start;
  gap: 3px;
  padding: 10px;
  min-height: 58px;
}

.dropdown-panel strong,
.mega-column span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.dropdown-panel span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 6px;
}

.mega-column span {
  display: block;
  padding: 0 8px 7px;
  border-bottom: 1px solid var(--line);
}

.mega-column a {
  min-height: 36px;
  padding: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.resource-column a {
  display: grid;
  align-items: start;
  gap: 3px;
  min-height: 60px;
}

.resource-column strong {
  color: var(--brand);
  font-size: 13px;
}

.resource-column span {
  color: var(--muted);
  font-size: 12px;
}

.category-panel {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  min-width: 420px;
}

.nav-links a[aria-current="page"] {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: var(--brand);
  cursor: pointer;
  font-size: 0;
  position: relative;
  touch-action: manipulation;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle::before {
  top: 13px;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle::after {
  top: 27px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 106, 18, 0.42);
  outline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(17, 20, 138, 0.22);
}

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

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

.btn-secondary:hover {
  border-color: rgba(17, 20, 138, 0.28);
  background: var(--brand-soft);
}

.btn-secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 46px 0 26px;
  background:
    linear-gradient(135deg, rgba(246, 241, 232, 0.9), rgba(255, 253, 248, 0.74) 46%, rgba(238, 244, 239, 0.86)),
    radial-gradient(circle at 88% 10%, rgba(242, 106, 18, 0.11), transparent 30%);
}

.hero.hero-manufacturer {
  padding: 44px 0 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.section.compact {
  padding: 54px 0;
}

.section.subtle {
  background: linear-gradient(180deg, rgba(238, 244, 239, 0.82), rgba(255, 253, 248, 0.94));
}

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

.logo-proof .certificate {
  min-height: 100%;
}

.category-directory {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.directory-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.directory-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.directory-list a {
  min-height: 86px;
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.directory-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 20, 138, 0.3);
  box-shadow: var(--soft-shadow);
}

.directory-list strong {
  color: var(--brand);
}

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

.evidence-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

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

.evidence-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.evidence-card strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}

.evidence-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.textile-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.textile-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--leaf);
}

.source-note {
  margin-top: 22px;
  padding: 15px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(244, 189, 53, 0.15);
  color: #554624;
}

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

.page-link-grid a {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.page-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 20, 138, 0.28);
  box-shadow: var(--soft-shadow);
}

.page-link-grid strong {
  color: var(--brand);
}

.page-link-grid span {
  color: var(--muted);
  font-size: 13px;
}

.material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.material-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.company-facts div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.company-facts strong,
.company-facts span {
  display: block;
}

.company-facts strong {
  color: var(--brand);
}

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

.profile-signals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.profile-signals div {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.profile-signals strong,
.profile-signals span {
  display: block;
}

.profile-signals strong {
  color: var(--brand);
  font-size: 22px;
}

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

.catalog-wall {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.catalog-nav {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.catalog-nav a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: var(--soft);
}

.catalog-nav strong {
  color: var(--brand);
}

.catalog-nav span {
  color: var(--muted);
  font-size: 12px;
}

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

.catalog-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.catalog-row strong {
  color: var(--brand);
}

.catalog-row p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.contact-lines div {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-lines strong {
  display: block;
  color: var(--brand);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

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

h1 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.01;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 9px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

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

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.proof {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px;
}

.proof strong {
  display: block;
  font-size: 21px;
  color: var(--brand);
}

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

.hero-media {
  position: relative;
}

.collage {
  min-height: 390px;
}

.collage-main,
.collage-small {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collage-main {
  inset: 0 64px 48px 0;
  width: calc(100% - 64px);
  height: calc(100% - 48px);
}

.collage-small {
  width: 38%;
  aspect-ratio: 1 / 1.1;
  border: 8px solid var(--paper);
}

.collage-top {
  top: 24px;
  right: 0;
}

.collage-bottom {
  right: 22px;
  bottom: 0;
}

.media-note {
  position: absolute;
  left: 24px;
  bottom: 72px;
  max-width: 270px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(228, 220, 207, 0.92);
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--soft-shadow);
}

.media-note strong,
.media-note span {
  display: block;
}

.media-note strong {
  color: var(--ink);
  margin-bottom: 3px;
}

.trust-strip {
  padding: 24px 0;
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.76);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-grid div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
}

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

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

.section {
  padding: 88px 0;
}

.section + .section {
  border-top: 1px solid rgba(228, 220, 207, 0.56);
}

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

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

.section.dark .section-head p,
.section.dark .factory-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

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

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

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

.card,
.feature,
.step,
.certificate,
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 24, 31, 0.03);
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.card p,
.feature p,
.step p,
.certificate p,
.blog-card p {
  color: var(--muted);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.card-body .btn {
  margin-top: auto;
}

.product-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature,
.step,
.certificate,
.blog-card {
  padding: 22px;
  min-width: 0;
}

.feature,
.step,
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.feature strong,
.step strong {
  color: var(--brand);
}

.material {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.material strong {
  margin-bottom: auto;
}

.process {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--brand);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.feature-split {
  align-items: center;
}

.image-panel {
  position: relative;
}

.metric-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 220, 207, 0.92);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  color: var(--brand);
  font-size: 20px;
}

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

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

.check-list li {
  padding: 13px 15px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.factory-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-items: stretch;
}

.factory-board img {
  min-height: 280px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.factory-board img:first-child {
  grid-row: span 2;
}

.factory-copy {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px;
}

.certificate img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.cta-section {
  padding-top: 0;
}

.cta-band {
  padding: 46px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(194, 62, 89, 0.32);
  transition: transform 160ms ease, background 160ms ease;
}

.floating-cta:hover {
  background: #a9324a;
  transform: translateY(-2px);
}

.page-hero {
  padding: 58px 0 34px;
  background:
    linear-gradient(135deg, rgba(246, 241, 232, 0.95), rgba(255, 253, 248, 0.82) 54%, rgba(238, 244, 239, 0.9)),
    radial-gradient(circle at 86% 12%, rgba(244, 189, 53, 0.22), transparent 28%);
}

.page-hero .lead {
  max-width: 760px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: center;
}

.page-hero-card {
  border: 1px solid rgba(228, 220, 207, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--soft-shadow);
}

.page-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.page-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.page-kpis div {
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}

.page-kpis strong,
.page-kpis span {
  display: block;
}

.page-kpis strong {
  color: var(--brand);
  font-size: 16px;
}

.page-kpis span {
  color: var(--muted);
  font-size: 12px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
}

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

.option-list li {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.option-list strong {
  color: var(--brand);
}

.timeline {
  position: relative;
}

.timeline .step {
  min-height: 100%;
}

.status-note {
  border-left: 4px solid var(--gold);
  background: rgba(244, 189, 53, 0.14);
  padding: 15px 16px;
  border-radius: var(--radius);
  color: #4d4227;
}

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

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(63, 114, 95, 0.12);
  color: var(--leaf);
  font-weight: 800;
}

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

.form-status.is-error {
  background: rgba(194, 62, 89, 0.12);
  color: #8f263b;
}

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

.legal-nav {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
}

.legal-nav a {
  display: block;
  margin: 10px 0;
  color: var(--brand);
  font-weight: 800;
}

.legal-copy {
  display: grid;
  gap: 24px;
}

.legal-copy section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #343743;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  padding: 12px;
  font: inherit;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form input:hover,
.form textarea:hover,
.form select:hover {
  border-color: rgba(17, 20, 138, 0.28);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 48px 0 30px;
  background: #11121d;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  min-height: 28px;
}

.site-footer span {
  display: block;
  margin: 8px 0;
}

.fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .utility-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    inset: 112px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    width: 100%;
    justify-content: space-between;
  }

  .has-dropdown {
    display: grid;
    gap: 8px;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-color: rgba(228, 220, 207, 0.72);
    background: var(--soft);
  }

  .mega-parent {
    position: relative;
  }

  .mega-menu {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .resources-menu {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .dropdown-panel {
    min-width: 0;
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .legal-layout,
  .category-directory,
  .evidence-wall,
  .catalog-wall {
    grid-template-columns: 1fr;
  }

  .catalog-nav {
    position: static;
  }

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

  .collage {
    min-height: 500px;
  }

  .grid-3,
  .grid-4,
  .trust-grid,
  .logo-proof,
  .textile-library,
  .company-facts,
  .profile-signals,
  .page-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-panel {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .factory-board {
    grid-template-columns: 1fr;
  }

  .factory-board img:first-child {
    grid-row: auto;
  }

  .section-head,
  .cta-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .utility-bar {
    display: none;
  }

  .container {
    width: min(100% - 22px, var(--max));
  }

  .brand img {
    width: 64px;
    height: 50px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 20px 0 18px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.04;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 16px;
  }

  .grid-3,
  .grid-4,
  .trust-grid,
  .footer-grid,
  .logo-proof,
  .directory-list,
  .evidence-stack,
  .textile-library,
  .company-facts,
  .profile-signals,
  .catalog-row,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    inset: 78px 11px auto;
  }

  .proof-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
  }

  .proof {
    padding: 10px 8px;
  }

  .proof strong {
    font-size: 14px;
  }

  .proof span {
    font-size: 10px;
    line-height: 1.25;
  }

  .collage {
    min-height: 220px;
  }

  .collage-main {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .collage-small,
  .media-note {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .cta-band {
    padding: 28px;
  }

  .metric-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .page-hero {
    padding: 38px 0 28px;
  }

  .page-kpis {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
  }

  .hero-actions,
  .section-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-band .btn,
  .form .btn {
    width: 100%;
  }

  .form {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 18px, var(--max));
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 25px;
  }

  .btn {
    padding-inline: 14px;
  }
}

@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;
  }
}
