/* =============================================
   MMJ CONSULTANCY SERVICES — DESIGN TOKENS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --mmj-navy:      #0D2B5E;
  --mmj-blue:      #1D4F91;
  --mmj-blue-mid:  #2A6CC4;
  --mmj-red:       #C8232A;
  --mmj-red-light: #E8353D;

  /* Neutrals */
  --ink-900: #0C1929;
  --ink-700: #1F2D40;
  --ink-500: #455468;
  --ink-300: #8FA0B4;
  --ink-100: #D8E4F0;
  --ink-050: #EEF4FB;
  --white:   #FFFFFF;

  /* Surfaces */
  --surface-page:  #F5F8FC;
  --surface-card:  #FFFFFF;
  --surface-tint:  #EBF2FB;
  --surface-dark:  #0A1828;

  /* Semantic */
  --color-success: #1A7A4A;
  --color-warning: #C47B0A;
  --color-error:   #C8232A;
  --color-info:    #1D4F91;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', -apple-system, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --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;

  /* Radii */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  10px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(13,43,94,0.08);
  --shadow-sm: 0 2px 8px rgba(13,43,94,0.10);
  --shadow-md: 0 4px 16px rgba(13,43,94,0.12);
  --shadow-lg: 0 8px 32px rgba(13,43,94,0.14);
  --shadow-xl: 0 16px 48px rgba(13,43,94,0.18);

  /* Transitions */
  --ease-fast:   150ms ease;
  --ease-base:   250ms ease;
  --ease-slow:   400ms ease;
  --ease-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --header-h:  72px;
}
