
:root {
  /* Colors */
  --color-bg: #FDF6EE;
  --color-bg-card: #FFFFFF;
  --color-bg-warm: #F5EBE0;
  --color-bg-section: #FAF0E6;

  --color-primary: #C4855A;
  --color-primary-dark: #A86A42;
  --color-primary-light: #EDD8C4;

  --color-text: #2E2016;
  --color-text-mid: #7A5C42;
  --color-text-soft: #9C7A5A;
  --color-text-muted: #B8947A;

  --color-border: #EDD8C4;
  --color-border-soft: #F0E0D0;

  --color-divider: #D4B896;

  /* Typography */
  --font-serif: 'Noto Serif TC', 'Georgia', serif;
  --font-sans: 'Noto Sans TC', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;

  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;

  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-loose: 1.85;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(180, 120, 60, 0.06);
  --shadow-card-hover: 0 6px 24px rgba(180, 120, 60, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --container-max: 1100px;
  --container-pad: clamp(20px, 5vw, 48px);
}
