.ocf-hero {
    min-height: min(780px, calc(100vh - 5rem));
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, var(--ocf-bg) 0%, color-mix(in srgb, var(--ocf-bg-alt) 62%, var(--ocf-bg)) 100%);
}

.ocf-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.ocf-hero__content { max-width: 710px; }
.ocf-hero__eyebrow { margin-bottom: 1rem; }
.ocf-hero__title span { display: block; }
.ocf-hero__text {
    max-width: 55ch;
    margin: 1.3rem 0 0;
    color: var(--ocf-body);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.ocf-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.15rem;
    align-items: center;
    margin-top: 2rem;
}

.ocf-hero__phone {
    display: inline-grid;
    gap: 0.05rem;
    color: var(--ocf-heading);
    font-size: var(--text-sm);
}

.ocf-hero__phone span { color: var(--ocf-label); }
.ocf-hero__phone strong { font-size: var(--text-base); }

.ocf-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--ocf-label);
    font-size: var(--text-sm);
}

.ocf-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2.1rem;
    border: 1px solid var(--ocf-border-light);
    border-radius: var(--radius-full);
    background: color-mix(in srgb, var(--ocf-bg) 72%, white);
    padding: 0.35rem 0.75rem;
}

.ocf-hero__media {
    position: relative;
    overflow: hidden;
    border-radius: clamp(1rem, 3vw, 2rem);
    box-shadow: 0 28px 80px rgba(31, 45, 39, 0.16);
}

.ocf-hero__media::before {
    content: "";
    display: block;
    aspect-ratio: 4 / 5;
}

.ocf-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .ocf-hero { min-height: auto; }
    .ocf-hero__grid { grid-template-columns: 1fr; }
    .ocf-hero__media::before { aspect-ratio: 16 / 11; }
}
