﻿: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: 48px;
  --container: 1500px;
  --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);
  opacity: 1;
  transition: opacity 200ms ease;
}

body.i18n-loading {
  opacity: 0;
}

body.is-exiting {
  opacity: 0;
}

body {
  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;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 19, 18, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--color-ink);
  color: var(--color-surface);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.legal-page main {
  max-width: 940px;
  margin: 34px auto 64px;
}

.legal-page .legal-card {
  padding: clamp(28px, 5vw, 64px);
}

.legal-page .legal-card h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.legal-page .legal-card h2 {
  margin-top: 36px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 900;
}

.legal-page .legal-card p,
.legal-page .legal-card li {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-page .legal-card ul {
  padding-left: 22px;
}

.legal-page .legal-updated {
  margin-top: 14px;
  color: var(--color-gold-dark);
  font-weight: 800;
}

.page-shell {
  position: relative;
  width: min(var(--container), calc(100% - 42px));
  margin: 32px auto 40px;
}

.page-stage {
  position: relative;
  width: 100%;
}

.site-header {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  position: relative;
  min-height: 64px;
  margin-bottom: 24px;
  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;
}

@media (min-width: 981px) {
  .primary-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

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

.primary-nav a:hover {
  color: var(--color-gold-dark);
}

.primary-nav a:hover::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 24px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  content: "";
  transform: translateX(-50%);
}

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 {
  min-height: 44px;
  min-width: 108px;
  border: 1px solid #ddd4c9;
  border-radius: 8px;
  padding: 0 12px;
  background: var(--color-surface);
  color: #5b554e;
  font-size: 13px;
  font-weight: 700;
  outline: none;
  transition: border-color 180ms ease;
  /* Hide native arrow and appearance */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23766f65' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.language-select:hover {
  border-color: var(--color-gold);
}

.language-select:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Custom language dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  min-height: 44px;
  min-width: 108px;
  border: 1px solid #ddd4c9;
  border-radius: 8px;
  padding: 0 28px 0 12px;
  background: var(--color-surface);
  color: #5b554e;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  outline: none;
  transition: border-color 180ms ease;
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  appearance: none;
}

.lang-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23766f65' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat center;
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

.lang-dropdown.is-open .lang-dropdown-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.lang-dropdown-trigger:hover {
  border-color: var(--color-gold);
}

.lang-dropdown-trigger:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

.lang-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  border: 1px solid #ddd4c9;
  border-radius: 8px;
  background: var(--color-surface);
  box-shadow: 0 12px 28px rgba(35, 28, 20, 0.14);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 1100;
}

.lang-dropdown.is-open .lang-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-option {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #5b554e;
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease;
}

.lang-dropdown-option:hover {
  background: rgba(211, 154, 0, 0.08);
  color: var(--color-gold-dark);
}

.lang-dropdown-option.is-active {
  color: var(--color-gold-dark);
  font-weight: 900;
}

.lang-dropdown-option.is-active::after {
  content: "✓";
  margin-left: auto;
  padding-left: 8px;
  color: var(--color-gold);
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 0;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.quote-button,
.button-primary {
  background: var(--color-gold);
  color: var(--color-surface);
  box-shadow: 0 10px 22px rgba(172, 109, 0, 0.18);
}

.quote-button:hover,
.button-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 28px rgba(172, 109, 0, 0.25);
}

.button-outline {
  border: 1px solid rgba(184, 128, 21, 0.42);
  background: rgba(255, 255, 255, 0.65);
  color: #1c1916;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--color-gold);
}

.button:active,
.quote-button:active,
.back-top:active,
.floating-top:active,
.social-links a:active,
.play-button:active,
.mobile-menu-button:active {
  transform: scale(0.96);
  transition-duration: 80ms;
}

.product-card:active {
  transform: translateY(-3px) scale(0.99);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 9px;
  background: var(--color-surface);
  padding: 8px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: var(--radius-pill);
  background: var(--color-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.is-menu-open .mobile-menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.is-menu-open .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}
body.is-menu-open .mobile-menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.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: 0;
  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;
}

.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: var(--color-muted);
  font-size: 14px;
  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;
}

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

.product-card,
.mini-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;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(37, 30, 21, 0.14);
}

.product-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;
  transition: transform 600ms ease;
}

#products .product-image {
  aspect-ratio: 16 / 9;
  min-height: 132px;
  background-size: cover;
}

.product-card-image-luggage {
  background-image: var(--lazy-background);
}

.product-card-image-accessories {
  background-image: var(--lazy-background);
}

.product-card-image-presence {
  background-image: var(--lazy-background);
}

[data-lazy-background] {
  opacity: 0.15;
  transition: opacity 500ms ease;
}

[data-lazy-background].bg-loaded {
  opacity: 1;
}

.product-image::before,
.product-image::after {
  position: absolute;
  content: "";
}

.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 {
  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: var(--radius-pill);
  background: linear-gradient(90deg, rgba(184, 136, 34, 0.18), var(--color-gold-dark));
  content: "";
}

.product-body p,
.mini-card p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.product-body 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: var(--color-surface);
  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: 0;
  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%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}

.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)),
    var(--lazy-background) center center / cover no-repeat;
}

.series-image--factory {
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.03), rgba(54, 47, 40, 0.08)),
    var(--lazy-background) 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)),
    var(--lazy-background);
}

.dual-image-right {
  background-image:
    linear-gradient(90deg, rgba(255, 248, 239, 0.03), rgba(56, 49, 42, 0.05)),
    var(--lazy-background);
}

.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: var(--radius-pill);
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(15, 15, 15, 0.26);
  color: var(--color-surface);
  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
    );
  -webkit-backdrop-filter: blur(2px);
  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 {
  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: var(--radius-inner);
}

.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: var(--radius-inner);
  transform: rotate(-28deg);
}

.icon-chain::after {
  width: 20px;
  height: 13px;
  right: 4px;
  bottom: 12px;
  border: 3px solid currentColor;
  border-radius: var(--radius-inner);
  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;
}

.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)),
    var(--lazy-background) center center / cover no-repeat,
    linear-gradient(135deg, rgba(246, 242, 236, 0.9), rgba(238, 232, 223, 0.54));
}

.europe {
  left: 43%;
  top: 31%;
}

.stats-band {
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 120px;
  margin-top: var(--space-section);
  background: var(--color-surface);
}

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

.global-panel {
  min-height: 390px;
  grid-template-columns: 40% 1fr;
}

.global-copy {
  max-width: 520px;
}

.large-map {
  min-height: 300px;
}

.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 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: 44px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 0 14px;
  color: #302b25;
  background: var(--color-surface);
  font-size: 14px;
  font-weight: 900;
  min-width: 92px;
  transition: color 180ms ease;
}

.social-links a:hover {
  color: var(--color-gold-dark);
}

.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: var(--color-surface);
  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: 14px;
  font-weight: 800;
}

.form-status.is-success {
  color: #2d8a4e;
}

.form-status.is-error {
  color: #c0392b;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

.inquiry-form input.is-invalid,
.inquiry-form textarea.is-invalid,
.inquiry-standard .inquiry-field input.is-invalid,
.inquiry-standard .inquiry-field textarea.is-invalid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}

.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: var(--radius-inner);
  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;
}

.site-footer nav a {
  transition: color 180ms ease;
}

.site-footer nav a:hover {
  color: var(--color-gold-dark);
}

.back-top {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-surface);
  font-weight: 900;
  transition: color 180ms ease;
}

.back-top:hover {
  color: var(--color-gold-dark);
}

.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: var(--color-surface);
  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);
}

.floating-top:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.video-modal.is-loading::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.video-modal.is-loading video {
  opacity: 0.3;
}

.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: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--color-surface);
  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 {
    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;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  .primary-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
    background: var(--color-surface);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 1000;
  }

  body.is-menu-open .primary-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  body.is-menu-open .header-actions {
    position: fixed;
    left: 0;
    top: auto;
    bottom: 0;
    z-index: 1001;
    display: flex;
    width: 280px;
    padding: 18px;
    background: var(--color-surface);
    box-shadow: 0 -12px 28px rgba(35, 28, 20, 0.08);
    transform: translateX(0);
    transition: transform 0.3s ease;
  }

  .header-actions {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  body.is-menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .header-actions {
    justify-content: flex-start;
  }

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

  .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 {
    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) {
  :root {
    --space-section: 32px;
  }

  .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%;
  }

  .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,
  .stats-band dl {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .service-grid,
  .why-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;
  }

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

/* Scroll reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal][data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].is-visible[data-reveal-stagger] > * {
  opacity: 1;
  transform: none;
}
[data-reveal][data-reveal-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal][data-reveal-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal][data-reveal-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal][data-reveal-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal][data-reveal-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal][data-reveal-stagger] > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal][data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   Extracted from runtime JS injection (2026-07-29)
   These styles were previously injected via
   createElement('style') at DOMContentLoaded
   ============================================ */

/* Nav standard styles (from script.js / shared-shell.js) */
      @media (min-width: 981px) {
        body .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;
        }

        body .primary-nav a {
          position: relative;
          padding: 22px 0;
          font-family: var(--font-sans);
          color: #171514;
          font-size: 18px;
          font-weight: 800;
          line-height: normal;
          letter-spacing: 0;
          text-decoration: none;
          white-space: nowrap;
        }

        body .primary-nav a.active {
          color: #a87300;
        }

        body .primary-nav a.active::after {
          position: absolute;
          left: 50%;
          bottom: 12px;
          width: 24px;
          height: 3px;
          border-radius: 999px;
          background: #d39a00;
          content: "";
          transform: translateX(-50%);
        }
      }

/* Inquiry standard styles (from script.js / shared-shell.js) */

/* script.js variant */
      body .contact-card {
        border: 1px solid rgba(227, 214, 197, 0.96);
        border-radius: 28px;
        background: linear-gradient(180deg, #fbf7f0 0%, #f4eadf 100%);
        box-shadow: 0 16px 40px rgba(59, 43, 24, 0.06);
      }

      body .contact-card h2,
      body .contact-card .inquiry-form h2 {
        color: #171514;
        font-family: "SimHei", "Microsoft YaHei", sans-serif;
        letter-spacing: -0.03em;
      }

      body .contact-card .inquiry-form {
        border: 1px solid rgba(225, 213, 198, 0.86);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(251, 247, 240, 0.96), rgba(243, 234, 223, 0.96));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
      }

      body .contact-card .inquiry-form input,
      body .contact-card .inquiry-form textarea {
        border: 1px solid #e1d6c7;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
      }

      body .contact-card .inquiry-form input:focus,
      body .contact-card .inquiry-form textarea:focus {
        border-color: rgba(211, 154, 0, 0.5);
        box-shadow: 0 0 0 4px rgba(211, 154, 0, 0.09);
      }

/* shared-shell.js variant (comprehensive) */
      body .inquiry-panel,
      body .inquiry,
      body .contact-card {
        border: 1px solid rgba(227, 214, 197, 0.96);
        border-radius: 28px;
        background: linear-gradient(180deg, #fbf7f0 0%, #f4eadf 100%);
        box-shadow: 0 16px 40px rgba(59, 43, 24, 0.06);
      }

      body .inquiry-panel .inquiry-title,
      body .inquiry-head h2,
      body .contact-card .inquiry-form h2 {
        color: #171514;
        font-family: "SimHei", "Microsoft YaHei", sans-serif;
        font-size: clamp(32px, 3.6vw, 48px);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.03em;
      }

      body .inquiry-panel .inquiry-desc,
      body .inquiry-head p,
      body .contact-card .footer-brand-copy p,
      body .contact-card .contact-info li,
      body .contact-card .contact-info .company-name,
      body .contact-card .form-status,
      body .inquiry-note {
        color: #6d6257;
      }

      body .inquiry-panel .inquiry-form-wrap,
      body .inquiry-form,
      body .contact-card .inquiry-form {
        border: 1px solid rgba(225, 213, 198, 0.86);
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(251, 247, 240, 0.96), rgba(243, 234, 223, 0.96));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
      }

      body .inquiry-form input,
      body .inquiry-form textarea {
        border: 1px solid #e1d6c7;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
      }

      body .inquiry-form input:focus,
      body .inquiry-form textarea:focus {
        border-color: rgba(211, 154, 0, 0.5);
        box-shadow: 0 0 0 4px rgba(211, 154, 0, 0.09);
      }

      @media (max-width: 1180px) {
        body .inquiry-panel,
        body .inquiry {
          grid-template-columns: 1fr;
        }
      }

/* Top button styles (from shared-shell.js) */
      .floating-top {
        position: fixed;
        right: max(16px, calc((100vw - min(1500px, 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: #d39a00;
        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);
      }

      @media (max-width: 720px) {
        .floating-top {
          right: 14px;
          bottom: 18px;
          width: 44px;
          height: 44px;
          font-size: 13px;
        }
      }

/* Inquiry module styles (from shared-inquiry.js) */
      body .inquiry-standard {
        display: grid;
        grid-template-columns: minmax(360px, 0.88fr) minmax(540px, 1.12fr);
        align-items: stretch;
        min-height: 420px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(225, 213, 198, 0.82);
        border-radius: 28px;
        background: linear-gradient(180deg, #f8f3eb 0%, #efe3d4 100%);
        box-shadow: 0 16px 40px rgba(59, 43, 24, 0.06);
      }

      body .inquiry-standard .inquiry-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 44px 44px 44px 48px;
      }

      body .inquiry-standard .inquiry-eyebrow {
        margin: 0 0 16px;
        color: #a87300;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.22em;
      }

      body .inquiry-standard .inquiry-title {
        margin: 0;
        color: #171514;
        font-family: "SimHei", "Microsoft YaHei", sans-serif;
        font-size: clamp(32px, 3.6vw, 48px);
        font-weight: 900;
        line-height: 1.03;
        letter-spacing: -0.03em;
      }

      body .inquiry-standard .inquiry-desc {
        max-width: 500px;
        margin: 18px 0 0;
        color: #6d6257;
        font-size: 16px;
        line-height: 1.8;
      }

      body .inquiry-standard .inquiry-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
      }

      body .inquiry-standard .meta-pill {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid #e2d7c8;
        background: rgba(255, 255, 255, 0.82);
        color: #665c50;
        font-size: 12px;
        font-weight: 800;
      }

      body .inquiry-standard .inquiry-contact {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin-top: 28px;
        padding-top: 22px;
        border-top: 1px solid rgba(226, 215, 200, 0.95);
      }

      body .inquiry-standard .inquiry-contact strong {
        display: block;
        color: #171514;
        font-size: 15px;
        font-weight: 900;
      }

      body .inquiry-standard .inquiry-contact span {
        display: block;
        margin-top: 4px;
        color: #6d6257;
        font-size: 13px;
        line-height: 1.6;
      }

      body .inquiry-standard .inquiry-email {
        display: inline-flex;
        align-items: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid rgba(224, 214, 202, 0.82);
        background: rgba(255, 255, 255, 0.88);
        color: #171514;
        font-size: 13px;
        font-weight: 900;
        box-shadow: 0 10px 18px rgba(49, 39, 27, 0.05);
      }

      body .inquiry-standard .inquiry-form-wrap {
        margin: 16px 16px 16px 0;
        padding: 26px;
        border-radius: 26px;
        border: 1px solid rgba(225, 213, 198, 0.8);
        background: linear-gradient(180deg, rgba(251, 247, 240, 0.96), rgba(243, 234, 223, 0.96));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
      }

      body .inquiry-standard .inquiry-form-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 18px;
      }

      body .inquiry-standard .inquiry-form-head p {
        margin: 0;
        color: #171514;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.02em;
      }

      body .inquiry-standard .inquiry-form-head span {
        color: #6d6257;
        font-size: 13px;
        font-weight: 700;
      }

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

      body .inquiry-standard .inquiry-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }

      body .inquiry-standard .inquiry-field.full {
        grid-column: 1 / -1;
      }

      body .inquiry-standard .inquiry-field label {
        color: #675d52;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      body .inquiry-standard .inquiry-field input,
      body .inquiry-standard .inquiry-field textarea {
        width: 100%;
        border: 1px solid #e1d6c7;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        color: #2b2824;
        font-size: 14px;
        font-weight: 600;
        padding: 15px 16px;
        outline: none;
        box-shadow: 0 8px 18px rgba(43, 34, 24, 0.04);
      }

      body .inquiry-standard .inquiry-field input::placeholder,
      body .inquiry-standard .inquiry-field textarea::placeholder {
        color: #8a7f74;
        font-weight: 500;
      }

      body .inquiry-standard .inquiry-field input:focus,
      body .inquiry-standard .inquiry-field textarea:focus {
        border-color: rgba(211, 154, 0, 0.5);
        box-shadow: 0 0 0 4px rgba(211, 154, 0, 0.09);
      }

      body .inquiry-standard .inquiry-field textarea {
        min-height: 138px;
        resize: none;
        line-height: 1.7;
      }

      body .inquiry-standard .inquiry-form-footer {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-top: 4px;
      }

      body .inquiry-standard .inquiry-note {
        max-width: 320px;
        color: #7b7166;
        font-size: 12px;
        line-height: 1.6;
      }

      body .inquiry-standard .inquiry-form .button {
        min-width: 168px;
      }

      body .inquiry-standard .form-status {
        margin: 0;
      }

      @media (max-width: 1180px) {
        body .inquiry-standard {
          grid-template-columns: 1fr;
        }

        body .inquiry-standard .inquiry-form-wrap {
          margin: 0 16px 16px;
        }
      }

      @media (max-width: 720px) {
        body .inquiry-standard .inquiry-copy {
          padding: 34px 24px 18px;
        }

        body .inquiry-standard .inquiry-form-wrap {
          padding: 20px;
          margin: 0 12px 12px;
        }

        body .inquiry-standard .inquiry-form {
          grid-template-columns: 1fr;
        }

        body .inquiry-standard .inquiry-form-footer {
          flex-direction: column;
          align-items: stretch;
        }

        body .inquiry-standard .inquiry-form .button {
          width: 100%;
        }

        body .inquiry-standard .inquiry-note {
          max-width: none;
        }

        body .inquiry-standard .inquiry-contact {
          flex-direction: column;
          align-items: stretch;
        }

        body .inquiry-standard .inquiry-email {
          justify-content: center;
        }
      }
