:root {
    --color-primary: #06371c;
    --color-primary-hover: #032714;
    --color-accent: #c99532;
    --color-accent-soft: #f4ead4;
    --color-bg: #fbfaf6;
    --color-surface: #ffffff;
    --color-surface-soft: #f3efe6;
    --color-text: #211f1b;
    --color-muted: #716a60;
    --color-border: #ded6c8;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --bg: var(--color-bg);
    --panel: var(--color-surface);
    --panel-soft: var(--color-surface-soft);
    --text: var(--color-text);
    --muted: var(--color-muted);
    --line: var(--color-border);
    --accent: var(--color-primary);
    --accent-dark: var(--color-primary-hover);
    --danger: #9d2828;
    --shadow: 0 10px 28px rgba(6, 55, 28, 0.08);
    --shadow-soft: 0 8px 20px rgba(6, 55, 28, 0.05);
}

* { box-sizing: border-box; }

html {
    min-width: 320px;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(244, 234, 212, 0.38) 0, rgba(251, 250, 246, 0) 320px),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    text-underline-offset: 3px;
}

a:hover { text-decoration: underline; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(201, 149, 50, 0.34);
    outline-offset: 2px;
}

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

h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.2;
    margin-bottom: 18px;
}

h3 {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 14px;
}

button, input, select, textarea {
    font: inherit;
}

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

.section { padding: 66px 0; }

.section--soft { background: var(--panel-soft); }

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.55;
}

.muted { color: var(--muted); }

.eyebrow {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 13px;
}

.narrow { max-width: 760px; }

.empty-state {
    padding: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, rgba(244, 234, 212, 0.22));
    border-radius: var(--radius);
    color: var(--muted);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    .section { padding: 44px 0; }
}
