@media (max-width: 767px) {
    .info-item__content {
        word-break: break-all;
        overflow-wrap: anywhere;
    }
}
/* --- Section Image Wrapper --- */
.section__image-wrapper {
    margin-bottom: 32px;
}
/* --- Section Image Wrapper Centered --- */
.section__image-wrapper--centered {
        display: flex;
        justify-content: center;
        align-items: center;
}
@media (max-width: 767px) {
    .section__image--menu {
        max-width: 90vw;
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .menu-category__list li {
        font-size: 1.1rem;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    .menu-category__title {
        font-size: 1.3rem;
    }
    .menu-category__price {
        font-size: 1rem;
    }
}
/* --- Loader Component --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-loader-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.5s, visibility 1.5s;
}
.loader__image { max-width: 260px; }
.loader__center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}
.loader--hidden { opacity: 0; visibility: hidden; }

/* --- Hero Component --- */

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    display: block;
}
.hero__overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
}
.hero__logo {
    width: 180px;
    max-width: 60vw;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.hero__catch {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
    .hero__catch {
        font-size: 1.2rem;
    }
    .hero__logo {
        width: 110px;
    }
}


/* --- Header Logo Component --- */
.header__logo {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 80px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.header__logo.is-visible {
    opacity: 1;
}

/* --- Typography Components --- */
.section__title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.4;
    font-weight: var(--font-weight-bold);
}
.section__title--light { color: var(--color-text-light); }
.section__title--centered { text-align: center; }

.section__subtitle {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
    font-size: 1.1rem;
    color: var(--color-text);
}

.section__text { font-size: 1rem; line-height: 1.8; }
.section__text--light { color: var(--color-text-light); }
.section__text--centered { text-align: center; max-width: 800px; margin: 0 auto calc(var(--spacing-unit) * 4); }

.footer__text { font-size: 0.8rem; }


/* --- Image Components --- */
.section__image {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.section__image--menu {
    max-width: 500px;
    margin: 0 auto calc(var(--spacing-unit) * 4);
    display: block;
}

/* --- Navigation Components --- */
.header__nav-link {
    color: var(--color-primary);
    font-weight: bold;
    margin-left: calc(var(--spacing-unit) * 4);
    font-size: 1rem;
    font-family: var(--font-family-base);
    transition: opacity 0.3s;
}
.header__nav-link:hover { opacity: 0.7; }
        
.mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.mobile-nav-toggle__line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform 0.3s ease-in-out, opacity 0.3s;
}
.mobile-nav-toggle__text {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.7rem;
    letter-spacing: 1px;
}
.mobile-nav-toggle.is-active .mobile-nav-toggle__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.is-active .mobile-nav-toggle__line:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.is-active .mobile-nav-toggle__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__menu { display: flex; flex-direction: column; text-align: center; }
.mobile-nav__link {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 900;
    font-family: 'Arial Black', Impact, Arial, 'Noto Sans JP', sans-serif;
    padding: calc(var(--spacing-unit) * 2) 0;
}
.mobile-nav__instagram { margin-top: calc(var(--spacing-unit) * 5); }

.mobile-instagram-logo-stack {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.mobile-instagram-logo-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: #333;
    font-weight: bold;
    letter-spacing: 0.5px;
    background: none;
    padding: 0;
    border-radius: 0;
    pointer-events: none;
    z-index: 2;
}
        
/* --- Staff Card Component --- */
.staff-member { text-align: center; }
.staff-member__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto calc(var(--spacing-unit) * 2);
    border: 2px solid #f8f8f8;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.staff-member__name { font-size: 1.2rem; color: var(--color-primary); margin-bottom: var(--spacing-unit); }
.staff-member__title { font-style: italic; color: #777; margin-bottom: calc(var(--spacing-unit) * 2); }
.staff-member__bio { font-size: 0.9rem; }

/* --- Menu Card Component --- */
.menu-category {
    border: 1px solid #eee;
    padding: calc(var(--spacing-unit) * 3);
    border-radius: 8px;
}
.menu-category__title { font-size: 1.5rem; color: var(--color-primary); margin-bottom: var(--spacing-unit); }
.menu-category__price { color: #555; font-size: 0.9rem; margin-bottom: calc(var(--spacing-unit) * 2); }
.menu-subcategory__title { font-weight: var(--font-weight-bold); color: #444; margin-top: calc(var(--spacing-unit) * 2); margin-bottom: var(--spacing-unit); border-bottom: 1px solid #eee; padding-bottom: 4px;}
.menu-category__list { list-style: none; padding-left: 0; }
.menu-category__list li { margin-bottom: calc(var(--spacing-unit) * 0.5); }
        
/* --- Info Card Component --- */
.info-item {
    background: var(--color-background);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 4px;
}
.info-item__title { font-size: 1rem; color: var(--color-primary); margin-bottom: var(--spacing-unit); }
.info-item__content { font-size: 0.9rem; line-height: 1.6; }
.instagram-link-wrapper { text-align: center; margin-top: calc(var(--spacing-unit) * 5); }

.instagram-logo-stack {
    position: relative;
    display: inline-block;
}
.instagram-logo-stack .instagram-link {
    display: inline-block;
    position: relative;
}
.instagram-logo-label {
            position: absolute !important;
                top: -22px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            font-size: 0.7rem !important;
            color: #333 !important;
            background: none !important;
            padding: 0 !important;
            border-radius: 0 !important;
            pointer-events: none !important;
            z-index: 2 !important;
            font-weight: bold !important;
            letter-spacing: 0.5px !important;
}

/* --- Animation Class --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .section__title { font-size: 2.5rem; }
}

@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none;
    }
}

