.button-accent {
    background: #985c21;
    color: #fff;
}

:root {
    --copper: #985c21;
}

.section-dark .section-label,
.estimate-section .section-label,
.article-routes .section-label,
.not-found-hero .section-label,
.case-disclaimer .section-label,
.material-care .section-label {
    color: var(--copper-2);
}

.lead-form {
    padding: 28px;
    border: 1px solid rgba(23, 60, 48, .08);
    box-shadow: 0 22px 60px rgba(9, 35, 27, .18);
}

.lead-form .required-note {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 12px;
    text-align: right;
}

.lead-form .required-note span,
.lead-form .required-mark {
    color: #a84d2a;
}

.lead-form .form-row {
    align-items: start;
    gap: 16px;
}

.lead-form .form-field,
.lead-form .form-row .form-field {
    display: grid;
    gap: 7px;
    margin: 0 0 16px;
}

.lead-form .field-label,
.lead-form legend {
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
}

.lead-form .optional-mark {
    margin-left: 6px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.lead-form input:not([type="radio"]):not([type="checkbox"]),
.lead-form select,
.lead-form textarea {
    min-height: 48px;
    border-color: #d9d6ce;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form textarea {
    min-height: 92px;
    resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: #8b8f88;
    opacity: 1;
}

.lead-form input:not([type="radio"]):not([type="checkbox"]):hover,
.lead-form select:hover,
.lead-form textarea:hover {
    border-color: #bcb8ae;
}

.lead-form input[aria-invalid="true"],
.lead-form select[aria-invalid="true"],
.lead-form textarea[aria-invalid="true"] {
    border-color: #a84d2a;
    background: #fffaf8;
}

.lead-form .field-help {
    min-height: 16px;
    margin: 0 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
}

.lead-form fieldset.form-field {
    margin-bottom: 16px;
}

.lead-form fieldset.form-field legend {
    margin-bottom: 9px;
}

.lead-form .channel-grid {
    gap: 8px;
}

.lead-form .channel-grid label {
    margin: 0;
}

.lead-form .channel-grid span {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-color: #ddd9d0;
    border-radius: 11px;
    padding: 9px 8px;
    font-size: 13px;
    font-weight: 650;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.lead-form .channel-grid input:focus-visible + span {
    outline: 3px solid #e7ab63;
    outline-offset: 2px;
}

.lead-form .channel-grid input:checked + span {
    box-shadow: inset 0 0 0 1px var(--green);
}

.lead-form .channel-hint {
    min-height: 18px;
    margin: 8px 2px 0;
}

.lead-form .form-privacy-note {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    margin: 2px 0 16px;
    border-radius: 12px;
    padding: 12px 14px;
    background: var(--cream);
    color: var(--green);
    font-size: 12px;
    line-height: 1.45;
}

.lead-form .form-privacy-note strong {
    font-size: 12px;
}

.lead-form .consent {
    gap: 10px;
    margin: 0 0 18px;
    color: #4f544e;
    font-size: 12px;
    line-height: 1.5;
}

.lead-form .consent input {
    flex: 0 0 18px;
}

.lead-form .form-submit {
    width: 100%;
    min-height: 52px;
}

.form-status:empty {
    display: none;
}

.form-status.is-success,
.form-status.is-error {
    margin: 12px 0 0;
    border-radius: 11px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.form-status.is-success {
    background: #eef5f1;
    color: #173c30;
}

.form-status.is-error {
    background: #fff1ed;
    color: #8a2d1e;
}

.lead-form button[disabled] {
    cursor: wait;
    opacity: .7;
}

.breadcrumbs span[aria-current="page"] {
    color: #20231f;
}

@media (max-width: 680px) {
    .lead-form {
        padding: 20px;
        border-radius: 16px;
    }

    .lead-form .required-note {
        margin-bottom: 14px;
        text-align: left;
    }

    .lead-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .lead-form .channel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lead-form .channel-grid span {
        min-height: 48px;
    }

    .lead-form .form-privacy-note {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
