.dph-page-header {
    --dph-primary: #c6a15b;
    --dph-title: #fff;
    --dph-breadcrumb: #ccc;
    --dph-height: 60vh;
    --dph-min-height: 400px;
    --dph-parallax-y: 0px;
    position: relative;
    isolation: isolate;
    width: 100%;
    height: var(--dph-height);
    min-height: var(--dph-min-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: var(--dph-background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center calc(50% + var(--dph-parallax-y));
    color: var(--dph-title);
}

.dph-page-header,
.dph-page-header * {
    box-sizing: border-box;
}

.dph-page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.04), transparent 48%);
    pointer-events: none;
}

.dph-header-content {
    position: relative;
    z-index: 3;
    width: min(100%, 860px);
    padding: 0 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}

.dph-page-header.dph-is-ready .dph-header-content {
    opacity: 1;
    transform: translateY(0);
}

.dph-subtitle {
    margin: 0 0 28px;
    color: var(--dph-primary);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .12em;
    opacity: .95;
}

.dph-page-title {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    margin: 0 0 22px;
    color: var(--dph-title);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: .06em;
    overflow-wrap: anywhere;
}

.dph-page-title::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -110%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transition: left .85s ease;
}

.dph-page-title:hover::before {
    left: 110%;
}

.dph-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--dph-breadcrumb);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .06em;
}

.dph-breadcrumb a {
    color: var(--dph-primary);
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}

.dph-breadcrumb a:hover,
.dph-breadcrumb a:focus-visible {
    color: var(--dph-title);
}

.dph-breadcrumb-separator {
    width: 30px;
    height: 2px;
    flex: 0 0 30px;
    background: linear-gradient(90deg, var(--dph-primary), var(--dph-title));
}

.dph-scroll-indicator {
    position: absolute;
    z-index: 4;
    bottom: 24px;
    left: 50%;
    display: grid;
    place-items: center;
    gap: 4px;
    min-width: 120px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--dph-title);
    font: inherit;
    font-size: .78rem;
    line-height: 1.4;
    letter-spacing: .12em;
    cursor: pointer;
    transform: translateX(-50%);
    animation: dph-bounce 2s infinite;
}

.dph-scroll-indicator::after {
    content: "↓";
    display: block;
    color: var(--dph-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.dph-scroll-indicator:focus-visible {
    outline: 2px solid var(--dph-primary);
    outline-offset: 6px;
}

.dph-accent-line {
    position: absolute;
    z-index: 2;
    display: none;
    width: 200px;
    height: 2px;
    opacity: .65;
    background: linear-gradient(90deg, transparent, var(--dph-primary), transparent);
    pointer-events: none;
}

.dph-show-accents .dph-accent-line {
    display: block;
}

.dph-accent-line--one {
    top: 20%;
    left: 10%;
    transform: rotate(15deg) translate(var(--dph-mouse-x, 0), var(--dph-mouse-y, 0));
    animation: dph-pulse 3s ease-in-out infinite;
}

.dph-accent-line--two {
    right: 15%;
    bottom: 30%;
    transform: rotate(-25deg) translate(var(--dph-mouse-x, 0), var(--dph-mouse-y, 0));
    animation: dph-pulse 3s ease-in-out 1.5s infinite;
}

.dph-page-header[dir="rtl"] .dph-subtitle,
.dph-page-header[dir="rtl"] .dph-page-title,
.dph-page-header[dir="rtl"] .dph-breadcrumb,
.dph-page-header[dir="rtl"] .dph-scroll-indicator {
    letter-spacing: .02em;
}

@keyframes dph-pulse {
    0%, 100% { opacity: .55; width: 200px; }
    50% { opacity: 1; width: 250px; }
}

@keyframes dph-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (min-width: 769px) {
    .dph-page-header.dph-has-parallax {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    .dph-page-header {
        height: min(var(--dph-height), 50vh);
        min-height: min(var(--dph-min-height), 350px);
        background-attachment: scroll;
        background-position: center;
    }

    .dph-header-content {
        width: 100%;
        padding: 0 30px;
    }

    .dph-page-title {
        margin-bottom: 16px;
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .dph-subtitle {
        margin-bottom: 22px;
        font-size: clamp(.9rem, 4vw, 1.2rem);
    }

    .dph-breadcrumb {
        flex-direction: column;
        gap: 7px;
        font-size: .82rem;
    }

    .dph-breadcrumb-separator {
        width: 16px;
        height: 1px;
        flex-basis: 1px;
    }

    .dph-scroll-indicator {
        bottom: 16px;
        font-size: .7rem;
    }

    .dph-scroll-indicator::after {
        font-size: 1.2rem;
    }

    .dph-accent-line {
        width: 120px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .dph-page-header {
        height: min(var(--dph-height), 45vh);
        min-height: min(var(--dph-min-height), 320px);
    }

    .dph-header-content {
        padding: 0 20px;
    }

    .dph-page-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .dph-subtitle {
        font-size: clamp(.8rem, 3.5vw, 1rem);
    }

    .dph-breadcrumb {
        font-size: .75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dph-header-content,
    .dph-page-title::before,
    .dph-breadcrumb a {
        transition: none;
    }

    .dph-scroll-indicator,
    .dph-accent-line {
        animation: none;
    }
}
