/* ═══════════════════════════════════════
   DESIGN TOKENS · 设计令牌
   ═══════════════════════════════════════ */

:root {
  /* ── Color Palette: Light Theme ── */
  --color-bg-primary: #FAF8F5;
  --color-bg-secondary: #F0EDE8;
  --color-bg-tertiary: #E8E4DD;
  --color-bg-elevated: #FFFFFF;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #595959;
  --color-text-tertiary: #8C8C8C;
  --color-accent: #B8860B;
  --color-accent-hover: #9A6F0A;
  --color-accent-subtle: rgba(184, 134, 11, 0.08);
  --color-border: #D4CFC7;
  --color-border-light: #E6E2DB;
  --color-shadow: rgba(0, 0, 0, 0.06);
  --color-shadow-hover: rgba(0, 0, 0, 0.12);
  --color-overlay: rgba(0, 0, 0, 0.45);

  /* ── Typography ── */
  --font-display: 'Noto Serif SC', 'Source Han Serif SC', 'STSong', 'SimSun', 'Songti SC', serif;
  --font-body: 'Noto Serif SC', 'Source Han Serif SC', 'STSong', 'SimSun', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;
  --text-5xl: 3.815rem;

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;

  /* ── Spacing ── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* ── Layout ── */
  --navbar-height: 64px;
  --sidebar-width: 240px;
  --content-max-width: 1400px;
  --grid-gap: 2rem;

  /* ── Borders & Radii ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-page: 800ms;

  /* ── Z-Index ── */
  --z-base: 1;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
}
