.ocf-cta {
    position: relative;
    overflow: hidden;
    min-height: clamp(30rem, 48vw, 42rem);
    background: var(--ocf-bg-dark);
    color: var(--ocf-body-alt);
}

.ocf-cta__inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    align-content: end;
    padding-block: clamp(4rem, 8vw, 6.5rem);
}

.ocf-cta__content {
    max-width: 780px;
}

.ocf-cta__eyebrow { color: var(--ocf-label-alt); }

.ocf-cta .ocf-cta__title {
    max-width: 15ch;
    color: var(--ocf-heading-alt);
    font-size: clamp(2.35rem, 4.5vw, 3.75rem);
    line-height: 1;
}

.ocf-cta__text {
    max-width: 48ch;
    margin: 1.05rem 0 0;
    color: var(--ocf-body-alt);
    font-size: var(--text-base);
    line-height: 1.75;
}

.ocf-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem 1.2rem;
    align-items: center;
    margin-top: 1.8rem;
}

.ocf-cta__button {
    gap: 1.35rem;
    min-height: 3.25rem;
    padding-inline: 1.25rem 1rem;
}

.ocf-cta__arrow {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.ocf-cta__phone {
    display: grid;
    gap: 0.05rem;
    color: var(--ocf-body-alt);
    font-size: var(--text-sm);
    text-align: left;
}

.ocf-cta__phone span {
    color: var(--ocf-label-alt);
}

.ocf-cta__phone strong {
    color: var(--ocf-heading-alt);
    font-size: var(--text-base);
    font-weight: 700;
}

.ocf-cta__meta {
    display: grid;
    gap: 0.2rem;
    color: var(--ocf-label-alt);
    font-size: var(--text-sm);
}

.ocf-cta__image,
.ocf-cta__shade {
    position: absolute;
    inset: 0;
}

.ocf-cta__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transform: scale(1.01);
}

.ocf-cta__shade {
    background:
        linear-gradient(90deg, rgba(18, 30, 25, 0.86) 0%, rgba(18, 30, 25, 0.66) 42%, rgba(18, 30, 25, 0.2) 100%),
        linear-gradient(180deg, rgba(18, 30, 25, 0.22), rgba(18, 30, 25, 0.7));
}

@media (max-width: 760px) {
    .ocf-cta { min-height: 34rem; }
    .ocf-cta__inner { padding-block: clamp(3rem, 16vw, 5rem); }
    .ocf-cta__actions { display: grid; }
    .ocf-cta .ocf-cta__title {
        max-width: 12ch;
        font-size: clamp(2.1rem, 10vw, 2.75rem);
    }
    .ocf-cta__actions .btn-primary {
        min-height: 2.85rem;
        padding: 0.78rem 1.15rem;
    }
    .ocf-cta__phone { text-align: center; }
}
