:root {
  --ink: #102921;
  --text: #243d35;
  --muted: #5d6965;
  --paper: #f4efe4;
  --white: #ffffff;
  --deep: #0f251e;
  --deep-2: #102921;
  --green: #0b7566;
  --teal: #0b7566;
  --blue: #1c4b40;
  --purple: #314940;
  --sage: #e8f0ee;
  --gold: #d5ad51;
  --gold-ink: #806000;
  --red: #c33f2f;
  --line: rgba(16, 41, 33, 0.16);
  --soft: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 54px rgba(6, 18, 14, 0.18);
  --card-shadow: 0 14px 26px rgba(6, 18, 14, 0.12);
  --radius: 30px;
  --radius-sm: 22px;
  --radius-lg: 46px;
  --font-display: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--deep);
  font-family: var(--font-body);
  line-height: 1.65;
}

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

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

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

.skip-link {
  position: fixed;
  inset-inline-start: 20px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

html[lang^="ja"] h1,
html[lang^="ja"] h2,
html[lang^="ja"] h3 {
  line-break: strict;
  overflow-wrap: normal;
  word-break: auto-phrase;
}

html[lang^="ko"] :is(h1, h2, h3) {
  overflow-wrap: normal;
  word-break: keep-all;
}

html[lang^="ja"] .ja-keep {
  white-space: nowrap;
}

.site-header > *,
.section-title > *,
.split-section > *,
.universe-layout > *,
.page-hero > *,
.contact-direct > *,
.cta-section > *,
.product-toolbar > *,
.site-footer > *,
.snapshot-grid > *,
.promise-grid > *,
.page-grid > *,
.card-links > *,
.credibility-band > *,
.compliance-grid > *,
.product-grid > *,
.factory-stats > *,
.factory-page-nav > *,
.factory-template-grid > *,
.factory-kpi-grid > *,
.factory-capability-map > *,
.factory-roadmap > *,
.factory-tour-grid > *,
.factory-document-grid > *,
.factory-document-cards > *,
.factory-product-grid > *,
.factory-flow > *,
.factory-gallery > *,
.factory-directory > *,
.region-grid > * {
  min-width: 0;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  width: min(1320px, calc(100% - 32px));
  padding: 10px 12px;
  border: 1px solid rgba(213, 173, 81, 0.26);
  border-radius: 999px;
  background: rgba(15, 37, 30, 0.9);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(4, 18, 13, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

@media (min-width: 1101px) {
  html[data-localized-site="true"] .site-header {
    width: min(1500px, calc(100% - 24px));
  }

  html[data-localized-site="true"] .brand {
    min-width: 152px;
  }

  html[data-localized-site="true"] .brand img {
    width: 152px;
  }

  html[data-localized-site="true"] .site-nav {
    gap: 0;
  }

  html[data-localized-site="true"] .site-nav a {
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  html[data-localized-site="true"] .nav-cta {
    padding-right: 13px;
    padding-left: 13px;
    font-size: 0.8rem;
  }
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.language-switcher a,
.language-switcher span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 44px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.language-switcher a {
  color: rgba(255, 255, 255, 0.7);
}

.language-switcher a:hover,
.language-switcher .is-active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.language-switcher__flag {
  flex: 0 0 auto;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 1rem !important;
  line-height: 1;
}

.language-switcher__flag img {
  display: block;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.language-switcher__code,
.language-switcher__name {
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.language-switcher--menu {
  position: relative;
}

.nav-toggle {
  display: none;
}

.language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 62px;
  min-height: 44px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.language-switcher__options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 4px;
  width: min(420px, calc(100vw - 28px));
  max-height: min(560px, calc(100vh - 120px));
  padding: 10px;
  overflow-y: auto;
  border: 1px solid rgba(213, 173, 81, 0.3);
  border-radius: 18px;
  background: rgba(15, 37, 30, 0.98);
  box-shadow: 0 22px 54px rgba(4, 18, 13, 0.42);
}

.language-switcher__options[hidden] {
  display: none;
}

.language-switcher__options a,
.language-switcher__options > span {
  justify-content: flex-start;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 10px;
  white-space: normal;
}

.language-switcher__options a,
.language-switcher__options > span {
  gap: 9px;
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1480px) / 2));
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 15px 8px 10px;
  border: 1px solid rgba(213, 173, 81, 0.42);
  border-radius: 999px;
  background: rgba(15, 37, 30, 0.94);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(4, 18, 13, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green);
}

.back-to-top span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 1000;
}

.back-to-top b {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.site-header.is-scrolled {
  border-color: rgba(213, 173, 81, 0.24);
  background: rgba(15, 37, 30, 0.96);
  color: var(--white);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-weight: 1000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img,
.footer-brand img {
  width: 176px;
  height: auto;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 8px 12px rgba(4, 18, 13, 0.26));
}

.brand span,
.footer-brand strong {
  display: none;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a {
  padding: 8px 9px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

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

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding-right: 16px;
  padding-left: 16px;
  white-space: nowrap;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(13, 127, 111, 0.22);
}

.hero .button-primary {
  background: var(--red);
  box-shadow: 0 10px 22px rgba(214, 83, 63, 0.22);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-dark {
  margin-top: 26px;
  background: var(--deep);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after,
.site-footer::before,
.site-footer::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  right: -10vw;
  top: 0;
  width: min(560px, 42vw);
  height: 100%;
  display: none;
  background: transparent;
  opacity: 0;
  z-index: 1;
}

.hero::after {
  right: -80px;
  top: 3%;
  z-index: 2;
  width: min(760px, 56vw);
  height: 5px;
  display: none;
  background: transparent;
  transform: rotate(44deg);
  transform-origin: center;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 37, 30, 0.97) 0%, rgba(15, 37, 30, 0.82) 52%, rgba(15, 37, 30, 0.3) 100%),
    linear-gradient(180deg, rgba(15, 37, 30, 0.38), rgba(15, 37, 30, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 40px));
  padding: 24vh 0 236px;
  margin-inline-start: max(20px, calc((100vw - 1240px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.region-footprint .eyebrow,
.cta-section .eyebrow,
.factory-flow-section .eyebrow,
.factory-document-section .eyebrow {
  color: var(--gold);
}

.hero h1,
.section-title h2,
.split-copy h2,
.page-hero h1,
.cta-section h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 1000;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 930px;
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  line-height: 1.08;
}

.hero-title span {
  display: block;
}

html[lang="cs"] .hero-home .hero-title span {
  display: inline;
}

.page-hero h1 {
  max-width: 12em;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.04;
}

.section-title h2,
.split-copy h2,
.cta-section h2,
.contact-card h2 {
  font-size: clamp(2rem, 2.9vw, 3.08rem);
  line-height: 1.11;
}

.section-title.compact h2 {
  max-width: 860px;
}

.hero-lede {
  max-width: 740px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

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

.hero-panel {
  position: absolute;
  right: max(20px, calc((100vw - 1240px) / 2));
  bottom: 34px;
  left: max(20px, calc((100vw - 1240px) / 2));
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid var(--soft);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

html[lang^="en"] .hero .button {
  font-weight: 800;
}

html[lang^="en"] .hero-inner {
  width: min(1040px, calc(100% - 40px));
}

html[lang^="en"] .hero h1 {
  max-width: 1040px;
  font-size: clamp(3rem, 4.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

html[lang="ro"] .hero-inner {
  width: min(1100px, calc(100% - 40px));
}

html[lang="ro"] .hero h1 {
  max-width: 1080px;
  font-size: clamp(2.9rem, 4.15vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
}

html[lang="ro"] .hero-title span {
  display: inline;
}

html[lang="ro"] .page-hero h1 {
  max-width: 16em;
  font-size: clamp(2.2rem, 3.3vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
}

html[lang="ro"] .factory-profile-overlay {
  width: min(1000px, calc(100% - 40px));
}

html[lang="ro"] .factory-profile-overlay h1 {
  font-size: clamp(2.5rem, 4.1vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
}

html[lang="bg"] .hero-inner {
  width: min(1100px, calc(100% - 40px));
}

html[lang="bg"] .hero h1 {
  max-width: 1080px;
  font-size: clamp(2.8rem, 4vw, 4.35rem);
  line-height: 1.04;
}

html[lang="bg"] .hero-title span {
  display: inline;
}

html[lang="bg"] .page-hero h1 {
  max-width: 16em;
  font-size: clamp(2.15rem, 3.2vw, 3.6rem);
  line-height: 1.06;
}

html[lang="bg"] .factory-profile-overlay {
  width: min(1000px, calc(100% - 40px));
}

html[lang="bg"] .factory-profile-overlay h1 {
  font-size: clamp(2.4rem, 3.9vw, 4.3rem);
  line-height: 1.04;
}

html[lang="ru"] .hero-inner {
  width: min(1180px, calc(100% - 40px));
}

html[lang="ru"] .hero h1 {
  max-width: 1180px;
  font-size: clamp(2.8rem, 3.7vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
}

html[lang="ru"] .page-hero h1 {
  max-width: 16em;
  font-size: clamp(2.15rem, 3.25vw, 3.65rem);
  line-height: 1.06;
}

html[lang="ru"] .factory-profile-overlay {
  width: min(1040px, calc(100% - 40px));
}

html[lang="ru"] .factory-profile-overlay h1 {
  font-size: clamp(2.35rem, 3.75vw, 4.15rem);
  line-height: 1.04;
}

html[lang^="en"] .hero-panel strong {
  font-size: clamp(1.8rem, 2.55vw, 2.75rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

html:not([lang^="zh"]):not([lang^="en"]) .hero-panel strong {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

html[lang^="en"] .hero-panel span {
  max-width: 19em;
  line-height: 1.45;
}

.section {
  padding: 96px max(20px, calc((100vw - 1240px) / 2));
  background: var(--paper);
}

.section-title {
  position: relative;
}

.section-title::after {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(16, 41, 33, 0.18), transparent);
  filter: blur(1px);
  content: "";
}

.section-title {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 0.64fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 36px;
}

.section-title.compact {
  display: block;
  max-width: 920px;
}

.section-title p,
.split-copy p,
.cta-section p,
.page-hero p,
.feature-card h3,
.promise-grid p,
.timeline p,
.page-card p,
.data-table p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.company-snapshot {
  background: var(--paper);
}

.region-footprint {
  background: var(--deep);
  color: var(--white);
}

.region-footprint .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

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

.region-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--card-shadow);
}

.region-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.region-grid h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.16;
}

.region-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.snapshot-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--card-shadow);
}

.snapshot-grid article::before,
.page-card::before,
.data-table::before,
.resource-card::before,
.factory-directory-card::before,
.factory-product-card::before,
.product-card::before,
.feature-card::before,
.contact-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--green);
  content: "";
}

.snapshot-grid article:nth-child(2)::before,
.page-grid .page-card:nth-child(2)::before,
.resource-card:nth-child(2n)::before,
.factory-directory-card:nth-child(2n)::before,
.factory-product-card:nth-child(2n)::before,
.product-card:nth-child(2n)::before {
  background: var(--blue);
}

.snapshot-grid article:nth-child(3)::before,
.page-grid .page-card:nth-child(3)::before,
.resource-card:nth-child(3n)::before,
.factory-directory-card:nth-child(3n)::before,
.factory-product-card:nth-child(3n)::before,
.product-card:nth-child(3n)::before {
  background: var(--gold);
}

.snapshot-grid article:nth-child(4)::before,
.page-grid .page-card:nth-child(4)::before,
.resource-card:nth-child(4n)::before,
.factory-directory-card:nth-child(4n)::before,
.factory-product-card:nth-child(4n)::before,
.product-card:nth-child(4n)::before {
  background: var(--purple);
}

.snapshot-grid span,
.credibility-band span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.snapshot-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.snapshot-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

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

.promise-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 36px 28px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.promise-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--green);
  content: "";
}

.promise-grid article:nth-child(2)::before {
  background: var(--blue);
}

.promise-grid article:nth-child(3)::before {
  background: var(--gold);
}

.promise-grid article:nth-child(4)::before {
  background: var(--purple);
}

.promise-grid span,
.timeline span {
  color: var(--white);
  font-weight: 900;
}

.promise-grid span,
.timeline span,
.article-nav span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 18px rgba(11, 31, 58, 0.18);
}

.promise-grid article:nth-child(2) span,
.timeline li:nth-child(2) span,
.timeline li:nth-child(5) span {
  background: var(--blue);
}

.promise-grid article:nth-child(3) span,
.timeline li:nth-child(3) span,
.timeline li:nth-child(6) span {
  background: var(--gold);
  color: var(--ink);
}

.promise-grid article:nth-child(4) span,
.timeline li:nth-child(4) span {
  background: var(--purple);
}

.promise-grid h3,
.timeline strong,
.page-card h3,
.data-table h3 {
  display: block;
  margin: 16px 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--paper);
}

.split-section.dark {
  background: var(--deep-2);
  color: var(--white);
}

.split-section.dark .split-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.split-copy p {
  margin-top: 22px;
  font-size: 1.05rem;
}

.split-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 58, 0.12);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-ink);
  font-weight: 900;
}

.product-universe {
  background: var(--white);
}

.universe-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.universe-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.universe-layout img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.category-cloud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.category-cloud a {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.06);
}

.compliance-preview {
  background: var(--white);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.compliance-grid article {
  min-height: 148px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compliance-grid strong {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
}

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

.process-preview {
  background: var(--deep);
  color: var(--white);
}

.process-preview .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  list-style: none;
  border: 0;
}

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

.timeline li {
  position: relative;
  overflow: hidden;
  min-width: 180px;
  min-height: 250px;
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.13);
}

.timeline li::before {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--green);
  content: "";
}

.timeline li:nth-child(2)::before,
.timeline li:nth-child(5)::before {
  background: var(--blue);
}

.timeline li:nth-child(3)::before,
.timeline li:nth-child(6)::before {
  background: var(--gold);
}

.timeline li:nth-child(4)::before {
  background: var(--purple);
}

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

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.section:not(.dark) .timeline li {
  border-color: rgba(15, 45, 37, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(15, 45, 37, 0.08);
}

.section:not(.dark) .timeline strong {
  color: var(--ink);
}

.section:not(.dark) .timeline p {
  color: var(--muted);
}

.card-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--paper);
}

.feature-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

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

.feature-card span {
  margin: 18px 20px 0;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  padding: 10px 20px 24px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.35;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 34px;
  align-items: end;
  background: var(--deep);
  color: var(--white);
}

.cta-section p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(560px, 1.22fr);
  gap: 34px 54px;
  align-items: start;
  padding: 58px max(20px, calc((100vw - 1240px) / 2)) 32px;
  background: var(--deep);
  color: var(--white);
}

.site-footer::before {
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: none;
  background: transparent;
}

.site-footer::after {
  right: 60px;
  top: 70px;
  width: 320px;
  height: 4px;
  display: none;
  background: transparent;
  transform: rotate(42deg);
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-brand-panel p {
  max-width: 33em;
  font-size: 0.98rem;
  line-height: 1.75;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  border: 1px solid rgba(215, 162, 64, 0.48);
  border-radius: 999px;
  background: var(--gold);
  color: #11231d;
  padding: 10px 18px;
  font-weight: 1000;
}

.footer-mega {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 24px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  font-weight: 800;
}

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

.footer-service-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-service-row span,
.footer-service-row a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.66);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-service-row a {
  color: var(--gold);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
}

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

.footer-legal-links {
  display: inline-flex;
  gap: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 170px max(20px, calc((100vw - 1240px) / 2)) 82px;
  background: var(--deep);
  color: var(--white);
}

.page-hero::before {
  right: -8vw;
  top: 18%;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  border-radius: 50%;
  display: none;
  background: transparent;
}

.page-hero::after {
  right: -90px;
  top: 20%;
  width: min(640px, 58vw);
  height: 4px;
  display: none;
  background: transparent;
  transform: rotate(42deg);
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.legal-hero {
  grid-template-columns: minmax(0, 820px);
  padding-bottom: 42px;
}

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

.page-hero-large {
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 0.74fr);
}

.page-hero p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.page-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

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

.page-card,
.data-table {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.page-card strong {
  color: var(--green);
}

.region-footprint .region-grid .page-card strong {
  color: var(--gold);
}

.region-footprint .region-grid .page-card h3 {
  color: var(--white);
}

.region-footprint .region-grid .page-card p {
  color: rgba(255, 255, 255, 0.82);
}

.category-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(8, 118, 74, 0.1);
  color: var(--green);
  content: "→";
  font-weight: 900;
  line-height: 34px;
  text-align: center;
}

.category-card:hover {
  border-color: rgba(8, 118, 74, 0.48);
  box-shadow: 0 20px 54px rgba(16, 23, 23, 0.12);
  transform: translateY(-3px);
}

.category-card span {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.resource-hero {
  background: var(--deep);
}

.resource-hero img {
  border: 1px solid rgba(236, 225, 198, 0.28);
}

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

.resource-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.resource-stats article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--card-shadow);
}

.resource-stats article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 10px;
  background: var(--green);
  content: "";
}

.resource-stats article:nth-child(2)::before {
  background: var(--blue);
}

.resource-stats article:nth-child(3)::before {
  background: var(--gold);
}

.resource-stats article:nth-child(4)::before {
  background: var(--purple);
}

.resource-stats strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.92;
}

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

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

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

.resource-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 231, 0.86));
  color: var(--ink);
  box-shadow: var(--card-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 148, 43, 0.5);
  box-shadow: 0 26px 60px rgba(10, 36, 28, 0.14);
}

.resource-card.compact {
  min-height: 210px;
}

.resource-card small {
  color: var(--green);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-top: 18px;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.04;
}

.resource-card p {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 650;
}

.resource-card span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-ink);
  font-weight: 950;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.article-layout > *,
.article-nav,
.article-body,
.product-toolbar > *,
.series-summary > *,
.product-card,
.product-card-body,
.product-meta > * {
  min-width: 0;
}

.article-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(10, 36, 28, 0.08);
}

.article-nav strong {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.article-nav a:hover,
.article-nav a.is-current {
  background: rgba(9, 123, 83, 0.1);
  color: var(--green);
}

.article-nav span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  box-shadow: 0 8px 16px rgba(11, 31, 58, 0.16);
}

.article-body {
  width: 100%;
  max-width: 980px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(10, 36, 28, 0.08);
}

.source-note {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(205, 148, 43, 0.1);
}

.source-note strong {
  color: var(--green);
}

.source-note span {
  color: var(--muted);
  font-weight: 720;
}

.article-body h2 {
  margin-top: 42px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  line-height: 0.98;
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h3 {
  margin-top: 30px;
  color: var(--green);
  font-size: clamp(1.14rem, 1.8vw, 1.55rem);
}

.article-body p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.78;
}

.factory-matrix .page-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(8, 118, 74, 0.06), transparent 46%),
    var(--white);
}

.factory-matrix .page-card span {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--deep);
  font-weight: 850;
}

.matrix-action {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-ink);
  font-weight: 900;
}

.factory-directory-section {
  background: var(--paper);
  scroll-margin-top: 118px;
}

.directory-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(8, 118, 74, 0.2);
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--white);
}

.directory-headline strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.05;
}

.directory-headline span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

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

.factory-directory-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 36px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  scroll-margin-top: 118px;
}

.factory-directory-card small {
  display: block;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-directory-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.82rem);
  line-height: 1.18;
}

.factory-directory-card p {
  margin: 0;
  color: var(--muted);
}

.factory-directory-card.featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(240px, 0.78fr) minmax(280px, 1fr);
  gap: 22px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(8, 118, 74, 0.08), transparent 58%),
    var(--white);
}

.factory-directory-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.factory-directory-card.featured div {
  padding: 10px 8px 10px 0;
}

.factory-profile-card {
  display: grid;
  min-height: 0;
  padding: 16px;
  grid-template-rows: 260px 1fr;
}

.factory-profile-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
}

.factory-profile-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 10px 8px;
}

.factory-profile-card .matrix-action {
  margin-top: auto;
}

.product-photo-grid {
  display: grid;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.product-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

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

#jinqiu-base {
  scroll-margin-top: 118px;
}

.credibility-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--white);
}

.credibility-band article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 118, 74, 0.06), transparent 42%),
    var(--paper);
}

.credibility-band strong {
  display: block;
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1;
}

.capacity-table .table-row {
  grid-template-columns: 0.48fr 0.82fr 1fr;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 0.7fr);
  gap: 18px;
  background: var(--white);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.primary-contact {
  background: var(--deep);
  color: var(--white);
}

.primary-contact p {
  color: rgba(255, 255, 255, 0.76);
}

.primary-contact .button {
  margin-top: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  font-size: 0.78rem;
  line-height: 20px;
  text-align: center;
}

.data-table {
  display: grid;
  gap: 18px;
}

.table-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.factory-capability-table .table-row span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.product-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 24px;
}

.series-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 20px;
  border: 1px solid rgba(8, 118, 74, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.series-summary strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.series-summary p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.series-summary b {
  color: var(--ink);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.06);
}

.filter-tabs button {
  cursor: pointer;
  border: 1px solid rgba(8, 118, 74, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep);
  padding: 10px 14px;
  font-weight: 900;
}

.filter-tabs button.is-active {
  background: var(--deep);
  color: var(--white);
}

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

.product-load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.product-load-more {
  min-width: 230px;
}

.factory-catalog-grid {
  margin-bottom: 26px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.product-card:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.96);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.96);
}

.site-header :where(a, button):focus-visible,
.site-footer :where(a, button):focus-visible,
.back-to-top:focus-visible {
  outline-color: #f7d98a;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: #f7f4ec;
}

.product-card figure {
  position: relative;
}

.product-concept-label {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 37, 30, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

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

.product-card small {
  color: var(--green);
  font-weight: 900;
}

.product-card h3 {
  margin: 8px 0 6px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.product-card .product-en {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.product-factory-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: rgba(8, 118, 74, 0.35);
  text-underline-offset: 3px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0 0;
}

.product-meta div {
  padding: 10px;
  border: 1px solid rgba(16, 23, 23, 0.1);
  border-radius: 6px;
  background: var(--paper);
}

.product-meta dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.product-details {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.product-details summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 900;
}

.product-details div {
  margin-top: 12px;
}

.product-details b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.product-spec-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.product-inquiry {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 16px;
  padding: 8px 0;
  color: var(--red);
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.factory-hero img {
  min-height: 500px;
}

.factory-profile-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.factory-profile-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.factory-profile-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 17, 0.9) 0%, rgba(6, 21, 17, 0.68) 44%, rgba(6, 21, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 21, 17, 0.3), rgba(6, 21, 17, 0.68));
  content: "";
}

.factory-profile-overlay {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  padding: 220px 0 120px;
  margin-inline-start: max(20px, calc((100vw - 1240px) / 2));
}

.factory-profile-overlay h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  line-height: 1.02;
}

.factory-profile-overlay p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.factory-page-nav {
  position: sticky;
  top: 96px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1240px, calc(100% - 40px));
  margin: -34px auto 0;
  padding: 10px;
  border: 1px solid rgba(13, 126, 80, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 50px rgba(16, 23, 23, 0.12);
  backdrop-filter: blur(18px);
}

.factory-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
}

.factory-page-nav a:hover {
  background: var(--green);
  color: var(--white);
}

#factory-overview,
#factory-tour,
#factory-products,
#factory-process,
#factory-documents,
#factory-evidence,
#factory-brief {
  scroll-margin-top: 132px;
}

#product-list,
#project-brief,
#ru-eaeu-market-access,
#company,
#products {
  scroll-margin-top: 132px;
}

.factory-template-overview {
  background: var(--paper);
}

.factory-template-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.55fr);
  gap: 18px;
  margin-top: 28px;
}

.factory-identity-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 126, 80, 0.22), transparent 48%),
    var(--deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.factory-identity-card::after {
  position: absolute;
  right: -86px;
  bottom: -126px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(215, 162, 64, 0.32);
  border-radius: 50%;
  content: "";
}

.factory-identity-card span,
.factory-capability-map span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.factory-capability-map span {
  color: var(--gold-ink);
}

.factory-identity-card h3 {
  max-width: 9em;
  margin: 18px 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.factory-identity-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

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

.factory-kpi-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 23, 23, 0.07);
}

.factory-kpi-grid strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 0.92;
}

.factory-kpi-grid span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 950;
}

.factory-kpi-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.factory-capability-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.factory-capability-map article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(13, 126, 80, 0.06), transparent 46%),
    var(--white);
}

.factory-capability-map h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: 1.05rem;
}

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

.factory-roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.factory-roadmap article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.factory-roadmap article:last-child {
  border-right: 0;
}

.factory-roadmap strong {
  display: inline-flex;
  color: var(--gold-ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.factory-roadmap span {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 950;
}

.factory-roadmap p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

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

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

.factory-tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.factory-video {
  width: 100%;
  max-height: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07110f;
  box-shadow: var(--shadow);
}

.factory-tour-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 162, 64, 0.18), transparent 45%),
    var(--deep);
  color: var(--white);
  box-shadow: var(--shadow);
}

.factory-tour-panel span {
  color: var(--gold);
  font-weight: 950;
}

.factory-tour-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.factory-tour-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.factory-tour-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.factory-feature-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--deep);
  color: var(--white);
}

.factory-feature-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.factory-feature-banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 17, 0.88), rgba(6, 21, 17, 0.4)),
    linear-gradient(180deg, transparent 0%, rgba(6, 21, 17, 0.82) 100%);
  content: "";
}

.factory-feature-banner div {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.factory-feature-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.08;
}

.factory-feature-banner p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.factory-feature-banner .button {
  margin-top: 28px;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--white);
}

.factory-stats article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.factory-stats span {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.factory-stats strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.1rem;
}

.factory-stats p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

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

.product-family-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.product-family-strip span {
  border: 1px solid rgba(13, 126, 80, 0.22);
  border-radius: 999px;
  background: #eef5ee;
  color: var(--green);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 950;
}

.factory-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.factory-product-detail {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.factory-product-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  background: #f7f4ec;
}

.product-card-images {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.product-card-images.single {
  grid-template-columns: 1fr;
}

.product-card-images img {
  aspect-ratio: 1.18 / 1;
  background: #f8f3e8;
}

.product-card-images img:only-child {
  grid-column: 1 / -1;
}

.factory-product-card div {
  padding: 16px;
}

.factory-product-detail div {
  display: grid;
  align-content: start;
  gap: 8px;
  flex: 1;
  padding: 18px;
}

.factory-product-card small {
  color: var(--green);
  font-weight: 900;
}

.factory-product-card h3 {
  margin: 8px 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.factory-product-detail h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.factory-product-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.factory-product-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  border-radius: 999px;
  background: rgba(13, 126, 80, 0.09);
  color: var(--green);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.factory-flow-section {
  background: var(--deep);
  color: var(--white);
}

.factory-flow-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

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

.factory-flow article {
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.factory-flow img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
}

.factory-flow article span,
.factory-flow h3,
.factory-flow p {
  margin-right: 18px;
  margin-left: 18px;
}

.factory-flow article span {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.factory-flow h3 {
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--white);
}

.factory-flow p {
  margin-top: 0;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.factory-document-section {
  background: var(--deep);
  color: var(--white);
}

.factory-document-section .section-title h2 {
  color: var(--white);
}

.factory-document-section .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.factory-document-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.36fr);
  gap: 18px;
  align-items: stretch;
}

.factory-document-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.factory-document-grid img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.9;
}

.factory-document-grid .certificate-feature img {
  object-fit: contain;
  padding: 16px;
  background: #fff;
}

.factory-document-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(6, 21, 17, 0.74);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

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

.factory-document-cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.factory-document-cards span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.factory-document-cards h3 {
  margin: 20px 0 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.factory-document-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

.factory-document-section > .text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
}

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

.factory-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 23, 23, 0.08);
}

.factory-gallery img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.factory-gallery figcaption {
  padding: 14px 16px;
  color: var(--green);
  font-weight: 900;
}

.certificate-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.certificate-gallery img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 12px;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

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

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 12px 13px;
}

.brief-form input[type="file"] {
  cursor: pointer;
  border-style: dashed;
  background: rgba(8, 118, 74, 0.05);
}

.control-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.localised-file-input {
  position: relative;
  display: grid;
  min-height: 48px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(8, 118, 74, 0.05);
  cursor: pointer;
}

.brief-form .localised-file-input input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}

.localised-file-input:focus-within {
  outline: 3px solid rgba(8, 118, 74, 0.28);
  outline-offset: 2px;
}

.localised-file-input__button {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 11px 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.localised-file-input__status {
  overflow: hidden;
  padding-right: 14px;
  color: var(--muted);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-note {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .series-summary {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .series-summary strong {
    font-size: clamp(2rem, 6vw, 2.65rem);
  }

  .timeline,
  .timeline.timeline-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .timeline li {
    min-width: 0;
    min-height: 0;
  }

  .site-header {
    gap: 8px;
    padding: 8px 10px;
  }

  .brand span {
    display: none;
  }

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

  .site-nav {
    justify-content: flex-start;
    gap: 0;
  }

  .site-nav a {
    padding: 7px 5px;
    font-size: 0.74rem;
  }

  html[lang^="en"] .site-header {
    width: min(1390px, calc(100% - 20px));
  }

  html[lang^="en"] .site-nav a {
    padding: 7px 4px;
    font-size: 0.69rem;
  }

  html[lang^="en"] .brand img {
    width: 145px;
  }

  html[data-localized-site="true"] .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 20px);
    border-radius: 22px;
    gap: 8px;
  }

  html[data-localized-site="true"] .nav-cta {
    display: none;
  }

  html[data-localized-site="true"] .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    gap: 3px 5px;
    overflow: visible;
  }

  html[data-localized-site="true"] .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 5px 3px;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  html[lang="he"][data-localized-site="true"] .site-nav a {
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .section-title,
  .split-section,
  .universe-layout,
  .page-hero,
  .page-hero-large,
  .contact-direct,
  .factory-template-grid,
  .factory-tour-grid,
  .factory-document-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .promise-grid,
  .compliance-grid,
  .card-links,
  .page-grid,
  .resource-grid,
  .resource-grid.compact-grid,
  .resource-stats,
  .legal-content,
  .product-grid,
  .product-toolbar,
  .snapshot-grid,
  .credibility-band,
  .factory-stats,
  .factory-capability-map,
  .factory-roadmap,
  .factory-document-cards,
  .factory-product-grid,
  .factory-flow,
  .factory-gallery,
  .factory-directory,
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-directory-card.featured {
    grid-column: 1 / -1;
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-nav strong {
    grid-column: 1 / -1;
  }

  .hero-inner {
    width: min(760px, calc(100% - 40px));
    padding-top: max(160px, 18vh);
  }

  html[lang="es-ES"][data-localized-site="true"] .hero-home .hero-inner {
    padding-top: 204px;
  }

  html[lang="es-ES"][data-localized-site="true"] .hero-home h1 {
    font-size: clamp(3rem, 5.8vw, 3.8rem);
    line-height: 1.03;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 4.7rem);
  }

  html[lang^="en"] .hero h1 {
    font-size: clamp(3rem, 6vw, 4.2rem);
    line-height: 1.06;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .factory-profile-overlay {
    padding-top: 190px;
  }
}

@media (max-width: 900px) {
  .site-header,
  html[lang^="en"] .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 20px);
    border-radius: 22px;
    gap: 8px;
  }

  .nav-cta {
    display: none;
  }

  .site-nav,
  html[lang^="en"] .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    gap: 3px 5px;
    overflow: visible;
  }

  .site-nav a,
  html[lang^="en"] .site-nav a {
    padding: 5px 4px;
    font-size: 0.7rem;
    text-align: center;
    white-space: nowrap;
  }

  html[data-localized-site="true"] .site-nav a {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 760px) {
  .timeline,
  .timeline.timeline-four {
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding: 24px 20px;
  }

  .hero::before {
    right: -42vw;
    width: 82vw;
    opacity: 0.5;
  }

  .hero::after,
  .page-hero::after {
    opacity: 0.55;
  }

  .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    width: calc(100% - 20px);
    border-radius: 22px;
    overflow: visible;
    gap: 8px;
  }

  html[lang^="en"] .site-header {
    width: calc(100% - 20px);
  }

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

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

  .footer-service-row span,
  .footer-service-row a,
  .footer-cta {
    width: 100%;
  }

  .footer-legal {
    display: grid;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 4px 6px;
    overflow-x: visible;
  }

  .site-nav a {
    padding: 5px 6px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  html[lang^="en"] .site-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 3px;
  }

  html[lang^="en"] .site-nav a {
    padding: 5px 2px;
    font-size: 0.64rem;
    text-align: center;
  }

  .language-switcher a,
  .language-switcher span,
  .language-switcher__trigger {
    min-width: 31px;
    min-height: 44px;
    padding: 4px 6px;
    font-size: 0.66rem;
  }

  .language-switcher__options {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    max-height: calc(100vh - 104px);
  }

  .language-switcher__trigger .language-switcher__code {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .back-to-top {
    right: 12px;
    bottom: 14px;
    min-height: 44px;
    padding: 7px 12px 7px 8px;
  }

  .back-to-top span {
    width: 26px;
    height: 26px;
  }

  .product-inquiry {
    max-width: calc(100% - 58px);
  }

  .hero-inner {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding: 178px 0 150px;
    margin: 0 20px;
  }

  .hero-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.55rem);
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  html[lang="ru"] .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.05rem);
    line-height: 1.05;
  }

  html[lang="ru"] .hero-panel strong {
    font-size: 1.18rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
  }

  .hero-lede,
  .page-hero p,
  .section-title p,
  .split-copy p,
  .contact-card p,
  .page-card p,
  .data-table p,
  .feature-card h3,
  .timeline p,
  .product-card p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-lede,
  .page-hero p {
    max-width: 20.5em;
  }

  .contact-card h2 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    max-width: 8.9em;
    font-size: clamp(1.9rem, 8.4vw, 2.35rem);
    line-height: 1.1;
    overflow-wrap: break-word;
    word-break: normal;
  }

  html[data-localized-site="true"] .page-hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  html[lang^="ja"] .hero-panel strong.ja-compact-metric {
    font-size: 1.12rem;
    white-space: nowrap;
  }

  html[lang^="ja"] .page-hero img.product-capability-hero-image {
    height: auto;
    aspect-ratio: 1.8 / 1;
    object-fit: contain;
    object-position: center;
    background: #1f604b;
  }

  .section-title h2,
  .split-copy h2,
  .cta-section h2,
  .contact-card h2 {
    max-width: 10.5em;
    font-size: clamp(1.75rem, 7.3vw, 2.22rem);
    line-height: 1.13;
    overflow-wrap: break-word;
    word-break: normal;
  }

  html[data-localized-site="true"][lang="de"] h1,
  html[data-localized-site="true"][lang="de"] h2,
  html[data-localized-site="true"][lang="de"] h3,
  html[data-localized-site="true"][lang="de"] .hero-panel strong {
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: auto;
    hyphens: auto;
  }

  .contact-card h2 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    overflow-wrap: anywhere;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr 1fr;
    margin: -134px 20px 28px;
  }

  .hero-panel div {
    padding: 18px;
    border-bottom: 1px solid var(--soft);
  }

  .hero-panel span {
    font-size: 0.82rem;
  }

  .hero-panel div:nth-child(2n) {
    border-right: 0;
  }

  .section,
  .page-hero {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .page-hero {
    gap: 28px;
    padding-top: 166px;
  }

  .promise-grid,
  .compliance-grid,
  .card-links,
  .page-grid,
  .resource-grid,
  .resource-grid.compact-grid,
  .resource-stats,
  .article-nav,
  .product-grid,
  .product-toolbar,
  .snapshot-grid,
  .credibility-band,
  .contact-direct,
  .category-cloud,
  .factory-stats,
  .factory-template-grid,
  .factory-kpi-grid,
  .factory-capability-map,
  .factory-roadmap,
  .factory-tour-grid,
  .factory-document-grid,
  .factory-document-cards,
  .factory-product-grid,
  .factory-flow,
  .factory-gallery,
  .factory-directory,
  .factory-directory-card.featured,
  .region-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .directory-headline {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-card {
    min-height: 0;
  }

  .article-body {
    padding: 24px;
  }

  .factory-directory-card.featured img {
    min-height: 230px;
  }

  .factory-profile-card {
    grid-template-rows: 230px 1fr;
  }

  .factory-profile-card > img {
    height: 230px;
  }

  .product-photo-grid {
    min-height: 420px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .factory-network-photo-grid {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .factory-directory-card.featured div {
    padding: 0;
  }

  .product-meta {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    justify-content: flex-start;
  }

  .promise-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid article:last-child {
    border-bottom: 0;
  }

  .split-media img,
  .universe-layout img,
  .page-hero img {
    height: 320px;
    min-height: 0;
  }

  .factory-profile-hero {
    min-height: 720px;
  }

  .factory-profile-overlay {
    width: calc(100% - 32px);
    padding: 168px 0 72px;
    margin: 0 16px;
  }

  .factory-profile-overlay h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .factory-profile-overlay p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .factory-page-nav {
    position: relative;
    top: auto;
    width: calc(100% - 24px);
    margin-top: -24px;
    border-radius: 26px;
  }

  .factory-page-nav a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.75rem;
  }

  .factory-identity-card,
  .factory-kpi-grid article,
  .factory-capability-map article,
  .factory-roadmap article,
  .factory-tour-panel,
  .factory-document-cards article {
    min-height: 0;
    padding: 22px;
  }

  .factory-roadmap article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .factory-roadmap article:last-child {
    border-bottom: 0;
  }

  .factory-document-grid img {
    min-height: 320px;
  }

  .factory-feature-banner {
    min-height: 600px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  html[lang="ru"] .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="ru"] .hero-panel div:nth-child(2n) {
    border-right: 0;
  }

  html[lang="ru"] .hero-panel strong {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

/* Arabic and other right-to-left locales retain the shared visual system while
   using reading-order, typography and control alignment appropriate to RTL. */
html[dir="rtl"] {
  --font-display: "Noto Sans Arabic", "Geeza Pro", Tahoma, sans-serif;
  --font-body: "Noto Sans Arabic", "Geeza Pro", Tahoma, sans-serif;
}

html[lang="he"] {
  --font-display: "Noto Sans Hebrew", "Arial Hebrew", Arial, sans-serif;
  --font-body: "Noto Sans Hebrew", "Arial Hebrew", Arial, sans-serif;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-direct,
html[dir="rtl"] .footer-service-row,
html[dir="rtl"] .footer-legal,
html[dir="rtl"] .product-toolbar,
html[dir="rtl"] .filter-tabs,
html[dir="rtl"] .directory-headline,
html[dir="rtl"] .factory-page-nav,
html[dir="rtl"] .factory-flow,
html[dir="rtl"] .article-nav {
  direction: rtl;
}

html[dir="rtl"] .site-nav a,
html[dir="rtl"] .nav-cta,
html[dir="rtl"] .button,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .back-to-top b {
  letter-spacing: 0;
}

html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="url"] {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

html[dir="rtl"] .language-switcher__options {
  right: auto;
  left: 0;
}

html[dir="rtl"] .language-switcher__options a,
html[dir="rtl"] .language-switcher__options span {
  justify-content: flex-start;
  text-align: right;
}

html[dir="rtl"] .back-to-top {
  right: auto;
  left: max(18px, calc((100vw - 1480px) / 2));
  padding: 8px 10px 8px 15px;
}

@media (max-width: 760px) {
  html[dir="rtl"] .language-switcher__options {
    right: 10px;
    left: 10px;
  }

  html[dir="rtl"] .back-to-top {
    right: auto;
    left: 12px;
    padding: 7px 8px 7px 12px;
  }

  html[dir="rtl"] .directory-headline {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .site-header:has(> .back-to-top.is-visible) .brand img {
    width: 118px;
  }

  .back-to-top {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .back-to-top b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .site-header,
  html[lang^="en"] .site-header,
  html[data-localized-site="true"] .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-header:has(> .back-to-top.is-visible),
  html[lang^="en"] .site-header:has(> .back-to-top.is-visible),
  html[data-localized-site="true"] .site-header:has(> .back-to-top.is-visible) {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  .site-header > .back-to-top {
    position: static;
    display: none;
    width: auto;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 6px 9px 6px 6px;
    opacity: 0;
    transform: none;
  }

  .site-header > .back-to-top.is-visible {
    display: inline-flex;
    opacity: 1;
    transform: none;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 58px;
    min-height: 44px;
    padding: 6px 10px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 900;
  }

  .nav-toggle > span {
    display: grid;
    gap: 3px;
    width: 15px;
  }

  .nav-toggle i {
    display: block;
    width: 15px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle.is-open i:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle.is-open i:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open i:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav,
  html[lang^="en"] .site-nav,
  html[data-localized-site="true"] .site-nav {
    display: none;
  }

  .site-nav.is-open,
  html[lang^="en"] .site-nav.is-open,
  html[data-localized-site="true"] .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    gap: 4px;
  }

  .site-nav.is-open a,
  html[lang^="en"] .site-nav.is-open a,
  html[data-localized-site="true"] .site-nav.is-open a {
    min-height: 44px;
    padding: 7px 8px;
    font-size: 0.72rem;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: normal;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 16px);
    padding: 9px;
  }

  .brand img,
  .footer-brand img {
    width: 142px;
    height: auto;
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero-inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-top: 184px;
    margin: 0 16px;
  }

  html[lang^="en"] .hero h1 {
    font-size: clamp(1.85rem, 8.1vw, 2.15rem);
    line-height: 1.06;
    letter-spacing: -0.018em;
  }

  .hero-panel {
    margin-right: 16px;
    margin-left: 16px;
  }

  .section,
  .page-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  html[lang="de"] .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    hyphens: manual;
  }
}

@media (max-width: 760px) {
  html[lang="ro"] .hero h1 {
    font-size: clamp(1.82rem, 7.8vw, 2.18rem);
    line-height: 1.06;
  }

  html[lang="ro"] .page-hero h1,
  html[lang="ro"] .factory-profile-overlay h1 {
    max-width: 100%;
    font-size: clamp(1.76rem, 7.35vw, 2.12rem);
    line-height: 1.08;
  }

  html[lang="bg"] .hero h1 {
    font-size: clamp(1.78rem, 7.55vw, 2.12rem);
    line-height: 1.06;
  }

  html[lang="bg"] .page-hero h1,
  html[lang="bg"] .factory-profile-overlay h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7.15vw, 2.04rem);
    line-height: 1.08;
  }
}

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

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

/* Direct, buyer-facing answers improve scanning without changing page hierarchy. */
.answer-strip,
.operator-boundary-strip {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 84px);
  align-items: start;
  width: 100%;
  padding: clamp(34px, 4.4vw, 68px) max(5vw, calc((100vw - 1480px) / 2));
  color: #eef5ee;
  background: #0b2c24;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.answer-strip > *,
.operator-boundary-strip > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.answer-kicker {
  margin: 5px 0 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[data-localized-site="true"][lang="de"] .answer-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: nowrap;
}

.answer-strip h2,
.operator-boundary-strip h2 {
  max-width: 920px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.45rem, 2.3vw, 2.55rem);
  line-height: 1.12;
  text-wrap: balance;
}

.answer-strip p:last-child,
.operator-boundary-strip p:last-child {
  max-width: 1080px;
  margin: 0;
  color: rgba(238, 245, 238, 0.78);
  font-size: clamp(0.96rem, 1.15vw, 1.12rem);
  line-height: 1.78;
}

/* Keep Korean words intact after the localized mobile heading overrides. */
html[lang^="ko"][data-localized-site="true"] body :is(h1, h2, h3) {
  overflow-wrap: normal;
  word-break: keep-all;
}

@media (max-width: 760px) {
  .answer-strip,
  .operator-boundary-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .answer-strip h2,
  .operator-boundary-strip h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
}
