/**
 * Design tokens AuraLV — ink / bone / gold (mobile-first).
 * Orden del bundle: tokens → base → layout → components → pages → utilities
 */
:root {
  --color-ink-900: #0a0a0a;
  --color-ink-700: #1f1f1f;
  --color-ink-500: #5b5b5b;
  --color-ink-300: #a1a1a1;
  --color-ink-200: #c9c9c9;
  --color-ink-100: #e7e7e5;
  --color-bone-50: #faf8f5;
  --color-bone-100: #f3efe9;
  --color-cream: #f7f3ec;
  --color-gold-600: #b08a3e;
  --color-gold-500: #c9a35a;
  --color-success: #2f7d32;
  --color-danger: #b3261e;
  --color-info: #1d4ed8;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.18rem + 0.4vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.38rem + 0.6vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.85rem + 1.6vw, 3.5rem);
  --text-5xl: clamp(2.75rem, 2rem + 2.5vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 15, 15, 0.06);
  --shadow-sm: 0 2px 4px rgba(15, 15, 15, 0.06), 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 6px 16px rgba(15, 15, 15, 0.08), 0 2px 4px rgba(15, 15, 15, 0.04);
  --shadow-lg: 0 14px 36px rgba(15, 15, 15, 0.1), 0 4px 8px rgba(15, 15, 15, 0.05);
  --shadow-xl: 0 28px 60px rgba(15, 15, 15, 0.14);
  --shadow-focus: 0 0 0 3px rgba(176, 138, 62, 0.35);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 160ms;
  --duration-base: 240ms;
  --duration-slow: 420ms;

  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-modal: 1000;
  --z-max: 9999;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
