.contact-info-area {
    position: relative;
    background: #fff;
}

.contact-info-card {
    position: relative;
    min-height: 210px;
    padding: 34px 24px !important;
    background: #fdfbf9;
    border: 1px solid rgba(145, 112, 75, .12) !important;
    border-radius: 18px !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(145, 112, 75, .28) !important;
    box-shadow: 0 18px 38px rgba(74, 56, 42, .08);
}

.contact-info-card > .primary-color {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #76583e !important;
    background: #f2e9e1;
    border-radius: 50%;
}

.contact-info-card h6 {
    color: #302a26;
    font-weight: 600;
}

.contact-info-card p {
    color: #70665f;
    line-height: 1.6;
}

.contact-form-area {
    background:
        radial-gradient(circle at 8% 8%, rgba(231, 195, 189, .22), transparent 26%),
        #faf7f4;
}

.contact-form-shell {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(145, 112, 75, .12);
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(57, 43, 34, .1);
}

.contact-form-intro {
    height: 100%;
    padding: clamp(38px, 6vw, 72px);
    color: #fff;
    background:
        linear-gradient(150deg, rgba(82, 56, 39, .96), rgba(145, 112, 75, .9)),
        url("../image/other/contact.jpg") center/cover;
}

.contact-eyebrow,
.contact-form-card-heading > span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-eyebrow {
    color: #ead9c9;
    margin-bottom: 18px;
}

.contact-form-intro h2 {
    color: #fff;
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    margin: 0 0 22px;
}

.contact-form-intro > p {
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.contact-response-note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-response-note i {
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #5e452f;
    font-size: 19px;
    background: #f4e6d9;
    border-radius: 50%;
}

.contact-response-note strong,
.contact-response-note span {
    display: block;
}

.contact-response-note strong {
    color: #fff;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-response-note span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    line-height: 1.5;
}

.contact-form-card {
    height: 100%;
    padding: clamp(30px, 5vw, 58px);
}

.contact-form-card-heading {
    margin-bottom: 28px;
}

.contact-form-card-heading > span {
    color: #9a7655;
    margin-bottom: 8px;
}

.contact-form-card-heading h3 {
    color: #302a26;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 500;
    margin: 0;
}

.contact-field-label {
    display: block;
    color: #554b44;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-field-label span {
    color: #a65353;
}

.contact-form-card .sg-form-control {
    min-height: 51px;
    color: #332e2a;
    background: #fcfaf8;
    border: 1px solid #e7ded7;
    border-radius: 11px;
    padding: 12px 14px;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.contact-form-card .sg-form-control:focus {
    outline: 0;
    background: #fff;
    border-color: #9a7655;
    box-shadow: 0 0 0 4px rgba(154, 118, 85, .1);
}

.contact-form-card textarea.sg-form-control {
    min-height: 145px;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-submit-row p {
    max-width: 340px;
    color: #91877f;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 51px;
    color: #fff;
    font-weight: 600;
    background: #43372f;
    border: 1px solid #43372f;
    border-radius: 999px;
    padding: 12px 23px;
    transition: transform .2s ease, background-color .2s ease;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
    color: #fff;
    background: #76583e;
    transform: translateY(-2px);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form-card .sg-alert {
    border-radius: 12px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .contact-info-card {
        min-height: 180px;
    }

    .contact-form-shell {
        border-radius: 20px;
    }

    .contact-form-intro,
    .contact-form-card {
        padding: 34px 22px;
    }

    .contact-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-info-card,
    .contact-form-card .sg-form-control,
    .contact-submit-button {
        transition: none;
    }
}
