/* ==========================================================================
   DON LOGAN'S AMERICAN OUTREACH - DESIGN TOKENS & SYSTEM VARIABLES
   Palette: Black & Gold (Refined, Dignified, Trustworthy, Hopeful)
   ========================================================================== */

:root {
  /* --- Primary Black & Charcoal Spectrum (Strength, Credibility, Dignity) --- */
  --color-black-deep: #0A0A0A;
  --color-black-rich: #111111;
  --color-black-surface: #181818;
  --color-black-card: #202020;
  --color-black-elevated: #282828;
  --color-black-border: #333230;
  --color-black-border-subtle: #242321;

  /* --- Warm Off-White / Cream Spectrum (Warmth, Readability, Calm) --- */
  --color-cream-light: #FAF8F5;
  --color-cream-surface: #F3EFEA;
  --color-cream-card: #ECE6DC;
  --color-cream-border: #E0D9CC;
  --color-cream-border-subtle: #EDE7DC;

  /* --- Refined Gold Spectrum (Hope, Renewal, Progress, Forward Direction) --- */
  /* Muted & refined - strictly avoiding garish glitter or luxury fashion shine */
  --color-gold-light: #DFCA9B;
  --color-gold-primary: #C5A059;
  --color-gold-hover: #AF8A42;
  --color-gold-dark: #8F6F2C;
  --color-gold-muted: rgba(197, 160, 89, 0.15);
  --color-gold-subtle: rgba(197, 160, 89, 0.08);
  --color-gold-border: rgba(197, 160, 89, 0.35);

  /* --- Supporting Warm Neutrals --- */
  --color-gray-dark: #3F3E3A;
  --color-gray-medium: #706C64;
  --color-gray-light: #9B968B;
  --color-gray-soft: #D6D1C7;
  
  /* --- Functional Alert & Notice Colors --- */
  --color-notice-bg: #1C1914;
  --color-notice-border: #8A6E35;
  --color-notice-text: #F3E5C2;
  --color-success: #3E8E68;
  --color-success-bg: rgba(62, 142, 104, 0.12);

  /* --- High-Contrast Text Colors --- */
  --text-on-dark-primary: #FDFCFA;
  --text-on-dark-secondary: #C8C4BC;
  --text-on-dark-muted: #8E8A82;

  --text-on-light-primary: #151514;
  --text-on-light-secondary: #48453F;
  --text-on-light-muted: #736E65;

  /* --- Typography Scale --- */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Font Weights */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* --- Layout & Spacing --- */
  --container-max: 1240px;
  --container-narrow: 880px;
  --container-wide: 1380px;
  --nav-height: 84px;

  /* --- Transitions & Shadows --- */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-subtle: 0 4px 18px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.25);
  --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.45);
  --shadow-gold-soft: 0 8px 24px -6px rgba(197, 160, 89, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 9999px;
}
