/* ============================================================
   Miller-Boldt, Inc. — Design Tokens & CSS Custom Properties
   ============================================================ */

:root {
  /* Primary Blue Palette */
  --blue: #3B8CCB;
  --blue-dark: #1B6AAF;
  --blue-deeper: #145A96;
  --blue-deep: #0E3D6B;
  --blue-light: #5CA3D9;
  --blue-pale: #D1E5F4;
  --blue-ice: #EBF3FA;

  /* Orange Accent */
  --orange: #E57A1F;
  --orange-light: #F09242;
  --orange-dark: #CC6A15;

  /* Warm Neutrals */
  --sand: #F7F3EE;
  --warm-100: #EDE8E1;
  --warm-200: #D6CFC5;
  --warm-400: #9B9285;
  --warm-600: #6B6358;

  /* Core */
  --white: #FFFFFF;
  --text-dark: #1C2A3A;
  --text-body: #3D4A56;
  --text-muted: #6B7580;

  /* Shared tokens */
  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(14, 61, 107, 0.05);
  --shadow-md: 0 4px 24px rgba(14, 61, 107, 0.09);
  --shadow-lg: 0 8px 40px rgba(14, 61, 107, 0.13);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
