@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Figtree:wght@300..900&display=swap');

:root {
  /* Colors */
  --color-brand:        #4a9f5c;
  --color-brand-dark:   #357a42;
  --color-accent:       #3d6fd4;
  --color-accent-dark:  #2c52a8;
  --color-success:      #16a34a;
  --color-warning:      #d97706;
  --color-danger:       #dc2626;
  --color-text-primary: #111827;
  --color-text-muted:   #6b7280;
  --color-border:       #e5e7eb;
  --color-bg:           #f9fafb;
  --color-bg-subtle:    #f3f4f6;
  --color-surface:      #ffffff;

  /* Extended palette — Verdant Scholar */
  --color-surface-warm: #faf9f7;
  --color-ink:          #1a2233;
  --color-brand-pale:   #e8f5ec;
  --color-accent-pale:  #eef2fb;

  /* Typography */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-ui:      'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  /* Type scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(26, 34, 51, 0.05);
  --shadow-sm: 0 1px 3px rgba(26, 34, 51, 0.08), 0 1px 2px rgba(26, 34, 51, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 34, 51, 0.08), 0 2px 4px rgba(26, 34, 51, 0.05);
  --shadow-lg: 0 12px 28px rgba(26, 34, 51, 0.12), 0 4px 8px rgba(26, 34, 51, 0.06);

  /* Motion */
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
