/* ══════════════════════════════════════════════════════════════
   KOMÉ · KOMÉ — Refined Japanese Cuisine
   A premium dining experience in the heart of Paris
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&family=Noto+Serif+JP:wght@200;300;400;500&display=swap');

:root {
    /* Refined Color System */
    --ink: #0a0a0a;
    --charcoal: #151515;
    --graphite: #222;
    --slate: #3a3a3a;
    --stone: #5a5a5a;
    --pewter: #7a7a7a;
    --silver: #9a9a9a;
    --mist: #c5c5c5;
    --cloud: #e5e5e5;
    --pearl: #f0f0f0;
    --snow: #f8f8f8;
    --white: #fff;
    
    /* Warm Neutrals */
    --linen: #faf9f6;
    --cream: #f5f3ef;
    --sand: #e8e4dc;
    
    /* Accent Colors */
    --gold: #b89650;
    --gold-light: #d4b06a;
    --gold-dark: #96783e;
    --gold-muted: rgba(184, 150, 80, 0.15);
    
    --terracotta: #c2785c;
    --sage: #8a9a7a;
    --indigo: #4a5568;
    
    /* Functional */
    --success: #5a8a5a;
    --error: #c45a5a;
    --teal: #00b8a9;
    
    /* Typography */
    --font-display: 'Cormorant', 'Noto Serif JP', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-jp: 'Noto Serif JP', serif;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    
    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
    
    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body { 
    font-family: var(--font-body);
    background: var(--linen);
    color: var(--charcoal);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9998;
}

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

h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

a { 
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
}

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

button { 
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container { 
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ═══════════════════════════════════════
   LOADER
═══════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden { 
    opacity: 0;
    visibility: hidden;
}

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

.loader-icon { 
    width: 42px;
    height: 42px;
    margin: 0 auto var(--space-6);
    opacity: 0.8;
}

.loader-text { 
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--pearl);
    letter-spacing: 0.4em;
    margin-bottom: var(--space-8);
}

.loader-bar { 
    width: 40px;
    height: 1px;
    background: var(--slate);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress { 
    width: 50%;
    height: 100%;
    background: var(--gold);
    animation: loadSlide 0.8s var(--ease) infinite;
}

@keyframes loadSlide { 
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-5) 0;
    transition: all 0.5s var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: var(--space-3) 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Dark text by default for light hero */
.logo-light { opacity: 0; }
.logo-dark { opacity: 1; }
.nav-links a { color: var(--charcoal); }
.menu-btn span { background: var(--charcoal); }

.nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { 
    position: relative;
    height: 32px;
}

.nav-logo img { height: 100%; width: auto; }

.logo-dark { 
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s var(--ease);
}

.logo-light { 
    transition: opacity 0.4s var(--ease);
}

.nav-links { 
    display: none;
    list-style: none;
    gap: var(--space-10);
}

.nav-links a { 
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-1) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

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

@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-actions { 
    display: none;
    align-items: center;
    gap: var(--space-5);
}

@media (min-width: 1024px) { .nav-actions { display: flex; } }

.lang-switch { 
    display: flex;
    background: var(--pearl);
    padding: 3px;
    border-radius: var(--radius-sm);
    gap: 2px;
}

.lang-btn { 
    padding: 5px 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--pewter);
    border-radius: 4px;
    transition: all 0.25s var(--ease);
}

.lang-btn.active { 
    background: var(--charcoal);
    color: white;
}

.nav-cta { 
    padding: 10px 24px;
    background: var(--gold);
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}

.nav-cta:hover { 
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.menu-btn { 
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    position: relative;
    z-index: 1001;
}

.menu-btn span { 
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}

.menu-btn.active span { 
    background: var(--white);
}

.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) { .menu-btn { display: none; } }

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-muted) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.mobile-nav.active { opacity: 1; visibility: visible; }

.mobile-nav-logo {
    position: absolute;
    top: var(--space-5);
    left: var(--space-6);
}

.mobile-nav-logo img {
    height: 32px;
    width: auto;
}

.mobile-nav-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.mobile-nav.active .mobile-nav-content {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content > a {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--pearl);
    padding: var(--space-4) 0;
    letter-spacing: 0.03em;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-nav-content > a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.mobile-nav-cta {
    margin-top: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.mobile-nav-cta .btn {
    min-width: 200px;
    display: inline-flex;
}

.mobile-nav.active .mobile-nav-cta .btn {
    display: inline-flex;
    visibility: visible;
    opacity: 1;
}

.mobile-lang-container {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
}

.mobile-lang { 
    margin: 0;
}

/* ═══════════════════════════════════════
   HERO - Light Theme
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: white;
}

.hero * {
    pointer-events: auto;
}

.hero-light {
    background: white;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 130px var(--space-6) var(--space-10);
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-5);
    background: var(--linen);
    border: 1px solid var(--cloud);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge-light {
    background: var(--cream);
    border-color: var(--sand);
}

.status-dot { 
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--success); }
    50% { opacity: 0.6; box-shadow: 0 0 4px var(--success); }
}

.status-dot.closed { 
    background: var(--error);
    box-shadow: 0 0 10px var(--error);
}

.badge-text { 
    color: var(--charcoal);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title { 
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: var(--space-4);
    letter-spacing: 0.01em;
    line-height: 1;
}

.title-dot { 
    color: var(--gold);
    font-style: italic;
}

.hero-tagline { 
    font-size: 0.8rem;
    color: var(--stone);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.hero-jp { 
    font-family: var(--font-jp);
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: var(--space-8);
    font-weight: 400;
}

.hero-features { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3) var(--space-6);
    margin-bottom: var(--space-8);
}

.feature { 
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--stone);
    font-size: 0.82rem;
    font-weight: 400;
}

.feature svg { 
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    stroke-width: 2.5;
}

.hero-cta { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    position: relative;
    z-index: 9999;
}

.btn-order {
    background: var(--gold);
    color: white;
    padding: 16px 40px;
    font-size: 0.9rem;
    gap: var(--space-3);
    position: relative;
    z-index: 9999;
    cursor: pointer;
}

.btn-order:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 80, 0.3);
}

.btn-order svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.btn-order:hover svg {
    transform: translateX(4px);
}

/* Hero Image */
.hero-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    max-height: 300px;
}

.hero-illustration {
    background: white;
    max-height: 300px;
}

.hero-illustration img {
    width: 100%;
    max-width: 600px;
    max-height: 300px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 120px var(--space-8) var(--space-8);
    }

    .hero-image {
        padding: 0 var(--space-8) var(--space-8);
        max-height: 450px;
    }

    .hero-illustration {
        max-height: 400px;
    }

    .hero-illustration img {
        max-width: 650px;
        max-height: 400px;
    }
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        flex: none;
        padding: 120px var(--space-10) var(--space-6);
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        flex: none;
        height: auto;
        padding: 0 var(--space-10) var(--space-10);
        max-height: 500px;
    }

    .hero-illustration {
        max-height: 450px;
    }

    .hero-illustration img {
        max-width: 700px;
        max-height: 450px;
    }
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    pointer-events: none;
}

.btn:hover::before { opacity: 1; }

.btn svg { width: 18px; height: 18px; }

.btn-deliveroo { 
    background: var(--teal);
    color: white;
}

.btn-deliveroo:hover { 
    background: #00a396;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 184, 169, 0.3);
}

.btn-uber { 
    background: white;
    color: var(--ink);
}

.btn-uber:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-outline { 
    background: rgba(255,255,255,0.03);
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover { 
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.btn-gold { 
    background: var(--gold);
    color: white;
}

.btn-gold:hover { 
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
section { 
    padding: var(--space-20) 0;
    position: relative;
}

@media (min-width: 768px) { 
    section { padding: var(--space-24) 0; }
}

.section-header { 
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-tag { 
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title { 
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
}

/* ═══════════════════════════════════════
   STORY
═══════════════════════════════════════ */
.story { 
    background: white;
}

.story-grid { 
    display: grid;
    gap: var(--space-12);
    align-items: center;
    justify-items: center;
}

@media (min-width: 900px) { 
    .story-grid { 
        grid-template-columns: 0.9fr 1fr;
        gap: var(--space-16);
        justify-items: start;
    }
}

.img-stack { 
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

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

@media (min-width: 900px) {
    .story-content {
        text-align: left;
    }
}

.img-main { 
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.img-accent { 
    position: absolute;
    width: 48%;
    max-width: 180px;
    bottom: -24px;
    right: -16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.story-content h2 { 
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 300;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.story-content p { 
    color: var(--stone);
    font-size: 0.95rem;
    margin-bottom: var(--space-4);
    line-height: 1.8;
}

.story-stats { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--cloud);
}

@media (min-width: 900px) {
    .story-stats {
        justify-content: flex-start;
    }
}

.stat { 
    text-align: center;
    flex: 1 1 auto;
    min-width: 80px;
    max-width: 120px;
}

.stat-value { 
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
}

.stat-label { 
    font-size: 0.75rem;
    color: var(--pewter);
    margin-top: var(--space-1);
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   SPECIALTIES
═══════════════════════════════════════ */
.specialties { 
    background: var(--linen);
}

.specialties-grid { 
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 260px));
    gap: var(--space-6);
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.specialty-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease);
    border: 1px solid rgba(0,0,0,0.03);
}

.specialty-card:hover { 
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.specialty-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.specialty-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.specialty-card:hover .specialty-image::after { opacity: 1; }

.specialty-image img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.specialty-card:hover .specialty-image img { 
    transform: scale(1.1);
}

.specialty-content { 
    padding: var(--space-4) var(--space-4) var(--space-4);
}

.specialty-content h3 { 
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.jp-name { 
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: var(--space-2);
    letter-spacing: 0.08em;
}

.specialty-content > p:not(.jp-name) { 
    color: var(--pewter);
    font-size: 0.75rem;
    margin-bottom: var(--space-3);
    line-height: 1.55;
}

.specialty-price { 
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.72rem;
    color: var(--silver);
    padding-top: var(--space-3);
    border-top: 1px solid var(--pearl);
}

.specialty-price strong { 
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ═══════════════════════════════════════
   MENU
═══════════════════════════════════════ */
.menu, .menu-section { 
    background: var(--charcoal) !important;
    position: relative;
    overflow: hidden;
}

.menu::before, .menu-section::before { 
    content: '米';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24rem;
    font-family: var(--font-jp);
    color: rgba(255,255,255,0.012);
    pointer-events: none;
}

.menu .section-tag, .menu-section .section-tag { color: var(--gold-light) !important; }
.menu .section-tag::before, .menu-section .section-tag::before,
.menu .section-tag::after, .menu-section .section-tag::after { background: var(--gold-light) !important; }
.menu .section-title, .menu-section .section-title { color: white !important; }
.menu .section-header p, .menu-section .section-header p, .menu-section .section-desc { 
    color: rgba(255,255,255,0.5) !important;
    margin-top: var(--space-3);
    font-size: 0.92rem;
} 
    color: rgba(255,255,255,0.45);
    margin-top: var(--space-3);
    font-size: 0.92rem;
}

.menu-tabs, .menu-section .menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
    margin: 0 auto var(--space-12);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.menu-tab, .menu-section .menu-tab,
.tab-btn, .menu-section .tab-btn { 
    padding: var(--space-3) var(--space-6);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #a0a0a0 !important;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.menu-tab:hover, .menu-section .menu-tab:hover,
.tab-btn:hover, .menu-section .tab-btn:hover { 
    color: #ffffff !important;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}

.menu-tab.active, .menu-section .menu-tab.active,
.tab-btn.active, .menu-section .tab-btn.active { 
    color: #151515 !important;
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

.tab-btn.active:hover {
    background: var(--gold-dark) !important;
    border-color: var(--gold-dark) !important;
}

.menu-grid { 
    display: grid;
    gap: var(--space-3);
}

@media (min-width: 600px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item, .menu-section .menu-item { 
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    transition: all 0.3s var(--ease);
}

.menu-item:hover, .menu-section .menu-item:hover { 
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Title + Price on same row */
.menu-item .title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: 6px;
}

.menu-item h4, .menu-section .menu-item h4 { 
    font-size: 0.9rem;
    color: #ffffff !important;
    font-weight: 500;
    font-family: var(--font-body);
    margin: 0;
    flex: 1;
}

.menu-item-price, .menu-section .menu-item-price { 
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item .jp, .menu-section .menu-item .jp,
.menu-item-jp, .menu-section .menu-item-jp,
.menu-item-info .jp { 
    font-size: 0.75rem;
    color: #b8956e !important;
    margin-bottom: 6px;
    display: block;
}

.menu-item .desc, .menu-section .menu-item .desc,
.menu-item-desc, .menu-section .menu-item-desc,
.menu-item-info .desc { 
    font-size: 0.8rem;
    color: #a0a0a0 !important;
    line-height: 1.5;
}

.menu-cta { 
    text-align: center;
    margin-top: var(--space-12);
}

/* ═══════════════════════════════════════
   GALLERY - Infinite carousel
═══════════════════════════════════════ */
.gallery { 
    background: var(--linen);
    overflow: hidden;
    padding-bottom: var(--space-16);
}

.gallery-scroll { 
    overflow: hidden;
    position: relative;
    width: 100%;
}

.gallery-track { 
    display: flex;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    width: fit-content;
    animation: infiniteScroll 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - var(--space-2))); }
}

.gallery-item { 
    flex: 0 0 200px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    position: relative;
    background: var(--pearl);
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 1;
    pointer-events: none;
}

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

.gallery-item:hover { 
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

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

@media (min-width: 768px) { .gallery-item { flex: 0 0 220px; } }

.gallery-cta { 
    text-align: center;
    margin-top: var(--space-10);
}

.instagram-btn { 
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 16px 36px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    background-size: 200% 200%;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.instagram-btn:hover { 
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(131, 58, 180, 0.35);
}

.instagram-btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { background: white; }

.contact-grid { 
    display: grid;
    gap: var(--space-10);
}

@media (min-width: 900px) { 
    .contact-grid { 
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-12);
    }
}

.contact-info { 
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.info-card { 
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--linen);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s var(--ease);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.info-icon { 
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
}

.info-icon svg { 
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.info-content { 
    flex-grow: 1;
}

.info-content h4 { 
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pewter);
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
}

.info-content p { 
    color: var(--charcoal);
    font-size: 0.92rem;
    line-height: 1.5;
}

.info-link { 
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--gold);
    font-weight: 500;
    margin-top: var(--space-2);
    font-size: 0.8rem;
}

.info-link svg { width: 14px; height: 14px; }
.info-link:hover { color: var(--gold-dark); }

.status-badge { 
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 4px 10px;
    background: rgba(90, 138, 90, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-2);
}

.status-badge.closed { 
    background: rgba(196, 90, 90, 0.1);
    color: var(--error);
}

.social-links { 
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.social-links a { 
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}

/* TikTok icon needs fill instead of stroke */
.social-links a:last-child svg {
    fill: white;
    stroke: none;
}

.social-links a svg { width: 16px; height: 16px; stroke: white; }

.social-links a:hover { 
    background: var(--gold);
    transform: translateY(-3px);
}

.contact-map { 
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.map-container { 
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.map-container iframe { 
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--linen);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.85rem;
    align-self: center;
    transition: all 0.3s var(--ease);
}

.map-link:hover { 
    background: var(--charcoal);
    color: white;
}

.map-link svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════ */
.float-cta { 
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.float-cta.visible { 
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.btn-float-order { 
    padding: 14px 24px;
    font-size: 0.85rem;
    box-shadow: 0 8px 32px rgba(184, 150, 80, 0.4);
    gap: var(--space-2);
}

.btn-float-order:hover {
    box-shadow: 0 12px 40px rgba(184, 150, 80, 0.5);
    transform: translateY(-3px);
}

.btn-float-order svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { 
    background: var(--charcoal);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
}

.footer-main { 
    display: grid;
    gap: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 768px) { 
    .footer-main { grid-template-columns: 1fr 2fr; }
}

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

@media (min-width: 768px) { .footer-brand { text-align: left; } }

.footer-logo { 
    height: 36px;
    margin-bottom: var(--space-3);
    display: inline-block;
    opacity: 0.9;
}

.footer-tagline { 
    font-family: var(--font-jp);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
}

.footer-links { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.footer-col h5 { 
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.28);
    margin-bottom: var(--space-4);
    font-family: var(--font-body);
}

.footer-col a { 
    display: block;
    color: rgba(255,255,255,0.55);
    padding: var(--space-1) 0;
    font-size: 0.88rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom { 
    padding-top: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
}

@media (min-width: 768px) { 
    .footer-bottom { 
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p { 
    font-size: 0.82rem;
    color: rgba(255,255,255,0.28);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.reveal { 
    opacity: 0;
    transform: translateY(32px);
    transition: 
        opacity 0.9s var(--ease-out),
        transform 0.9s var(--ease-out);
}

.reveal.active { 
    opacity: 1;
    transform: translateY(0);
}

.reveal[style*="--delay"] {
    transition-delay: var(--delay);
}

/* ═══════════════════════════════════════
   UTILITIES & ACCESSIBILITY
═══════════════════════════════════════ */
::selection { 
    background: var(--gold);
    color: white;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════
   COMPREHENSIVE RESPONSIVE SYSTEM
═══════════════════════════════════════ */

/* === MOBILE FIRST (< 480px) === */
@media (max-width: 479px) {
    html { font-size: 14px; }
    
    .container { padding: 0 16px; }
    
    section { padding: 60px 0; }
    
    /* Hero mobile */
    .hero { 
        min-height: auto;
    }
    .hero-content { 
        padding: 100px 20px 40px;
        width: 100%;
        max-width: 100%;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: 0.7rem; letter-spacing: 0.15em; }
    .hero-jp { font-size: 0.8rem; letter-spacing: 0.2em; }
    .hero-badge { padding: 8px 14px; }
    .badge-text { font-size: 0.65rem; }
    .hero-features { gap: 8px 16px; }
    .feature { font-size: 0.78rem; }
    .hero-image {
        min-height: 50vh;
    }
    .btn-order {
        padding: 14px 32px;
    }
    
    /* Sections mobile */
    .section-header { margin-bottom: 40px; }
    .section-tag { font-size: 0.65rem; }
    .section-tag::before, .section-tag::after { width: 16px; }
    .section-title { font-size: 1.8rem; }
    
    /* Story mobile */
    .story-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .img-stack { max-width: 280px; }
    .img-accent { width: 40%; bottom: -16px; right: -8px; }
    .story-content { 
        text-align: center;
        max-width: 100%;
    }
    .story-content h2 { font-size: 1.5rem; }
    .story-content p { font-size: 0.9rem; }
    .story-stats { 
        gap: 16px;
        justify-content: center;
    }
    .stat { min-width: 70px; }
    .stat-value { font-size: 1.5rem; }
    .stat-label { font-size: 0.7rem; }
    
    /* Specialties mobile */
    .specialties-grid { 
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
        margin: 0 auto;
    }
    .specialty-card { width: 100%; }
    .specialty-image { height: 180px; }
    .specialty-content { padding: 14px 16px 16px; }
    .specialty-content h3 { font-size: 1.1rem; }
    
    /* Menu mobile */
    .menu-tabs { 
        gap: 6px; 
        margin-bottom: 32px;
        justify-content: center;
    }
    .tab-btn { padding: 8px 14px; font-size: 0.75rem; }
    .menu-grid { gap: 10px; }
    .menu-item, .menu-section .menu-item { 
        padding: 14px 16px;
    }
    .menu-item h4 { font-size: 0.85rem; }
    .menu-item .jp { font-size: 0.7rem; }
    .menu-item .desc { font-size: 0.75rem; }
    
    /* Gallery mobile */
    .gallery-item { flex: 0 0 160px; }
    .gallery-track { gap: 12px; }
    
    /* Contact mobile */
    .contact-info { gap: 12px; }
    .info-card { padding: 16px; gap: 14px; }
    .info-icon { width: 40px; height: 40px; }
    .info-icon svg { width: 16px; height: 16px; }
    .info-content h4 { font-size: 0.65rem; }
    .info-content p { font-size: 0.88rem; }
    .social-links a { width: 36px; height: 36px; }
    .map-container { aspect-ratio: 4/3; }
    
    /* Footer mobile */
    .footer { padding: 48px 0 24px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-col h5 { margin-bottom: 12px; }
    .footer-logo { height: 32px; }
    
    /* Float CTA mobile */
    .float-cta { 
        bottom: 16px; 
        right: 16px; 
        left: 16px;
        padding: 10px;
        justify-content: center;
    }
    .float-cta .btn { 
        flex: 1;
        padding: 10px 12px;
        font-size: 0.72rem;
    }
}

/* === SMALL TABLETS (480px - 767px) === */
@media (min-width: 480px) and (max-width: 767px) {
    .container { padding: 0 20px; }
    
    section { padding: 70px 0; }
    
    .hero-title { font-size: 3.5rem; }
    .hero-cta { flex-direction: row; }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 480px;
        gap: 16px;
    }
    .specialty-card { width: 100%; }
    .specialty-image { height: 160px; }
    
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    
    .gallery-item { flex: 0 0 180px; }
    
    .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* === TABLETS (768px - 1023px) === */
@media (min-width: 768px) and (max-width: 1023px) {
    section { padding: 100px 0; }
    
    .hero-title { font-size: 4.5rem; }
    
    .story-grid { 
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .img-stack { max-width: 450px; }
    .story-content { text-align: center; }
    .story-stats { max-width: 400px; margin: 40px auto 0; }
    
    .specialties-grid { 
        grid-template-columns: repeat(2, 260px);
        gap: 24px;
    }
    
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    
    .contact-grid { 
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .contact-info { 
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .map-container { aspect-ratio: 16/9; }
}

/* === DESKTOP (1024px+) === */
@media (min-width: 1024px) {
    section { padding: 120px 0; }
    
    .story-grid { 
        grid-template-columns: 0.9fr 1fr;
        gap: 80px;
    }
    .story-content { text-align: left; }
    
    .specialties-grid { 
        grid-template-columns: repeat(2, 260px);
        gap: 28px;
    }
    
    .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    
    .contact-grid { 
        grid-template-columns: 1fr 1.5fr;
        gap: 64px;
    }
    .contact-info { 
        display: flex;
        flex-direction: column;
    }
}

/* === LARGE DESKTOP (1280px+) === */
@media (min-width: 1280px) {
    .container { max-width: 1200px; }
    
    .hero-title { font-size: 6rem; }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 280px);
        gap: 32px;
    }
    .specialty-image { height: 220px; }
    
    .gallery-item { flex: 0 0 260px; }
}

/* === TOUCH DEVICE IMPROVEMENTS === */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch */
    .specialty-card:hover { transform: none; }
    .specialty-card:hover .specialty-image img { transform: none; }
    .menu-item:hover { transform: none; }
    .gallery-item:hover { transform: none; }
    .gallery-item:hover img { transform: none; }
    .info-card:hover { transform: none; }
    
    /* Better touch targets */
    .btn { min-height: 48px; }
    .tab-btn { min-height: 44px; }
    .nav-links a { padding: 12px 8px; }
    .social-links a { min-width: 44px; min-height: 44px; }
    
    /* Pause carousel on touch devices */
    .gallery-track { animation-play-state: running; }
}

/* === LANDSCAPE PHONES === */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-content { padding: 20px; }
    .hero-title { font-size: 2.5rem; }
    .hero-features { display: none; }
    .loader { display: none; }
}

/* === HIGH DPI SCREENS === */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item img,
    .specialty-image img,
    .img-main,
    .img-accent {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* === DARK MODE SUPPORT === */
@media (prefers-color-scheme: dark) {
    /* Already dark theme, no changes needed */
}

/* === PRINT STYLES === */
@media print {
    .header, .loader, .float-cta, .mobile-nav { display: none !important; }
    .hero { min-height: auto; page-break-after: always; }
    section { padding: 40px 0; page-break-inside: avoid; }
    .gallery-track { animation: none; flex-wrap: wrap; }
    .menu-section { background: white !important; color: black !important; }
    .menu-item { background: #f5f5f5 !important; border-color: #ddd !important; }
    .menu-item h4, .menu-item .jp, .menu-item .desc { color: black !important; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html { scroll-behavior: auto; }
    
    .gallery-track { animation: none; }
}

/* Footer button styled as link */
.footer-link-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    padding: 0;
    cursor: pointer;
    text-align: left;
}
.footer-link-btn:hover {
    color: white;
}
