/* JAXCO Design System — "From Pixels to Petals" */
:root {
  /* Brand Colors */
  --rose-600: #e11d48;
  --rose-500: #f43f5e;
  --rose-400: #fb7185;
  --rose-300: #fda4af;
  --rose-200: #fecdd3;
  --rose-100: #ffe4e6;
  --rose-50: #fff1f2;

  --garden-800: #166534;
  --garden-700: #15803d;
  --garden-600: #16a34a;
  --garden-500: #22c55e;
  --garden-400: #4ade80;
  --garden-300: #86efac;

  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a8;
  --cornflower: #6495ed;
  --cornflower-dark: #4a7bd4;

  /* Neutrals */
  --warm-900: #3d3733;
  --warm-800: #4a4440;
  --warm-700: #5c5650;
  --warm-600: #6e6860;
  --warm-500: #8a8480;
  --warm-400: #a8a4a0;
  --warm-300: #c8c4c0;
  --warm-200: #e0deda;
  --warm-100: #f0eee8;
  --warm-50: #faf9f7;

  /* Semantic */
  --primary: var(--rose-600);
  --primary-hover: var(--rose-500);
  --secondary: var(--garden-700);
  --secondary-hover: var(--garden-600);
  --accent: var(--rose-gold);
  --bg: var(--warm-50);
  --bg-alt: #ffffff;
  --bg-dark: var(--warm-900);
  --text: var(--warm-900);
  --text-light: var(--warm-600);
  --text-muted: var(--warm-500);
  --text-inverse: #ffffff;
  --border: var(--warm-200);
  --border-light: var(--warm-100);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-legacy: 'Trebuchet MS', Arial, Helvetica, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes */
  --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;
  --text-7xl: 4.5rem;

  /* Spacing */
  --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;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 80px;
  --section-padding: clamp(3rem, 8vw, 6rem);

  /* Borders & Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(61, 55, 51, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(61, 55, 51, 0.07), 0 2px 4px -2px rgba(61, 55, 51, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(61, 55, 51, 0.08), 0 4px 6px -4px rgba(61, 55, 51, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(61, 55, 51, 0.1), 0 8px 10px -6px rgba(61, 55, 51, 0.04);
  --shadow-glow: 0 0 30px rgba(225, 29, 72, 0.15);

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;

  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-nav: 800;
  --z-overlay: 900;
  --z-modal: 2000;
  --z-skip: 9999;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;
}
