:root {
  /* Colors - Primary (brown) */
  --color-primary-900: #84000c;
  --color-primary-700: #703919;
  --color-primary-500: #814621;
  --color-primary-300: #b19467;
  --color-primary-100: #ffecdd;
  --color-primary-25: #fdf8f3;

  /* Colors - Secondary (yellow CTA) */
  --color-secondary-600: #f6d51d;
  --color-secondary-600-shadow: #e6b617;

  /* Colors - Accent (green - figure) */
  --color-accent-500: #81b740;
  --color-accent-400: #9fcf66;

  /* Colors - Base */
  --color-black: #111111;
  --color-light-black: #666666;
  --color-gray: #cccccc;
  --color-light-gray: #e1e1e1;
  --color-border: #e4d4b8;
  --color-white: #ffffff;
  --color-bg: #fcf5e9;
  --color-bg-alt: #fdf8f3;

  /* Fonts */
  --font-heading: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Zen Maru Gothic', sans-serif;
  --font-accent: 'Averia Serif Libre', serif;
  --font-system: 'Noto Sans JP', sans-serif;

  /* Font Sizes */
  --text-xs: 14px;
  --text-body: 15px;
  --text-sm: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 36px;
  --text-4xl: 40px;
  --text-5xl: 48px;

  /* Spacing */
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-36: 36px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-120: 120px;
  --sp-160: 160px;

  /* Layout */
  --container-width: 1200px;
  --container-narrow: 1180px;
  --container-padding: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}
