/* ============================================
   DESIGN TOKENS — Ashlie Martinez Remodeling
   ============================================ */

:root {
  /* Primary — Warm Amber/Copper */
  --color-primary: #C47525;
  --color-primary-light: #D4923F;
  --color-primary-dark: #A35E1A;
  --color-primary-rgb: 196, 117, 37;

  /* Secondary — Deep Slate Blue */
  --color-secondary: #2C3E50;
  --color-secondary-light: #3D566E;
  --color-secondary-dark: #1A252F;

  /* Accent — Sage Green */
  --color-accent: #6B8E6B;
  --color-accent-light: #8AAE8A;

  /* Neutrals */
  --color-white: #FEFEFE;
  --color-off-white: #F5F1EB;
  --color-light-gray: #E8E2D9;
  --color-mid-gray: #8B8178;
  --color-dark-gray: #4A4440;
  --color-black: #1C1917;

  /* Semantic */
  --color-star: #F4B740;

  /* Surfaces */
  --color-surface: var(--color-off-white);
  --color-surface-elevated: var(--color-white);
  --color-surface-dark: var(--color-secondary-dark);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Type Scale (Major Third — 1.25) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;

  --line-height-tight: 1.15;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-caps: 0.1em;

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6rem;
  --space-12: 8rem;

  /* Layout */
  --section-padding-y: var(--space-11);
  --section-padding-y-mobile: var(--space-9);
  --container-max: 1200px;
  --container-padding: var(--space-5);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.08);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.1);
  --shadow-lg: 0 8px 30px rgba(28, 25, 23, 0.12);
  --shadow-xl: 0 16px 50px rgba(28, 25, 23, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
