/* =====================================
   KLEAR LAND - DESIGN TOKENS
   Clean, high-contrast palette for conversion
   ===================================== */
:root {
    /* Backgrounds - CLEAN & CRISP */
    --color-bg: #ffffff;
    --color-bg-alt: #f8faf9;
    --color-bg-dark: #1a1f1d;
    --color-card: #ffffff;
    --color-border: #e5e7eb;
    
    /* Text - HIGH CONTRAST */
    --color-text: #1f2937;
    --color-text-secondary: #6b7280;
    --color-text-light: #9ca3af;
    --color-heading: #111827;
    
    /* Primary - RICH FOREST GREEN (land, trust, growth) */
    --color-primary: #1a4d2e;
    --color-primary-dark: #0f2f1d;
    --color-primary-light: #2d6a40;
    --color-primary-bg: #e8f5e9;
    
    /* Accent - WARM ORANGE-GOLD (energy, action, urgency) */
    --color-accent: #d97706;
    --color-accent-dark: #b45309;
    --color-accent-light: #f59e0b;
    --color-accent-bg: #fef3c7;
    
    /* Secondary - COOL CHARCOAL */
    --color-secondary: #374151;
    --color-secondary-dark: #1f2937;
    --color-secondary-light: #6b7280;
    
    /* Hero - DARK WITH IMAGE OVERLAY */
    --color-hero-overlay: rgba(15, 47, 29, 0.85);
    --color-hero-text: #ffffff;
    
    /* Footer */
    --color-footer-bg: #1a1f1d;
    --color-footer-text: #d1d5db;
    --color-footer-link: #e5e7eb;
    --color-footer-link-hover: #ffffff;
    
    /* Semantic */
    --color-success: #1a4d2e;
    --color-warning: #d97706;
    --color-error: #dc2626;
    --color-info: #2563eb;
    
    /* Typography Scale */
    --font-sans: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3.5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --section-gap: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows - ENHANCED */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Layout */
    --max-width: 1200px;
    --container-padding: 1.5rem;
}
