body {
    background-color: #FDFBF7;
    color: #0A192F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Minimalist Narrow Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7; 
}
::-webkit-scrollbar-thumb {
    background: rgba(10, 25, 47, 0.15); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(10, 25, 47, 0.3); 
}

/* Editorial background subtle luxury gradients */
.hero-gradient {
    background: radial-gradient(circle at 85% 50%, rgba(229, 169, 59, 0.08) 0%, rgba(10, 25, 47, 0.03) 70%, transparent 100%);
}

/* Interactive placeholder patterns */
.image-placeholder {
    background-color: #EFECE5;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(10,25,47,0.015) 10px, rgba(10,25,47,0.015) 20px);
}