/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5E6D3; }
::-webkit-scrollbar-thumb { background: #D4956A; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #C07848; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Font rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Tailwind doesn't include prose by default in CDN — simple fallback */
.prose p { margin-bottom: 1rem; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin: 1.5rem 0 0.75rem; }
