.hero {
    position: relative;
    overflow: visible;
    padding: 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(78, 195, 204, 0.12), transparent 42%),
        var(--ld-bg-gradient);
}

.hero__picture {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    line-height: 0;
}

.hero__photo {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    background: transparent;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: calc(-100vw * var(--hero-img-ratio) * var(--hero-content-lift));
    background: var(--ld-bg-solid);
    padding: 0;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: min(100%, var(--ld-container));
    max-width: none;
    margin-inline: auto;
    padding-inline: var(--ld-gutter);
    padding-bottom: 1.5rem;
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    font-family: var(--ld-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero__stars {
    display: inline-flex;
    gap: 0.15rem;
    color: var(--ld-accent);
}

.hero__stars svg {
    width: 1rem;
    height: 1rem;
}

.hero__eyebrow {
    display: inline-block;
    margin: 0 0 1.35rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(78, 195, 204, 0.55);
    border-radius: var(--ld-radius-pill);
    background: rgba(78, 195, 204, 0.08);
    color: var(--ld-accent);
    font-family: var(--ld-font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    width: 100%;
    max-width: none;
    font-family: var(--ld-font-display);
    font-size: clamp(2rem, 4.8vw, 3.625rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__title-line--primary {
    white-space: nowrap;
}

.hero__title-accent {
    color: var(--ld-accent);
    margin-right: -0.3em;
}

.hero__title-line {
    display: block;
}

.hero__lead {
    width: 100%;
    max-width: 52rem;
    margin: 1.35rem auto 0;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--ld-text-muted);
}

.hero__cta {
    margin-top: 1.5rem;
}

@media (max-width: 767px) {
    .hero__content {
        margin-top: calc(-100vw * var(--hero-mobile-ratio) * var(--hero-mobile-content-lift));
    }
}

@media (max-width: 860px) {
    .hero__title-line--primary {
        white-space: normal;
    }
}