/* ============================================
   FENWICK TUTORING — Design Tokens
   ============================================ */

:root {
  /* Brand Colors */
  --burgundy: #5d2137;
  --burgundy-dark: #4a1a2c;
  --burgundy-light: #7a3550;
  --terracotta: #ba684e;
  --terracotta-light: #d4896f;
  --cream: #fee9e2;
  --cream-dark: #f5d6cb;
  --black: #1a1a1a;
  --white: #ffffff;
  --grey-light: #f7f7f7;
  --grey-mid: #e0e0e0;
  --grey-text: #6b6b6b;

  /* Status Colors (for availability page) */
  --status-booked: #c0392b;
  --status-limited: #d4896f;
  --status-available: #2d6a4f;
  --status-reserved: #7a3550;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes — Mobile First */
  --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;
  --text-5xl: 3.5rem;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* Borders & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

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