/* ============================================
   东方雄狮跨境电商官网 - Black Gold System
   ============================================ */

:root {
  --bg-0: #070709;
  --bg-1: #0e1014;
  --bg-2: #151821;
  --bg-3: #1d222b;
  --surface-1: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --surface-3: rgba(255, 255, 255, 0.08);
  --surface-panel: linear-gradient(180deg, rgba(24, 27, 33, 0.88), rgba(12, 13, 16, 0.97));
  --text-1: #f5f1e8;
  --text-2: #c9c2b5;
  --text-3: #8e8a84;
  --gold-1: #b8965a;
  --gold-2: #d8c19a;
  --gold-3: #8c7248;
  --line-soft: rgba(245, 241, 232, 0.08);
  --line-strong: rgba(184, 150, 90, 0.22);
  --line-bright: rgba(216, 193, 154, 0.34);
  --shadow-1: 0 36px 90px rgba(0, 0, 0, 0.34);
  --shadow-2: 0 22px 52px rgba(0, 0, 0, 0.24);
  --shadow-3: 0 12px 28px rgba(0, 0, 0, 0.18);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --section-spacing: 140px;
  --section-spacing-tight: 120px;
  --card-padding: 32px;
  --grid-gap: 24px;
  --container-padding: 32px;
  --content-width: 1240px;
  --nav-height: 84px;
  --text-hero: clamp(4rem, 9vw, 7rem);
  --text-h1: clamp(3rem, 5vw, 4.5rem);
  --text-h2: clamp(2.2rem, 3.5vw, 3.25rem);
  --text-h3: 1.45rem;
  --text-body: 1rem;
  --text-small: 0.9rem;
  --text-micro: 0.76rem;
  --font-display-cn: "Songti SC", "STSong", "Noto Serif CJK SC", "SimSun", serif;
  --font-display-en: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-2);
  line-height: 1.75;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 193, 154, 0.08), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(184, 150, 90, 0.06), transparent 26%),
    linear-gradient(180deg, #070709 0%, #0c0d10 32%, #11141a 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 60%);
  background-size: 96px 96px, 96px 96px, auto;
  opacity: 0.18;
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 16%, transparent 78%, rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.18) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

p {
  color: var(--text-2);
  font-size: var(--text-body);
}

h1,
h2 {
  font-family: var(--font-display-cn);
  color: var(--text-1);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  color: var(--text-1);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

::selection {
  background: rgba(216, 193, 154, 0.22);
  color: var(--text-1);
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-shell {
  position: relative;
}

.section {
  position: relative;
  padding: var(--section-spacing) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.split-block {
  margin-bottom: 80px;
}

.shell-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-tonal {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.72), rgba(7, 7, 9, 0)),
    radial-gradient(circle at 50% 0%, rgba(216, 193, 154, 0.06), transparent 34%);
}

.section-header {
  margin-bottom: 56px;
  text-align: center;
}

.section-header .en-title,
.en-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display-en);
  font-size: var(--text-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.section-header .en-title::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 193, 154, 0.8));
}

.section-header h2 {
  margin: 16px 0 14px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-3);
}

.accent-text {
  color: var(--gold-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display-en);
  font-size: var(--text-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 193, 154, 0.8));
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.45), rgba(7, 7, 9, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(7, 7, 9, 0.72);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  min-width: 0;
}

.logo-text .cn {
  display: block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-1);
  line-height: 1.2;
}

.logo-text .en {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display-en);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--text-3);
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  color: #171310;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 26px rgba(184, 150, 90, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(184, 150, 90, 0.22);
  filter: brightness(1.03);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 18px;
  height: 1px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text-1);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background:
    linear-gradient(180deg, rgba(7, 7, 9, 0.98), rgba(14, 16, 20, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(216, 193, 154, 0.08), transparent 40%);
  backdrop-filter: blur(22px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  padding: 28px var(--container-padding);
}

.mobile-nav-links li + li {
  margin-top: 10px;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
  font-size: 1rem;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--text-1);
  border-color: var(--line-strong);
  transform: translateX(4px);
}

/* ============================================
   Buttons & Surfaces
   ============================================ */
.btn,
.job-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn-primary,
.job-apply,
.contact-action.is-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  color: #171310;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(184, 150, 90, 0.18);
}

.btn-primary:hover,
.job-apply:hover,
.contact-action.is-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(184, 150, 90, 0.24);
}

.btn-secondary,
.btn-outline,
.contact-action {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-1);
  border-color: var(--line-soft);
}

.btn-secondary:hover,
.btn-outline:hover,
.contact-action:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.btn-block {
  width: 100%;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.glass-card,
.contact-info,
.timeline-content,
.strategy-card,
.management-card,
.job-card,
.news-card,
.contact-form {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface-panel);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.glass-card::before,
.contact-info::before,
.timeline-content::before,
.strategy-card::before,
.management-card::before,
.job-card::before,
.news-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%);
  opacity: 0.6;
  pointer-events: none;
}

.glass-card:hover,
.contact-info:hover,
.timeline-content:hover,
.strategy-card:hover,
.management-card:hover,
.job-card:hover,
.news-card:hover,
.contact-form:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-1);
}

.surface-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface-panel);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #09090b;
  box-shadow: var(--shadow-2);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-size: var(--text-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 52px) 0 96px;
}

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

.hero-bg {
  background:
    radial-gradient(circle at 14% 26%, rgba(216, 193, 154, 0.24), transparent 20%),
    radial-gradient(circle at 82% 28%, rgba(184, 150, 90, 0.12), transparent 20%),
    radial-gradient(circle at 62% 72%, rgba(72, 82, 104, 0.18), transparent 28%),
    linear-gradient(135deg, #050506 0%, #0a0c10 40%, #101620 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 8% -12% 10% 36%;
  border: 1px solid rgba(216, 193, 154, 0.12);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 16% 8% 14% 46%;
  background:
    radial-gradient(circle at 58% 40%, transparent 52%, rgba(216, 193, 154, 0.1) 52.5%, transparent 53%),
    radial-gradient(circle at 60% 42%, transparent 62%, rgba(245, 241, 232, 0.05) 62.4%, transparent 63%),
    radial-gradient(circle at 55% 45%, transparent 72%, rgba(184, 150, 90, 0.08) 72.3%, transparent 73%);
  opacity: 0.8;
}

.hero-video,
.hero-overlay,
.hero-gradient {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 360px);
  gap: 64px;
  align-items: end;
}

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

.hero .en-title {
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 0 0 6px rgba(184, 150, 90, 0.12);
}

.hero-badge span:last-child {
  font-size: var(--text-micro);
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--gold-2);
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 38px;
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--text-2);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-aside {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.hero-panel {
  width: 100%;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(21, 24, 33, 0.88), rgba(9, 10, 12, 0.98));
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(16px);
}

.hero-panel-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display-en);
  font-size: var(--text-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero-panel-copy {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-2);
}

.hero-stat-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-stat-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.hero-stat-item strong {
  font-family: var(--font-display-en);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text-1);
}

.hero-stat-item span {
  font-size: var(--text-small);
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  left: 0;
  bottom: -72px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: var(--text-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-mouse {
  position: relative;
  width: 20px;
  height: 34px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 241, 232, 0.25);
}

.scroll-mouse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--gold-2);
  animation: scroll-gesture 2.4s ease-in-out infinite;
}

@keyframes scroll-gesture {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.25;
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   Homepage Sections
   ============================================ */
.mission-section {
  padding-top: var(--section-spacing-tight);
}

.mission-section .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.mission-section .section-header {
  margin: 0;
  text-align: left;
}

.mission-section .section-header p {
  margin: 0;
  max-width: none;
}

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

.mission-section .mission-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.mission-card {
  padding: 32px;
  text-align: left;
}

.mission-section .mission-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 18px 22px;
}

.mission-section .mission-icon {
  grid-row: 1 / span 2;
}

.mission-section .mission-card h3,
.mission-section .mission-card p {
  grid-column: 2;
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.mission-section .mission-icon {
  margin: 0;
}

.mission-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-2);
  fill: none;
  stroke-width: 1.5;
}

.mission-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.mission-card p {
  color: var(--text-3);
  font-size: var(--text-small);
}

.stats-section {
  padding-top: var(--section-spacing-tight);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 25, 31, 0.88), rgba(10, 11, 14, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(216, 193, 154, 0.06), transparent 40%);
  box-shadow: var(--shadow-2);
}

.stats-grid .glass-card {
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.stats-grid .glass-card:last-child {
  border-right: 0;
}

.stats-grid .glass-card::before {
  display: none;
}

.stats-grid .glass-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.stat-card {
  padding: 44px 34px;
  text-align: left;
}

.stat-number {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
  font-family: var(--font-display-en);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--text-1);
}

.stat-number::after {
  content: attr(data-suffix);
  margin-top: 8px;
  font-size: 1rem;
  color: var(--gold-2);
  letter-spacing: 0.1em;
}

.stat-label {
  font-size: var(--text-small);
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-section {
  padding-top: var(--section-spacing-tight);
}

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

.business-card {
  min-height: 290px;
  padding: 34px 32px;
}

.business-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 193, 154, 0.42), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.business-card:hover::after {
  transform: scaleX(1);
}

.platform-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border-radius: 22px;
  border: 1px solid rgba(140, 114, 72, 0.16);
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.98), rgba(243, 233, 220, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon img {
  width: auto;
  height: auto;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.02);
}

.platform-icon--amazon img,
.platform-icon--shein img {
  max-width: 42px;
  max-height: 42px;
}

.platform-icon--1688 img {
  max-width: 28px;
  max-height: 28px;
}

.business-card h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
}

.business-card p {
  color: var(--text-3);
  font-size: var(--text-small);
}

.team-section {
  padding-top: var(--section-spacing-tight);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: #09090b;
  box-shadow: var(--shadow-2);
}

.team-card:nth-child(1) {
  grid-row: 1 / span 2;
}

.team-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.68) contrast(1.06);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.team-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.8) brightness(0.74) contrast(1.08);
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(7, 7, 9, 0.34) 62%, rgba(7, 7, 9, 0.94)),
    radial-gradient(circle at top right, rgba(216, 193, 154, 0.16), transparent 32%);
}

.team-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px 24px;
  z-index: 1;
}

.team-info h4 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.team-info .role {
  display: block;
  color: var(--gold-2);
  font-size: var(--text-small);
  letter-spacing: 0.08em;
}

.career-section {
  padding-top: var(--section-spacing-tight);
}

.career-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.career-content .en-title {
  margin-bottom: 14px;
}

.career-content h2 {
  margin-bottom: 18px;
}

.career-desc {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--text-2);
}

.career-features {
  list-style: none;
  margin-bottom: 34px;
}

.career-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(245, 241, 232, 0.07);
  color: var(--text-2);
}

.career-features li:last-child {
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}

.career-features svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--gold-2);
}

.career-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.career-image {
  position: relative;
}

.career-image-glow {
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 32%;
  background: radial-gradient(circle, rgba(216, 193, 154, 0.26) 0%, transparent 70%);
  filter: blur(42px);
  z-index: -1;
}

.career-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-1);
  object-fit: cover;
  filter: saturate(0.76) brightness(0.72) contrast(1.05);
}

.partners-section {
  padding-top: 80px;
  padding-bottom: 100px;
}

.partners-track-wrapper {
  width: 100%;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: auto;
  animation: none;
}

.partner-logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.partner-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: saturate(0.9);
}

.partner-logo--1688 img {
  width: 20px;
  height: 20px;
}

.partner-logo span {
  font-size: var(--text-small);
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  padding: 84px 0 34px;
  background:
    linear-gradient(180deg, rgba(7, 7, 9, 0), rgba(7, 7, 9, 0.8) 10%, #070709 100%),
    radial-gradient(circle at 50% 0%, rgba(216, 193, 154, 0.05), transparent 34%);
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 24px;
  color: var(--text-3);
  font-size: var(--text-small);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.04);
}

.footer-column h4 {
  margin-bottom: 18px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
}

.footer-column ul {
  list-style: none;
}

.footer-column li + li {
  margin-top: 12px;
}

.footer-column a {
  color: var(--text-3);
  font-size: var(--text-small);
  transition: color 0.25s ease;
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
  text-align: center;
}

.footer-bottom p {
  color: rgba(142, 138, 132, 0.9);
  font-size: var(--text-small);
}

/* ============================================
   Subpage Banner
   ============================================ */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 20px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(216, 193, 154, 0.14), transparent 24%),
    radial-gradient(circle at 82% 30%, rgba(184, 150, 90, 0.09), transparent 20%),
    linear-gradient(180deg, #090a0d 0%, #0f1218 100%);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 60% 46%, transparent 54%, rgba(216, 193, 154, 0.08) 54.4%, transparent 55%);
  background-size: 92px 92px, 92px 92px, auto;
  opacity: 0.28;
}

.page-banner::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -50px;
  height: 140px;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.18) 0%, transparent 68%);
  filter: blur(44px);
}

.page-banner .container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.page-banner .en-title {
  margin-bottom: 14px;
}

.page-banner h1 {
  margin-bottom: 14px;
}

.page-banner p {
  color: var(--text-3);
}

/* ============================================
   Shared Content Blocks
   ============================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--line-bright), transparent);
}

.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 34px);
  margin-bottom: 34px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: calc(50% + 34px);
  padding-right: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 6px rgba(184, 150, 90, 0.12);
}

.timeline-content {
  max-width: 360px;
  padding: 26px 28px;
}

.timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-display-en);
  font-size: 1.55rem;
  color: var(--gold-2);
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.timeline-content p {
  font-size: var(--text-small);
  color: var(--text-3);
}

.jobs-grid,
.strategy-grid,
.management-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

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

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

.job-card,
.strategy-card,
.management-card {
  padding: 28px;
}

.job-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.job-info h3 {
  margin-bottom: 8px;
}

.job-info p {
  margin-bottom: 14px;
  color: var(--text-3);
  font-size: var(--text-small);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-3);
  font-size: var(--text-micro);
  letter-spacing: 0.08em;
}

.strategy-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.strategy-card .number {
  font-family: var(--font-display-en);
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(216, 193, 154, 0.36);
}

.strategy-card p {
  color: var(--text-3);
  font-size: var(--text-small);
}

.management-card {
  display: flex;
  gap: 18px;
}

.management-card .icon-box {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(216, 193, 154, 0.16), rgba(184, 150, 90, 0.1));
  color: var(--gold-2);
  font-size: 1.45rem;
}

.management-card h3 {
  margin-bottom: 12px;
}

.management-card ul {
  list-style: none;
}

.management-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-3);
  font-size: var(--text-small);
}

.management-card li + li {
  margin-top: 8px;
}

.management-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold-2);
}

.news-card {
  padding: 0;
}

.news-card img,
.product-card img,
.office-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.76) contrast(1.04);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.news-card:hover img,
.product-card:hover img,
.office-item:hover img {
  transform: scale(1.04);
  filter: saturate(0.84) brightness(0.84) contrast(1.06);
}

.news-card img {
  height: 196px;
}

.news-card .content {
  padding: 24px;
}

.news-card .date {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-display-en);
  font-size: var(--text-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.news-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.news-card p {
  color: var(--text-3);
  font-size: var(--text-small);
}

.product-card,
.office-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: #09090b;
  box-shadow: var(--shadow-3);
}

.product-card {
  aspect-ratio: 1;
}

.office-item {
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.product-card .overlay,
.office-item .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 9, 0.92));
}

.product-card h4,
.office-item h4 {
  font-size: 0.96rem;
}

/* ============================================
   Contact & Forms
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  height: 100%;
}

.contact-info {
  padding: 34px;
}

.contact-info h3,
.form-header h3 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.contact-intro,
.form-helper,
.form-note,
.form-context {
  color: var(--text-3);
  font-size: var(--text-small);
}

.contact-intro {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item + .contact-item {
  margin-top: 20px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.contact-item .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-2);
  fill: none;
}

.contact-item .text h4 {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: var(--text-1);
}

.contact-item .text p {
  color: var(--text-3);
  font-size: var(--text-small);
}

.contact-link {
  color: var(--text-1);
}

.contact-link:hover {
  color: var(--gold-2);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-size: var(--text-small);
  font-weight: 600;
  text-align: center;
}

.contact-form-shell {
  padding: 34px;
}

.form-header {
  margin-bottom: 24px;
}

.form-header .en-title {
  margin-bottom: 10px;
}

.form-helper {
  margin-bottom: 12px;
}

.form-context {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(216, 193, 154, 0.08);
  color: var(--text-2);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-2);
  font-size: var(--text-small);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-1);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(142, 138, 132, 0.84);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(184, 150, 90, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.form-note {
  margin: 4px 0 14px;
}

.form-note a {
  color: var(--gold-2);
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: var(--text-small);
}

.form-status.is-success {
  color: #8fcfb0;
}

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

/* ============================================
   Animation
   ============================================ */
.fade-in-up,
[data-reveal],
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible,
[data-reveal].visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(1) { transition-delay: 0s; }
.fade-in-up:nth-child(2) { transition-delay: 0.06s; }
.fade-in-up:nth-child(3) { transition-delay: 0.12s; }
.fade-in-up:nth-child(4) { transition-delay: 0.18s; }
.fade-in-up:nth-child(5) { transition-delay: 0.24s; }
.fade-in-up:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1180px) {
  :root {
    --section-spacing: 118px;
    --section-spacing-tight: 96px;
    --container-padding: 24px;
  }

  .hero-shell,
  .career-grid,
  .contact-grid,
  .mission-section .container,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 36px;
  }

  .hero-aside {
    max-width: 520px;
  }

  .mission-section .section-header {
    max-width: 620px;
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --section-spacing: 96px;
    --section-spacing-tight: 84px;
    --text-hero: clamp(3.2rem, 14vw, 5rem);
    --text-h1: clamp(2.4rem, 8vw, 3.3rem);
    --text-h2: clamp(1.9rem, 6vw, 2.6rem);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .stats-grid .glass-card:nth-child(2) {
    border-right: 0;
  }

  .stats-grid .glass-card:nth-child(1),
  .stats-grid .glass-card:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(220px, 1fr));
  }

  .team-card:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .team-card:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 84px;
    --section-spacing-tight: 72px;
    --grid-gap: 16px;
    --card-padding: 24px;
    --container-padding: 18px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 72px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-buttons,
  .career-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .job-apply {
    width: 100%;
  }

  .mission-grid,
  .business-grid,
  .jobs-grid,
  .news-grid,
  .strategy-grid,
  .management-grid,
  .products-grid,
  .office-grid,
  .contact-grid,
  .career-grid,
  .partners-track,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header .en-title::before {
    width: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid .glass-card,
  .stats-grid .glass-card:nth-child(2) {
    border-right: 0;
  }

  .stats-grid .glass-card:not(:last-child) {
    border-bottom: 1px solid var(--line-soft);
  }

  .team-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .team-card,
  .team-card:nth-child(1),
  .team-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

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

  .contact-info,
  .contact-form-shell,
  .timeline-content,
  .job-card,
  .strategy-card,
  .management-card {
    padding: 24px;
  }

  .page-banner {
    min-height: 320px;
    padding-top: calc(var(--nav-height) + 12px);
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 48px;
    padding-right: 0;
  }

  .timeline-item::before {
    left: 18px;
  }

  .timeline-content {
    max-width: none;
  }

  .job-card {
    flex-direction: column;
  }

  .footer-brand p,
  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text .cn {
    font-size: 0.92rem;
  }

  .logo-text .en {
    display: none;
  }

  .hero-panel {
    padding: 24px;
  }

  .stat-card {
    padding: 32px 24px;
  }

  .page-banner {
    min-height: 290px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in-up,
  [data-reveal],
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

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

/* ============================================
   WordPress Content
   ============================================ */
.entry-content {
  color: var(--text-2);
}

.entry-content > * + * {
  margin-top: 1.2em;
}

.entry-content a,
.contact-link,
.news-card-link {
  color: var(--gold-2);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2rem;
}

.entry-content strong,
.article-meta {
  color: var(--text-1);
}

.entry-content hr,
.entry-divider {
  border: 0;
  border-top: 1px solid var(--line-soft);
  margin: 24px 0;
}

.article-shell {
  padding: 32px;
}

.article-cover {
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

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

.news-card-link {
  display: block;
}

.contact-link:hover,
.news-card-link:hover {
  color: var(--text-1);
}
