/**
 * Base — reset, variables, typography
 * Scoped for .bali-page (DILANA destination pages)
 */

:root {
    --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --color-bg: #0a0a0a;
    --color-text: #f5f5f0;
    --color-muted: rgba(255,255,255,0.6);
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Scope body styles to .bali-page only */
body.bali-page {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    background: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Force base color for panels */
body.bali-page .panel-intro,
body.bali-page .panel-index {
    color: #f5f5f0;
}
