:root {
  /* Brand colours — from existing site */
  --primary:        #2D317C;
  --primary-dark:   #292C6D;
  --secondary:      #A6C1E4;
  --neutral-paper:  #F8FAFE;
  --neutral-wood:   #1A1E52;
  --status-success: #468E56;
  --status-warning: #FDD355;
  --status-error:   #D4483C;
  --border:         #DDE5F0;
  --white:          #ffffff;

  /* Typography */
  --font-display: 'New Spirit', Georgia, serif;
  --font-body:    'Lexend', Arial, sans-serif;

  /* Fluid heading scale */
  --text-h1: clamp(1.75rem, 4vw, 2.5rem);
  --text-h2: clamp(1.25rem, 3vw, 1.875rem);
  --text-h3: clamp(1.125rem, 2.5vw, 1.5rem);
  --text-h4: clamp(1rem, 2vw, 1.25rem);
  --text-body: 1rem;
  --leading-body: 1.6;

  /* Border radius */
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;

  /* Spacing scale */
  --space-1:  4px;   --space-2:  8px;   --space-3: 12px;
  --space-4:  16px;  --space-5:  20px;  --space-6: 24px;
  --space-8:  32px;  --space-10: 40px;  --space-12: 48px;
  --space-16: 64px;  --space-20: 80px;

  /* Layout */
  --max-width:     1100px;
  --content-width: 720px;

  /* Transitions */
  --transition-fast:   all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow:   all 0.5s ease;
}
