/* Kreations — shared page hero (Events, Gallery, etc.) */
.k-page-hero {
    position: relative;
    margin-top: 72px;
    min-height: clamp(300px, 44vh, 440px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.k-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.k-page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}

.k-page-hero:hover .k-page-hero__bg img {
    transform: scale(1.06);
}

.k-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(20, 16, 14, 0.45) 0%,
        rgba(31, 26, 23, 0.68) 42%,
        rgba(112, 90, 58, 0.78) 100%
    );
}

.k-page-hero--gallery .k-page-hero__overlay {
    background: linear-gradient(
        180deg,
        rgba(20, 16, 14, 0.5) 0%,
        rgba(31, 42, 15, 0.62) 40%,
        rgba(31, 26, 23, 0.82) 100%
    );
}

.k-page-hero__overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.k-page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 42rem;
    padding: 2.5rem 1.5rem 3.5rem;
}

.k-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #d9c08b;
    margin-bottom: 0.75rem;
}

.k-page-hero__eyebrow::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background: linear-gradient(90deg, #d9c08b, transparent);
    margin: 0.65rem auto 0;
}

.k-page-hero__title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.75rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #faf7f2;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.k-page-hero__subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
    max-width: 32rem;
}

.k-page-hero__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #d9c08b;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(217, 192, 139, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.k-page-hero__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.k-page-hero__curve svg {
    display: block;
    width: 100%;
    height: auto;
}
