/* =========================================================
   SHARED — variables, resets, base elements
   (used by both index.html and menu.html)
   ========================================================= */
:root {
    --bg: #0a0806;
    --bg-soft: #120e09;
    --bg-card: #17120c;
    --gold: #d9a64b;
    --gold-light: #f0cb84;
    --gold-deep: #a97730;
    --cream: #f2ede4;
    --muted: #b3a488;
    --red: #b23a2e;
    --line: rgba(217, 166, 75, 0.25);
    --serif: "Playfair Display", serif;
    --script: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
    --bar-h: 40px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    font-family: inherit;
    cursor: pointer;
}
::selection {
    background: var(--gold);
    color: #0a0806;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            ellipse at 20% 0%,
            rgba(217, 166, 75, 0.06),
            transparent 55%
        ),
        radial-gradient(
            ellipse at 90% 100%,
            rgba(217, 166, 75, 0.05),
            transparent 55%
        );
    pointer-events: none;
    z-index: 0;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- SHIPPING BAR ---------- */
.shipping-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: var(--bar-h);
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        height 0.35s ease,
        opacity 0.35s ease,
        border-color 0.35s ease;
    opacity: 1;
}
.shipping-bar.hidden {
    height: 0;
    opacity: 0;
    border-bottom-color: transparent;
}
.shipping-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11.5px;
    letter-spacing: 0.03em;
    color: var(--gold-light);
    text-align: center;
    padding: 0 20px;
    flex-wrap: wrap;
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.shipping-bar-inner i {
    color: var(--gold);
    font-size: 12px;
}
.shipping-bar-inner strong {
    color: var(--gold-light);
    font-weight: 700;
}
.ship-slide {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ship-slide:not(:last-child)::after {
    content: "·";
    margin-left: 10px;
    color: var(--gold-deep);
    opacity: 0.7;
}
@media (max-width: 640px) {
    .shipping-bar-inner {
        flex-wrap: nowrap;
    }
    .ship-slide {
        position: absolute;
        inset: 0;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s ease;
    }
    .ship-slide::after {
        content: none;
    }
    .ship-slide.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ---------- FIXED PREV/NEXT ARROWS (menu categories) ---------- */
.page-nav-arrow {
    position: fixed;
    top: 55%;
    transform: translateY(-50%);
    z-index: 120;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 8, 6, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid var(--gold-deep);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        opacity 0.3s ease;
        
}
.page-nav-arrow.show {
    opacity: 1;
    pointer-events: auto;
}
.page-nav-arrow:hover {
    background: rgba(217, 166, 75, 0.16);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.06);
}
.page-nav-arrow.left {
    left: 18px;
}
.page-nav-arrow.right {
    right: 18px;
}
@media (max-width: 640px) {
    .page-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
    .page-nav-arrow.left {
        left: 10px;
    }
    .page-nav-arrow.right {
        right: 10px;
    }
}

/* ---------- SECTION JUMP DROPDOWNS (Jídlo / Sushi / Nápoje) ---------- */
.section-dropdown-wrap {
    position: relative;
}
.section-jump button.section-toggle {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 7px 16px;
    border: 1px solid var(--gold-deep);
    color: var(--gold-light);
    background: none;
    border-radius: 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-jump button.section-toggle .caret {
    font-size: 9px;
    transition: transform 0.2s ease;
}
.section-jump button.section-toggle.open .caret {
    transform: rotate(180deg);
}
.section-jump button.section-toggle.active {
    background: var(--gold);
    color: #0a0806;
    border-color: var(--gold);
}
.section-jump button.section-toggle:hover {
    background: rgba(217, 166, 75, 0.12);
}
.section-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    max-width: 320px;
    max-height: 340px;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    display: none;
    z-index: 80;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}
.section-dropdown.open {
    display: block;
}
.section-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 12px;
    font-size: 12px;
    color: var(--muted);
    background: none;
    border: none;
    border-radius: 4px;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}
.section-dropdown button:hover {
    background: rgba(217, 166, 75, 0.12);
    color: var(--gold-light);
}
.section-dropdown button.active {
    background: var(--gold);
    color: #0a0806;
    font-weight: 600;
}

/* ---------- MENU CATEGORY CONTENT (item lists + side image) ---------- */
.category {
    display: none;
    overflow: hidden;
}
.category.active {
    display: block;
}
.category.active.slide-next {
    animation: slideInNext 0.5s cubic-bezier(0.25, 0.8, 0.35, 1);
}
.category.active.slide-prev {
    animation: slideInPrev 0.5s cubic-bezier(0.25, 0.8, 0.35, 1);
}
@keyframes slideInNext {
    from {
        opacity: 0;
        transform: translateX(46px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInPrev {
    from {
        opacity: 0;
        transform: translateX(-46px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-inner.reverse .cat-image {
    order: 2;
}
.category-inner.reverse .cat-list {
    order: 1;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line);
}
.item:last-child {
    border-bottom: none;
}
.item-thumb {
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--line);
    align-self: center;
}
.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.item-main {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}
.item-left {
    flex: 1;
    min-width: 0;
}
.item-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--cream);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
}
.item .code {
    color: var(--gold);
    margin-right: 4px;
    font-weight: 600;
    font-size: 20px;
}
.item-name .en {
    font-weight: 400;
    color: var(--muted);
    font-size: 13px;
}
.item-tags {
    color: var(--gold-deep);
    font-size: 9px;
    vertical-align: super;
}
.chili {
    color: var(--red);
    font-size: 11px;
    margin-left: 2px;
}
.item-price {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--gold-light);
    font-size: 16px;
    white-space: nowrap;
}

.cat-image {
    position: sticky;
    top: 110px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--line);
}
.cat-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.allergen-note {
    margin-top: 28px;
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .category-inner,
    .category-inner.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .category-inner.reverse .cat-image,
    .category-inner.reverse .cat-list {
        order: unset;
    }
    .cat-image {
        position: relative;
        top: 0 !important;
    }
    .cat-image img {
        height: 300px;
    }
}
@media (max-width: 640px) {
    .item-thumb {
        width: 60px;
        height: 60px;
    }
}

/* =========================================================
   INDEX PAGE ONLY (index.html)
   ========================================================= */

/* ---------- NAV ---------- */
header,
#mainNav {
    position: fixed;
    top: var(--bar-h);
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 8, 6, 0);
    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease,
        top 0.35s ease;
    padding: 22px 0;
}
header.scrolled,
#mainNav.scrolled {
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line);
    padding: 12px 0;
}
nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand img {
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(217, 166, 75, 0.35));
}
.nav-links {
    display: flex;
    gap: 36px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links a {
    position: relative;
    padding-bottom: 4px;
    color: var(--cream);
    opacity: 0.85;
    transition:
        opacity 0.25s,
        color 0.25s;
}
.nav-links a:hover {
    opacity: 1;
    color: var(--gold-light);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 9px 20px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition:
        background 0.25s,
        color 0.25s;
}
.nav-cta:hover {
    background: var(--gold);
    color: #0a0806;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 120;
    position: relative;
    width: 24px;
    height: 18px;
}
.burger span {
    width: 24px;
    height: 1px;
    background: var(--gold-light);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}
.burger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 172px 24px 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("assets/mountain.jpg");
    background-position: center 78%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
        180deg,
        rgba(10, 8, 6, 0.55) 0%,
        rgba(10, 8, 6, 0.35) 35%,
        rgba(10, 8, 6, 0.85) 78%,
        var(--bg) 100%
    );
    z-index: 1;
}
.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 8%,
        rgba(217, 166, 75, 0.1),
        transparent 45%
    );
    z-index: 1;
}
.hero > * {
    position: relative;
    z-index: 2;
}
.hero-bg,
.hero-gradient,
.hero-texture {
    position: absolute;
    z-index: auto;
}
.hero-emblem {
    height: 120px;
    margin: 0 auto 22px;
    border-radius: 10px;
    object-fit: cover;
    filter: drop-shadow(0 0 18px rgba(217, 166, 75, 0.28));
}
.hero h1 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(46px, 9vw, 96px);
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, #f4d999 0%, #d9a64b 45%, #a97730 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.hero .sub {
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--cream);
    margin-top: 16px;
    opacity: 0.9;
}
.divider {
    width: 120px;
    height: 1px;
    margin: 26px auto;
    position: relative;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-address {
    font-family: var(--script);
    font-size: 22px;
    color: var(--cream);
}
.hero-cuisine {
    margin-top: 10px;
    font-size: 15px;
    color: var(--gold-light);
    font-style: italic;
}
.hero-cuisine .en {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    margin-top: 2px;
}
.hero-meta {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.hero-meta strong {
    color: var(--gold-light);
    font-weight: 600;
}
.hero-meta .dot {
    color: var(--gold-deep);
}
.hero-buttons {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-gold {
    background: linear-gradient(180deg, #f0cb84, #c98736);
    color: #0a0806;
    box-shadow: 0 8px 24px rgba(201, 135, 54, 0.25);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 135, 54, 0.35);
}
.btn-outline {
    border: 1px solid var(--gold-deep);
    color: var(--gold-light);
}
.btn-outline:hover {
    background: rgba(217, 166, 75, 0.1);
    border-color: var(--gold);
}
.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--serif);
    letter-spacing: 0.5em;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-cue::after {
    content: "";
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ---------- INTRO ---------- */
.intro {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.intro h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;
    margin-top: 16px;
    color: var(--cream);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
}
.intro p {
    max-width: 620px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 300;
}

/* ---------- MENU PREVIEW (tabs layout, on index page) ---------- */
.menu-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 1;
}
.menu-head {
    text-align: center;
    margin-bottom: 56px;
}
.menu-head h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--gold-light);
}
.menu-foot-cta {
    text-align: center;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--line);
}
.menu-foot-cta p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 24px;
}
.menu-section .cat-nav-outer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
    margin-bottom: 56px;
}
.menu-section .cat-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: none;
    color: var(--gold-light);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s,
        border-color 0.25s;
}
.menu-section .cat-arrow:hover {
    background: rgba(217, 166, 75, 0.1);
    border-color: var(--gold);
}
.tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.tabs::-webkit-scrollbar {
    display: none;
}
.tab-btn {
    flex: 0 0 auto;
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid transparent;
    color: var(--muted);
    border-radius: 2px;
    cursor: pointer;
    background: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.tab-btn:hover {
    color: var(--gold-light);
}
.tab-btn.active {
    color: #0a0806;
    background: var(--gold);
    border-color: var(--gold);
}
.menu-section .section-jump {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

/* ---------- GOLD DIVIDER ---------- */
.swoosh {
    position: relative;
    height: 90px;
    margin: 0 auto;
    max-width: 1180px;
}
.swoosh svg {
    width: 100%;
    height: 100%;
}

/* ---------- ABOUT STRIP ---------- */
.about {
    position: relative;
    padding: 130px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.about-card {
    padding: 36px 24px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(217, 166, 75, 0.03);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease;
}
.about-card:hover {
    border-color: var(--gold);
    box-shadow:
        0 0 0 1px rgba(217, 166, 75, 0.2),
        0 0 42px rgba(217, 166, 75, 0.32),
        0 18px 40px rgba(0, 0, 0, 0.35);
    background: rgba(217, 166, 75, 0.06);
    transform: translateY(-4px);
}
.about-card .num {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--gold);
    transition:
        text-shadow 0.35s ease,
        color 0.35s ease;
}
.about-card:hover .num {
    text-shadow: 0 0 24px rgba(217, 166, 75, 0.85);
    color: var(--gold-light);
}
.about-card h3 {
    font-family: var(--serif);
    font-size: 18px;
    margin: 10px 0 8px;
    color: var(--cream);
}
.about-card p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
}

/* ---------- LOCATION / CONTACT ---------- */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.contact h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 44px);
    color: var(--gold-light);
    margin-bottom: 20px;
}
.contact-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.contact-row .label {
    width: 110px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}
.contact-row .value {
    color: var(--cream);
    font-size: 14.5px;
}
.contact-row .value small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}
.map-frame {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    height: 420px;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

/* ---------- FOOTER (shared base; index.html uses this simple centered
   version, menu.html overrides layout below via #mainNav ~ footer) ---------- */
footer {
    border-top: 1px solid var(--line);
    padding: 64px 0 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}
footer img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
}
footer .fname {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}
footer .faddr {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
}
footer .fshipping {
    margin-top: 20px;
    padding: 12px 20px;
    display: inline-block;
    font-size: 12px;
    color: var(--gold-light);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(217, 166, 75, 0.04);
}
footer .fshipping i {
    color: var(--gold);
    margin-right: 6px;
}
footer .fnote {
    margin-top: 32px;
    font-size: 11px;
    color: var(--muted);
    opacity: 0.5;
}

/* ---------- INDEX RESPONSIVE ---------- */
@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .burger {
        display: flex;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-frame {
        height: 300px;
    }
}

/* ---------- MOBILE NAV DRAWER (index page) ---------- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 8, 6, 0.98);
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.mobile-drawer.open {
    transform: translateY(0);
}
.mobile-drawer a {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--gold-light);
    letter-spacing: 0.08em;
}
.drawer-cta {
    font-family: var(--sans) !important;
    font-size: 12px !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a0806 !important;
    background: linear-gradient(180deg, #f0cb84, #c98736);
    padding: 14px 36px;
    border-radius: 2px;
    margin-top: 8px;
}
.drawer-close {
    position: absolute;
    top: 26px;
    right: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition:
        background 0.25s,
        border-color 0.25s;
}
.drawer-close:hover {
    background: rgba(217, 166, 75, 0.1);
    border-color: var(--gold);
}
.drawer-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* =========================================================
   MENU PAGE ONLY (menu.html)
   ========================================================= */

#mainNav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-link img {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 6px rgba(217, 166, 75, 0.35));
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--serif);
    letter-spacing: 0.08em;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.3;
}
.nav-logo-text span:last-child {
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: 0.35em;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-back {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    color: var(--muted);
    transition: color 0.25s ease;
}
.nav-back:hover {
    color: var(--gold-light);
}
.cart-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--gold-deep);
    color: var(--gold-light);
    padding: 9px 18px;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition:
        background 0.25s,
        border-color 0.25s;
}
.cart-trigger:hover {
    background: rgba(217, 166, 75, 0.1);
    border-color: var(--gold);
}
.cart-trigger-count {
    background: var(--gold);
    color: #0a0806;
    font-weight: 800;
    font-size: 11px;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.up-button {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 150;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #0a0806;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.up-button.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ---------- HERO STRIP ---------- */
.hero-strip {
    position: relative;
    padding: 200px 0 64px;
    overflow: hidden;
}
.hero-strip-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 15% 20%,
            rgba(217, 166, 75, 0.1),
            transparent 50%
        ),
        radial-gradient(
            ellipse at 85% 80%,
            rgba(217, 166, 75, 0.06),
            transparent 55%
        );
}
.hero-strip-overlay {
    position: absolute;
    inset: 0;
    border-bottom: 1px solid var(--line);
}
.hero-strip-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: end;
}
.hs-eyebrow {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.hs-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    margin-top: 14px;
    background: linear-gradient(180deg, #f4d999 0%, #d9a64b 45%, #a97730 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hs-title em {
    font-style: italic;
    font-family: var(--script);
    font-weight: 600;
}
.hs-note {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    max-width: 340px;
    margin-left: auto;
    text-align: right;
}

/* ---------- CATEGORY NAV (sticky, with dots) ---------- */
.cat-nav-wrap {
    position: sticky;
    top: calc(var(--bar-h) + 72px);
    z-index: 50;
    background: rgba(10, 8, 6, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}
.cat-nav-wrap .section-jump {
    display: flex;
    gap: 8px;
    justify-content: center;
    max-width: 1180px;
    margin: 0 auto 12px;
    padding: 0 32px;
}
.cat-nav-wrap .cat-nav-outer {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
.cat-nav-wrap .cat-arrow {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: none;
    color: var(--gold-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s,
        border-color 0.25s;
}
.cat-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
}
.cat-nav::-webkit-scrollbar {
    display: none;
}
.cat-btn {
    flex: 0 0 auto;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 16px;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 2px;
    background: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}
.cat-btn:hover {
    color: var(--gold-light);
    border-color: var(--gold-deep);
}
.cat-btn.active {
    color: #0a0806;
    background: var(--gold);
    border-color: var(--gold);
}
.cat-dots {
    display: none;
    gap: 6px;
    justify-content: center;
    padding-top: 10px;
}
.cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line);
    transition: background 0.25s;
}
.cat-dot.active {
    background: var(--gold);
}

/* ---------- MENU CONTENT (page shell + ordering controls) ---------- */
.page {
    padding: 56px 0 100px;
    position: relative;
    z-index: 1;
}
.page .category {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.cat-num {
    font-family: var(--serif);
    font-size: 23px;
    color: var(--gold-deep);
    letter-spacing: 0.15em;
}
.cat-title {
    font-family: var(--serif);
    font-size: 30px;
    color: var(--gold-light);
    margin-top: 2px;
}
.cat-title-en {
    font-size: 11.5px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
}
.cat-desc {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-top: 14px;
    margin-bottom: 8px;
    max-width: 480px;
    font-weight: 300;
}
.item-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
}
.stepper button {
    width: 26px;
    height: 26px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.stepper button:hover {
    background: rgba(217, 166, 75, 0.12);
}
.stepper .qty {
    width: 24px;
    text-align: center;
    font-size: 12.5px;
    color: var(--cream);
    font-weight: 600;
}
.add-btn {
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 14px;
    background: var(--gold);
    color: #0a0806;
    border: none;
    border-radius: 2px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
    white-space: nowrap;
}
.add-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.page .cat-image {
    top: calc(var(--bar-h) + 190px);
    transition: top 0.35s ease;
}

@media (max-width: 760px) {
    .hero-strip-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hs-note {
        text-align: left;
        margin-left: 0;
    }
    .cat-dots {
        display: flex;
    }
    .item-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
}

/* ---------- FOOTER OVERRIDE (multi-column, menu page only)
   Scoped via #mainNav ~ footer since #mainNav only exists on
   menu.html and is a preceding sibling of footer in the DOM.
   If footer isn't a direct sibling of #mainNav in your markup,
   swap this for a body class instead (e.g. body.menu-page footer). ---------- */
#mainNav ~ footer {
    padding: 80px 0 32px;
    text-align: left;
}
.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 0.8fr 0.8fr;
    gap: 36px;
}
.fg-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.fg-brand img {
    margin: 0 0 16px;
    object-fit: contain;
}
.fg-brand p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    max-width: 280px;
}
.fg-col h4 {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.fg-col ul {
    list-style: none;
}
.fg-col li {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--muted);
}
.fg-col a {
    color: var(--muted);
    transition: color 0.25s ease;
}
.fg-col a:hover {
    color: var(--gold-light);
}
.socials {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}
.socials a {
    font-size: 20px;
    color: var(--gold-deep);
}
.socials a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    max-width: 1180px;
    margin: 56px auto 0;
    padding: 24px 32px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    opacity: 0.7;
}
@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* ---------- CART OVERLAY ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(10, 8, 6, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.cart-panel {
    width: 420px;
    max-width: 92vw;
    height: 100%;
    background: var(--bg-soft);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}
.cart-overlay.open .cart-panel {
    transform: translateX(0);
}
.cart-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 26px 18px;
    border-bottom: 1px solid var(--line);
}
.cp-title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold-light);
}
.cp-subtitle {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}
.cp-close {
    background: none;
    border: 1px solid var(--line);
    color: var(--gold-light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
}
.cp-close:hover {
    border-color: var(--gold);
}
.cart-shipping-note {
    margin: 0 26px 10px;
    padding: 9px 14px;
    font-size: 11.5px;
    color: var(--gold-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(217, 166, 75, 0.04);
}
.cart-shipping-note i {
    color: var(--gold);
    margin-right: 6px;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px 26px;
}
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    opacity: 0.6;
    gap: 10px;
}
.cart-empty-icon {
    font-size: 38px;
}
.cart-empty-text {
    font-size: 13px;
    color: var(--muted);
}
.cart-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line);
}
.cl-info {
    flex: 1;
    min-width: 0;
}
.cl-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cream);
}
.cl-price {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 3px;
}
.cl-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.cl-remove {
    font-size: 11px;
    color: var(--red);
    opacity: 0.8;
}
.cl-remove:hover {
    opacity: 1;
}
.cart-foot {
    border-top: 1px solid var(--line);
    padding: 20px 26px 26px;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}
.cart-total-row .label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.cart-total-row .amount {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--gold-light);
    font-weight: 700;
}
.cart-total-row .amount span {
    font-size: 14px;
}
.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #f0cb84, #c98736);
    color: #0a0806;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}
.btn-checkout:hover {
    transform: translateY(-2px);
}
.btn-clear {
    width: 100%;
    padding: 10px;
    background: none;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-clear:hover {
    color: var(--gold-light);
    border-color: var(--gold-deep);
}

/* ---------- ORDER MODAL ---------- */
.text-error {
    display: none;
    font-size: 13px;
    color: #b23a2e;
    margin-top: 6px;
}
.order-bg {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(10, 8, 6, 0.8);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.order-bg.open {
    opacity: 1;
    pointer-events: auto;
}
.order-modal {
    width: 520px;
    max-width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 36px;
    transform: translateY(16px);
    transition: transform 0.35s ease;
}
.order-bg.open .order-modal {
    transform: translateY(0);
}
.om-eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}
.om-title {
    font-family: var(--serif);
    font-size: 26px;
    color: var(--gold-light);
    margin-top: 8px;
}
.om-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 300;
}
.om-summary {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(217, 166, 75, 0.03);
    font-size: 12.5px;
    color: var(--muted);
}
.om-summary .os-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}
.om-summary .os-row.total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 10px;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 14px;
}
.frow {
    margin-top: 16px;
}
.frow label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}
.frow input,
.frow select,
.frow textarea {
    width: 100%;
    padding: 11px 13px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--cream);
    font-family: inherit;
    font-size: 13.5px;
    transition: border-color 0.2s ease;
}
.frow input:focus,
.frow select:focus,
.frow textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.frow textarea {
    min-height: 70px;
    resize: vertical;
}
.delivery-toggle {
    display: flex;
    gap: 10px;
}
.delivery-toggle button {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--line);
    background: none;
    color: var(--muted);
    border-radius: 2px;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease;
}
.delivery-toggle button.active {
    background: var(--gold);
    color: #0a0806;
    border-color: var(--gold);
}
.om-btns {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}
.btn-om-back {
    flex: 0 0 auto;
    padding: 13px 20px;
    background: none;
    border: 1px solid var(--line);
    color: var(--muted);
    border-radius: 2px;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.btn-om-back:hover {
    color: var(--gold-light);
    border-color: var(--gold-deep);
}
.btn-om-send {
    flex: 1;
    padding: 13px 20px;
    background: linear-gradient(180deg, #f0cb84, #c98736);
    color: #0a0806;
    border: none;
    border-radius: 2px;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}
.btn-om-send:hover {
    transform: translateY(-1px);
}
.om-ok {
    text-align: center;
    padding: 20px 0;
}
.om-ok .ok-icon {
    font-size: 44px;
    margin-bottom: 14px;
}
.om-ok h4 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold-light);
}
.om-ok p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}
.field-error {
    border-color: var(--red) !important;
}