section.cta {
    display: flex;
    position: relative;
    padding: clamp(50px, 10vw, 100px) 0;
    overflow: hidden;
    background: var(--brown);
}

section.cta img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

section.cta .wrap {
    z-index: 1;
    position: relative;
    text-align: center;
}

.cta-content h2 {
    color: var(--off-white);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: clamp(20px, 4vw, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    max-width: 708px;
    margin: auto;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
}