/* ═══════════════════════════════════════════════════════════════════════════
   Eleesha · Design Tokens
   Indigenous palette — earth pigments, sky, stone, fire
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Primary earth palette ── */
  --color-terracotta:       #C67B5C;
  --color-terracotta-dark:  #A85D40;
  --color-terracotta-light: #E8B9A5;
  --color-ochre:            #D4933A;
  --color-ochre-dark:       #B0781E;
  --color-ochre-light:      #F0CF8E;
  --color-sage:             #7A9B7E;
  --color-sage-dark:        #5C7D60;
  --color-sage-light:       #B5CCB7;

  /* ── Deep tones ── */
  --color-deep-earth:       #3D2B1F;
  --color-rich-soil:        #5C3D2E;
  --color-warm-stone:       #8B7355;

  /* ── Neutrals ── */
  --color-parchment:        #FBF7F0;
  --color-cream:            #F5F0E8;
  --color-cloud:            #EDE6D8;
  --color-linen:            #E8E0D0;
  --color-warm-gray:        #9B9389;
  --color-charcoal:         #2D2A26;

  /* ── Accent colors ── */
  --color-turquoise:        #5B8BA0;
  --color-turquoise-dark:   #3E6D80;
  --color-sunset:           #C8553D;
  --color-sunset-light:     #E89080;
  --color-goldenrod:        #C4943A;
  --color-cedar:            #8B5E3C;

  /* ── Typography ── */
  --font-display:   'Georgia', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-heading:   'Georgia', 'Times New Roman', serif;
  --font-body:      system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* ── Spacing ── */
  --space-3xs: 0.125rem;
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* ── Radii ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(61, 43, 31, 0.06);
  --shadow-md:   0 4px 12px rgba(61, 43, 31, 0.08);
  --shadow-lg:   0 8px 24px rgba(61, 43, 31, 0.12);
  --shadow-xl:   0 16px 48px rgba(61, 43, 31, 0.16);

  /* ── 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-base: 300ms;
  --duration-slow: 500ms;
}
