/* Critical CSS - Above the fold styles */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
}

.site-header {
    position: relative;
    z-index: 100;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}
