:root {
    --text-color: #2D2D2D;
    --accent-color: #E3B23C;
    /* More vivid yellow-gold */
    --accent-dark: #4A5D52;
    /* Deep Green */
    --bg-color: #F7F6F2;
    /* Light Beige */
    --white: #ffffff;
    --black: #000000;
    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Noto Sans JP", sans-serif;
    --font-en: "Noto Serif JP", serif;
}

/* =========================================
   1. Reset & Base
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   2. Utilities
   ========================================= */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 100px 0;
}

h1,
h2,
h3,
.section-title,
.logo-container {
    font-family: var(--font-serif);
    font-weight: 500;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--accent-dark);
    letter-spacing: 0.15em;
}

.section-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* =========================================
   3. Animations
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-in-scale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUpModal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slow-zoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.25);
    }
}

@keyframes fade-in-scale-text {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes scroll-anim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* =========================================
   4. Layout: Header & Navigation
   ========================================= */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(74, 93, 82, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-icon-img {
    width: 48px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.nav-shop-name {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.nav-shop-sub {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.nav-shop-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.nav-en {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.nav-jp {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.nav-links li a:hover {
    opacity: 1;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    width: auto;
    height: 1px;
    background-color: var(--accent-color);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* =========================================
   5. Layout: Hero Section
   ========================================= */
.hero {
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fcfbf9;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    opacity: 0;
    animation: fade-in-scale 1.5s ease-out forwards;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slow-zoom 20s linear infinite alternate;
}

.hero-text-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    mix-blend-mode: overlay;
}

@supports (mix-blend-mode: overlay) {
    .hero-text-overlay {
        color: #fff;
        mix-blend-mode: normal;
    }
}

.hero-text-sub-top {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fade-in-up 1.2s ease-out 0.5s forwards;
    writing-mode: horizontal-tb;
}

.hero-text-main-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 500;
    margin: 0.5rem 0;
    letter-spacing: 0.2em;
    line-height: 1;
    opacity: 0;
    animation: fade-in-scale-text 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
    background: linear-gradient(to bottom, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.hero-text-sub-bottom {
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.4em;
    margin-top: 1rem;
    opacity: 0;
    animation: fade-in-up 1.2s ease-out 1.5s forwards;
    position: relative;
}

.hero-text-sub-bottom::before,
.hero-text-sub-bottom::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--white);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.7;
}

.hero-tagline {
    position: absolute;
    bottom: 10vh;
    left: 0;
    width: 100%;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.2em;
    text-align: center;
    opacity: 0;
    animation: fade-in-up 1.5s ease-out 2.0s forwards;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fade-in 1s ease-out 2.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--white);
    animation: scroll-anim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* =========================================
   6. Sections
   ========================================= */

/* Concept */
#concept {
    padding-top: 30px;
}

.lang-switch {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-family: var(--font-en);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #999;
    cursor: pointer;
    padding-bottom: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.lang-sep {
    color: #ddd;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
}

.concept-lang-group {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.concept-lang-group.active {
    display: block;
    animation: fadeInContent 0.8s ease forwards;
}

.concept-text {
    font-size: 1rem;
    line-height: 2.4;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: left;
}

.concept-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent-dark);
    line-height: 2.0;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.drop-cap {
    float: left;
    font-size: 3.2rem;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 8px;
    color: var(--accent-color);
    font-family: var(--font-serif);
}

#concept .concept-text:nth-of-type(1) {
    transition-delay: 0.1s;
}

#concept .concept-text:nth-of-type(2) {
    transition-delay: 0.2s;
}

#concept .concept-text:nth-of-type(3) {
    transition-delay: 0.3s;
}

#concept .concept-text:nth-of-type(4) {
    transition-delay: 0.4s;
}

#concept .concept-text:nth-of-type(5) {
    transition-delay: 0.5s;
}

/* Menu Section */
#menu {
    background-color: var(--white);
    position: relative;
    padding-bottom: 80px;
}

#menu::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background-color: var(--accent-color);
    opacity: 0.6;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.menu-item {
    position: relative;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;

    /* Refactor update for button compatibility */
    border: none;
    padding: 0;
    display: block;
    width: 100%;
    text-align: inherit;
    appearance: none;
    font-family: inherit;
    /* Ensure font inheritance */
}

.menu-image-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    /* Ensure span behaves as block */
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-item:hover .menu-image {
    transform: scale(1.1);
}

.menu-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: var(--white);
    transition: background 0.3s ease;
    width: 100%;
    /* Ensure full width for span */
}

.menu-item:hover .menu-content {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.menu-desc {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    font-family: var(--font-serif);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    /* Ensure block behavior for spans */
}

.menu-name {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    display: block;
    /* Ensure block behavior for spans */
}

.menu-detail {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: block;
    /* Ensure block behavior for spans */
}

.menu-content::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    margin-top: 15px;
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.8;
}

.menu-item:hover .menu-content::after {
    width: 40px;
}

/* Info Section */
.info-section {
    background-color: var(--accent-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.info-details {
    margin-top: 40px;
    font-size: 0.95rem;
    line-height: 2.2;
    position: relative;
    z-index: 1;
}

.info-details p {
    margin-bottom: 10px;
}

.info-details .tel {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    color: var(--accent-color);
    margin: 30px 0;
    letter-spacing: 0.1em;
}

.info-details .hours {
    border-top: 1px solid rgba(227, 178, 60, 0.3);
    border-bottom: 1px solid rgba(227, 178, 60, 0.3);
    padding: 30px 0;
    margin: 30px 0;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

/* Footer of the page */
footer {
    background-color: #232a26;
    color: #888;
    padding: 50px 0;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
}

/* =========================================
   7. Components
   ========================================= */

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Buttons */
.btn-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: 1px solid #ddd;
    border-radius: 50px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.btn-pdf:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(227, 178, 60, 0.2);
    transform: translateY(-2px);
}

.btn-pdf:hover::after {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-pdf::after {
    content: 'PDF';
    margin-left: 12px;
    font-size: 0.65rem;
    padding: 3px 8px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 12px;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-pdf.large {
    padding: 12px 30px;
    font-size: 0.9rem;
    border-color: var(--accent-dark);
    color: var(--accent-dark);
    border-width: 1px;
}

.btn-pdf.large:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 900px;
    height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-header {
    padding: 30px;
    text-align: center;
    background: var(--accent-dark);
}

.modal-header h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0;
    font-weight: 500;
}

.modal-header p {
    font-family: var(--font-serif);
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.menu-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    position: relative;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, rgba(227, 178, 60, 0.4), transparent) 1;
}

.menu-detail-item:last-child {
    border-bottom: none;
    border-image: none;
    margin-bottom: 0;
}

.menu-detail-img {
    flex: 1;
    max-width: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.menu-detail-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-detail-item:hover .menu-detail-img img {
    transform: scale(1.05);
}

.menu-detail-info {
    flex: 1.5;
}

.menu-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-bottom: 15px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    font-weight: 500;
    background: var(--accent-dark);
    color: var(--white);
    border: 1px solid var(--accent-dark);
}

.menu-tag.recommend {
    background: white;
    color: #dda62e;
    border: 1px solid #dda62e;
}

.limit-badge {
    font-size: 0.6em;
    margin-left: 10px;
    font-weight: normal;
    color: #000000;
    vertical-align: middle;
}

.menu-tag.period {
    background: #f4f4f4;
    color: #555;
    border: 1px solid #ddd;
}

.menu-detail-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: var(--font-serif);
    color: #222;
    opacity: 0;
    transform: translateY(10px);
}

.menu-detail-item.in-view .menu-detail-name {
    animation: fadeInUpModal 0.6s ease forwards 0.2s;
}

.menu-detail-name .en {
    display: block;
    font-size: 0.85rem;
    font-family: var(--font-en);
    background: linear-gradient(45deg, #b8860b, #e3b23c, #f0e68c, #e3b23c);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
    font-weight: normal;
    letter-spacing: 0.05em;

    animation: shimmer 3s linear infinite;
}

.menu-detail-desc {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(10px);
}

.menu-detail-item.in-view .menu-detail-desc {
    animation: fadeInUpModal 0.6s ease forwards 0.3s;
}

.menu-detail-price {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    color: #222;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: baseline;
    gap: 5px;
    opacity: 0;
    transform: translateY(10px);
}

.menu-detail-item.in-view .menu-detail-price {
    animation: fadeInUpModal 0.6s ease forwards 0.4s;
}

.menu-detail-price::before {
    content: '-';
    font-size: 1rem;
    color: #ccc;
    margin-right: 10px;
}

.menu-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}





/* =========================================
   8. Media Queries (Consolidated)
   ========================================= */

/* Desktop Specifics */
@media (min-width: 600px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 95%;
    }

    .menu-name {
        font-size: 1.4rem;
    }
}

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {

    /* Global Overrides */
    .sticky-nav {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-logo-container {
        height: 100%;
        max-width: 100%;
    }

    .hero-text-main-title {
        font-size: 3.5rem;
    }

    .hero-text-sub-top {
        font-size: 1rem;
    }

    .hero-text-sub-bottom {
        font-size: 0.9rem;
    }

    /* Navigation / Hamburger */
    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(74, 93, 82, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Mobile Menu Animation (Transform + Visibility) */
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s ease;
        z-index: 1500;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease 0s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-links li a {
        font-size: 1.5rem;
        padding: 20px 0;
        color: var(--white);
    }

    .nav-en {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }

    .nav-jp {
        display: block;
        font-size: 0.9rem;
    }

    /* Hamburger Animation to '×' */
    .hamburger-menu.active span {
        opacity: 0;
    }

    .hamburger-menu.active::after {
        content: '\00d7';
        /* × */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2.5rem;
        color: var(--white);
        line-height: 1;
        font-weight: normal;
        transition: transform 0.3s ease;
    }

    .hamburger-menu.active:hover::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    /* Modal Mobile Adjustments */
    .menu-detail-item {
        flex-direction: column;
        gap: 20px;
    }

    .menu-detail-img {
        max-width: 100%;
        width: 100%;
    }

    .modal-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 1.4rem;
    }

    .modal-header p {
        font-size: 0.75rem;
    }
}