/* Keep headings direct by removing decorative eyebrow labels site-wide. */
.eyebrow {
    display: none;
}

/* Internal-page heroes are slightly darker than the website background. */
.page-hero {
    background: #e7efed;
    border-bottom: 1px solid #d2dfdc;
}

/* Mobile-only conversion bar. The !important rule overrides the original
   site-wide display declaration and prevents it appearing on desktop. */
.mobile-cta {
    display: none !important;
}

@media (max-width: 991.98px) {
    .mobile-cta {
        position: fixed;
        inset: auto 0 0;
        z-index: 1035;
        display: grid !important;
        grid-template-columns: minmax(96px, .7fr) 1.3fr;
        gap: .65rem;
        padding: .7rem max(.8rem, env(safe-area-inset-right)) calc(.7rem + env(safe-area-inset-bottom)) max(.8rem, env(safe-area-inset-left));
        background: rgba(255, 255, 255, .96);
        border-top: 1px solid var(--lv-border);
        box-shadow: 0 -12px 34px rgba(11, 34, 57, .12);
        backdrop-filter: blur(14px);
    }

    .mobile-cta a {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        border-radius: 12px;
        font-weight: 750;
        text-decoration: none;
    }

    .mobile-cta-call {
        color: var(--lv-primary);
        background: #fff;
        border: 1px solid var(--lv-border);
    }

    .mobile-cta-start {
        color: #fff;
        background: var(--lv-secondary);
        box-shadow: 0 8px 20px rgba(8, 127, 117, .22);
    }
}

.hero-photo {
    position: relative;
    margin: 0;
}

.hero-focused {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding-block: clamp(5rem, 10vw, 9rem);
}

.hero-focused h1 {
    max-width: 760px;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
    font-size: clamp(3.4rem, 7.4vw, 7rem);
    line-height: .94;
}

.hero-cta {
    min-height: 58px;
    padding-inline: 1.8rem;
    font-size: 1.08rem;
}

.hero-photo img,
.service-hero-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(11, 34, 57, .16);
}

.hero-photo figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    gap: .2rem;
    padding: 1rem 1.15rem;
    color: #fff;
    background: rgba(11, 34, 57, .92);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.hero-photo figcaption a {
    color: #78e0d3;
    font-size: .92rem;
    font-weight: 700;
}

.service-hero-image {
    max-height: 360px;
}

@media (max-width: 575.98px) {
    .hero-focused {
        min-height: auto;
        padding-block: 4rem;
    }

    .hero-focused h1 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .hero-photo img,
    .service-hero-image {
        border-radius: 20px;
    }
}
