/* ============================================================
   ROGER FISK CONSULTING — Design Tokens
   Aesthetic: Editorial / Refined Professional
   Direction: Warm neutrals, charcoal text, muted navy darks,
              warm bronze accent. Serif display + clean sans body.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* === Typography === */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --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;

  /* === Backgrounds === */
  --background-primary: #FAFAF7;
  --background-secondary: #F2F0EB;
  --background-tertiary: #E8E6E1;
  --background-dark: #1B2432;
  --background-dark-secondary: #232D3F;

  /* === Surfaces === */
  --surface-primary: #FFFFFF;
  --surface-secondary: #F7F6F3;
  --surface-card: #FFFFFF;
  --surface-dark-card: rgba(255, 255, 255, 0.06);

  /* === Text === */
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;
  --text-on-dark: #F0EDE8;
  --text-on-dark-secondary: #B8B4AD;
  --text-on-dark-tertiary: #918D86;

  /* === Borders === */
  --border-default: #E0DDD7;
  --border-strong: #C8C4BC;
  --border-on-dark: rgba(255, 255, 255, 0.1);

  /* === Accent (Muted Gold) === */
  --accent-primary: #E5AB19;
  --accent-hover: #A07E28;
  --accent-active: #8A6D22;
  --accent-subtle: rgba(184, 146, 47, 0.1);
  --accent-text: #96771F;

  /* === Navy (for dark sections) === */
  --navy-primary: #1B2432;
  --navy-light: #232D3F;
  --navy-lighter: #2D3A4F;

  /* === Status === */
  --success: #4A7C59;
  --warning: #B8860B;
  --error: #A94442;
  --info: #4A6FA5;

  /* === 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;
  --space-32: 8rem;

  /* === Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* === Shadows === */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.05);

  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

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