/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6% 80px 8%;
    position: relative;
    z-index: 2;
}

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

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

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

.hero-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

h1 {
    font-family: 'Bangers', cursive;
    font-size: clamp(64px, 7vw, 96px);
    line-height: 0.95;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 28px;
}

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

h1 .outline {
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
}

.hero-desc {
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--red);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.btn-ghost:hover {
    gap: 14px;
}

.btn-ghost::after {
    content: '→';
    font-size: 16px;
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    overflow: hidden;
}

.hero-kanji {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 420px;
    font-weight: 700;
    color: rgba(219, 5, 5, 0.05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.06;
    filter: grayscale(100%) contrast(120%);
    mix-blend-mode: multiply;
    width: 500px;
}

.hero-right::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 0;
    bottom: 0;
    width: 120px;
    background: var(--off-white);
    transform: skewX(-4deg);
    z-index: 1;
}

/* ── SLIDER ── */
.slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.slide > img {
    width: 1000px;
    height: 500px;
    object-fit: cover;
}

/* Food image — PNG with transparent bg recommended */
.slide-img {
    width: min(300px, 75%);
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.13));
    animation: float 4s ease-in-out infinite;
}

/* Stagger float per slide so they don't all move together */
.slide:nth-child(2) .slide-img {
    animation-delay: -1.3s;
}

.slide:nth-child(3) .slide-img {
    animation-delay: -2.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.slide-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.slide-tag {
    background: var(--red);
    color: white;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 2px;
}

.slide-name {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    z-index: 10;
    transition: background 0.15s, transform 0.15s;
}

.slider-arrow:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 52px;
}

.slider-arrow.next {
    right: 16px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(26, 16, 8, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: var(--red);
    transform: scale(1.35);
}