/* =====================================================
   HONESTLY, E — Public Site CSS Variables
   Brand: Navy #1B365D, Gold #C5A572, Cream #FAF8F5
   Display: Cormorant Garamond | Body: Source Sans Pro
   ===================================================== */

:root {
    /* Brand Foundation */
    --navy: #1B365D;
    --navy-dark: #122440;
    --navy-light: #2A4A73;
    --gold: #C5A572;
    --gold-light: #D4B896;
    --gold-dark: #A88B5E;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --warm-white: #FDFCFA;

    /* Text */
    --text-primary: #2C2C2C;
    --text-secondary: #5C5C5C;
    --text-muted: #8A8A8A;
    --text-on-dark: #F0EDE8;
    --text-on-dark-muted: rgba(240, 237, 232, 0.7);

    /* Companion Accent Colors */
    --accent-ellie: #7A8B78;
    --accent-ellis: #8B6B4A;
    --accent-elias: #4A6741;
    --accent-essie: #8B6B7D;
    --accent-ezra: #7B6B4A;
    --accent-erik: #5B7B8C;
    --accent-eddie: #8B7535;
    --accent-emory: #6B7B8C;
    --accent-ellen: #7D5A6B;
    --accent-esme: #5C6B4D;
    --accent-elif: #9B2D30;

    /* Default companion accent (overridden per page) */
    --companion-accent: var(--gold);
    --companion-accent-dark: var(--gold-dark);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;

    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 800px;

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(27, 54, 93, 0.06);
    --shadow-md: 0 4px 12px rgba(27, 54, 93, 0.08);
    --shadow-lg: 0 8px 24px rgba(27, 54, 93, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 54, 93, 0.16);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}
