:root {
  /* Colors - Earthy, Warm, Deep */
  --color-bg: #1A1311; /* Very dark brown/black (Nogal oscuro) */
  --color-surface: #261C17; /* Lighter wood tone */
  --color-text-primary: #FDFBF7; /* Cream white for readability */
  --color-text-secondary: #B5A89B; /* Muted taupe/beige */
  --color-accent: #D4A373; /* Toasted Oak / Amber */
  --color-border: #3D2C24;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Fluid Typography for massive headings */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  --text-hero: clamp(3rem, 1rem + 8vw, 7rem); 

  /* Spacing */
  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-48: 12rem; 

  /* Easings for Motion - Heavier, slower (like carving wood) */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-heavy: cubic-bezier(0.4, 0.0, 0.2, 1);
  
  /* Z-index layers */
  --z-negative: -1;
  --z-base: 0;
  --z-content: 10;
  --z-overlay: 50;
  --z-cursor: 9999;
}
