:root {
    --primary-color: #a61d24;
    /* Akabeko Red */
    --secondary-color: #c5a059;
    /* Gold */
    --accent-color: #1e1e1e;
    /* Charcoal */
    --text-color: #333;
    --bg-color: #fcfaf2;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilities */
.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .md\:block {
        display: block !important;
    }
}

.sp-only {
    display: none;
}

@media (max-width: 767px) {
    .sp-only {
        display: block;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
    /* Prevent text selection and copying */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
.fv-title,
.section-title {
    font-family: 'Noto Serif JP', serif;
}

/* MUI-like Shadows */
.shadow-1 {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}

.shadow-2 {
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.shadow-3 {
    box-shadow: 0 3px 3px -2px rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12);
}

/* Moving CSS Gradient Backgrounds */
.bg-moving-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(270deg, #fcfaf2, #f5e6d3, #e8d0b5, #fcfaf2);
    background-size: 600% 600%;
    animation: gradientAnimation 20s ease infinite;
    opacity: 0.9;
}

.japanese-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Above gradient, below text */
    opacity: 0.05;
    background-image: radial-gradient(var(--secondary-color) 0.5px, transparent 0.5px);
    background-size: 10px 10px;
    pointer-events: none;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.btn-tabelog {
    background: #ee7700;
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-tabelog:hover {
    background: #cc6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 119, 0, 0.3);
}

/* Header CTA Refinement */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-insta-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.2);
}

.btn-insta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
    opacity: 0.9;
}

.btn-ai-reservation {
    position: relative;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #a61d24 0%, #d83a42 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(166, 29, 36, 0.3);
}

.btn-ai-reservation .btn-text {
    position: relative;
    z-index: 2;
}

.btn-ai-reservation i {
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.ai-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: aiRotate 4s linear infinite;
    z-index: 1;
}

@keyframes aiRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-ai-reservation:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(166, 29, 36, 0.4);
    background: linear-gradient(135deg, #c0252d 0%, #f04b54 100%);
}

.btn-ai-reservation:hover .ai-glow {
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
}

.btn-phone {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-phone:hover {
    background: #8e181e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 29, 36, 0.3);
}

/* Toggle Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px auto;
    transition: var(--transition);
    background-color: var(--accent-color);
    border-radius: 2px;
}

.mobile-nav-cta {
    display: none;
}

/* First View */
.fv {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: 80px;
}

.fv-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(to bottom, rgba(20,10,10,0.35) 0%, rgba(10,0,0,0.45) 100%),
        url('../img/pcfv01.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fv-content {
    text-align: left;
    color: var(--white);
    max-width: 600px;
    padding-left: 8%;
    z-index: 1;
}

.fv-sub {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.fv-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.fv-title span {
    display: block;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.15em;
    text-shadow:
        0 0 30px rgba(197, 160, 89, 0.7),
        0 2px 10px rgba(0, 0, 0, 0.6);
    position: relative;
}



.fv-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-align: left;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.fv-badge {
    position: absolute;
    top: 100px;
    right: 2.5rem;
    border: 1px solid var(--secondary-color);
    padding: 1.2rem 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(160deg, rgba(197,160,89,0.25) 0%, rgba(166,29,36,0.2) 100%);
    backdrop-filter: blur(6px);
    letter-spacing: 0.25em;
    color: var(--white);
    z-index: 2;
    border-radius: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    box-shadow:
        0 0 0 1px rgba(197,160,89,0.3),
        0 4px 20px rgba(197,160,89,0.3),
        inset 0 0 20px rgba(197,160,89,0.05);
    text-shadow: 0 0 12px rgba(197,160,89,0.8), 0 1px 4px rgba(0,0,0,0.5);
    animation: badgeGlow 2.5s ease-in-out infinite;
    overflow: hidden;
}

.fv-badge::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -60%;
    width: 40%;
    height: 300%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-15deg);
    animation: badgeShimmer 3.5s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(197,160,89,0.3),
            0 4px 20px rgba(197,160,89,0.3),
            inset 0 0 20px rgba(197,160,89,0.05);
    }
    50% {
        box-shadow:
            0 0 0 2px rgba(197,160,89,0.6),
            0 6px 30px rgba(197,160,89,0.55),
            inset 0 0 25px rgba(197,160,89,0.12);
    }
}

@keyframes badgeShimmer {
    0%   { top: -100%; }
    50%  { top: 120%; }
    100% { top: 120%; }
}

.fv-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 8s ease infinite;
    z-index: 0;
}

.cta-strip-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 0;
    flex-wrap: wrap;
}

.cta-strip-label {
    flex: 0 0 auto;
}

.cta-strip-kicker {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-strip-label p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin: 0;
}

.cta-strip-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: var(--transition);
}

.cta-btn:hover::after {
    opacity: 1;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.cta-btn__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    animation: pulse-icon 2.5s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.cta-btn__body {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.cta-btn__body small {
    font-size: 0.72rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.cta-btn__body {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* Phone button */
.cta-btn--phone {
    background: var(--primary-color);
}

/* Tabelog button */
.cta-btn--tabelog {
    background: #ee7700;
}

/* Instagram button */
.cta-btn--insta {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

@media (max-width: 768px) {
    .cta-strip-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 0;
    }
    .cta-strip-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
}

.en-title {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

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

/* 40/60 Layout */
.flex-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.flex-layout .text-col {
    flex: 0 0 40%;
}

.flex-layout .image-col {
    flex: 0 0 60%;
}

.flex-layout.reverse {
    flex-direction: row-reverse;
}

/* TV Section */
.recommend-list {
    list-style: none;
    margin-bottom: 2rem;
}

.recommend-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 500;
}

.recommend-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* TV Section Specific Adjustments */
.tv .flex-layout {
    align-items: stretch;
}

.tv .text-col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tv .image-col {
    flex: 0 0 50%;
    display: flex;
}

.tv .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.tv .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

@media (max-width: 1024px) {
    .tv .flex-layout {
        align-items: center;
    }
    .tv .text-col, .tv .image-col {
        flex: 0 0 100%;
    }
    .tv .image-box img {
        height: auto;
    }
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

/* ABOUT Section */
.about .section-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
}

.about .image-box {
    box-shadow: none;
}

/* SERVICE Section */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item .image-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.img-full {
    height: auto !important;
    min-height: 250px;
    object-fit: contain !important;
    background: rgba(0,0,0,0.02);
    width: 100%;
}

/* MENU SECTION */
.menu-recommend .section-title {
    margin-bottom: 1rem;
}

.menu-recommend .japanese-pattern {
    opacity: 0.04;
    background-image: 
        conic-gradient(var(--secondary-color) 0.25turn, transparent 0 0.5turn, var(--secondary-color) 0 0.75turn, transparent 0);
    background-size: 80px 80px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.col-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.2rem;
    border-left: 4px solid var(--primary-color);
    line-height: 1.4;
}

.menu-lead {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-lead h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.menu-lead h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 1.2rem auto 0;
}

.menu-lead p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Floating CTA Wrapper */
.floating-cta {
    position: fixed;
    bottom: 90px;
    /* Shifted up to make room for the scroll-top button */
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.cta-item {
    width: 50px;
    /* Slightly smaller for cleaner look */
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
}

.cta-item .label {
    position: absolute;
    right: 60px;
    background: var(--accent-color);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.cta-item:hover .label {
    opacity: 1;
    transform: translateX(0);
}

.cta-phone {
    background: var(--primary-color);
}

.cta-instagram {
    background: #e4405f;
}

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

/* Scroll to Top Button (Matched to Reference Image) */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #333333;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top i {
    font-size: 0.9rem;
    margin-top: -2px;
    /* Visual centering for arrow */
}

/* MUI Card Style Refinement */
.menu-card {
    background: var(--white);
    border-radius: 4px;
    /* Standard MUI Radius */
    overflow: hidden;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
    transition: var(--transition);
}

.menu-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.menu-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.menu-body {
    padding: 2rem;
}

.menu-card--featured {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.menu-card--featured .menu-img {
    width: 100%;
    background-color: #f8f1e7; /* Subtle matching background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-card--featured .menu-img img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-body {
    padding: 2.5rem;
}

.menu-items-flex {
    display: flex;
    gap: 3rem;
}

.menu-items-flex .menu-item-content {
    flex: 1;
}

.menu-items-flex .menu-item-content:first-child {
    border-right: 1px solid rgba(0,0,0,0.08);
    padding-right: 3rem;
}

@media (max-width: 768px) {
    .menu-items-flex {
        flex-direction: column;
        gap: 2rem;
    }

    .menu-items-flex .menu-item-content:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-right: 0;
        padding-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .menu-card--featured {
        grid-column: span 1;
    }
    
    .menu-card--featured .menu-img img {
        height: auto;
        width: 100%;
    }
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(166, 29, 36, 0.1);
    padding-bottom: 1rem;
}

.menu-header h4 {
    font-size: 1.6rem;
    color: var(--accent-color);
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .menu-header h4 {
        font-size: 1.3rem;
    }
}

.price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    white-space: nowrap;
}

.price::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    margin-top: 4px;
    opacity: 0.6;
    transform: scaleX(0.8);
    transform-origin: right;
    transition: var(--transition);
}

.menu-card:hover .price::after {
    transform: scaleX(1);
    opacity: 1;
}

.description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    text-align: justify;
    word-break: break-all;
}

/* OTHER MENU */
.other-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.other-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.other-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.other-category h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    transition: var(--transition);
}

.other-category h3 i {
    transition: var(--transition);
}

.other-category:hover h3 i {
    transform: scale(1.2);
}

.other-category ul {
    list-style: none;
}

.other-category li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    margin: 0 -1rem;
    border-bottom: 1px dashed #ccc;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 5px;
}

.other-category li:hover {
    background: rgba(166, 29, 36, 0.05);
    color: var(--primary-color);
    padding-left: 1.2rem;
}

.other-category li:last-child {
    border-bottom: none;
}

.other-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.other-img-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
}

.other-img-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

@media (max-width: 768px) {
    .other-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
    }
}

/* MESSAGE SECTION */
.message {
    background: #1a1a1a;
    color: var(--white);
    padding: 120px 0;
}

.message .bg-moving-gradient.dark-mode {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    opacity: 0.5;
}

.light-opacity {
    opacity: 0.1 !important;
}

.message .japanese-pattern {
    opacity: 0.1;
    background-image: 
        conic-gradient(rgba(255,255,255,0.2) 0.25turn, transparent 0 0.5turn, rgba(255,255,255,0.2) 0 0.75turn, transparent 0);
    background-size: 100px 100px;
}

.message-frame {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    border-radius: 2px;
}

.message-quote-top,
.message-quote-bottom {
    position: absolute;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.4;
}

.message-quote-top {
    top: 2rem;
    left: 2rem;
}

.message-quote-bottom {
    bottom: 2rem;
    right: 2rem;
}

.message .section-title {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.message .en-title {
    color: var(--secondary-color);
    opacity: 0.6;
}

.message-content {
    font-size: 1.15rem;
    line-height: 2.2;
    text-align: center;
    margin-bottom: 4rem;
    color: #ddd;
}

.message-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.signature-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2em;
}

.signature-stamp {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 2px;
    position: relative;
}

.signature-stamp::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--primary-color);
    opacity: 0.5;
}

/* CONTACT SECTION */
.contact {
    overflow: hidden;
}

.contact-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.access-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.access-logo .logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.access-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-card:hover {
    transform: translateX(10px);
    background: var(--white);
    border-left-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.card-content h4 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.card-content a {
    text-decoration: none;
    color: inherit;
}

.sns-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.sns-links .btn-insta,
.sns-links .btn-tabelog {
    flex: 0 0 auto;
    min-width: 210px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .sns-links .btn-insta,
    .sns-links .btn-tabelog {
        flex: 1;
        width: 100%;
    }
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-insta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-map:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(166, 29, 36, 0.2);
}

/* ACCESS Specific Symmetry Adjustments */
.contact-box.flex-layout {
    gap: 3rem;
    align-items: stretch;
}

.contact-box .text-col,
.contact-box .image-col {
    flex: 0 0 calc(50% - 1.5rem);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    margin-bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ccc;
    /* Fallback for missing image */
}

.map-placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    display: block;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .flex-layout {
        flex-direction: column !important;
        gap: 3rem;
    }

    .flex-layout .text-col,
    .flex-layout .image-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .fv-title {
        font-size: 3rem;
        flex-direction: column;
        gap: 0;
    }

    .fv-title span {
        writing-mode: horizontal-tb;
        letter-spacing: 0.05em;
    }

    .fv-content {
        text-align: center;
        padding-left: 0;
        max-width: 100%;
        padding: 0 2rem;
    }

    .fv-lead,
    .fv-badge {
        text-align: center;
    }

    .fv {
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 120px;
    }

    .fv-badge {
        display: block !important;
        position: absolute;
        top: auto;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        writing-mode: horizontal-tb;
        animation: none;
        background: none;
        border: none;
        box-shadow: none;
        text-shadow: 0 1px 4px rgba(0,0,0,0.8);
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
        letter-spacing: 0.1em;
        white-space: nowrap;
        width: auto;
        margin: 0;
        z-index: 5;
    }
    .fv-badge::before {
        display: none;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .other-menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .fv-bg-gradient {
        background-image:
            linear-gradient(to bottom, rgba(20,10,10,0.35) 0%, rgba(10,0,0,0.45) 100%),
            url('../img/spfv01.jpg');
        background-position: center top;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 1.5rem;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav a {
        font-size: 1.5rem;
    }

    .mobile-nav-cta {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2.5rem;
        width: 100%;
        max-width: 280px;
        align-items: stretch;
    }

    .mobile-nav-cta .btn-tabelog,
    .mobile-nav-cta .btn-phone,
    .mobile-nav-cta .btn-ai-reservation,
    .mobile-nav-cta .btn-insta {
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-nav-cta .btn-ai-reservation .ai-glow {
        display: none;
    }



    /* X Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .fv-title {
        font-size: 18px;
        flex-direction: row;
        gap: 0.3rem;
        align-items: flex-start;
    }

    .fv-title span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        letter-spacing: 0.12em;
        font-size: 18px;
    }

    .fv-lead,
    .fv-badge {
        text-align: right;
    }

    .fv-content {
        max-width: 40%;
        padding: 0 1.2rem 0 0;
        text-align: right;
    }


    .section-title {
        font-size: 1.8rem;
    }

    .contact-box {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .contact-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contact-card i {
        font-size: 1.5rem;
        width: 30px;
    }

    .card-content p {
        font-size: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .floating-cta {
        display: flex;
        right: 15px;
        bottom: 80px;
    }

    .scroll-top {
        display: flex;
        right: 15px;
        bottom: 20px;
    }

    body.menu-open .floating-cta,
    body.menu-open .scroll-top {
        display: none !important;
    }

    .message-frame {
        padding: 4rem 1.5rem;
    }

    .message-quote-top,
    .message-quote-bottom {
        font-size: 2rem;
    }

    p {
        font-size: 14px !important;
    }

    .recommend-list li {
        font-size: 14px;
    }

    .other-category li {
        font-size: 14px;
    }

    .message-content {
        text-align: left;
    }

    .menu-lead h3 {
        font-size: 1.2rem;
    }

    .logo img {
        height: 35px;
    }

    .access-logo .logo img {
        height: 40px;
    }
}

/* Specific for Mobile 375px */
@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .en-title {
        font-size: 0.9rem;
    }

    .contact-box {
        padding: 2rem 1rem;
    }

    .btn-insta,
    .btn-tabelog {
        width: 100%;
        justify-content: center;
    }

    .fv-title {
        font-size: 1.8rem;
    }

    .fv-lead {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-desc {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 400px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.6;
}

.footer-social a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer-nav h3,
.footer-contact h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer-contact p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: var(--white);
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.footer-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* IMAGE POPUP MODAL */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    display: none; /* Will be flex via JS if needed, but we can use display: none and toggle it */
}

.image-modal[style*="display: block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
    line-height: 1;
}

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

/* Clickable Images cursor */
.image-box img,
.menu-img img,
.other-img-item img,
.service-item .image-col img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-box img:hover,
.menu-img img:hover,
.other-img-item img:hover,
.service-item .image-col img:hover {
    filter: brightness(1.1);
}

@media only screen and (max-width: 768px){
    .modal-content {
        max-width: 100%;
        max-height: 100%;
    }
    .close-modal {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }
}