.ls-contact-wrapper {
    max-width: 760px;
    margin: 30px auto;
    padding: 28px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(74, 37, 88, 0.08);
    border: 1px solid rgba(187, 122, 217, 0.12);
}

.ls-contact-alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
}

.ls-contact-alert.success {
    background: #edf9f1;
    color: #1e6b36;
}

.ls-contact-alert.error {
    background: #fff0f1;
    color: #a12c3a;
}

.ls-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ls-contact-grid {
    display: grid;
    gap: 16px;
}

.ls-contact-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ls-field {
    display: flex;
    flex-direction: column;
}

.ls-field label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #633A21;
}

.ls-field input,
.ls-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e7d9ed;
    border-radius: 12px;
    background: #fff;
    padding: 13px 14px;
    font-size: 15px;
    color: #3a2940;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ls-field input::placeholder,
.ls-field textarea::placeholder {
    color: #b49cbf;
}

.ls-field input:focus,
.ls-field textarea:focus {
    outline: none;
    border-color: #bb7ad9;
    box-shadow: 0 0 0 4px rgba(187, 122, 217, 0.14);
}

.ls-field textarea {
    min-height: 180px;
    resize: vertical;
}

.ls-recaptcha-wrap {
    margin-top: 4px;
}

.ls-submit-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

.ls-submit-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    background: linear-gradient(135deg, #CC8153 0%, #633A21 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(187, 122, 217, 0.24);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.ls-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(187, 122, 217, 0.28);
}

.ls-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 680px) {
    .ls-contact-wrapper {
        padding: 20px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .ls-contact-grid.two-cols {
        grid-template-columns: 1fr;
    }

    .ls-submit-wrap {
        justify-content: stretch;
    }

    .ls-submit-btn {
        width: 100%;
    }
}
