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

:root {
    --cream: #faf7f2;
    --warm-white: #fffdf9;
    --sand: #e8e0d4;
    --taupe: #b8a99a;
    --dark-brown: #3d2b1f;
    --medium-brown: #6b5344;
    --light-brown: #8c7361;
    --accent: #c4956a;
    --deep-green: #4a5d3a;
    --soft-green: #7a8b6a;
    --black: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --container: 1200px;
    --wide-container: 1400px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--warm-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1 0 auto;
}

body.menu-open {
    overflow: hidden;
}

body, button, input, textarea, select {
    font: inherit;
}

a {
    color: inherit;
}

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

button {
    font: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--taupe);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--medium-brown);
}

.section {
    padding: 7rem 3rem;
}

.section-container {
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-overline {
    display: block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 1.25rem;
    color: var(--dark-brown);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.4;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: inherit;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn .fi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
}

.btn-primary {
    min-height: 56px;
    padding: 1rem 2rem;
    background: var(--dark-brown);
    border: 2px solid var(--dark-brown);
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.btn-primary:hover {
    background: transparent;
    color: var(--dark-brown);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(61, 43, 31, 0.12);
}

.btn-primary .fi {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .fi {
    transform: translateX(3px);
}

.btn-secondary {
    min-height: 56px;
    padding: 1rem 1rem;
    border: 0;
    color: var(--dark-brown);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.btn-secondary:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.btn-secondary .fi {
    font-size: 1.125rem;
}

.btn-outline {
    min-height: 56px;
    padding: 1rem 2.25rem;
    background: transparent;
    border: 1px solid var(--taupe);
    color: var(--dark-brown);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.btn-outline:hover {
    background: rgba(184, 169, 154, 0.1);
    border-color: var(--dark-brown);
    transform: translateY(-1px);
}

.btn-sm {
    min-height: 40px;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.w-100 {
    width: 100%;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
