.page-header {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 43, 26, 0.85) 0%,
        rgba(28, 43, 26, 0.3) 60%,
        transparent 100%
    );
    pointer-events: none;
}

.page-header__inner {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h) + 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-header__label {
    color: rgba(255, 255, 255, 0.58);
}

.page-header__title {
    color: var(--white);
    max-width: 14ch;
}

/* Wariant hero — wielki */
.page-header__title.heading--hero {
    font-size: clamp(2.4rem, 5.6vw, 4.8rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
}

/* Wariant content — mniejszy */
.page-header__title.heading--content {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.page-header__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    max-width: 56ch;
    line-height: 1.6;
}

.page-header__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.page-header__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--dur-fast) var(--ease);
}

.page-header__breadcrumb a:hover { color: var(--white); }

/* Stagger dla reveal w nagłówku */
.page-header__label   { transition-delay: 0s; }
.page-header__title   { transition-delay: 0.08s; }
.page-header__subtitle{ transition-delay: 0.16s; }
.page-header__breadcrumb { transition-delay: 0.22s; }

@media (min-width: 992px) {
    .page-header { min-height: 72vh; }
}
