.twoColCta {
    background: #faf7f4;
    padding: 60px 0;
}

.twoColCta__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 44px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 48px;
}

/* ── Intro section ── */

.twoColCta__intro {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 44px 40px;
}

.twoColCta__intro-heading {
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 65px;
    color: #a47c48;
    margin: 0 0 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #a47c48;
    border-left: none !important;
    padding-left: 0 !important;
    outline: none;
}

.twoColCta__intro-body {
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    color: #000000;
}

.twoColCta__intro-body p {
    margin: 0 0 16px;
}

.twoColCta__intro-body p:last-child {
    margin-bottom: 0;
}

/* ── Column ── */

.twoColCta__col {
    display: flex;
    flex-direction: column;
}

/* ── Image ── */

.twoColCta__image-wrap {
    margin-bottom: 28px;
    border-radius: 10px;
    overflow: hidden;
}

/* Cover — photo fills the frame */
.twoColCta__image-wrap--cover {
    height: 379px;
}

.twoColCta__image-wrap--cover .twoColCta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Contain — full graphic is visible, centred */
.twoColCta__image-wrap--contain {
    height: 275px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.twoColCta__image-wrap--contain .twoColCta__img {
    max-width: 275px;
    max-height: 275px;
    width: 100%;
    object-fit: contain;
    display: block;
}

/* ── Heading ── */

.twoColCta__heading {
    font-family: 'Andada Pro', serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    color: #a47c48;
    margin: 0 0 16px;
    border: none !important;
    outline: none;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* ── Body copy ── */

.twoColCta__body {
    font-family: 'Andada Pro', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 32px;
}

.twoColCta__body p {
    margin: 0 0 16px;
}

.twoColCta__body p:last-child {
    margin-bottom: 0;
}

/* ── CTA button ── */

.twoColCta__cta {
    position: relative;
    display: block;
    background: #a47c48;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1;
    border-radius: 10px;
    max-width: 360px;
    min-height: 75px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.twoColCta__cta::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    pointer-events: none;
}

.twoColCta__cta:hover {
    background: #8a6538;
    color: #ffffff;
}

.twoColCta__cta:focus {
    outline: 3px solid #385723;
    outline-offset: 2px;
}

.twoColCta__cta:active {
    transform: scale(0.98);
}

/* ── Tablet ── */

@media (max-width: 1024px) {
    .twoColCta__heading {
        font-size: 28px;
        line-height: 34px;
    }

    .twoColCta__cta {
        font-size: 24px;
    }
}

/* ── Mobile — stack vertically ── */

@media (max-width: 768px) {
    .twoColCta {
        padding: 40px 0;
    }

    .twoColCta__intro {
        padding: 0 24px 32px;
    }

    .twoColCta__intro-heading {
        font-size: 36px;
        line-height: 44px;
    }

    .twoColCta__intro-body {
        font-size: 20px;
        line-height: 30px;
    }

    .twoColCta__container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .twoColCta__image-wrap--cover {
        height: 240px;
    }

    .twoColCta__image-wrap--contain {
        height: 200px;
    }

    .twoColCta__heading {
        font-size: 26px;
        line-height: 32px;
    }

    .twoColCta__cta {
        max-width: 100%;
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .twoColCta__cta {
        transition: none;
    }

    .twoColCta__cta:active {
        transform: none;
    }
}
