﻿:root {
  --color-page: #f4f0e9;
  --color-shell: #fffdfa;
  --color-surface: #ffffff;
  --color-card: #f6f1e9;
  --color-ink: #141312;
  --color-text: #2b2824;
  --color-muted: #756f66;
  --color-soft: #e9e1d6;
  --color-line: #ebe3d8;
  --color-gold: #d39a00;
  --color-gold-dark: #a87300;
  --color-dark: #0b0a09;
  --radius-card: 18px;
  --radius-inner: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 48px rgba(35, 28, 20, 0.1);
  --shadow-card: 0 10px 28px rgba(37, 30, 21, 0.08);
  --space-section: 24px;
  --container: 1500px;
  --desktop-canvas-width: 1500;
  --desktop-scale: 1;
  --scaled-shell-height: auto;
  --font-sans: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  --font-serif: Georgia, "Times New Roman", "SimSun", serif;
  --font-script: "Brush Script MT", "Segoe Script", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), rgba(244, 240, 233, 0.7) 42%, rgba(227, 221, 211, 0.62)),
    var(--color-page);
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(var(--container), calc(100% - 42px));
  margin: 16px auto 30px;
}

.page-stage {
  position: relative;
  width: 100%;
}

.site-header {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  min-height: 64px;
  gap: 22px;
  padding: 0 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  gap: 0;
  color: var(--color-gold);
  font-weight: 900;
}

.brand-logo {
  position: relative;
  display: grid;
  width: 160px;
  height: 70px;
  place-items: center;
  overflow: visible;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  font-family: var(--font-sans);
  color: #171514;
  font-size: 18px;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding: 22px 0;
  font-family: var(--font-sans);
}

html:not([data-nav-ready="true"]) .primary-nav {
  visibility: hidden;
}

.primary-nav a.active {
  color: var(--color-gold-dark);
}

.primary-nav a.active::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 24px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  content: "";
  transform: translateX(-50%);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-select {
  height: 38px;
  min-width: 108px;
  border: 1px solid #ddd4c9;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: #5b554e;
  font-size: 13px;
  font-weight: 700;
  outline: 0;
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  border: 0;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.quote-button,
.button-primary {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 10px 22px rgba(172, 109, 0, 0.18);
}

.button-outline {
  border: 1px solid rgba(184, 128, 21, 0.42);
  background: rgba(255, 255, 255, 0.65);
  color: #1c1916;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--color-line);
  border-radius: 9px;
  background: #fff;
  padding: 8px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
}

.card {
  overflow: hidden;
  border: 1px solid rgba(232, 224, 212, 0.92);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(520px, 48%) 1fr;
  align-items: center;
  margin-top: 8px;
  padding: 76px 82px 82px;
  isolation: isolate;
  background: #e2d8cd;
}

.hero-cover {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-content-expanded {
  display: grid;
  align-content: start;
  max-width: 650px;
  min-height: 348px;
  padding-top: 10px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #2d2924;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
}

h1,
h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 24px;
  font-size: 68px;
  line-height: 1.03;
  min-height: 186px;
  max-width: 520px;
  overflow-wrap: anywhere;
  white-space: normal;
  text-wrap: balance;
}

.hero-trust-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: var(--color-gold-dark);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-trust-line::before {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

.production-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin-top: 34px;
  text-align: left;
}

.production-proof-grid article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.production-proof-grid .line-icon {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  margin-top: 2px;
}

.production-proof-grid strong,
.production-proof-grid p {
  display: block;
  margin: 0;
}

.production-proof-grid strong {
  color: #2d2924;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.production-proof-grid p {
  margin-top: 6px;
  color: #756f66;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 68px;
}

.hero-actions .button {
  min-width: 126px;
  min-height: 48px;
  padding: 0 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-section);
  min-height: 132px;
  background: rgba(255, 255, 255, 0.96);
}

.hero-stats article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 32px 32px;
  border-right: 1px solid var(--color-line);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: #1f1c19;
  font-size: 16px;
  font-weight: 900;
}

.hero-stats p {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.line-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--color-gold);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.icon-calendar::before {
  inset: 6px 4px 4px;
  border: 3px solid currentColor;
  border-radius: 9px;
}

.icon-calendar::after {
  left: 9px;
  right: 9px;
  top: 15px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor;
}

.icon-container::before {
  left: 4px;
  top: 8px;
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-container::after {
  left: 10px;
  top: 14px;
  width: 3px;
  height: 12px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
}

.icon-solution::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-solution::after {
  left: 12px;
  top: 12px;
  width: 12px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-globe::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-globe::after {
  left: 17px;
  top: 5px;
  width: 3px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: currentColor;
  box-shadow: -9px 11px 0 -1px currentColor, 9px 11px 0 -1px currentColor;
}

.section-block {
  margin-top: var(--space-section);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0 8px;
}

.section-heading h2,
.market-copy h2,
.global-copy h2,
.contact-card h2 {
  font-size: 36px;
  line-height: 1.18;
}

.heading-row {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.text-link {
  color: var(--color-gold-dark);
  font-size: 14px;
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-card,
.mini-card,
.capability-card,
.news-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.product-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  padding: 10px 10px 11px;
}

.product-image,
.cap-image,
.news-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-inner);
  background:
    radial-gradient(circle at 50% 100%, rgba(110, 85, 52, 0.15), transparent 32%),
    linear-gradient(135deg, #f0ebe3, #d8cfc3);
}

.product-image {
  aspect-ratio: 4 / 3;
  min-height: 154px;
  height: auto;
  background-size: cover;
  background-position: center;
}

#products .product-image {
  aspect-ratio: 16 / 9;
  min-height: 132px;
  background-size: cover;
}

.product-card-image-luggage {
  background-image: url("images/product-card-luggage.png");
}

.product-card-image-accessories {
  background-image: url("images/product-card-accessories.png");
}

.product-card-image-presence {
  background-image: url("images/product-card-company-presence.png");
}

.product-image::before,
.product-image::after,
.cap-image::before,
.cap-image::after,
.news-image::before,
.news-image::after {
  position: absolute;
  content: "";
}

.product-finished {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.26), rgba(218, 208, 195, 0.14)),
    url("images/product-finished-luggage.jpg?v=20240524"),
    linear-gradient(135deg, #eee8df, #d3c7b8);
}

.product-semi {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.18), rgba(218, 208, 195, 0.15)),
    url("images/product-semi-finished-luggage.jpg?v=20240524"),
    linear-gradient(135deg, #e8e0d5, #cbc0b1);
}

.product-components {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.26), rgba(218, 208, 195, 0.14)),
    url("images/luggage-components.jpg?v=20240524"),
    linear-gradient(135deg, #f2ece3, #d8cfc3);
}

.product-materials {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.2), rgba(218, 208, 195, 0.16)),
    url("images/bag-materials.jpg?v=20240524"),
    linear-gradient(135deg, #e4dbcf, #c7baaa);
}

.product-oem {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.22), rgba(218, 208, 195, 0.13)),
    url("images/oem-odm.jpg?v=20240524"),
    linear-gradient(135deg, #f4eee5, #d9d0c4);
}

.product-accessories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(246, 241, 233, 0.66), rgba(219, 210, 198, 0.2)),
    linear-gradient(135deg, #f0e8dc, #d8ccbd);
}

.accessory-tile {
  display: block;
  min-height: 0;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.accessory-tile-handle {
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.04), rgba(38, 35, 31, 0.18)),
    url("images/series-handle.jpg");
}

.accessory-tile-wheels {
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.04), rgba(38, 35, 31, 0.18)),
    url("images/series-wheels.jpg");
}

.accessory-tile-parts {
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.04), rgba(38, 35, 31, 0.18)),
    url("images/luggage-components.jpg");
}

.accessory-tile-materials {
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.04), rgba(38, 35, 31, 0.18)),
    url("images/bag-materials.jpg");
}

.product-presence {
  background-image:
    linear-gradient(rgba(242, 236, 226, 0.16), rgba(218, 208, 195, 0.08)),
    url("images/series-production.jpg");
  background-position: center right;
}

.product-body {
  position: relative;
  min-height: 0;
  padding: 12px 8px 2px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-body h3,
.mini-card h3,
.capability-card h3,
.news-card h3 {
  margin: 0;
  color: #2d251d;
  font-size: 21px;
  line-height: 1.18;
  text-align: left;
  letter-spacing: 0.02em;
}

.product-body h3::after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 10px auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 136, 34, 0.18), var(--color-gold-dark));
  content: "";
}

.product-body p,
.mini-card p,
.capability-card p,
.news-card p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.product-body span,
.news-card > span {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: var(--color-gold-dark);
  font-size: 22px;
  font-weight: 900;
}

.video-section {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 44% 1fr;
  align-items: center;
  margin-top: var(--space-section);
  padding: 58px 72px;
  color: #fff;
  isolation: isolate;
  background: #050505;
}

.video-hit-area {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-cover-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.video-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0 33%, rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.04) 100%);
  content: "";
}

.video-copy {
  position: relative;
  z-index: 2;
}

.video-copy .section-kicker {
  color: rgba(211, 154, 0, 0.95);
}

.video-copy h2 {
  margin-top: 8px;
  color: #f7f0e6;
  font-size: 42px;
  line-height: 1.08;
}

.video-copy p {
  max-width: 360px;
  margin: 16px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.button-video {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(211, 154, 0, 0.82);
  background: rgba(10, 10, 10, 0.42);
  color: #f8e6bf;
  white-space: nowrap;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
}

.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid #fff;
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.series-banner {
  position: relative;
  display: block;
  min-height: 560px;
  margin-top: var(--space-section);
  overflow: hidden;
  background: #1d1a17;
}

.series-banner--dark {
  margin-top: 18px;
}

.production-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(239, 232, 221, 0.96) 0%, rgba(239, 232, 221, 0.9) 64%, rgba(239, 232, 221, 0) 100%),
    radial-gradient(circle at 38% 48%, rgba(255, 255, 255, 0.42), transparent 56%);
  content: "";
}

.production-copy {
  position: absolute;
  inset: 0 auto 0 72px;
  z-index: 2;
  width: min(560px, 46%);
  padding: 68px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.production-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  min-height: 132px;
  white-space: pre-line;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.production-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--color-gold-dark);
  font-size: 16px;
  font-weight: 900;
}

.production-kicker::before {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

.series-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(42%, 520px);
  padding: 42px 38px 40px;
  color: var(--color-ink);
  background: transparent;
  transform: none;
}

.series-index {
  margin: 0 0 12px;
  color: rgba(20, 19, 18, 0.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.series-copy h2 {
  color: var(--color-ink);
  font-size: 44px;
  line-height: 1.08;
  text-wrap: balance;
}

.series-copy p:last-child {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(20, 19, 18, 0.78);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.series-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #e7ddd0, #cfc4b8);
}

.series-image--luggage {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.04), rgba(60, 53, 45, 0.06)),
    url("images/series-luggage.jpg") center center / cover no-repeat;
}

.series-image--factory {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.03), rgba(54, 47, 40, 0.08)),
    url("images/series-production.jpg") center center / cover no-repeat;
}

.dual-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--space-section);
}

.dual-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(232, 224, 212, 0.92);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  background: #e6ddd2;
}

.dual-copy {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 62%;
  padding: 28px 28px 26px;
  color: var(--color-ink);
  background: transparent;
  transform: none;
}

.dual-copy h2 {
  color: var(--color-ink);
  font-size: 38px;
  line-height: 1.06;
  text-wrap: balance;
}

.dual-copy p:last-child {
  margin: 12px 0 0;
  color: rgba(20, 19, 18, 0.76);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.dual-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.dual-image-left {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 239, 0.03), rgba(56, 49, 42, 0.05)),
    url("images/series-handle.jpg");
}

.dual-image-right {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 239, 0.03), rgba(56, 49, 42, 0.05)),
    url("images/series-wheels.jpg");
}

.series-copy h2,
.dual-copy h2,
.series-copy p:last-child,
.dual-copy p:last-child {
  text-shadow: none;
}

.product-grid .product-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  content: "";
}

.product-grid .product-card::before,
[data-section="series"].series-banner::before,
.dual-showcase .dual-card::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  min-width: 118px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(15, 15, 15, 0.26);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
  content: var(--hover-entry-label, "View details");
}

.product-grid .product-card:hover::after,
.product-grid .product-card:focus-within::after {
  opacity: 1;
}

.product-grid .product-card:hover::before,
.product-grid .product-card:focus-within::before,
[data-section="series"].series-banner:hover::before,
[data-section="series"].series-banner:focus-within::before,
.dual-showcase .dual-card:hover::before,
.dual-showcase .dual-card:focus-within::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

[data-section="series"].series-banner::after,
.dual-showcase .dual-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0 2px,
      rgba(255, 255, 255, 0) 2px 7px
    );
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  content: "";
}

[data-section="series"].series-banner:hover::after,
[data-section="series"].series-banner:focus-within::after,
.dual-showcase .dual-card:hover::after,
.dual-showcase .dual-card:focus-within::after {
  opacity: 1;
}

.why-grid,
.capability-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  min-height: 210px;
  padding: 32px;
}

.mini-card .line-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
}

.icon-importer::before,
.icon-wholesale::before,
.icon-factory::before,
.icon-chain::before,
.icon-quality::before,
.icon-custom::before,
.icon-price::before,
.icon-delivery::before,
.icon-team::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.icon-importer::after {
  left: 12px;
  top: 0;
  width: 18px;
  height: 15px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.icon-wholesale::after {
  left: 7px;
  top: 11px;
  width: 28px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 9px 0 currentColor, 0 18px 0 currentColor;
}

.icon-factory::before {
  top: 14px;
  border-radius: 4px;
}

.icon-factory::after {
  left: 7px;
  top: 4px;
  width: 24px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 100%, 0 48%, 24% 72%, 24% 48%, 52% 72%, 52% 48%, 100% 78%, 100% 100%);
}

.icon-chain::before {
  width: 20px;
  height: 13px;
  inset: auto;
  left: 4px;
  top: 12px;
  border-radius: 12px;
  transform: rotate(-28deg);
}

.icon-chain::after {
  width: 20px;
  height: 13px;
  right: 4px;
  bottom: 12px;
  border: 3px solid currentColor;
  border-radius: 12px;
  transform: rotate(-28deg);
}

.icon-quality::before {
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-45deg);
}

.icon-quality::after {
  left: 15px;
  top: 13px;
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.icon-custom::after {
  left: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
  clip-path: inset(0 0 50% 0);
}

.icon-price::before {
  border-radius: 50%;
}

.icon-price::after {
  left: 18px;
  top: 8px;
  width: 3px;
  height: 24px;
  background: currentColor;
  box-shadow: -7px 7px 0 -1px currentColor, 7px 15px 0 -1px currentColor;
}

.icon-delivery::before {
  left: 2px;
  top: 11px;
  width: 31px;
  height: 18px;
  border-radius: 4px;
}

.icon-delivery::after {
  left: 8px;
  bottom: 3px;
  width: 8px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 18px 0 0 -1px var(--color-surface), 18px 0 0 0 currentColor;
}

.icon-team::before {
  width: 13px;
  height: 13px;
  left: 12px;
  top: 5px;
  border-radius: 50%;
}

.icon-team::after {
  left: 7px;
  top: 22px;
  width: 25px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 6px 6px;
}

.market-panel,
.global-panel {
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  min-height: 330px;
  margin-top: var(--space-section);
  padding: 46px 52px;
  background: linear-gradient(90deg, #fff, #fbf7f0);
}

.market-copy p:not(.section-kicker),
.global-copy p {
  margin: 16px 0 28px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.market-copy .section-kicker {
  margin-top: -10px;
  margin-bottom: 10px;
  transform: none;
}

.world-map {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius-inner);
  background:
    linear-gradient(rgba(245, 240, 232, 0.28), rgba(245, 240, 232, 0.28)),
    url("images/server-map.jpg") center center / cover no-repeat,
    linear-gradient(135deg, rgba(246, 242, 236, 0.9), rgba(238, 232, 223, 0.54));
}

.map-dot {
  position: absolute;
  color: #6d6256;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.map-dot::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(211, 154, 0, 0.1);
  content: "";
}

.india,
.southasia {
  left: 58%;
  top: 52%;
}

.pakistan {
  left: 51%;
  top: 45%;
}

.bangladesh {
  left: 64%;
  top: 52%;
}

.egypt {
  left: 43%;
  top: 47%;
}

.sea,
.southeast {
  left: 68%;
  top: 62%;
}

.africa {
  left: 44%;
  top: 63%;
}

.mideast {
  left: 49%;
  top: 51%;
}

.europe {
  left: 43%;
  top: 31%;
}

.southamerica {
  left: 26%;
  top: 69%;
}

.stats-band {
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 120px;
  margin-top: var(--space-section);
  background: #fff;
}

.stats-title {
  display: grid;
  align-content: center;
  padding: 0 38px;
  border-right: 1px solid var(--color-line);
}

.stats-title p {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.25;
}

.stats-band dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.stats-band dl div {
  display: grid;
  place-content: center;
  text-align: center;
  border-right: 1px solid var(--color-line);
}

.stats-band dl div:last-child {
  border-right: 0;
}

.stats-band dt {
  color: var(--color-gold);
  font-size: 31px;
  font-weight: 500;
}

.stats-band dd {
  margin: 5px 0 0;
  color: #342f2a;
  font-size: 13px;
  font-weight: 800;
}

.capability-card,
.news-card {
  overflow: hidden;
  padding: 14px 14px 22px;
}

.cap-image,
.news-image {
  height: 190px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
}

.capability-card h3,
.capability-card p,
.news-card h3,
.news-card p,
.news-card time {
  display: block;
  padding: 0 8px;
}

.cap-design {
  background-image: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.08)), url("images/capability-design.jpg"), linear-gradient(135deg, #eee6db, #cdc1b2);
}

.cap-mold {
  background-image: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.08)), url("images/capability-mold.jpg"), linear-gradient(135deg, #ded5ca, #bfb3a5);
}

.cap-manufacture {
  background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.08)), url("images/capability-manufacturing.jpg"), linear-gradient(135deg, #c9c0b5, #83796f);
}

.cap-qc {
  background-image: linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.08)), url("images/capability-qc.jpg"), linear-gradient(135deg, #ece5db, #c3b6a7);
}

.cap-package {
  background-image: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.08)), url("images/capability-package.jpg"), linear-gradient(135deg, #e6d8c6, #c1ac91);
}

.cap-logistics {
  background-image: linear-gradient(rgba(255,255,255,.16), rgba(255,255,255,.08)), url("images/capability-logistics.jpg"), linear-gradient(135deg, #d7d0c6, #a89d91);
}

.cap-image::before {
  left: 42%;
  bottom: 24px;
  width: 86px;
  height: 112px;
  border-radius: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 2px, transparent 2px 12px),
    linear-gradient(90deg, #151412, #4b4640);
  box-shadow: -72px 28px 0 -22px #c7b697, 82px 18px 0 -24px #655b52;
}

.global-panel {
  min-height: 390px;
  grid-template-columns: 40% 1fr;
}

.global-copy {
  max-width: 520px;
}

.large-map {
  min-height: 300px;
}

.news-grid {
  grid-template-columns: repeat(4, 1fr);
}

.news-card {
  position: relative;
  min-height: 430px;
}

.news-card time {
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.news-card h3 {
  margin-top: 9px;
}

.news-trend {
  background-image: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.05)), url("images/news-luggage-trend.jpg"), linear-gradient(135deg, #efe7dc, #c8b8a5);
}

.news-maker {
  background-image: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.05)), url("images/news-manufacturer.jpg"), linear-gradient(135deg, #d8d0c5, #92877c);
}

.news-semi {
  background-image: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.05)), url("images/news-semi-finished.jpg"), linear-gradient(135deg, #ede5d9, #b7aa9c);
}

.news-fair {
  background-image: linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.05)), url("images/news-canton-fair.jpg"), linear-gradient(135deg, #e9dfd1, #a99b8d);
}

.news-image::before {
  left: 33%;
  bottom: 24px;
  width: 92px;
  height: 120px;
  border-radius: 13px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 2px, transparent 2px 12px),
    linear-gradient(90deg, #23211f, #b89d7a);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: var(--space-section);
  padding: 32px 34px 30px;
  background: linear-gradient(180deg, #fffdf9, #fbf7f0);
  align-items: start;
}

.contact-card > * {
  min-width: 0;
}

.footer-brand,
.contact-info {
  display: none;
}

.footer-brand p,
.contact-info li,
.contact-info .company-name {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 360px;
}

.brand-footer .brand-logo {
  width: 210px;
}

.footer-brand {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 2fr);
  align-content: stretch;
  min-height: 100%;
  gap: 40px;
  padding: 8px 0 4px;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  align-self: stretch;
  padding-top: 0;
}

.footer-brand-copy p {
  max-width: 300px;
  margin: 0;
}

.social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin-top: 0;
  margin-bottom: 0;
  align-self: center;
  padding-top: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 0 14px;
  color: #302b25;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  min-width: 92px;
}

.contact-info {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  gap: 22px;
  min-height: 100%;
}

.contact-info ul {
  list-style: none;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 238px;
  margin: 0;
  padding: 0;
}

.contact-info li {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-info li span {
  color: #3d3731;
  font-weight: 900;
}

.contact-info a {
  color: var(--color-gold-dark);
}

.company-name {
  margin: 0;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  max-width: 820px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(232, 224, 212, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(37, 30, 21, 0.05);
}

.inquiry-form h2 {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-size: 28px;
  line-height: 1.14;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label:nth-of-type(1),
.inquiry-form label:nth-of-type(2) {
  grid-column: auto;
}

.inquiry-form label:nth-of-type(3),
.inquiry-form label:nth-of-type(4),
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form label span {
  color: #625b53;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #ded5ca;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input {
  height: 42px;
  padding: 0 13px;
}

.inquiry-form textarea {
  min-height: 84px;
  padding: 11px 13px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(211, 154, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(211, 154, 0, 0.12);
}

.form-submit {
  justify-self: start;
  min-height: 44px;
  border-radius: 10px;
  padding-inline: 22px;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 42px;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  margin-top: var(--space-section);
  border-radius: 12px;
  padding: 0 22px;
  background: #11100f;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

.back-top {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-weight: 900;
}

.floating-top {
  position: fixed;
  right: max(16px, calc((100vw - min(var(--container), calc(100vw - 42px))) / 2 - 72px));
  bottom: 86px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 28px;
}

.video-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(78vw, 1180px);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
}

.modal-dialog video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .page-shell {
    width: calc(100% - 28px);
  }

  .site-header {
    grid-template-columns: 230px 1fr auto;
    padding-inline: 22px;
  }

  .primary-nav {
    gap: 24px;
  }

  .hero {
    min-height: 480px;
    padding-inline: 50px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .product-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 14px 18px;
  }

  .mobile-menu-button {
    display: block;
  }

  .primary-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  body.is-menu-open .primary-nav,
  body.is-menu-open .header-actions {
    display: flex;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .header-actions {
    justify-content: flex-start;
    padding-top: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 760px;
    align-items: start;
    padding: 42px 28px;
  }

  .hero-content {
    max-width: 520px;
    justify-self: start;
    text-align: left;
  }

  .hero-content-expanded {
    min-height: 292px;
  }

  .hero h1 {
    font-size: 46px;
    min-height: 150px;
    max-width: 520px;
  }

  .production-proof-grid {
    gap: 24px;
  }

  .hero-cover {
    object-position: 58% center;
  }

  .market-panel,
  .global-panel,
  .stats-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 132px;
    min-height: 264px;
  }

  .service-grid,
  .why-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats article,
  .stats-title {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .hero-stats article {
    min-height: 132px;
  }

  .series-banner {
    min-height: 680px;
  }

  .production-panel::before {
    width: 68%;
  }

  .production-copy {
    inset: 0 auto 0 38px;
    width: min(560px, 58%);
    padding: 56px 0;
  }

  .production-copy h2 {
    font-size: 42px;
    min-height: 108px;
  }

  .series-copy {
    width: min(78%, 520px);
    padding: 34px 22px;
  }

  .dual-showcase {
    grid-template-columns: 1fr;
  }

  .dual-card {
    min-height: 320px;
  }

  .dual-copy {
    max-width: 72%;
    padding: 26px 22px;
  }

  .stats-band dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-section {
    grid-template-columns: 1fr;
    min-height: 360px;
    padding: 42px 30px;
  }

  .play-button {
    left: 50%;
    top: 50%;
  }

  .modal-dialog {
    width: 92vw;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .hero {
    min-height: 690px;
    padding: 32px 20px;
    border-radius: 15px;
  }

  .hero-content-expanded {
    min-height: 248px;
  }

  .hero h1 {
    font-size: 36px;
    min-height: 126px;
    max-width: 100%;
  }

  .hero-trust-line {
    font-size: 12px;
    line-height: 1.6;
  }

  .production-proof-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .hero-actions,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .quote-button,
  .language-select {
    width: 100%;
  }

  .hero-cover {
      object-position: 78% center;
    }

  .product-grid,
  .news-grid,
  .stats-band dl {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .service-grid,
  .why-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-auto-rows: auto;
    min-height: 0;
  }

  .series-banner {
    min-height: 620px;
  }

  .production-panel::before {
    width: 100%;
    background: linear-gradient(90deg, rgba(239, 232, 221, 0.94) 0%, rgba(239, 232, 221, 0.78) 100%);
  }

  .production-copy {
    inset: 0 22px;
    width: auto;
    padding: 32px 0;
    text-align: left;
  }

  .production-copy h2 {
    font-size: 34px;
    min-height: 92px;
  }

  [data-section="series"].series-banner::after,
  .dual-showcase .dual-card::after,
  .product-grid .product-card::after {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
  }

  [data-section="series"].series-banner::after,
  .dual-showcase .dual-card::after {
    opacity: 1;
    background:
      linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
      repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0 2px,
        rgba(255, 255, 255, 0) 2px 8px
      );
  }

  .series-copy h2 {
    font-size: 34px;
  }

  .dual-card {
    min-height: 290px;
  }

  .dual-copy {
    max-width: 82%;
    padding: 22px;
  }

  .dual-copy h2 {
    font-size: 30px;
  }

  .section-heading h2,
  .market-copy h2,
  .global-copy h2,
  .contact-card h2,
  .video-copy h2 {
    font-size: 30px;
  }

  .market-panel,
  .global-panel,
  .contact-card {
    padding: 28px 22px;
  }

  .social-links {
    width: 100%;
  }

  .social-links a {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .floating-top {
    right: 14px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
}



body.fixed-desktop-stage {
  overflow-x: hidden;
}

body.fixed-desktop-stage .page-stage {
  min-height: var(--scaled-shell-height);
}

body.fixed-desktop-stage .page-shell {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(var(--desktop-canvas-width) * 1px);
  margin: 16px 0 30px;
  transform-origin: top center;
  transform: translateX(-50%) scale(var(--desktop-scale));
}

body.fixed-desktop-stage .site-header {
  grid-template-columns: 280px 1fr auto;
  min-height: 64px;
  gap: 22px;
  padding: 0 34px;
}

body.fixed-desktop-stage .mobile-menu-button {
  display: none !important;
}

body.fixed-desktop-stage .primary-nav {
  display: flex !important;
  grid-column: auto;
  width: auto;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding-top: 0;
}

body.fixed-desktop-stage .primary-nav a {
  padding: 22px 0;
  border-bottom: 0;
}

body.fixed-desktop-stage .header-actions {
  display: flex !important;
  grid-column: auto;
  width: auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 0;
}

body.fixed-desktop-stage .button,
body.fixed-desktop-stage .quote-button,
body.fixed-desktop-stage .language-select {
  width: auto;
}

body.fixed-desktop-stage .hero {
  grid-template-columns: minmax(520px, 48%) 1fr;
  min-height: 560px;
  align-items: center;
  padding: 76px 82px 82px;
  border-radius: var(--radius-card);
}

body.fixed-desktop-stage .hero-content {
  max-width: 560px;
  justify-self: auto;
  text-align: left;
}

body.fixed-desktop-stage .hero-content-expanded {
  min-height: 348px;
}

body.fixed-desktop-stage .hero-cover {
  object-position: center;
}

body.fixed-desktop-stage .hero-actions {
  flex-direction: row;
  align-items: center;
}

body.fixed-desktop-stage .hero-stats {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  min-height: 132px;
}

body.fixed-desktop-stage .hero-stats article {
  min-height: 0;
  border-right: 1px solid var(--color-line);
  border-bottom: 0;
}

body.fixed-desktop-stage .hero-stats article:last-child {
  border-right: 0;
}

body.fixed-desktop-stage .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

body.fixed-desktop-stage .service-grid {
  grid-template-columns: repeat(3, 1fr);
}

body.fixed-desktop-stage .why-grid,
body.fixed-desktop-stage .capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.fixed-desktop-stage .series-banner {
  min-height: 560px;
}

body.fixed-desktop-stage .production-panel::before {
  width: 50%;
  background:
    linear-gradient(90deg, rgba(239, 232, 221, 0.96) 0%, rgba(239, 232, 221, 0.9) 64%, rgba(239, 232, 221, 0) 100%),
    radial-gradient(circle at 38% 48%, rgba(255, 255, 255, 0.42), transparent 56%);
}

body.fixed-desktop-stage .production-copy {
  inset: 0 auto 0 72px;
  width: min(560px, 46%);
  padding: 68px 0;
}

body.fixed-desktop-stage .production-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  margin-top: 34px;
}

body.fixed-desktop-stage .series-copy {
  width: min(42%, 520px);
  padding: 42px 38px 40px;
}

body.fixed-desktop-stage .dual-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.fixed-desktop-stage .dual-card {
  min-height: 360px;
}

body.fixed-desktop-stage .dual-copy {
  max-width: 62%;
  padding: 28px 28px 26px;
}

body.fixed-desktop-stage .video-section {
  grid-template-columns: 44% 1fr;
  min-height: 330px;
  padding: 58px 72px;
}

body.fixed-desktop-stage .market-panel,
body.fixed-desktop-stage .global-panel {
  grid-template-columns: 38% 1fr;
  padding: 46px 52px;
}

body.fixed-desktop-stage .global-panel {
  min-height: 390px;
  grid-template-columns: 40% 1fr;
}

body.fixed-desktop-stage .large-map {
  min-height: 300px;
}

body.fixed-desktop-stage .stats-band {
  grid-template-columns: 36% 1fr;
}

body.fixed-desktop-stage .stats-title {
  border-right: 1px solid var(--color-line);
  border-bottom: 0;
}

body.fixed-desktop-stage .stats-band dl {
  grid-template-columns: repeat(4, 1fr);
}

body.fixed-desktop-stage .contact-card {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 32px 34px 30px;
}

body.fixed-desktop-stage .social-links {
  width: fit-content;
  margin-top: 0;
  padding-top: 0;
}

body.fixed-desktop-stage .social-links a {
  flex: 0 0 auto;
  min-width: 0;
}

body.fixed-desktop-stage .site-footer {
  grid-template-columns: 1fr auto 42px;
  justify-items: stretch;
  padding: 0 22px;
}

body.fixed-desktop-stage .site-footer nav {
  flex-wrap: nowrap;
}

