/* Static Site Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Header transition */
header.scrolled {
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Custom Typography */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #FBFBFB;
}
::-webkit-scrollbar-thumb {
    background: #C5A059;
}

/* Mobile Menu overlay active state */
#mobileMenu.active {
    transform: translateX(0);
}

/* Simple Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

main section {
    animation: fadeIn 0.8s ease-out forwards;
}