/* CSS Variables */
:root {
    --primary-green: #254026;
    --accent-gold: #c4af70;
    --background-cream: #f4ecd6;
    --text-dark: #1a1a1a;
    --text-medium: var(--primary-green);
    --text-light: var(--primary-green);
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border-light: #e5e7eb;
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbars globally */
html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-green);
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: 600;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section:first-of-type {
    padding-top: clamp(8rem, 12vw, 10rem);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 6rem 0;
    }

    .section:first-of-type {
        padding-top: clamp(8rem, 12vw, 10rem);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Additional Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}