:root {
    --color-bg: #fcfaf7;
    --color-text: #1a1a1a;
    --color-accent: #c2a078;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #fcfaf7;
}
::-webkit-scrollbar-thumb {
    background: #c2a078;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fade-in {
    animation: fadeIn 2s ease-out forwards;
}
