@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Lato:wght@300;400&family=Shippori+Mincho:wght@400;500;600&display=swap');

:root {
    --primary-color: #3a4a1e;
    --text-color: #2c2c2c;
    --bg-color: #f4f4f0;
    --accent-color: #d4a373;
    --border-color: rgba(58, 74, 30, 0.15);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --font-jp: 'Shippori Mincho', serif;
    --easing: cubic-bezier(0.2, 1, 0.3, 1);
    --focus-ring-color: #2d6dc4;
    --focus-ring-width: 3px;
    --focus-ring-offset: 3px;
}

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

body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

html {
    overflow-x: hidden;
}

/* Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(58, 74, 30, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--easing), width 0.3s, height 0.3s, background-color 0.3s;
}

body.hovering .cursor {
    width: 0;
    height: 0;
}

body.hovering .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(58, 74, 30, 0.05);
    border-color: var(--primary-color);
    backdrop-filter: blur(2px);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.05em;
}

p.jp {
    font-family: var(--font-jp);
}

.center { text-align: center; }

:where(a, button, input, select, textarea):focus-visible {
    outline: var(--focus-ring-width) solid var(--focus-ring-color);
    outline-offset: var(--focus-ring-offset);
}

/* Typography Utilities */
.en-title {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding 0.3s var(--easing), background-color 0.3s, border-bottom 0.3s;
    color: #fff; /* Default white text */
}

.header.scrolled {
    padding: 1rem 5%;
    background: rgba(244, 244, 240, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-color); /* Return to dark text */
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: inherit; /* Inherit form header */
    letter-spacing: 0.1em;
    z-index: 1001;
}

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

.nav-list a {
    text-decoration: none;
    color: inherit; /* Inherit form header */
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor; /* Use current text color */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--easing);
}

.nav-list a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-external {
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 8px 18px !important;
    transition: all 0.3s var(--easing);
}

.nav-external:hover {
    background: #fff;
    color: var(--primary-color) !important;
    border-color: #fff;
}

.header.scrolled .nav-external:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}

.nav-external::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 6px;
    background: none;
    border: none;
    z-index: 1001;
    touch-action: manipulation;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: all 0.3s var(--easing);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s ease-out forwards;
}

@keyframes zoomOut {
    to { transform: scale(1); }
}

/* Light overlay for "Komorebi" effect - Darkened for better readability */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    animation: ambientLight 8s ease-in-out infinite alternate;
}

@keyframes ambientLight {
    0% { opacity: 0.6; }
    100% { opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    /* Removed mix-blend-mode to ensure text is solid white on dark overlay */
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3); /* Enhanced shadow */
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    font-family: var(--font-jp);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Enhanced shadow */
    color: #f0f0f0; /* Slightly off-white for better readability */
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none; /* Remove underline */
    transition: all 0.3s var(--easing);
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600; /* Added weight */
}

.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.6); /* Lighter border */
    color: #fff;
    background: rgba(0,0,0,0.2); /* Added background for contrast */
    backdrop-filter: blur(4px);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 12rem 5%;
}

/* Highlights (Redesigned) */
.project-highlights {
    padding: 12rem 5% 6rem;
    position: relative;
    z-index: 2;
    background: var(--bg-color); /* Ensure background covers hero bottom if needed */
}

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

.highlights-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
}

/* Add a decorative line */
.highlights-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(58, 74, 30, 0.3), transparent);
}

.highlight-item {
    position: relative;
    padding-top: 2rem;
    transition: transform 0.5s var(--easing);
}

.highlight-item:hover {
    transform: translateY(-10px);
}

.highlight-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: rgba(212, 163, 115, 0.2); /* Transparent accent */
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: -1rem;
    z-index: -1;
    font-weight: 700;
}

.highlight-head {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.highlight-en {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.highlight-head h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-family: var(--font-jp);
    letter-spacing: 0.1em;
}

.highlight-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.9;
    font-weight: 400;
    padding-left: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 400;
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: sepia(10%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    z-index: -1;
}

.vertical-text-container {
    writing-mode: vertical-rl;
    text-orientation: upright;
    height: 400px;
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 2.5;
    letter-spacing: 0.15em;
    color: #4a4a4a;
}

/* Divider */
.parallax-divider {
    height: 85vh;
    background-image: url('./assets/images/parallax-divider.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 2rem; /* Increased top padding to push text down */
    padding-bottom: 0rem; /* Narrowed bottom padding */
}

.parallax-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* Darker overlay */
}

.divider-content {
    padding-bottom: 0; /* Revert reduction */
}

.divider-content h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
    text-align: center;
}

.vertical-message {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--font-jp);
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 2;
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: none;
    border: 1px solid transparent;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    color: #888;
    transition: all 0.3s;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    border-color: var(--border-color);
    color: var(--primary-color);
    background: #fff;
}

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

.menu-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateX(10px);
}

.menu-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--easing);
}

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

.menu-info {
    flex-grow: 1;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-info h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    font-family: var(--font-jp);
}

.menu-info .price {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.1rem;
}

.menu-info .desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

/* Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 1 / 6; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 6 / 13; grid-row: 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--easing);
}

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

/* Footer (Redesigned) */
.footer {
    background: #1a1c18;
    color: #e0e0e0;
    padding-top: 0;
}

.footer-cta {
    position: relative;
    background: #1a1c18;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    padding: 12rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7) contrast(1.1) sepia(0.2);
    transform: scale(1.1);
    transition: transform 1.5s var(--easing);
}

.footer-cta:hover .cta-bg-image img {
    transform: scale(1.05);
}

.cta-inner .container {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 4rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.footer-cta h2 em {
    font-style: italic;
    font-family: var(--font-jp);
    color: var(--accent-color);
    display: block;
    margin-top: 1.5rem;
    font-size: 0.85em;
    font-weight: 300;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.instagram-cta {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: var(--font-heading);
    transition: all 0.5s var(--easing);
    position: relative;
    overflow: hidden;
}

.instagram-cta.is-demo-link {
    pointer-events: none;
    cursor: default;
    opacity: 0.9;
}

.instagram-cta .btn-text {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-right: 3rem;
}

.instagram-cta .btn-icon {
    font-size: 1.2rem;
    margin-right: 1.2rem;
    color: var(--accent-color);
}

.instagram-cta .btn-arrow {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #1a1c18;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.5s var(--easing), background-color 0.3s;
}

.instagram-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.instagram-cta:hover .btn-arrow {
    transform: translateX(5px) rotate(-45deg);
    background: var(--accent-color);
    color: #fff;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 6rem;
    padding: 8rem 5%;
}

.footer-brand .logo {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-family: var(--font-jp);
}

.footer-nav-groups {
    display: grid;
    gap: 2.5rem;
}

.info-block h3 {
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a,
.socials .is-demo-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none; /* Remove underline */
    transition: all 0.3s;
}

.socials a:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

.socials .is-demo-link {
    pointer-events: none;
    cursor: default;
    opacity: 0.72;
}

.socials-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #9f9f9f;
}

.footer-map-container {
    height: 100%;
    min-height: 400px;
}

.footer-map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.6s var(--easing);
}

.footer-map:hover {
    filter: grayscale(0);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 5%;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--easing);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .header { padding: 1.5rem 5%; }
    
    .hero h1 {
        font-size: 2.8rem; /* Smaller for mobile */
    }

    .hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        width: min(320px, calc(100vw - 3rem));
        margin-inline: auto;
    }

    .hero .hero-btn {
        width: 100%;
        padding: 0.95rem 1.4rem;
    }
    
    .section {
        padding: 8rem 5%;
    }
    
    .project-highlights {
        padding: 8rem 5% 4rem;
    }

    .highlights-list {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .highlights-list::before {
        display: none; /* Remove horizontal line on mobile */
    }

    .highlight-item {
        border-left: 1px solid rgba(58, 74, 30, 0.2);
        padding-left: 1.5rem;
        padding-top: 0;
    }

    .highlight-num {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 0.5rem;
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image { order: 2; }
    .about-text { order: 1; }

    .about-image::before {
        display: none;
    }
    
    .vertical-text-container {
        writing-mode: horizontal-tb;
        height: auto;
        margin-top: 1rem;
    }
    
    .vertical-message {
        writing-mode: horizontal-tb; /* Horizontal for mobile divider too */
        line-height: 1.5;
    }

    .menu-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .tab-btn {
        padding: 0.75rem 0.8rem;
        border-color: var(--border-color);
        color: var(--primary-color);
        background: rgba(255, 255, 255, 0.9);
        font-size: 0.82rem;
        letter-spacing: 0.02em;
    }

    .tab-btn.active {
        border-color: var(--primary-color);
        background: var(--primary-color);
        color: #fff;
    }

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

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .menu-info .price {
        font-size: 1rem;
    }
    
    .gallery-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-item img { height: 250px; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-map {
        min-height: 300px;
    }

    .hamburger {
        display: flex;
        color: rgba(255, 255, 255, 0.95);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
    }

    .header.scrolled .hamburger {
        color: var(--primary-color);
        filter: none;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(244, 244, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--easing);
        z-index: 1000;
    }

    .nav-list.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list a {
        color: var(--text-color);
        font-size: 1.2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 0.8rem 1.2rem;
    }

    .copyright {
        overflow-wrap: anywhere;
    }

    .scroll-indicator {
        display: none;
    }

    .reviews-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .review-card {
        padding: 2rem;
        width: 100%;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        width: 100%;
        text-align: center;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }

    .cursor, .cursor-follower { display: none; }
}

/* =============================================
   Hero Stagger Animation
   ============================================= */
.hero-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100%);
    animation: heroLineReveal 1s var(--easing) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.3s; }
.hero-line:nth-child(2) { animation-delay: 0.6s; }

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

.hero-subtitle {
    opacity: 0;
    animation: heroFadeUp 1s var(--easing) 0.9s forwards;
}

.hero .hero-actions {
    opacity: 0;
    animation: heroFadeUp 1s var(--easing) 1.1s forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   Scroll Indicator
   ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

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

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* =============================================
   Menu Item Transition Fix
   ============================================= */
.menu-item {
    transition: transform 0.3s var(--easing), opacity 0.4s ease;
}

/* =============================================
   Gallery Hover Overlay
   ============================================= */
.gallery-item {
    cursor: pointer;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(58, 74, 30, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s var(--easing);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =============================================
   Reviews Section
   ============================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.review-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.5s var(--easing), box-shadow 0.5s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.review-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.review-text {
    font-family: var(--font-jp);
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.review-name {
    font-family: var(--font-jp);
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-date {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.1em;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    background: none;
    border: none;
    font-family: var(--font-jp);
    font-size: 1.05rem;
    color: var(--text-color);
    text-align: left;
    transition: color 0.3s;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s var(--easing);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: transform 0.3s var(--easing), background 0.3s;
}

.faq-icon::before {
    width: 12px;
    height: 1px;
}

.faq-icon::after {
    width: 1px;
    height: 12px;
}

.faq-item.active .faq-icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #fff;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--easing), padding 0.5s;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-family: var(--font-jp);
    font-size: 0.9rem;
    color: #666;
    line-height: 2;
    padding-left: 0.5rem;
}

/* =============================================
   Reservation Section
   ============================================= */
.reservation {
    background: #fff;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-jp);
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-jp);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: auto;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 74, 30, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit {
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s var(--easing);
    margin-top: 1rem;
    align-self: flex-start;
    cursor: pointer;
}

.form-submit:hover {
    background: #2a3815;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58, 74, 30, 0.2);
}

.form-note {
    font-size: 0.8rem;
    color: #999;
    font-family: var(--font-jp);
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s var(--easing);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-card h3 {
    font-family: var(--font-jp);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
}

.info-card-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.info-card-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.3rem;
}

/* =============================================
   Lightbox
   ============================================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--easing);
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: transparent;
    z-index: 0;
    cursor: pointer;
}

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

.lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.4s var(--easing);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.lightbox-open .lightbox,
body.lightbox-open .lightbox * {
    cursor: auto !important;
}

body.lightbox-open .cursor,
body.lightbox-open .cursor-follower {
    opacity: 0;
}

/* =============================================
   iOS Parallax Fix
   ============================================= */
@supports (-webkit-touch-callout: none) {
    .parallax-divider {
        background-attachment: scroll;
    }
}

@media (hover: none) {
    .parallax-divider {
        background-attachment: scroll;
    }
}

/* =============================================
   Mobile Override (Late Cascade Guard)
   ============================================= */
@media (max-width: 768px) {
    .reviews-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid .review-card {
        width: 100%;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reservation-grid > * {
        min-width: 0;
    }

    .reservation-form,
    .reservation-info {
        min-width: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row > * {
        min-width: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .info-card-value,
    .info-card-note,
    .form-note {
        overflow-wrap: anywhere;
    }
}
