:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #f5f5f7;
  --surface: #ffffff;
  --line: #d2d2d7;
  --blue: #c9a45c;
  --blue-dark: #a9853e;
  --gold: #c9a45c;
  --warm-dark: #000000;
  --warm-panel: #161617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.47059;
  letter-spacing: 0;
}

body.reveal-enabled .soft-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.reveal-enabled .soft-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 clamp(18px, 4vw, 44px);
  background: rgba(250, 250, 252, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(180%) blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 36px);
  color: rgba(29, 29, 31, 0.72);
  font-size: 12px;
}

.main-nav a,
.header-cta,
.language-switcher button {
  transition: color 160ms ease;
}

.main-nav a:hover,
.header-cta:hover,
.language-switcher button:hover {
  color: var(--blue);
}

.language-switcher {
  position: relative;
  z-index: 60;
}

.language-switcher > button {
  min-height: 30px;
  padding: 0 12px;
  color: rgba(29, 29, 31, 0.72);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 148px;
  padding: 8px;
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  width: 100%;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(29, 29, 31, 0.82);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: var(--blue-dark);
  background: rgba(201, 164, 92, 0.12);
}

.language-menu button[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .capability-strip,
html[dir="rtl"] .socials,
html[dir="rtl"] .modal-actions {
  direction: rtl;
}

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

html[dir="rtl"] .product-card,
html[dir="rtl"] .challenge-grid article,
html[dir="rtl"] .china-service-flow article,
html[dir="rtl"] .product-image-grid article,
html[dir="rtl"] .quality-logistics-grid article {
  text-align: right;
}

.header-cta {
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #1d1d1f;
  background: #090806;
  text-align: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--surface) 86%);
  pointer-events: none;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
  opacity: 1;
  transform: translateZ(0);
}

.hero-overlay {
  background:
    radial-gradient(circle at 49% 36%, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.28) 30%, rgba(231, 212, 176, 0.18) 58%, rgba(67, 49, 31, 0.16) 100%),
    linear-gradient(to bottom, rgba(255, 248, 236, 0.2), rgba(246, 231, 205, 0.18) 54%, rgba(80, 60, 38, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 72px));
  margin: 0 auto;
  padding-top: 0;
  transform: translateY(-6vh);
}

.hero-content .eyebrow,
.hero-actions {
  opacity: 0;
  transform: translateY(12px);
  animation: heroElementGlow 1150ms ease both;
}

.hero-content .eyebrow {
  animation-delay: 120ms;
  margin: -6px 0 14px;
  color: rgba(82, 83, 86, 0.86);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 650;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.34);
}

.hero-content h1 {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 760ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto 16px;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: min(1180px, 100%);
  margin: 0 auto 22px;
  color: rgba(0, 0, 0, 0.88);
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: 0.012em;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.46),
    0 14px 42px rgba(255, 255, 255, 0.22),
    0 22px 50px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(10px);
  animation: heroTitleGlow 1500ms ease 180ms both;
}

.hero-title-line {
  display: block;
  color: rgba(0, 0, 0, 0.88);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.hero-title-primary {
  font-size: clamp(44px, 5.1vw, 78px);
}

.hero-title-secondary {
  margin-top: 6px;
  font-size: clamp(42px, 4.8vw, 72px);
  white-space: nowrap;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 650;
  line-height: 1.18;
}

.hero-copy {
  max-width: 460px;
  margin: 0 0 24px;
  color: rgba(29, 29, 31, 0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}

.button.primary {
  color: #fffaf0;
  background: linear-gradient(135deg, #2b2419, #86652f);
  box-shadow:
    0 12px 26px rgba(82, 55, 24, 0.18),
    inset 0 1px 0 rgba(255, 232, 176, 0.32);
}

.button.primary:hover {
  background: linear-gradient(135deg, #251f17, #99743a);
  box-shadow: 0 16px 34px rgba(82, 55, 24, 0.22);
}

.button.ghost {
  color: #3a2f20;
  background: rgba(255, 249, 239, 0.78);
  border-color: rgba(201, 164, 92, 0.22);
  box-shadow:
    0 12px 26px rgba(100, 70, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button:hover {
  transform: translateY(-2px);
}

@keyframes heroElementGlow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleGlow {
  0% {
    opacity: 0;
    transform: translateY(10px);
    text-shadow:
      0 0 0 rgba(255, 255, 255, 0),
      0 0 0 rgba(255, 255, 255, 0),
      0 0 0 rgba(0, 0, 0, 0);
  }

  58% {
    opacity: 0.92;
    transform: translateY(3px);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3),
      0 10px 30px rgba(255, 255, 255, 0.18),
      0 18px 42px rgba(0, 0, 0, 0.12);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.46),
      0 14px 42px rgba(255, 255, 255, 0.22),
      0 22px 50px rgba(0, 0, 0, 0.18);
  }
}

@keyframes heroTitleGradient {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: 0% 50%;
  }
}

@keyframes titleGoldFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

@keyframes heroStatIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-title-line,
  .hero-actions,
  .hero-stats div {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .hero-title-line {
    color: rgba(10, 10, 11, 0.94);
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  body.reveal-enabled .soft-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.hero-stats {
  position: absolute;
  right: clamp(28px, 5vw, 72px);
  bottom: clamp(16px, 5vh, 46px);
  left: clamp(28px, 5vw, 72px);
  z-index: 3;
  color: #f5f5f7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 233, 187, 0.24), rgba(255, 233, 187, 0) 44%),
    linear-gradient(180deg, rgba(255, 248, 235, 0.26), rgba(106, 83, 55, 0.22));
  border: 1px solid rgba(255, 244, 220, 0.22);
  backdrop-filter: blur(16px) saturate(115%);
  box-shadow: 0 18px 40px rgba(68, 50, 31, 0.12);
  opacity: 1;
  transform: translateY(14px);
  animation: heroStatIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-stats div:nth-child(1) {
  animation-delay: 560ms;
}

.hero-stats div:nth-child(2) {
  animation-delay: 660ms;
}

.hero-stats div:nth-child(3) {
  animation-delay: 760ms;
}

.hero-stats div:nth-child(4) {
  animation-delay: 860ms;
}

.hero-stats div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 164, 92, 0), rgba(201, 164, 92, 0.95), rgba(201, 164, 92, 0));
  transform: translateX(-50%);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.18);
  filter: blur(18px);
  pointer-events: none;
}

.hero-stats div:hover {
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 233, 187, 0.3), rgba(255, 233, 187, 0) 42%),
    linear-gradient(180deg, rgba(255, 248, 235, 0.3), rgba(106, 83, 55, 0.24));
}

.hero-stats strong,
.partner-metrics strong {
  display: block;
  color: #fff9eb;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(255, 255, 255, 0.34);
}

.hero-stats span,
.partner-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 235, 0.84);
  font-size: 13px;
}

.section {
  padding: clamp(64px, 7vw, 104px) clamp(16px, 3vw, 36px);
}

.section-copy,
.section-heading,
.partners-copy {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-copy p,
.partners-copy p,
.project-card p,
.service-layout p,
.challenge-grid p,
.product-family-heading p,
.material-column li,
.trust-layout p,
.cert-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split-section {
  background: var(--surface);
  padding-top: clamp(38px, 4.6vw, 72px);
}

.split-section .section-copy {
  max-width: min(1120px, calc(100% - 64px));
  margin-bottom: 42px;
}

.split-section .section-copy .eyebrow {
  margin-bottom: 20px;
  color: rgba(82, 83, 86, 0.86);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 650;
}

.split-section .section-copy h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 3.45vw, 52px);
  line-height: 1.08;
}

.split-section .section-copy > p:not(.eyebrow) {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.42;
}

.process-section,
.styles,
.quality-logistics-section,
.contact-section {
  background: var(--surface);
  color: var(--ink);
}

.solution,
.china-visit-section,
.projects,
.partners {
  background: var(--warm-dark);
  color: #f5f5f7;
}

.china-visit-section {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.china-visit-section .eyebrow,
.projects .eyebrow,
.partners .eyebrow {
  color: rgba(245, 245, 247, 0.7);
}

.china-visit-section p,
.projects p,
.partners p,
.china-visit-section small,
.projects small,
.partners small {
  color: rgba(245, 245, 247, 0.68);
}

.china-buying-visuals,
.china-service-flow {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 26px;
}

.china-buying-visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 12px;
}

.china-buying-visuals figure {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.china-buying-visuals figure:first-child {
  min-height: 320px;
}

.china-buying-visuals img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.china-buying-visuals figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.china-service-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.service-flow-heading {
  grid-column: 1 / -1;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px clamp(22px, 3vw, 36px);
  border-radius: 12px;
  color: #f5f5f7;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(29, 29, 31, 0.94), rgba(0, 0, 0, 0.94)),
    var(--warm-dark);
}

.service-flow-heading h3 {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #f5f5f7;
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.service-flow-heading h3 span {
  display: inline;
  margin: 0;
}

.service-flow-heading h3 span:first-child {
  color: var(--gold);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-flow-heading h3 span:last-child {
  color: rgba(245, 245, 247, 0.72);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.china-service-flow article {
  min-height: 132px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--warm-panel);
  border: 1px solid rgba(245, 245, 247, 0.08);
  box-shadow: none;
}

.china-service-flow article img {
  display: none;
}

.china-service-flow article div {
  min-height: 132px;
  padding: 16px 16px 18px;
}

.china-service-flow strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.china-service-flow h4 {
  margin: 0 0 8px;
  color: #f5f5f7;
  font-size: clamp(15px, 0.92vw, 17px);
  line-height: 1.18;
}

.china-service-flow p {
  margin: 0;
  color: rgba(245, 245, 247, 0.68);
  font-size: 11.5px;
  line-height: 1.42;
}

.challenge-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.challenge-grid article,
.service-layout article,
.project-card,
.partner-metrics div,
.inquiry-form {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: var(--soft);
}

.challenge-grid article {
  min-height: 220px;
  padding: 24px;
}

.challenge-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.solution .section-heading,
.process-section .section-heading,
.projects .section-heading {
  margin-bottom: 34px;
}

.process-section {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.process-heading {
  width: min(1280px, 100%);
  max-width: none;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  text-align: left;
}

.process-heading .eyebrow {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1;
}

.process-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.02;
  white-space: nowrap;
}

.service-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-layout article {
  min-height: 280px;
  padding: 0;
  background: var(--warm-panel);
}

.service-layout p {
  color: rgba(245, 245, 247, 0.68);
}

.service-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-card::before {
  background: var(--service-image) center / cover no-repeat;
  filter: blur(4px) saturate(0.82);
  transform: scale(1.04);
  opacity: 0.58;
}

.service-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58) 54%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
}

.service-design {
  --service-image: url("assets/images/service-backgrounds/design-look.jpg");
}

.service-select {
  --service-image: url("assets/images/service-backgrounds/select-everything.jpg");
}

.service-deliver {
  --service-image: url("assets/images/service-backgrounds/deliver-home.jpg");
}

.service-card-copy {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 2.4vw, 34px);
}

.service-card-copy span {
  width: fit-content;
  margin-bottom: 18px;
  padding-bottom: 8px;
  color: rgba(201, 164, 92, 0.9);
  border-bottom: 1px solid rgba(201, 164, 92, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card h3 {
  max-width: 11ch;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.03;
  text-wrap: balance;
}

.service-card p {
  max-width: 34ch;
  margin-bottom: 0;
  color: rgba(245, 245, 247, 0.76);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.56;
}

.capability-strip {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-strip span {
  padding: 9px 14px;
  color: rgba(245, 245, 247, 0.78);
  border: 1px solid rgba(245, 245, 247, 0.18);
  border-radius: 999px;
  font-size: 13px;
}

.narrow {
  max-width: 880px;
}

.timeline {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.timeline article {
  overflow: hidden;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.timeline article img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.timeline article div {
  padding: 16px 18px 18px;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.timeline h3 {
  margin-bottom: 6px;
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.08;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.project-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--warm-dark);
  color: #f5f5f7;
}

.project-card.large {
  grid-row: auto;
}

.project-card img,
.project-card.large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.48));
}

.project-card div {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 38px 26px;
  text-align: center;
}

.project-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 245, 247, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.project-card p {
  color: rgba(245, 245, 247, 0.76);
}

.styles {
  overflow: hidden;
}

.product-family-heading {
  width: min(1280px, 100%);
  margin: 0 auto 44px;
}

.product-family-heading h2 {
  max-width: 560px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
}

.product-family-heading p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(15px, 1.5vw, 18px);
}

.catalog-proof-strip {
  width: min(1280px, 100%);
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.catalog-proof-strip div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 8px;
  color: #f5f5f7;
  background: #111;
  text-align: center;
}

.catalog-proof-strip strong {
  display: block;
  color: #fff9eb;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.catalog-proof-strip span {
  display: block;
  margin-top: 7px;
  color: rgba(245, 245, 247, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.catalog-advantage-grid {
  width: min(1280px, 100%);
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.catalog-advantage-grid article {
  min-height: 172px;
  padding: 22px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-advantage-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-advantage-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.8vw, 26px);
}

.catalog-advantage-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.catalog-entry-grid {
  width: min(1280px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.catalog-entry-grid a {
  min-height: 188px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 164, 92, 0.22), transparent 34%),
    linear-gradient(135deg, #191919, #080808);
  border: 1px solid rgba(201, 164, 92, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-entry-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 92, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.catalog-entry-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.catalog-entry-grid h3 {
  margin: auto 0 8px;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.06;
}

.catalog-entry-grid p {
  min-height: 36px;
  margin: 0 0 12px;
  color: rgba(245, 245, 247, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.catalog-entry-grid em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.product-line-label {
  width: min(1280px, 100%);
  margin: 34px auto 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.product-line-label span {
  color: var(--ink);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 800;
}

.product-line-label small {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-card-strip {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 245px;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 26px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-card-strip.product-marquee {
  scroll-snap-type: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.product-card-strip.product-marquee .product-card {
  scroll-snap-align: none;
}

.product-card-strip::-webkit-scrollbar,
.project-showcase-strip::-webkit-scrollbar,
.style-gallery-strip::-webkit-scrollbar {
  display: none;
}

.product-card {
  min-height: 360px;
  padding: 18px 18px 22px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--ink);
  scroll-snap-align: start;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
}

.product-card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-card em {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.product-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.product-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8c8cc;
}

.product-dots span:nth-child(1) {
  background: #c9ad8b;
}

.product-dots span:nth-child(2) {
  background: #6f7681;
}

.product-dots span:nth-child(3) {
  background: #ece7dc;
  border: 1px solid #c9c4ba;
}

.product-dots span:nth-child(4) {
  background: #1d1d1f;
}

.project-stage {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: clamp(66px, 7vw, 104px) 0 clamp(72px, 7vw, 110px);
  overflow: hidden;
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035) 28%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, #050505 0%, #000 44%, #070707 100%);
}

.project-stage::before,
.project-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-stage::before {
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0) 86%, #000 100%),
    radial-gradient(ellipse at center bottom, rgba(201, 164, 92, 0.16), rgba(0, 0, 0, 0) 48%);
  z-index: 1;
}

.project-stage::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.45), transparent);
}

.project-stage > * {
  position: relative;
  z-index: 2;
}

.product-project-heading {
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.product-project-heading h3 {
  margin: 0;
  color: rgba(245, 245, 247, 0.96);
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 0.98;
}

.product-project-heading a {
  color: var(--blue);
  font-weight: 600;
}

.project-showcase-strip {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 42vw, 700px);
  gap: clamp(16px, 1.8vw, 28px);
  overflow-x: auto;
  padding: clamp(22px, 3vw, 38px) 6vw clamp(34px, 4vw, 56px);
  scroll-snap-type: x proximity;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}

.project-showcase-strip[data-carousel-ready="true"] {
  scroll-snap-type: none;
}

.showcase-card {
  --focus: 0.48;
  --showcase-meta-height: clamp(132px, 16svh, 166px);
  position: relative;
  min-height: clamp(500px, 68svh, 700px);
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  color: #f5f5f7;
  scroll-snap-align: start;
  opacity: calc(0.54 + (var(--focus) * 0.46));
  transform: scale(calc(0.76 + (var(--focus) * 0.24)));
  transform-origin: center center;
  filter: saturate(calc(0.68 + (var(--focus) * 0.42))) brightness(calc(0.76 + (var(--focus) * 0.24)));
  box-shadow:
    0 calc(18px + (var(--focus) * 26px)) calc(36px + (var(--focus) * 64px)) rgba(0, 0, 0, calc(0.3 + (var(--focus) * 0.34))),
    0 0 0 1px rgba(255, 255, 255, calc(0.05 + (var(--focus) * 0.08)));
  transition: opacity 150ms ease, transform 150ms ease, filter 150ms ease, box-shadow 150ms ease;
}

.project-showcase-strip[data-center-stage="true"] .showcase-card:hover {
  transform: scale(calc(0.76 + (var(--focus) * 0.24)));
}

.showcase-card img {
  position: absolute;
  inset: var(--showcase-meta-height) 0 0;
  width: 100%;
  height: calc(100% - var(--showcase-meta-height));
  object-fit: cover;
}

.showcase-card div {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: var(--showcase-meta-height);
  padding: 18px clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  text-align: center;
}

.showcase-card .country-lockup {
  display: flex;
  width: auto;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  text-align: center;
  line-height: 1.05;
  text-transform: uppercase;
  text-wrap: balance;
}

.country-flag {
  flex: 0 0 auto;
  margin-right: clamp(10px, 1vw, 16px);
  text-align: center;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
}

.country-name {
  flex: 0 1 auto;
  text-align: center;
  color: var(--gold);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 0.96;
}

.country-lockup.is-long .country-name {
  font-size: clamp(24px, 2.45vw, 38px);
  letter-spacing: 0.045em;
}

.country-name,
.country-flag {
  min-width: 0;
}

.showcase-card h3 {
  display: none;
}

.showcase-card p {
  display: block;
  max-width: 92%;
  margin: 0;
  color: rgba(245, 245, 247, 0.78);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 650;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-shadow: none;
}

.showcase-card.dark {
  color: #f5f5f7;
  background: #111;
}

.showcase-card.dark p {
  color: rgba(255, 255, 255, 0.9);
}

.showcase-card.dark img {
  opacity: 1;
}

.quality-logistics-panel {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.06);
}

.quality-logistics-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

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

.quality-logistics-heading h3 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

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

.quality-logistics-grid article {
  overflow: hidden;
  min-height: 220px;
  padding: 0 0 24px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.quality-logistics-grid article img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.quality-logistics-grid span {
  display: block;
  margin: 22px 24px 30px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.quality-logistics-grid h4 {
  margin: 0 24px 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.quality-logistics-grid p {
  margin: 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 72px 20px 20px;
}

.product-modal:target {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.modal-close {
  display: inline-flex;
}

.modal-panel {
  position: relative;
  width: min(1280px, 100%);
  max-height: calc(100vh - 92px);
  margin: 0 auto;
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.modal-heading p {
  max-width: 680px;
  color: var(--muted);
}

.style-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 340px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.style-gallery-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft);
  scroll-snap-align: start;
}

.style-gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.catalog-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 18px 18px 20px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-open-link:hover {
  background: var(--gold);
  color: var(--ink);
}

.style-gallery-card div {
  padding: 22px;
}

.style-gallery-card p {
  color: var(--muted);
}

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

.category-list-grid article {
  min-height: 182px;
  padding: 22px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.category-list-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.category-list-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.subcategory-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subcategory-chip-grid span {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.catalog-source-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 34px;
}

.catalog-source-map span {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--muted);
  background: #f7f7f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
}

.catalog-source-map strong {
  color: var(--ink);
  font-weight: 800;
}

.catalog-map-grid {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.035);
}

.catalog-map-grid span {
  min-height: 38px;
  color: #161616;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
  font-size: 13px;
}

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

.product-image-grid article,
.product-image-grid > a {
  overflow: hidden;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-image-grid > a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-image-grid > a:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 76, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.product-image-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.product-image-grid h3 {
  margin: 20px 20px 8px;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.12;
}

.product-image-grid p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

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

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

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

.button.light {
  color: var(--ink);
  background: #f5f5f7;
  border-color: rgba(245, 245, 247, 0.2);
}

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

.partner-metrics {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  text-align: center;
}

.partner-metrics div {
  min-height: 142px;
  padding: 24px 18px;
  background: var(--warm-panel);
}

.trust-layout {
  width: min(980px, 100%);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-layout article {
  min-height: 170px;
  padding: 26px;
  border-radius: 8px;
  background: var(--warm-panel);
  border: 1px solid rgba(245, 245, 247, 0.08);
}

.trust-layout p {
  color: rgba(245, 245, 247, 0.68);
}

.cert-summary {
  width: min(980px, 100%);
  margin: 18px auto 0;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 245, 247, 0.12), rgba(245, 245, 247, 0) 34%),
    var(--warm-panel);
  border: 1px solid rgba(245, 245, 247, 0.08);
}

.cert-summary span {
  display: block;
  margin-bottom: 8px;
  color: #f5f5f7;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
}

.cert-summary p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 245, 247, 0.68);
}

.cert-strip {
  width: min(1180px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.cert-card {
  min-height: 132px;
  margin: 0;
  padding: 16px 14px 14px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 44%),
    rgba(245, 245, 247, 0.075);
  border: 1px solid rgba(245, 245, 247, 0.14);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cert-card img {
  width: 100%;
  max-width: 148px;
  height: 68px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.26));
}

.cert-card figcaption {
  color: rgba(245, 245, 247, 0.74);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.cert-note {
  width: min(840px, 100%);
  margin: 18px auto 0;
  color: rgba(245, 245, 247, 0.58);
  text-align: center;
}

.cert-page {
  background: #000;
}

.cert-hero {
  min-height: 100svh;
  padding: clamp(92px, 9vw, 140px) clamp(16px, 4vw, 56px) clamp(56px, 6vw, 92px);
  color: #f5f5f7;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 245, 247, 0.12), rgba(245, 245, 247, 0) 36%),
    #000;
}

.cert-hero-copy {
  width: min(980px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.cert-hero-copy h1 {
  max-width: 940px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
}

.cert-hero-copy p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(245, 245, 247, 0.68);
  font-size: clamp(16px, 1.25vw, 19px);
}

.cert-page-grid {
  width: min(1280px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cert-page-grid .cert-card {
  min-height: 170px;
}

.cert-page-grid .cert-card img {
  max-width: 180px;
  height: 86px;
}

.contact-section {
  padding: clamp(64px, 7vw, 104px) clamp(16px, 3vw, 36px);
}

.contact-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-panel > div,
.inquiry-form {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background: var(--soft);
}

.contact-panel h2 {
  font-size: clamp(30px, 3.6vw, 46px);
}

address {
  color: var(--muted);
  font-style: normal;
}

.contact-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 28px 0 18px;
  list-style: none;
  color: var(--blue);
  font-weight: 500;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.contact-buttons a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fffaf0;
  background: linear-gradient(135deg, #1d1d1f, #7b5b2a);
  border: 1px solid rgba(201, 164, 92, 0.28);
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 232, 176, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-buttons a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 232, 176, 0.28);
}

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

.social-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: rgba(29, 29, 31, 0.74);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 164, 92, 0.38);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.social-chip svg {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.social-chip svg path {
  fill: currentColor;
}

.social-chip.instagram svg {
  color: #e4405f;
}

.social-chip.tiktok svg {
  color: #111;
}

.social-chip.facebook svg {
  color: #1877f2;
}

.social-chip.wechat svg {
  color: #07c160;
}

.wechat-channel-panel {
  width: min(520px, 100%);
}

.wechat-channel-panel .modal-heading {
  align-items: start;
}

.wechat-channel-panel h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.wechat-qr-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 18px;
  background: var(--soft);
  text-align: center;
}

.wechat-qr-card img {
  width: min(330px, 100%);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.wechat-qr-card strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 22px;
}

.wechat-qr-card span {
  color: var(--muted);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  border: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 102, 204, 0.18);
  border-color: var(--blue);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 24px clamp(16px, 3vw, 36px);
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .main-nav {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: min(720px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 0;
    transform: translateY(-4vh);
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero-title-primary {
    font-size: clamp(42px, 7.2vw, 62px);
  }

  .hero-title-secondary {
    font-size: clamp(36px, 6.4vw, 54px);
  }

  .hero-stats,
  .challenge-grid,
  .china-buying-visuals,
  .service-layout,
  .project-grid,
  .partner-metrics,
  .contact-panel,
  .trust-layout {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-flow-heading h3 {
    flex-wrap: wrap;
    white-space: normal;
  }

  .china-service-flow {
    width: min(100%, calc(100% - 28px));
  }

  .product-card-strip {
    grid-auto-columns: 230px;
  }

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

  .catalog-proof-strip,
  .catalog-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-advantage-grid {
    grid-template-columns: 1fr;
  }

  .process-heading {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .process-heading h2 {
    white-space: normal;
  }

  .project-showcase-strip {
    grid-auto-columns: minmax(420px, 62vw);
    padding-right: 18vw;
    padding-left: 18vw;
  }

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

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

  .cert-summary {
    align-items: start;
    flex-direction: column;
  }

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

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

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

  .project-card {
    min-height: 480px;
  }

}

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

  .brand span {
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-bg {
    object-position: 66% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 0;
    transform: translateY(-8vh);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.32) 34%, rgba(231, 212, 176, 0.2) 70%),
      linear-gradient(to bottom, rgba(255, 248, 236, 0.22), rgba(80, 60, 38, 0.24));
  }

  .hero h1 {
    max-width: 100%;
    line-height: 1;
  }

  .hero-title-primary {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-title-secondary {
    font-size: clamp(28px, 8vw, 38px);
    white-space: normal;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 16px;
  }

  .hero-stats,
  .challenge-grid,
  .china-buying-visuals,
  .service-layout,
  .project-grid,
  .partner-metrics,
  .contact-panel,
  .trust-layout {
    grid-template-columns: 1fr;
  }

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

  .china-service-flow {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 8px;
  }

  .hero-stats div {
    min-height: 84px;
    padding: 16px 12px;
  }

  .section {
    padding: 56px 12px;
  }

  .china-buying-visuals {
    margin-top: -4px;
  }

  .china-service-flow {
    margin-top: -4px;
  }

  .china-buying-visuals figure,
  .china-buying-visuals figure:first-child {
    min-height: 220px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-card {
    min-height: 460px;
  }

  .product-family-heading {
    margin-bottom: 28px;
  }

  .catalog-proof-strip,
  .catalog-entry-grid {
    grid-template-columns: 1fr;
  }

  .catalog-proof-strip div,
  .catalog-entry-grid a {
    min-height: auto;
  }

  .product-line-label {
    align-items: start;
    flex-direction: column;
    gap: 6px;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .product-line-label small {
    max-width: 100%;
  }

  .product-card-strip {
    grid-auto-columns: 236px;
    gap: 16px;
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-card {
    min-height: 340px;
  }

  .product-card img {
    height: 150px;
  }

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

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

  .cert-card {
    min-height: 120px;
  }

  .product-project-heading {
    width: calc(100% - 32px);
    align-items: start;
    flex-direction: column;
    margin-top: 0;
  }

  .project-stage {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .project-showcase-strip {
    grid-auto-columns: minmax(300px, 88vw);
    margin-right: 0;
    margin-left: 0;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .showcase-card {
    min-height: 560px;
    transform: scale(calc(0.82 + (var(--focus) * 0.18)));
  }

  .showcase-card div {
    padding: 28px;
  }

  .quality-logistics-panel {
    border-radius: 12px;
    margin-top: 28px;
    padding: 24px 18px;
  }

  .quality-logistics-grid {
    grid-template-columns: 1fr;
  }

  .quality-logistics-grid article {
    min-height: auto;
    padding: 0 0 20px;
  }

  .quality-logistics-grid span {
    margin: 18px 20px 24px;
  }

  .quality-logistics-grid h4 {
    margin-right: 20px;
    margin-left: 20px;
  }

  .quality-logistics-grid p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .modal-heading {
    flex-direction: column;
  }

  .style-gallery-strip {
    grid-auto-columns: minmax(245px, 78vw);
  }

  .product-modal {
    padding: 58px 12px 12px;
  }

  .modal-panel {
    max-height: calc(100vh - 70px);
    padding: 22px 16px;
    border-radius: 16px;
  }

  .product-image-grid,
  .style-product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-grid h3 {
    margin: 18px 18px 8px;
  }

  .product-image-grid p {
    margin-right: 18px;
    margin-left: 18px;
  }

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

  .category-list-grid article {
    min-height: auto;
    padding: 18px;
  }

  .catalog-source-map {
    grid-template-columns: 1fr;
    margin: 14px 0 28px;
  }

  .subcategory-chip-grid {
    gap: 8px;
  }

  .subcategory-chip-grid span {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .contact-section {
    padding: 56px 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
