.menu-body {
    padding: 0 8%;
}

/* CATEGORY BLOCK */
.menu-cat {
    padding: 72px 0 60px;
    border-bottom: 1px solid var(--warm-gray);
}

.menu-cat:last-child {
    border-bottom: none;
}

.cat-header {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
}

.cat-jp-big {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 80px;
    color: rgba(219, 5, 5, 0.07);
    line-height: 0.85;
    user-select: none;
    flex-shrink: 0;
}

.cat-title-block {
    flex: 1;
}

.cat-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cat-name {
    font-family: 'Bangers', cursive;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 2px;
    line-height: 0.95;
}

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

.cat-desc {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    text-align: right;
}

.cat-rule {
    height: 1px;
    background: var(--warm-gray);
    margin-bottom: 36px;
}

/* ── RAMEN GRID: big cards ── */
.ramen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
}

.ramen-card {
    background: var(--off-white);
    display: grid;
    grid-template-rows: 400px 1fr;
    transition: background 0.2s;
    overflow: hidden;
}

.ramen-card:nth-of-type(4) .ramen-card-img,
.ramen-card:nth-of-type(5) .ramen-card-img {
    object-position: center -100px;
}

.ramen-card:nth-of-type(3) .ramen-card-img {
    object-position: center -130px;
}

.ramen-card:hover {
    background: white;
}

.ramen-card.featured {
    grid-column: span 2;
    grid-template-rows: auto;
    grid-template-columns: 50% 1fr;
    background: var(--black);
    color: white;
    max-height: 400px;
}

.ramen-card.featured:hover {
    background: #111;
}

.ramen-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ramen-card:hover .ramen-card-img {
    transform: scale(1.03);
}

.ramen-card-img-wrap {
    overflow: hidden;
}

.ramen-card.featured .ramen-card-img-wrap {
    height: 100%;
}

.ramen-card-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ramen-card-num {
    font-family: 'Bangers', cursive;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(219, 5, 5, 0.45);
    margin-bottom: 8px;
}

.ramen-card-name {
    font-family: 'Bangers', cursive;
    font-size: clamp(22px, 2.5vw, 30px);
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.ramen-card.featured .ramen-card-name {
    font-size: clamp(32px, 3.5vw, 46px);
    color: white;
}

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

.ramen-card.featured .ramen-card-jp {
    color: rgba(255, 255, 255, 0.3);
}

.ramen-card-desc {
    font-family: 'Lora', serif;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 16px;
}

.ramen-card.featured .ramen-card-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.ramen-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.ramen-price {
    font-family: 'Bangers', cursive;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--red);
}

.ramen-card.featured .ramen-price {
    font-size: 40px;
}

.ramen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.rtag {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 2px;
    background: rgba(219, 5, 5, 0.08);
    color: var(--red);
}

.rtag.dark {
    background: rgba(219, 5, 5, 0.2);
    color: #ff6666;
}

/* ── STANDARD GRID: starters, bento, sushi ── */
.std-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
}

#bento .std-grid {
    grid-template-columns: repeat(3, 1fr);
}

.std-card {
    background: var(--off-white);
    display: grid;
    grid-template-rows: 250px 1fr;
    transition: background 0.2s;
    overflow: hidden;
}

.std-card:hover {
    background: white;
}

.std-card-img-wrap {
    overflow: hidden;
}

.std-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.std-card:hover .std-card-img {
    transform: scale(1.04);
}

.std-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
}

.std-card-num {
    font-family: 'Bangers', cursive;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(219, 5, 5, 0.3);
    margin-bottom: 6px;
}

.std-card-name {
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 6px;
}

.std-card-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 14px;
}

.std-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.std-price {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--red);
}

.std-tag {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 2px;
    background: rgba(219, 5, 5, 0.08);
    color: var(--red);
}

/* ── DRINKS: 5-col horizontal strip ── */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--warm-gray);
    border: 1px solid var(--warm-gray);
    border-radius: 4px;
    overflow: hidden;
}

.drink-card {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
    overflow: hidden;
}

.drink-card:hover {
    background: white;
}

.drink-img-wrap {
    height: 200px;
    overflow: hidden;
}

.drink-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.drink-card:hover .drink-img {
    transform: scale(1.04);
}

.drink-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drink-name {
    font-family: 'Bangers', cursive;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: var(--black);
    margin-bottom: 6px;
    line-height: 1.1;
}

.drink-desc {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 10px;
}

.drink-price {
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--red);
    margin-top: auto;
}

/* ADD-ONS DARK SECTION */
.addons-section {
    background: var(--black);
    color: white;
    margin: 60px -8% 0;
    padding: 72px 8%;
    position: relative;
    overflow: hidden;
}

.addons-section::before {
    content: 'トッピング';
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 180px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    pointer-events: none;
    white-space: nowrap;
}

.addons-inner {
    position: relative;
    z-index: 2;
}

.addons-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.addons-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.addons-label span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.addons-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: 2px;
    color: white;
    margin-bottom: 36px;
}

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

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

.addon-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: background 0.2s;
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.addon-icon {
    font-size: 22px;
    margin-bottom: 2px;
}

.addon-name {
    font-family: 'Bangers', cursive;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: white;
}

.addon-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    flex: 1;
}

.addon-price {
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--red);
    margin-top: 4px;
}

/* INFO STRIP */
.info-strip {
    background: var(--cream);
    border-top: 1px solid var(--warm-gray);
    border-bottom: 1px solid var(--warm-gray);
    padding: 28px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    width: 30px;
    height: 30px;
    background: rgba(219, 5, 5, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.info-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.info-text strong {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1px;
}