/* ===========================================
   Design Tokens - Variables
   =========================================== */

:root {
  /* Rustic palette - warm cream background */
  --bg-primary: #f5f0e8;
  --bg-secondary: #faf8f5;
  --bg-tertiary: #ebe6dc;

  /* Text hierarchy - brown/gray */
  --text-primary: #3d3832;
  --text-secondary: #5c5549;
  --text-muted: #7a7368;

  /* Single muted accent - warm brown */
  --accent-primary: #6b5b4f;
  --accent-secondary: #6b5b4f;
  --accent-tertiary: #6b5b4f;
  --accent-quaternary: #6b5b4f;

  /* Semantic */
  --border: #e0d9cf;
  --border-hover: #c4b9a8;

  /* Solid accents (no gradients) */
  --gradient-accent: var(--accent-primary);
  --gradient-text: var(--accent-primary);
  --gradient-glow: transparent;

  /* Typography - simple, rustic */
  --font-sans: 'Lora', Georgia, 'Times New Roman', serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Consolas', monospace;

  /* Typography - Scale (1.25 ratio) */
  --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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line heights */
  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - subtle */
  --shadow-sm: 0 1px 2px rgba(61, 56, 50, 0.08);
  --shadow-md: 0 4px 6px rgba(61, 56, 50, 0.06);
  --shadow-lg: 0 10px 15px rgba(61, 56, 50, 0.08);
  --shadow-glow: none;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --easing-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Z-index layers */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}
