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

:root {
    --forest: #1a472a;
    --forest-light: #2d5a3d;
    --moss: #4a7c59;
    --sage: #87a878;
    --cream: #faf8f5;
    --warm-white: #fffef9;
    --gold: #d4a853;
    --gold-light: #e8c97a;
    --terracotta: #c17f59;
    --text-dark: #2c2c2c;
    --text-muted: #5a5a5a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', 'Noto Sans', 'Segoe UI', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Critical first-paint styles */
.preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}


