:root {
  /* COLORES */
  --color-bg: #FAF9F6;
  --color-bg-subtle: #F0EDE8;
  --color-surface: #FFFFFF;
  --color-border: #E5E1DA;
  --color-text-primary: #2F2F2F;
  --color-text-secondary: #6B6358;
  --color-text-muted: #9A9589;
  --color-brand: #5E6B52;
  --color-brand-hover: #4A5540;
  --color-brand-light: #EBF0E8;
  --color-accent: #C8B79C;
  --color-accent-light: #F5EFE6;
  --color-sage: #A8B2A1;
  --color-error: #C0392B;
  --color-success: #5E6B52;
  --color-warning: #C8973C;

  /* TIPOGRAFÍA */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.625rem;
  --text-4xl: 3.5rem;
  --text-hero: clamp(2.8rem, 6vw, 5rem);
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.12em;
  --tracking-widest: 0.22em;

  /* ESPACIADO */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* BORDER RADIUS */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  /* SOMBRAS */
  --shadow-sm: 0 1px 4px rgba(47, 47, 47, 0.06);
  --shadow-md: 0 4px 20px rgba(47, 47, 47, 0.08);
  --shadow-lg: 0 12px 40px rgba(47, 47, 47, 0.10);
  --shadow-xl: 0 24px 72px rgba(47, 47, 47, 0.12);

  /* TRANSICIONES */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Z-INDEX */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
}