:root {
    --primary-green: #006039;
    --primary-green-dark: #013822;
    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;
    --black: #333333;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --gray: #888888;
    --gold: #c5a059;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    /* scroll-behavior handled by Lenis */
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--primary-green);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}
