.ocf-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 5rem));
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--ocf-bg-dark);
}

.ocf-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-width: 0;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.ocf-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(18, 30, 25, 0.66), rgba(18, 30, 25, 0.48) 45%, rgba(18, 30, 25, 0.74)),
        var(--hero-bg-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.ocf-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(18, 30, 25, 0.28), transparent 46%),
        linear-gradient(90deg, rgba(18, 30, 25, 0.34), transparent 24%, transparent 76%, rgba(18, 30, 25, 0.34));
}

.ocf-hero__content {
    width: min(100%, 760px);
    max-width: 760px;
    min-width: 0;
    text-align: center;
}
.ocf-hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    max-width: min(100%, 42rem);
    margin: 0 auto 1.1rem;
    color: var(--ocf-body-alt);
    font-size: var(--text-sm);
    font-weight: 650;
}

.ocf-hero__google {
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #fff;
    color: #4285f4;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.ocf-hero__rating-value {
    color: var(--ocf-heading-alt);
}

.ocf-hero__stars {
    color: #fbbc04;
    letter-spacing: 0;
}

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

.ocf-hero__title span { display: block; }
.ocf-hero__title,
.ocf-hero__phone {
    color: var(--ocf-heading-alt);
}
.ocf-hero__text {
    max-width: 50ch;
    margin: 1.3rem auto 0;
    color: var(--ocf-body-alt);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

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

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

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

@media (max-width: 900px) {
    .ocf-hero { min-height: 620px; }
    .ocf-hero__grid { padding-block: clamp(4.5rem, 18vw, 7rem); }
    .ocf-hero__actions { align-items: center; }
}

@media (max-width: 520px) {
    .ocf-hero { min-height: 600px; }
    .ocf-hero__rating {
        gap: 0.25rem 0.4rem;
        max-width: 20rem;
        font-size: 0.78rem;
        line-height: 1.35;
    }
    .ocf-hero__title { font-size: clamp(2.15rem, 12vw, 2.45rem); }
    .ocf-hero__actions {
        display: grid;
        justify-items: center;
    }
}
