/* ── PAGE HERO ── */
.page-hero {
    padding-top: 68px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.page-hero-bg-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 500px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    right: -40px;
    bottom: -80px;
    user-select: none;
    z-index: 1;
}

.page-hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 3;
}

/* ── PHOTO PANEL (new) ── */
.page-hero-photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}

.page-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.page-hero.menu .page-hero-photo img {
    object-position: center 60%;
}

/* Left fade: photo dissolves into the dark background */
.page-hero-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            var(--black) 0%,
            rgba(10, 10, 10, 0.6) 30%,
            rgba(10, 10, 10, 0) 65%);
    z-index: 1;
}

/* Bottom fade */
.page-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            var(--black) 0%,
            rgba(10, 10, 10, 0.3) 25%,
            transparent 55%);
    z-index: 2;
}

.page-hero-logo-img {
    width: clamp(100px, 10vw, 150px);
    height: auto;
    opacity: 0.08;
    filter: brightness(10) saturate(0);
    mix-blend-mode: screen;
    pointer-events: none;
    user-select: none;
}

/* ── INNER CONTENT (constrained to left column) ── */
.page-hero-inner {
    position: relative;
    z-index: 6;
    padding: 72px 8% 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Constrain text to left side so it doesn't overlap the photo */
    max-width: 55%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.breadcrumb a {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-sep {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-current {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
}

/* Changed from grid to column — logo is now absolutely positioned */
.page-hero-content {
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.eyebrow-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--red);
}

.page-hero-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.page-hero h1 {
    font-family: 'Bangers', cursive;
    font-size: clamp(72px, 9vw, 128px);
    line-height: 0.9;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 0;
}

.page-hero h1 .accent {
    color: var(--red);
}

.page-hero h1 .outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    color: transparent;
}

/* ── BOTTOM RED STRIP (new) ── */
.page-hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7;
    background: var(--red);
    height: 4px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .page-hero {
        min-height: 480px;
    }

    /* On mobile, photo spans full width but is dimmed */
    .page-hero-photo {
        width: 100%;
        opacity: 0.3;
    }

    .page-hero-photo::before {
        background: linear-gradient(to right,
                var(--black) 0%,
                transparent 60%);
    }

    /* Text spans full width on mobile */
    .page-hero-inner {
        max-width: 100%;
    }
}