/* ================================================================
   Reusable page hero (background image + green overlay)
   Used by: services, projects, prices, documents, faq
   ================================================================ */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-accent-secondary);
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: #0F513299;
}

.page-hero--no-image .page-hero__overlay {
    background: var(--color-accent-secondary);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    padding-block: 56px 52px;
}

/* ---- Breadcrumbs ---- */
.page-hero .hero-breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .70);
    margin-bottom: 24px;
    align-items: center;
}
.page-hero .hero-breadcrumbs a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
}
.page-hero .hero-breadcrumbs a:hover { color: var(--color-white); }

/* ---- Content ---- */
.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

.page-hero__note {
    font-size: 13px;
    color: rgba(255, 255, 255, .60);
    margin-top: 16px;
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 768px) {
    .page-hero { min-height: 220px; }
    .page-hero__inner { padding-block: 36px 40px; }
    .page-hero .hero-breadcrumbs { margin-bottom: 16px; }
    .page-hero__title { margin-bottom: 12px; text-align: left; }
    .page-hero__subtitle { margin-inline: 0; text-align: left; }
}
