:root {
    /* Colors */
    --color-dark: #20252d;
    --color-mid: #4e5152;
    --color-muted: #8f8989;
    --color-light: #dbdbdb;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-overlay: rgba(32, 37, 45, 0.72);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Red Hat Display', sans-serif;

    /* Font sizes */
    --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: 3rem;
    --text-5xl: 4.5rem;
    --text-hero: clamp(4rem, 12vw, 9rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.7s ease;

    /* Layout */
    --max-width: 1400px;
    --header-height: 80px;
}