/* Inner page hero — 400px visual block, title overlaid on images */
.page-hero {
    padding: clamp(0.65rem, 1.5vw, 1rem) clamp(1rem, 3vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
    background: #fff;
}

.page-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.page-hero-visual {
    position: relative;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.page-hero-gallery {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 4px;
    height: 100%;
    background: #111;
}

.page-hero-main,
.page-hero-side-item {
    overflow: hidden;
    position: relative;
}

.page-hero-main img,
.page-hero-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.page-hero-visual:hover .page-hero-main img {
    transform: scale(1.04);
}

.page-hero-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

.page-hero-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.25rem, 3vw, 2rem);
    max-width: 720px;
    color: #fff;
}

.page-hero-kicker {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e8b84a;
    margin-bottom: 0.4rem;
}

.page-hero-copy h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(1.35rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-hero-sub {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.page-breadcrumb {
    margin-top: 0.5rem;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
}

.page-breadcrumb a:hover {
    color: #e8b84a;
    opacity: 1;
}

@media (max-width: 768px) {
    .page-hero-visual {
        height: auto;
        min-height: 320px;
    }

    .page-hero-gallery {
        grid-template-columns: 1fr;
        height: 320px;
    }

    .page-hero-side {
        display: none;
    }

    .page-hero-copy {
        max-width: 100%;
        padding: 1.15rem;
    }

    .page-hero-copy h1 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .page-hero-gallery {
        height: 280px;
    }

    .page-hero-visual {
        min-height: 280px;
    }
}
