/* === Base: Variables, Typography, Inputs, Layout === */

:root {
    --accent-1: #d4a017;
    --accent-2: #b8860b;
    --accent-3: #9a7209;
    --accent-4: #7d5c07;
    --accent-5: #604605;
}

body {
    background-color: #1a1714;
    color: #e8e0d4;
    font-family: 'Inter', sans-serif;
}

h1, h2, .section-title {
    font-family: 'Cinzel', serif;
}

/* Section header typography enhancement */
.section-header {
    font-variant: small-caps;
    letter-spacing: 0.15em;
}

/* Ornamental divider on section borders */
.section-divider {
    position: relative;
}
.section-divider::after {
    content: '⟡';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #4a3f30;
    background: #1e1b16;
    padding: 0 6px;
    line-height: 1;
}
[data-mode="light"] .section-divider::after {
    color: #d4c9b8;
    background: #f9f5ef;
}

input, select, textarea {
    color: #f5efe6 !important;
}
