/* ── SIGNATURE DISH ── */
.signature {
    background: var(--black);
    color: white;
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
    /* padding-right: 0; */
}

/* .signature::before {
    content: 'とんこつ';
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 300px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
} */

.signature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('https://rakiyataramen.com/wp-content/uploads/2026/04/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    /* turns logo to white */
    opacity: 0.04;

    mix-blend-mode: normal;
    /* mas stable kaysa multiply sa dark bg */
    pointer-events: none;
}

.signature-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.signature .section-label span {
    color: rgba(255, 255, 255, 0.4);
}

.signature h2 {
    color: white;
}

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

.signature-desc {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.ramen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.stat-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
}

.stat-box .stat-num {
    font-family: 'Bangers', cursive;
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--red);
    line-height: 1;
    display: block;
}

.stat-box .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    display: block;
}

/* Ramen bowl illustration */
.bowl-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bowl-svg-wrap {
    /* width: min(380px, 100%); */
    position: relative;
}

.bowl-svg-wrap img {
    width: 1000px;
    height: 700px;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .bowl-svg-wrap img {
        width: 700px;
        height: 600px;
        object-fit: cover;
    }
}

@media (max-width: 1300px) {
    .bowl-svg-wrap img {
        width: 600px;
        height: 500px;
        object-fit: cover;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* SVG Bowl */
.bowl-svg {
    width: 100%;
    height: auto;
}