/* ==========================================================================
   ABOGADA JMC — Design Tokens
   Paleta: negro mate, gris oscuro, gris, blanco, dorado mate.
   Sistema basado en variables CSS (Custom Properties).
   ========================================================================== */

:root {
  /* Color · Núcleo (matte black & grays) */
  --c-black: #0B0C10;          /* negro mate — fondo principal */
  --c-black-soft: #101116;     /* negro elevado / tarjetas */
  --c-onyx: #14151B;           /* superficie secundaria */
  --c-charcoal: #2C2C34;       /* gris oscuro — contenedores */
  --c-slate: #3A3B42;          /* borde sobre negro */
  --c-gray: #6E7275;           /* texto secundario */
  --c-gray-mid: #9A9EA3;       /* texto terciario / placeholder */
  --c-white: #F5F0EB;          /* blanco cálido — texto principal */
  --c-cream: #E9E2D6;          /* blanco tenue */

  /* Color · Acento (mate gold) */
  --c-gold: #C5A55A;           /* dorado mate principal */
  --c-gold-soft: #D6BC7D;      /* dorado hover / brillo */
  --c-gold-deep: #A98B45;      /* dorado oscuro para bordes */
  --c-gold-tint: rgba(197, 165, 90, 0.12);   /* fondo dorado suave */
  --c-gold-line: rgba(197, 165, 90, 0.28);   /* líneas divisorias */

  /* Tipografía */
  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;   /* títulos */
  --font-display: 'Playfair Display', Georgia, serif;               /* display */
  --font-sans: 'Open Sans', 'Segoe UI', system-ui, sans-serif;      /* cuerpo */

  /* Escala tipográfica (fluid con clamp) */
  --text-xs: clamp(0.70rem, 0.68rem + 0.10vw, 0.78rem);
  --text-sm: clamp(0.82rem, 0.80rem + 0.12vw, 0.90rem);
  --text-base: clamp(0.94rem, 0.91rem + 0.17vw, 1.05rem);
  --text-md: clamp(1.05rem, 1.00rem + 0.25vw, 1.22rem);
  --text-lg: clamp(1.25rem, 1.15rem + 0.48vw, 1.60rem);
  --text-xl: clamp(1.60rem, 1.42rem + 0.90vw, 2.30rem);
  --text-2xl: clamp(2.10rem, 1.80rem + 1.50vw, 3.30rem);
  --text-3xl: clamp(2.80rem, 2.30rem + 2.50vw, 5.00rem);

  /* Espaciado (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 10rem;

  /* Radios */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Sombras & borde */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --line: 1px solid var(--c-slate);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 96px;

  /* Transición */
  --t-fast: 160ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reducción de movimiento accesible */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}