*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #fef9f4;
    --surface: #fffcf8;
    --border: #f0e4d8;
    --text: #3d3329;
    --text-muted: #7a6b5c;
    --accent: #d4a574;
    --accent-hover: #c4956a;
    --accent-soft: rgba(212, 165, 116, 0.15);
    --accent-softer: rgba(212, 165, 116, 0.02);
    --sun: #f5e6d3;
    --error-bg: #fef3e9;
    --error-text: #b45309;
}

html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
}
