/* === Intentions Institute Inc. — Design Tokens === */
:root {
  /* Primary Colors */
  --navy: #003366;
  --teal: #0099AA;
  --gold: #c8963e;
  --body-text: #444;
  --light-bg: #f5f6f8;
  --white: #ffffff;
  --border-color: #dde0e4;
  --dark-text: #1a1a2e;

  /* Derived */
  --navy-dark: #002244;
  --navy-light: #004488;
  --teal-dark: #007788;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans Pro', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-width: 1200px;
  --radius: 4px;
  --radius-md: 6px;
}
