:root {
  /* ===== 沉稳商务高端风 (PINNACLE) ===== */
  /* 深蓝 + 暖金 */
  --color-primary: #13294b;
  --color-primary-dark: #0c1c38;
  --color-primary-light: #eef1f6;
  --color-accent: #c8a45c;          /* 暖金 */
  --color-accent-dark: #b58a3c;
  --color-accent-light: #f6efe0;

  --color-secondary: #13294b;
  --color-text: #4a5567;
  --color-text-light: #8a93a3;
  --color-heading: #13294b;
  --color-border: #e6e3dc;

  --color-bg: #ffffff;
  --color-bg-alt: #f7f5f0;          /* 暖纸白 */
  --color-bg-dark: #0c1c38;
  --color-bg-footer: #0a1730;

  --color-success: #2f8f5b;
  --color-white: #ffffff;

  /* Typography — 衬线展示标题 + 无衬线正文 */
  --font-primary: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', 'Source Han Serif SC', 'Songti SC', 'SimSun', serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 21px;
  --font-size-xl: 26px;
  --font-size-2xl: 34px;
  --font-size-3xl: 44px;
  --font-size-4xl: 60px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.18;
  --line-height-base: 1.65;
  --line-height-loose: 1.85;
  --tracking-wide: 0.2em;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --space-4xl: 110px;
  --space-section: 110px;

  /* Border Radius — 克制（高端偏方）*/
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 10px;
  --radius-full: 9999px;

  /* Shadows — 低调 */
  --shadow-sm: 0 2px 12px rgba(19, 41, 75, 0.05);
  --shadow-md: 0 12px 36px rgba(19, 41, 75, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 41, 75, 0.14);
  --shadow-primary: 0 12px 30px rgba(19, 41, 75, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container-max: 1200px;
  --container-padding: 32px;
  --nav-height: 84px;
  --section-padding: var(--space-section) 0;
}

@media (max-width: 768px) {
  :root {
    --font-size-2xl: 28px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;
    --space-section: 64px;
    --space-4xl: 64px;
    --container-padding: 20px;
    --nav-height: 64px;
  }
}
