/* Kalishan Capital — Design Tokens (Rules 21, 61, 94) */

:root {
  /* Colors */
  --primary: #0B2953;        /* Deep Navy — trust, stability */
  --primary-dark: #071A38;
  --secondary: #1C7A4A;      /* Emerald Green — growth */
  --secondary-dark: #145C38;
  --accent: #D4A94F;         /* Warm Gold — used sparingly */
  --success: #1C7A4A;
  --warning: #D4A94F;
  --danger: #C0392B;
  --bg: #FFFFFF;
  --surface: #F7F9FB;
  --border: #E4E8ED;
  --text: #14213B;
  --text-muted: #5B6B82;

  /* Typography (Montserrat + Poppins) (Rules 17, 18, 19, 20) */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 800;

  --fs-h1: clamp(2.5rem, 5vw, 3.5rem);     /* 40px - 56px */
  --fs-h2: clamp(1.8rem, 4vw, 2.5rem);     /* 28px - 40px */
  --fs-h3: clamp(1.3rem, 3vw, 1.75rem);    /* 20px - 28px */
  --fs-body: 1rem;                         /* 16px */
  --fs-small: 0.875rem;                    /* 14px */
  
  /* Spacing Scale (Rule 14) */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-96: 96px;
  --space-120: 120px;

  /* Border Radius (Rule 31) */
  --radius-btn: 8px;
  --radius-input: 8px;
  --radius-card: 12px;
  --radius-hero: 20px;

  /* Shadow Scale */
  --shadow-sm: 0 2px 4px rgba(7, 26, 56, 0.05);
  --shadow-md: 0 8px 16px rgba(7, 26, 56, 0.08);
  --shadow-lg: 0 16px 32px rgba(7, 26, 56, 0.12);

  /* Transitions (Rule 24) */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;
}
