/* ============================================================
   OSAKA — GASTRONOMÍA JAPONESA PREMIUM · Lima, Perú
   Complete CSS · Dark Theme · Mobile-First Responsive
============================================================ */

/* ── VARIABLES ──────────────────────────────────────────── */
:root {
    --black:        #070707;
    --dark:         #0f0f0f;
    --card:         #141414;
    --card-hover:   #1a1a1a;
    --border:       rgba(255,255,255,0.07);
    --border-gold:  rgba(212,175,55,0.25);

    --gold:         #d4af37;
    --gold-light:   #e8cc6a;
    --gold-dim:     rgba(212,175,55,0.12);
    --red:          #c0142a;
    --red-hover:    #e01f38;

    --text-white:   #f8f8f8;
    --text-normal:  #d4d4d4;
    --text-muted:   #7a7a7a;

    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'Outfit', sans-serif;
    --font-jp:      'Noto Serif JP', serif;

    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);

    --header-h: 70px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body   { background: var(--black); color: var(--text-normal); font-family: var(--font-sans); line-height: 1.65; overflow-x: hidden; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img    { max-width: 100%; height: auto; display: block; }
picture { display: block; width: 100%; height: 100%; }
picture img { width: 100%; height: 100%; object-fit: cover; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container   { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.text-gradient {
    background: linear-gradient(130deg, var(--gold-light) 0%, var(--text-white) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gold);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
    border-left: 2px solid var(--red);
    padding-left: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.18;
    margin-bottom: 22px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.75;
}

.section-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: var(--text-white);
    padding: 13px 28px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .8px;
    border-radius: 3px;
    transition: all .35s var(--ease-smooth);
    box-shadow: 0 4px 18px rgba(192,20,42,.3);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,20,42,.45); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(212,175,55,.5);
    color: var(--text-white);
    padding: 12px 26px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .8px;
    border-radius: 3px;
    transition: all .35s var(--ease-smooth);
}
.btn-ghost:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-2px); }

.btn-reservation {
    background: var(--gold);
    color: #000;
    padding: 10px 20px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: all .3s var(--ease-smooth);
    white-space: nowrap;
}
.btn-reservation:hover { background: var(--text-white); box-shadow: 0 0 18px rgba(212,175,55,.4); transform: translateY(-1px); }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #25D366;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid rgba(37,211,102,.25);
    padding: 9px 14px;
    border-radius: 20px;
    transition: all .3s ease;
    white-space: nowrap;
}
.btn-whatsapp:hover { background: rgba(37,211,102,.08); border-color: #25D366; }

/* ── HEADER ─────────────────────────────────────────────── */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
    padding: 14px 0;
    transition: all .4s var(--ease-smooth);
    border-bottom: 1px solid transparent;
}
.main-header.scrolled {
    padding: 10px 0;
    background: rgba(7,7,7,.92);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-white);
    flex-shrink: 0;
    z-index: 1001;
    position: relative;
}

.logo-kanji {
    font-family: var(--font-jp);
    font-size: 1.25rem;
    color: var(--gold);
    line-height: 1;
}

.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 3px; color: var(--text-white); margin-bottom: 14px; }

.nav-menu ul  { display: flex; list-style: none; gap: 30px; }
.nav-link {
    font-size: .87rem;
    letter-spacing: .8px;
    color: var(--text-muted);
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    transition: color .25s ease;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: width .3s var(--ease-smooth);
}
.nav-link:hover, .nav-link.active { color: var(--text-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1001;
    position: relative;
    padding: 0;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text-white); transition: all .3s ease; border-radius: 2px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile nav backdrop */
.nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 940;
    opacity: 0;
    transition: opacity .35s ease;
}
.nav-backdrop.show { opacity: 1; }

/* Mobile nav footer CTA */
.mobile-nav-footer { display: none; }

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.zoom-bg-image { width: 100%; height: 100%; object-fit: cover; animation: kenBurns 28s ease-in-out infinite alternate; }

@keyframes kenBurns {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.12) translateX(-2%); }
}

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(circle at 75% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(7,7,7,.4) 0%, rgba(7,7,7,.95) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    padding: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(212, 175, 55, 0.03);
}

.hero-featured-dish {
    width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-featured-dish {
    transform: scale(1.04) rotate(4deg);
}

.hero-floating-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--gold);
    color: #000;
    padding: 14px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

.fb-kanji {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.fb-text {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.hero-label-pill {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(212,212,212,.8);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all .3s ease;
}
.hero-badge:hover { border-color: var(--gold); color: var(--gold); }
.badge-icon { font-size: 1rem; }

.scroll-indicator {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2; opacity: .55;
}
.scroll-mouse { width: 20px; height: 32px; border: 1.5px solid var(--text-muted); border-radius: 10px; position: relative; }
.scroll-wheel { width: 3px; height: 6px; background: var(--gold); border-radius: 2px; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{top:5px;opacity:1} 100%{top:18px;opacity:0} }
.scroll-text { font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); }

/* ── EXPERIENCE ─────────────────────────────────────────── */
.experience-section { padding: 100px 0; background: var(--black); }

.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.stats-row { display: flex; gap: 28px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.stat-item { display: flex; flex-direction: column; }
.stat-num  { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-top: 4px; }

.location-tag {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 22px;
    padding: 10px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 4px;
    line-height: 1.5;
}
.location-tag svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.experience-visual { position: relative; }

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
}

.gallery-main {
    grid-column: 1; grid-row: 1 / 3;
    border-radius: 4px; overflow: hidden;
    border: 1px solid var(--border);
    height: 420px;
}
.gallery-main picture { height: 100%; }
.gallery-main img { transition: transform .6s var(--ease-smooth); }
.gallery-main:hover img { transform: scale(1.06); }

.gallery-side {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-side > div { border-radius: 4px; overflow: hidden; height: 200px; border: 1px solid var(--border); }
.gallery-side picture { height: 100%; }
.gallery-side img { transition: transform .6s var(--ease-smooth); }
.gallery-side > div:hover img { transform: scale(1.06); }

.gallery-badge {
    position: absolute;
    bottom: -12px; left: -18px;
    background: var(--gold);
    color: #000;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 5;
}
.gb-kanji { font-family: var(--font-jp); font-size: 1.3rem; font-weight: 700; line-height: 1; }
.gb-text  { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }

/* ── MENU SECTION ───────────────────────────────────────── */
.menu-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border);
}

.menu-header { margin-bottom: 0; }

/* Scrollable filter bar - works on mobile */
.menu-filters-wrap {
    margin-top: 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.menu-filters-wrap::-webkit-scrollbar { display: none; }

.menu-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    min-width: max-content;
    padding: 0 4px;
}

/* On mobile, stop centering and let it scroll */
@media (max-width: 640px) {
    .menu-filters { justify-content: flex-start; flex-wrap: nowrap; }
}

.filter-btn {
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 9px 20px;
    font-size: .82rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: .6px;
    background: rgba(255,255,255,.02);
    transition: all .3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.filter-btn:hover { color: var(--text-white); border-color: rgba(255,255,255,.2); }
.filter-btn.active { background: var(--gold); color: #000; border-color: var(--gold); box-shadow: 0 4px 14px rgba(212,175,55,.2); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

/* ── MENU CARD ──────────────────────────────────────────── */
.menu-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s var(--ease-smooth), border-color .3s ease, box-shadow .4s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* On touch devices keep the lift subtle */
@media (hover: hover) {
    .menu-card:hover {
        transform: translateY(-6px);
        border-color: var(--gold);
        box-shadow: 0 16px 36px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.1);
    }
}
/* Touch tap feedback */
.menu-card:active { transform: scale(.98); }

.menu-card-img { height: 210px; overflow: hidden; position: relative; }
.menu-card-img picture { height: 100%; }
.menu-card-img img { transition: transform .5s var(--ease-smooth); }
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.mc-tag {
    position: absolute; top: 12px; right: 12px;
    background: var(--red);
    color: var(--text-white);
    font-size: .68rem; font-weight: 700; letter-spacing: 1px;
    padding: 3px 9px; border-radius: 2px;
    text-transform: uppercase;
    z-index: 2;
}

/* Touch: always show hint hint slightly on mobile */
.mc-hover-hint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding-bottom: 12px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .8px;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
}
.menu-card:hover .mc-hover-hint { opacity: 1; }

/* On touch: always visible at reduced opacity */
@media (hover: none) {
    .mc-hover-hint { opacity: .85; }
}

.menu-card-info { padding: 18px 20px; }
.mc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.mc-row h3   { font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; color: var(--text-white); }
.mc-row small { font-size: .72rem; color: var(--text-muted); font-family: var(--font-sans); margin-left: 3px; }
.menu-price  { font-size: 1.05rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.menu-desc   { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

.menu-card.hidden { display: none !important; }

/* ── DISH DETAIL OVERLAY ────────────────────────────────── */
.dish-overlay {
    position: fixed; inset: 0; z-index: 1500;
    display: flex; justify-content: flex-end;
    pointer-events: none;
}
.dish-overlay.open { pointer-events: auto; }

.dish-overlay-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    transition: background .4s ease, backdrop-filter .4s ease;
}
.dish-overlay.open .dish-overlay-bg {
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
}

.dish-overlay-panel {
    position: relative; z-index: 1;
    width: min(820px, 95vw);
    max-height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--dark);
    border-left: 1px solid var(--border-gold);
    transform: translateX(100%);
    transition: transform .5s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}
.dish-overlay.open .dish-overlay-panel { transform: translateX(0); }

/* Scrollbar styling for overlay */
.dish-overlay-panel::-webkit-scrollbar { width: 4px; }
.dish-overlay-panel::-webkit-scrollbar-track { background: transparent; }
.dish-overlay-panel::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 2px; }

.dish-close {
    position: fixed;
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 50%;
    z-index: 10;
    background: var(--dark);
    transition: all .25s ease;
}
.dish-close:hover { color: var(--text-white); border-color: var(--gold); background: var(--gold-dim); }

.dish-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
}

.dish-img-col { display: flex; flex-direction: column; background: var(--black); }

.dish-img-wrapper { position: relative; height: 55%; min-height: 280px; overflow: hidden; }
.dish-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.dish-price-badge {
    position: absolute; bottom: 14px; left: 14px;
    background: var(--gold);
    color: #000;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 4px;
    font-family: var(--font-serif);
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

.dish-prep-box { padding: 24px; flex: 1; }
.dish-prep-box h5 {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}
.dish-prep-box p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

.dish-info-col {
    padding: 52px 30px 30px;
    display: flex;
    flex-direction: column;
}

.dish-detail-tag {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--red);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.dish-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.dish-detail-desc {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.ingredients-section { flex: 1; margin-bottom: 24px; }

.ing-title {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.ing-icon { color: var(--gold); font-size: 1rem; }

.ingredients-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.ingredients-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-normal);
    padding: 9px 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .4s ease, transform .4s ease, border-color .25s ease;
}
.ingredients-list li.visible { opacity: 1; transform: translateX(0); }
.ingredients-list li:hover { border-color: var(--gold); background: var(--gold-dim); }
.ingredients-list li::before { content: '✦'; color: var(--gold); font-size: .68rem; flex-shrink: 0; }

.dish-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dish-allergen { font-size: .76rem; color: var(--text-muted); font-style: italic; }

/* ── REVIEWS / TESTIMONIALS ─────────────────────────────── */
.reviews-section {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.reviews-header { margin-bottom: 52px; }

.reviews-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.rating-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; }
.rating-score { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--text-white); }
.rating-count { font-size: .8rem; color: var(--text-muted); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .3s ease, transform .3s ease;
}
.review-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.review-card--featured {
    border-color: var(--border-gold);
    background: linear-gradient(145deg, var(--card) 0%, rgba(212,175,55,.04) 100%);
}

.review-header { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    flex-shrink: 0;
}
.review-avatar picture, .review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.review-meta { flex: 1; min-width: 0; }
.review-meta strong { display: block; font-size: .92rem; color: var(--text-white); font-weight: 600; }
.review-meta span   { font-size: .77rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: .82rem; letter-spacing: 1px; margin-top: 2px; }

.review-source {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 3px;
    white-space: nowrap;
    align-self: flex-start;
}
.review-source--featured { color: var(--gold); border-color: var(--border-gold); }

.review-text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    quotes: '"' '"';
}
.review-text::before { content: open-quote; color: var(--gold); font-size: 1.2rem; font-style: normal; }

.review-dish {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.rd-icon { font-size: 1rem; }

/* ── CHEF SECTION ───────────────────────────────────────── */
.chef-section { padding: 100px 0; position: relative; background: var(--black); }

.chef-bg-layer {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(192,20,42,.04) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(212,175,55,.03) 0%, transparent 60%);
    pointer-events: none;
}

.chef-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.chef-visual { display: flex; flex-direction: column; gap: 18px; }

.chef-img-frame { position: relative; }
.chef-img-frame picture { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,.6); }
.chef-img-frame img { width: 100%; max-height: 460px; object-fit: cover; object-position: center top; }

.chef-tag {
    position: absolute;
    top: -16px; right: -16px;
    background: var(--card);
    border: 1px solid var(--gold);
    padding: 14px 18px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.ct-num  { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold); font-weight: 700; line-height: 1; }
.ct-label{ font-size: .66rem; color: var(--text-muted); text-align: center; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }

.chef-quote-card {
    background: rgba(212,175,55,.04);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.cq-kanji { font-family: var(--font-jp); font-size: 1.9rem; color: var(--gold); line-height: 1; flex-shrink: 0; }
.chef-quote-card p { font-family: var(--font-serif); font-size: .92rem; color: var(--text-muted); font-style: italic; line-height: 1.65; }

.chef-certs { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.cert { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text-muted); }
.cert-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ── CONTACT / FOOTER ───────────────────────────────────── */
.contact-section { background: #0b0b0b; border-top: 1px solid var(--border); padding: 72px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 44px; }

.footer-brand p { font-size: .88rem; color: var(--text-muted); max-width: 280px; margin-bottom: 22px; }

.social-row { display: flex; gap: 10px; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--border); border-radius: 50%;
    color: var(--text-muted);
    transition: all .25s ease;
}
.social-icon:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-dim); }

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 1.5px; background: var(--gold); }

.schedule-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.schedule-list li { display: flex; justify-content: space-between; gap: 8px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.03); font-size: .86rem; }
.schedule-list li span:first-child { color: var(--text-muted); }
.schedule-list li span:last-child  { color: var(--text-white); font-weight: 500; }

.location-item { margin-bottom: 18px; display: flex; flex-direction: column; gap: 4px; }
.location-item strong { color: var(--text-white); font-size: .9rem; }
.location-item span   { color: var(--text-muted); font-size: .82rem; }

.footer-bottom { margin-top: 52px; border-top: 1px solid var(--border); padding: 20px 0; text-align: center; font-size: .76rem; color: var(--text-muted); }

/* ── RESERVATION MODAL ──────────────────────────────────── */
.reservation-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
    padding: 16px;
}
.reservation-modal.open { opacity: 1; pointer-events: auto; }

.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(12px);
}

.modal-wrapper {
    position: relative; z-index: 1;
    background: var(--card);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 600px;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(0,0,0,.8);
    transform: scale(.94) translateY(10px);
    transition: transform .45s var(--ease-smooth);
    max-height: calc(100svh - 32px);
    overflow-y: auto;
}
.reservation-modal.open .modal-wrapper { transform: scale(1) translateY(0); }

/* Scrollbar for modal */
.modal-wrapper::-webkit-scrollbar { width: 4px; }
.modal-wrapper::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: 2px; }

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    margin: 14px 16px 0 0;
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 1;
    transition: color .2s ease;
    z-index: 2;
    background: transparent;
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    justify-content: center;
}
.modal-close:hover { color: var(--text-white); }

.modal-body { padding: 8px 30px 30px; }

.modal-header {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 18px;
}
.modal-header h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text-white); margin: 8px 0 4px; }
.modal-header p  { font-size: .86rem; color: var(--text-muted); }

.reservation-form { display: flex; flex-direction: column; gap: 12px; }
.reservation-form.hidden { display: none; }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group label { font-size: .73rem; font-weight: 700; letter-spacing: .5px; color: var(--text-muted); text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 11px 13px;
    font-family: inherit; font-size: .9rem;
    border-radius: 4px;
    transition: border-color .25s ease, background .25s ease;
    width: 100%;
    -webkit-appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-group select option { background: #1a1a1a; color: var(--text-white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.05); }
.form-group textarea { height: 76px; resize: none; }

.btn-submit {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 13px;
    font-size: .93rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: .5px;
    margin-top: 6px;
    transition: all .3s ease;
    width: 100%;
}
.btn-submit:hover { background: var(--text-white); box-shadow: 0 4px 18px rgba(255,255,255,.15); }

.success-state { display: none; flex-direction: column; align-items: center; text-align: center; padding: 30px 0 8px; }
.success-state.active { display: flex; }
.success-icon { font-family: var(--font-jp); font-size: 2.6rem; color: var(--gold); border: 2px solid var(--gold); width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--gold-dim); }
.success-state h4 { font-family: var(--font-serif); font-size: 1.55rem; color: var(--text-white); margin-bottom: 10px; }
.success-state p  { font-size: .88rem; color: var(--text-muted); max-width: 350px; margin-bottom: 22px; }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal-el {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth);
}
.reveal-el.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE MEDIA QUERIES — COMPREHENSIVE MOBILE FIRST
================================================================ */

/* ── TABLET (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
    .exp-grid  { gap: 36px; }
    .chef-grid { gap: 36px; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ── DISH OVERLAY: BOTTOM SHEET on tablet/mobile ────────── */
@media (max-width: 900px) {
    /* Switch to bottom sheet */
    .dish-overlay {
        justify-content: flex-start;
        align-items: flex-end;
    }
    .dish-overlay-panel {
        width: 100%;
        max-height: 92svh;
        border-left: none;
        border-top: 1px solid var(--border-gold);
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
    }
    .dish-overlay.open .dish-overlay-panel { transform: translateY(0); }

    /* Stacked layout in bottom sheet */
    .dish-panel-inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .dish-img-wrapper { height: 240px; min-height: unset; }
    .dish-info-col { padding: 24px 20px 32px; }
    .dish-prep-box { padding: 16px 20px 20px; }

    /* Close button repositioned to overlap image */
    .dish-close { position: absolute; top: 14px; right: 14px; background: rgba(7,7,7,.8); }
}

/* ── MOBILE NAVIGATION (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {
    :root { --header-h: 60px; }

    /* Show hamburger, hide desktop items */
    .menu-toggle  { display: flex; }
    .btn-reservation { display: none; }
    .btn-whatsapp { display: none; }

    /* Nav drawer */
    .nav-backdrop { display: block; pointer-events: none; }
    .nav-backdrop.show { pointer-events: auto; }

    .nav-menu {
        position: fixed;
        top: 0; right: -105%;
        width: min(320px, 85vw);
        height: 100svh;
        background: var(--card);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 80px 36px 40px;
        border-left: 1px solid var(--border);
        box-shadow: -12px 0 40px rgba(0,0,0,.6);
        transition: right .4s var(--ease-smooth);
        z-index: 960;
        gap: 40px;
    }
    .nav-menu.open { right: 0; }
    .nav-menu ul  { flex-direction: column; gap: 8px; }
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.04);
        display: block;
    }
    .mobile-nav-footer { display: block; }

    /* Hero centered on mobile */
    .hero-section { min-height: 100svh; align-items: flex-end; padding-bottom: 80px; }
    .hero-content { padding: 0 20px; text-align: center; max-width: 100%; }
    .hero-title   { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-description { font-size: .95rem; }
    .hero-actions { justify-content: center; }
    .hero-badges  { justify-content: center; }

    /* Grids: single column */
    .exp-grid  { grid-template-columns: 1fr; gap: 40px; }
    .chef-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Gallery: vertical on mobile */
    .gallery-layout { grid-template-columns: 1fr; gap: 8px; }
    .gallery-main { grid-column: 1; grid-row: auto; height: 240px; }
    .gallery-side { flex-direction: row; gap: 8px; }
    .gallery-side > div { height: 150px; flex: 1; }
    .gallery-badge { display: none; } /* hide on mobile for clean layout */

    /* Reviews: 1 column */
    .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Stats row */
    .stats-row { gap: 20px; }
    .stat-num  { font-size: 1.6rem; }

    /* Section padding */
    .experience-section,
    .menu-section,
    .chef-section,
    .reviews-section { padding: 72px 0; }
    .contact-section { padding: 60px 0 0; }

    /* Chef tag: shift slightly */
    .chef-tag { top: -12px; right: -10px; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }
    .modal-body { padding: 8px 20px 24px; }
}

/* ── SMALL MOBILE (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; }
    .hero-badges { gap: 8px; }
    .hero-badge  { font-size: .75rem; padding: 6px 12px; }

    .menu-grid { grid-template-columns: 1fr; }
    .menu-card-img { height: 190px; }

    .section-title { margin-bottom: 16px; }
    .section-subtitle { font-size: .92rem; }

    .stats-row { flex-wrap: wrap; gap: 16px; }

    .footer-grid { gap: 28px; }
    .schedule-list li { flex-direction: column; gap: 2px; }
    .schedule-list li span:last-child { color: var(--gold); }

    /* Reservation modal full-screen on tiny devices */
    .reservation-modal { padding: 0; align-items: flex-end; }
    .modal-wrapper {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 95svh;
        transform: translateY(100%);
    }
    .reservation-modal.open .modal-wrapper { transform: translateY(0); }
}

/* ── EXTRA SMALL (≤ 360px) ──────────────────────────────── */
@media (max-width: 360px) {
    .hero-title { font-size: 2rem; }
    .logo { font-size: 1.2rem; letter-spacing: 2px; }
    .logo-kanji { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .footer-map { height: 240px !important; margin-bottom: 32px !important; }
}
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; margin-top: 20px; }
    .hero-content { margin: 0 auto; }
    .hero-actions, .hero-badges { justify-content: center; }
    .hero-featured-dish { width: 300px; height: 300px; }
    .hero-visual { margin-top: 20px; animation: float 6s ease-in-out infinite; }
    .hero-floating-badge { right: 15%; bottom: 10px; }
}
@media (max-width: 768px) {
    .hero-featured-dish { width: 240px; height: 240px; }
    .hero-section { height: auto; min-height: 100svh; padding-top: 140px; padding-bottom: 60px; align-items: center; justify-content: center; }
    .hero-title { font-size: 2.4rem; }
    .hero-floating-badge { right: 5%; bottom: 10px; padding: 10px 16px; }
    .fb-kanji { font-size: 1.2rem; }
    .fb-text { font-size: 0.65rem; }
}
@media (max-width: 480px) {
    .hero-featured-dish { width: 200px; height: 200px; }
    .hero-title { font-size: 2.1rem; }
    .hero-floating-badge { right: 0; bottom: 5px; }
}
