/* ===========================================
   LAWCIAL — Design Tokens
   =========================================== */

:root {
  /* Colours */
  --black: #181616;
  --white: #FFFFFF;
  --blue: #0693E3;
  --blue-dark: #0558A8;
  --blue-soft: #E8F4FD;
  --grey-light: #F5F5F5;
  --grey-mid: #666666;
  --grey-warm: #EDEBE8;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero: clamp(3rem, 6vw, 5.5rem);
  --fs-h1: clamp(2.25rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-small: clamp(0.875rem, 1vw, 0.9375rem);
  --fs-label: 0.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.1;
  --lh-heading: 1.2;
  --lh-body: 1.6;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-label: 0.1em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-section: clamp(5rem, 10vw, 8rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(24, 22, 22, 0.06);
  --shadow-md: 0 4px 12px rgba(24, 22, 22, 0.08);
  --shadow-lg: 0 8px 30px rgba(24, 22, 22, 0.1);
  --shadow-card-hover: 0 12px 40px rgba(24, 22, 22, 0.12);

  /* Animation */
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration-fast: 0.15s;
  --duration-base: 0.3s;
  --duration-slow: 0.5s;
  --duration-hero: 0.75s;

  /* Z-index */
  --z-nav: 100;
}
