:root {
    --color-primary: #4e342e;
    --color-secondary: #a36b42;
    --color-background: #fffdfb;
    --color-card: #fff;
    --color-border: #efe6dc;
    --color-muted: #6b635d;
    --color-heading: #2d221e;
    --container-width: 1400px;
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, .05);
    --transition-standard: .3s ease;
}

html { scroll-behavior: smooth; }

body {
    background: var(--color-background);
    color: var(--color-muted);
    font-family: 'Poppins', sans-serif;
}

:where(a, button, input):focus-visible {
    outline: 3px solid rgba(163, 107, 66, .45);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
