.djft-contact-wrap {
    margin-top: 2rem;
    max-width: 820px;
}

.djft-contact-form {
    padding: clamp(1.25rem, 3vw, 2.25rem);
    background: #f8f5ef;
    border: 1px solid #e7dfd3;
    border-radius: 14px;
}

.djft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.djft-contact-form p {
    margin: 0 0 1.15rem;
}

.djft-contact-form label {
    display: block;
    margin-bottom: .4rem;
    color: #27231f;
    font-weight: 600;
}

.djft-contact-form input[type="text"],
.djft-contact-form input[type="email"],
.djft-contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: .8rem .9rem;
    color: #27231f;
    background: #fffdf9;
    border: 1px solid #cfc4b5;
    border-radius: 7px;
    font: inherit;
}

.djft-contact-form input:focus,
.djft-contact-form textarea:focus {
    outline: 2px solid #b38a4a;
    outline-offset: 1px;
}

.djft-contact-form button {
    padding: .85rem 1.4rem;
    color: #fffdf9;
    background: #4b3125;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.djft-contact-form button:hover {
    background: #66745f;
}

.djft-consent label {
    font-size: .92rem;
    font-weight: 400;
}

.djft-notice {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border-radius: 7px;
}

.djft-success {
    color: #2f4630;
    background: #edf4e9;
}

.djft-error {
    color: #702d28;
    background: #faece9;
}

.djft-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

@media (max-width: 640px) {
    .djft-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

