/* =========================================================
   ENCORE — Design Tokens
   Single source of truth for the entire visual system.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navbar-height: 72px;
  --font-script: 'Alex Brush', cursive;

  /* --- Colors (Originales) --- */
  --color-dark:     #101113;
  --color-sand:     #b6ab9d;
  --color-cream:    #e0dbd4;
  --color-burgundy: #411c1d;
  --color-gold:     #9d8158;

  /* Derived surfaces */
  --color-cream-light: #eeebe6;
  --color-cream-dark:  #cec8bf;
  --color-dark-mid:    #1c1e21;
  --color-dark-surface:#242629;
  --color-gold-light:  #b89a72;
  --color-burgundy-dark:#2e1314;

  /* Text */
  --color-text-primary:   #101113;
  --color-text-secondary: #5a5048;
  --color-text-muted:     #9a8f84;
  --color-text-inverse:   #e0dbd4;

  /* Semantic */
  --color-success: #4a7c59;
  --color-warning: #f59e0b;
  --color-danger:  #dc2626;

  /* --- Typography --- */
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --text-xs:   0.75rem;  /* 12px */
  --text-sm:   0.875rem; /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg:   1.125rem; /* 18px */
  --text-xl:   1.25rem;  /* 20px */
  --text-2xl:  1.5rem;   /* 24px */
  --text-3xl:  2rem;     /* 32px */
  --text-4xl:  2.5rem;   /* 40px */
  --text-5xl:  3rem;     /* 48px */

  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-loose: 1.8;

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

  /* --- Borders & Shadows --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* --- Transitions --- */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
}
