/* ═══════════════════════════════════════════════
   LandTank Web – Design Tokens
   ═══════════════════════════════════════════════ */
:root {
    /* Primary */
    --lt-green: #27A737;
    --lt-green-dark: #1E8A2A;
    --lt-green-light: #5CB85C;
    --lt-green-10: rgba(39, 167, 55, 0.1);
    --lt-green-20: rgba(39, 167, 55, 0.2);
    --lt-leaf: #3A7D44;

    /* Secondary */
    --lt-wheat: #D4A843;
    --lt-olive: #8B9A3B;
    --lt-field: #5A6B2C;

    /* Neutral */
    --lt-anthracite: #4A4A4A;
    --lt-charcoal: #3C3C3C;
    --lt-gray: #6F7067;
    --lt-gray-light: #B5B9A0;
    --lt-gray-lighter: #E8E5DD;
    --lt-cream: #F5F2EB;
    --lt-cream-light: #FAFAF7;
    --lt-white: #FFFFFF;

    /* Functional */
    --lt-error: #D64545;
    --lt-info: #4A90D9;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Merriweather', Georgia, 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: 2rem;
    --text-4xl: 2.5rem;
    --text-hero: 3.5rem;

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

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* 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-xl: 0 16px 50px rgba(0,0,0,0.12);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s var(--ease);
    --transition-base: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);
}
