:root {
  /* Colors - Clean white + forest green */
  --color-primary: #1B4332;
  --color-primary-light: #2D6A4F;
  --color-accent: #D4764E;
  --color-accent-hover: #BF6340;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0F4F1;
  --color-text: #1A1A1A;
  --color-text-light: #555555;
  --color-text-muted: #999999;
  --color-secondary: #74A68D;
  --color-border: #E0E0E0;
  --color-border-light: #F0F0F0;
  --color-white: #FFFFFF;
  --color-success: #2D6A4F;
  --color-error: #D44B4B;
  --color-footer-bg: #1B4332;
  --color-footer-text: #B7D4C5;

  /* Typography */
  --font-logo: 'Cormorant Garamond', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Noto Sans JP', 'Helvetica Neue', Arial, 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.5rem;

  /* 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 */
  --max-width: 1200px;
  --sidebar-width: 280px;
  --header-height: 70px;
  --border-radius: 4px;
  --border-radius-lg: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}
