.ocf-hero {
    --hero-heading-size: var(--site-hero-heading-size);
    --hero-heading-color: var(--ocf-heading-alt);
    --hero-intro-size: var(--text-lg);
    --hero-intro-color: var(--ocf-body-alt);
    --hero-rating-color: var(--ocf-heading-alt);
    --hero-gradient: var(--gradient-media-dark);
    --hero-overlay-opacity: max(0.88, var(--media-overlay-opacity));
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 20%, color-mix(in srgb, var(--ocf-accent) 12%, transparent), transparent 24rem),
        var(--ocf-bg-dark);
}

.ocf-hero__media,
.ocf-hero__shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ocf-hero__media {
    inset: 0 0 0 47%;
    opacity: 1;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

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

.ocf-hero__shade {
    background: var(--section-gradient, var(--hero-gradient));
    opacity: var(--section-overlay-opacity, var(--hero-overlay-opacity));
}

.ocf-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding-block: var(--section-pad);
}

.ocf-hero--split-form .ocf-hero__grid {
    padding-block: clamp(6rem, 12vh, 8.5rem) clamp(5.5rem, 10vh, 7.5rem);
}

.ocf-hero__content { max-width: 700px; }
.ocf-hero__eyebrow {
    display: inline-flex;
    margin: 0 0 0.9rem;
    color: var(--ocf-secondary);
    font-size: var(--text-sm);
    font-weight: 900;
    text-transform: uppercase;
}
.ocf-hero__rating { color: var(--hero-rating-color); }
.ocf-hero__headline {
    margin: 0;
    color: var(--field-color, var(--hero-heading-color));
    font-family: var(--ocf-font-heading), system-ui, sans-serif;
    font-size: var(--field-font-size, var(--hero-heading-size));
    font-weight: var(--field-font-weight, 700);
    font-style: var(--field-font-style, normal);
    line-height: 1.08;
    letter-spacing: 0;
    text-decoration: var(--field-text-decoration, none);
}
.ocf-hero__intro { color: var(--field-color, var(--hero-intro-color)); }
.ocf-hero__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06);
    padding: 0.42rem 0.65rem;
    font-size: var(--text-sm);
    line-height: 1;
}
.ocf-hero__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    color: #FBBF24;
    line-height: 1;
}
.ocf-hero__stars svg {
    display: block;
    width: 1em;
    height: 1em;
}
.ocf-hero__headline span { display: block; }
.ocf-hero__intro {
    max-width: 54ch;
    margin: 1.25rem 0 0;
    color: var(--field-color, var(--hero-intro-color));
    font-size: var(--field-font-size, var(--hero-intro-size));
}
.ocf-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.ocf-hero__phone {
    border-color: rgba(255,255,255,0.38);
    color: var(--ocf-heading-alt);
}
.ocf-hero__signal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 680px;
    margin-top: 2rem;
}
.ocf-hero__signal-point {
    position: relative;
    display: grid;
    gap: 0.25rem;
    min-width: 0;
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--ocf-accent);
    background: rgba(255,255,255,0.07);
    padding: 0.85rem 0.95rem;
}
.ocf-hero__signal-point span {
    color: var(--ocf-label-alt);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
}
.ocf-hero__signal-point strong {
    min-width: 0;
    color: var(--ocf-heading-alt);
    font-size: var(--text-sm);
    line-height: 1.25;
}
.ocf-hero__form { width: 100%; align-self: start; margin-top: 0.25rem; }
.ocf-hero--split-no-form .ocf-hero__grid,
.ocf-hero--centered-band .ocf-hero__grid { grid-template-columns: minmax(0, 720px) minmax(260px, 1fr); }

.ocf-hero--split-no-form .ocf-hero__content {
    padding-block: 1.5rem;
}

.ocf-hero--centered-band {
    min-height: 0;
}

.ocf-hero--centered-band .ocf-hero__grid {
    justify-content: center;
    padding-block: clamp(4rem, 10vw, 7rem);
    text-align: center;
}

.ocf-hero--centered-band .ocf-hero__content,
.ocf-hero--centered-band .ocf-hero__intro {
    margin-inline: auto;
}

.ocf-hero--centered-band .ocf-hero__rating,
.ocf-hero--centered-band .ocf-hero__actions {
    justify-content: center;
}

.ocf-hero[data-ocf-tone="light"] {
    --hero-heading-color: var(--ocf-heading);
    --hero-intro-color: var(--ocf-body);
    --hero-rating-color: var(--ocf-heading);
    background: var(--ocf-bg);
    color: var(--ocf-body);
}

@media (max-width: 900px) {
    .ocf-hero { min-height: auto; }
    .ocf-hero__media {
        inset: auto 0 0 0;
        height: 45%;
        clip-path: none;
        opacity: 0.34;
    }
    .ocf-hero__grid,
    .ocf-hero--split-no-form .ocf-hero__grid { grid-template-columns: 1fr; }
    .ocf-hero--split-form .ocf-hero__grid {
        padding-block: clamp(3.5rem, 10vw, 5rem);
    }
    .ocf-hero__signal-strip { grid-template-columns: 1fr; }
}
