:root {
    --brand: #f26b21;
    --brand-dark: #c04f12;
    --ink: #1f2428;
    --muted: #5c6670;
    --bg: #ffffff;
    --bg-alt: #f4f6f8;
    --line: #e3e8ec;
    --ok: #1e7b3c;
    --err: #b3261e;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
}

a { color: var(--brand-dark); }

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wrap.narrow { max-width: 640px; }

.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--brand-dark);
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.nav a { text-decoration: none; }

.lang-switch a { margin-left: 0.35rem; color: var(--muted); }

.hero {
    background: linear-gradient(160deg, #fff4ec, #ffe9da);
    padding: 3rem 0 2.5rem;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: 1.8rem;
    line-height: 1.2;
}

.hero .lead { font-size: 1.05rem; color: var(--muted); margin: 0 0 1.25rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
    display: inline-block;
    border: 0;
    border-radius: 8px;
    padding: 0.65rem 1.1rem;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover { background: var(--brand-dark); }

.btn-secondary {
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid var(--brand);
}

.section { padding: 2rem 0; }

.section-alt { background: var(--bg-alt); }

.section h2 { margin: 0 0 0.75rem; font-size: 1.35rem; }

.section p, .section ol, .section ul { margin: 0 0 0.75rem; }

.section ol, .section ul { padding-left: 1.25rem; }

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-weight: 400;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.55rem 0.65rem;
    font: inherit;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
}

input[type="radio"], input[type="checkbox"] { accent-color: var(--brand); }

.consent { font-size: 0.9rem; color: var(--muted); }

.hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }

.alert {
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.alert.ok, .alert-ok { background: #e7f4eb; border: 1px solid #b8dcc5; color: var(--ok); }

.alert.err, .alert-err { background: #fdecea; border: 1px solid #f3c1bd; color: var(--err); }

#err-fields { margin: 0.4rem 0 0; padding-left: 1.1rem; }

#err-fields li { margin-bottom: 0.2rem; }

.err-generic { display: block; margin-top: 0.3rem; }

.hp-field { position: absolute !important; left: -9999px !important; }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.25rem 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

.lang-switch-inline a { margin-left: 0.4rem; color: var(--muted); }

@media (min-width: 640px) {
    .hero { padding: 4rem 0 3.25rem; }
    .hero h1 { font-size: 2.4rem; }
    .section { padding: 2.75rem 0; }
}