:root {
    color-scheme: light;
    --bg: #f5f1e8;
    --panel: rgba(255, 252, 245, 0.92);
    --panel-strong: #fffaf0;
    --line: rgba(44, 36, 22, 0.12);
    --text: #261e12;
    --muted: #6c5d49;
    --accent: #b45309;
    --accent-2: #1d4ed8;
    --accent-3: #15803d;
    --shadow: 0 12px 30px rgba(48, 38, 21, 0.1);
    font-family: Georgia, 'Times New Roman', serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(180, 83, 9, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(29, 78, 216, 0.12), transparent 28%),
        linear-gradient(180deg, #f8f3e9 0%, #efe7d8 100%);
}

.page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 32px;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.hero {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    line-height: 1;
}

.hero p {
    max-width: 72ch;
    color: var(--muted);
    line-height: 1.35;
    font-size: 0.92rem;
}

.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

label {
    display: grid;
    gap: 5px;
    font-size: 0.84rem;
    color: var(--muted);
}

input,
select,
button {
    appearance: none;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(44, 36, 22, 0.14);
    background: #fffdf8;
    color: var(--text);
    font: inherit;
    padding: 8px 10px;
}

button {
    width: auto;
    min-width: 110px;
    background: linear-gradient(135deg, #b45309, #d97706);
    border-color: transparent;
    color: #fffdf8;
    cursor: pointer;
    font-weight: 700;
}
