.phoenix-contact-page .wp-block-post-title {
    margin-bottom: 0.75rem;
    text-align: center;
}

.phoenix-contact {
    display: grid;
    grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 5vw, 5rem);
    width: min(100%, 1120px);
    margin: 1rem auto 3rem;
    color: #20251b;
}

.phoenix-contact__intro {
    padding-top: 0.35rem;
}

.phoenix-contact__eyebrow {
    margin: 0 0 0.4rem;
    color: #384221;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.phoenix-contact__intro h2 {
    margin: 0 0 0.85rem;
    color: #151812;
    font-size: 2.35rem;
    line-height: 1.15;
}

.phoenix-contact__intro > p:not(.phoenix-contact__eyebrow) {
    margin: 0 0 2rem;
    color: #555b50;
    line-height: 1.65;
}

.phoenix-contact__detail {
    display: grid;
    gap: 0.2rem;
    padding: 1rem 0;
    border-top: 1px solid #dfe3db;
}

.phoenix-contact__detail strong,
.phoenix-contact__address strong {
    color: #20251b;
    font-size: 0.95rem;
}

.phoenix-contact__detail span,
.phoenix-contact__address {
    color: #62685c;
    font-size: 0.88rem;
    line-height: 1.55;
}

.phoenix-contact__address {
    display: grid;
    gap: 0.15rem;
    padding-top: 1rem;
    border-top: 1px solid #dfe3db;
    font-style: normal;
}

.phoenix-contact-form {
    position: relative;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid #d9ddd5;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(32, 37, 27, 0.08);
}

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

.phoenix-contact-form__field {
    margin-bottom: 1rem;
}

.phoenix-contact-form__field label {
    display: block;
    margin: 0 0 0.38rem;
    color: #20251b;
    font-size: 0.9rem;
    font-weight: 700;
}

.phoenix-contact-form__field label span {
    color: #72776d;
    font-size: 0.78rem;
    font-weight: 400;
}

.phoenix-contact-form__field input,
.phoenix-contact-form__field select,
.phoenix-contact-form__field textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    margin: 0;
    padding: 0.68rem 0.78rem;
    border: 1px solid #aeb4a8;
    border-radius: 4px;
    background: #fff;
    color: #151812;
    font: inherit;
    letter-spacing: 0;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.phoenix-contact-form__field textarea {
    min-height: 10.5rem;
    resize: vertical;
}

.phoenix-contact-form__field input:focus,
.phoenix-contact-form__field select:focus,
.phoenix-contact-form__field textarea:focus {
    border-color: #384221;
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 66, 33, 0.14);
}

.phoenix-contact-form__privacy {
    max-width: 40rem;
    margin: 0 0 1rem;
    color: #6a7065;
    font-size: 0.78rem;
    line-height: 1.5;
}

.phoenix-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.72rem 1.25rem;
    border: 2px solid #384221;
    border-radius: 4px;
    background: #384221;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    transition: background-color 140ms ease, color 140ms ease, opacity 140ms ease;
}

.phoenix-contact-form__submit:hover,
.phoenix-contact-form__submit:focus-visible {
    background: #fff;
    color: #384221;
}

.phoenix-contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.phoenix-contact-form__status {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.phoenix-contact-form__status.is-success,
.phoenix-contact-form__status.is-error {
    display: block;
}

.phoenix-contact-form__status.is-success {
    border-color: #a7c3a4;
    background: #edf5ec;
    color: #28552c;
}

.phoenix-contact-form__status.is-error {
    border-color: #dfa9a9;
    background: #fff1f1;
    color: #8b2424;
}

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

@media (max-width: 760px) {
    .phoenix-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .phoenix-contact__intro > p:not(.phoenix-contact__eyebrow) {
        margin-bottom: 1.25rem;
    }

    .phoenix-contact__intro h2 {
        font-size: 1.8rem;
    }

    .phoenix-contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .phoenix-contact-form__submit {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .phoenix-contact-form__field input,
    .phoenix-contact-form__field select,
    .phoenix-contact-form__field textarea,
    .phoenix-contact-form__submit {
        transition: none;
    }
}
