/* ============================================================
   Menu page — Hummus & Garlic
   Generated page: pages/menu.html (see toast-sync/build-menu.mjs)
   Uses the site palette: white / black / gold #34a83f
   ============================================================ */

.m-hero {
    background: #0a0908;
    color: #fff;
    padding: 10.5rem 0 4.5rem;
    text-align: center;
}
.m-hero .eyebrow { color: #34a83f; }
.m-hero h1 {
    color: #fff;   /* style.css sets h1 to --black; that beats inheriting from .m-hero */
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.6rem, 11vw, 7rem);
    line-height: 0.94;
    letter-spacing: 0.01em;
    margin: 0.6rem 0 0;
}
.m-hero-accent { color: #34a83f; }
.m-hero-sub {
    max-width: 34rem;
    margin: 1.1rem auto 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.15rem;
}

/* --- sticky section jump bar --- */
.m-jump {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(10, 9, 8, 0.09);
}
.m-jump-inner {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0.85rem 1.5rem;
    scrollbar-width: none;
}
.m-jump-inner::-webkit-scrollbar { display: none; }
.m-jump a {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1a1815;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(10, 9, 8, 0.12);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.m-jump a:hover { background: #0a0908; color: #fff; border-color: #0a0908; }
.m-jump a.m-jump-cater {
    background: #34a83f;
    border-color: #34a83f;
    color: #0a0908;
}
.m-jump a.m-jump-cater:hover { background: #0e5814; border-color: #0e5814; color: #fff; }

/* --- menu body --- */
.m-body { background: #fdfcfa; padding: 4.5rem 0 5rem; }

.m-section {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin: 0 0 3.2rem;
    scroll-margin-top: 5.5rem;
}
.m-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 0.02em;
    color: #0a0908;
    padding-bottom: 0.55rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #34a83f;
}
.m-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 2rem 1.6rem;
}
.m-card { min-width: 0; }
.m-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(10, 9, 8, 0.06);
    margin-bottom: 0.85rem;
}
.m-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.m-card:hover .m-card-img img { transform: scale(1.04); }
.m-card-img.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #f6f2e8, #ece7da);
}
.m-card-img.is-empty .m-card-mark {
    width: 46%;
    height: auto;
    object-fit: contain;
    opacity: 0.34;          /* gold logo as a watermark — no grayscale, keep the brand color */
}
/* same placeholder inside the black catering block */
.m-catering .m-card-img.is-empty {
    background: linear-gradient(150deg, #17140f, #0e0c0a);
    box-shadow: inset 0 0 0 1px rgba(52, 168, 63, 0.16);
}
.m-catering .m-card-img.is-empty .m-card-mark { opacity: 0.42; }
.m-card h3,
.m-row h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #161311;
    margin: 0;
    line-height: 1.32;
}

.m-list { list-style: none; margin: 0; padding: 0; }
.m-row { margin-bottom: 1.05rem; }

.m-desc {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5d574f;
}

.m-cater-cols { columns: 2; column-gap: 4.5rem; }

/* --- catering --- */
.m-catering {
    background: #0a0908;
    color: #fff;
    padding: 5rem 0 5.5rem;
    scroll-margin-top: 4.5rem;
}
.m-cater-head { text-align: center; margin-bottom: 3.4rem; }
.m-cater-head .eyebrow { color: #34a83f; }
.m-cater-head h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.4rem);
    margin: 0.4rem 0 0.6rem;
    color: #fff;
}
.m-cater-head p { color: rgba(255, 255, 255, 0.68); max-width: 34rem; margin: 0 auto; }
.m-catering .m-section-title { color: #fff; border-bottom-color: rgba(52, 168, 63, 0.6); }
.m-catering .m-row h3,
.m-catering .m-card h3 { color: #fff; }
.m-catering .m-desc { color: rgba(255, 255, 255, 0.6); }

.m-note {
    padding: 2.2rem 1.5rem 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: #8a8377;
}

@media (max-width: 900px) {
    .m-cater-cols { columns: 1; }
    .m-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1.5rem 1rem; }
    .m-hero { padding: 8.5rem 0 3.5rem; }
    .m-body { padding: 3rem 0 3.5rem; }
}
