/* ==========================================================================
   Mitocha — Design System v3 "Sunlit Caravan" (design-v2 branch, 30/08/2026)
   Green-led daylight joy: sunlit cream, pine-green ink, truck-red, sun-yellow,
   sky blue. Cut-paper cards with solid pop-shadows that lift on hover;
   tickets, stamps and stickers from the street-food world.
   Young Serif display + Poppins body (self-hosted, GDPR).
   Strict CSP: no inline styles anywhere — every visual rule lives here.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face { font-family: 'Young Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/young-serif-v2-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/poppins-v24-latin-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
    --cream:    #fff5dd;   /* page ground — sunlit */
    --paper:    #fffaf0;   /* card surface */
    --ink:      #16453f;   /* text = deep pine green */
    --pine:     #0e332e;   /* deepest (footer) */
    --ink-soft: #44655c;   /* secondary text on cream (AA) */
    --green:    #2d7860;   /* LEAD brand green */
    --leaf:     #77a55d;   /* fresh support */
    --red:      #e74c31;   /* joy accent — display + decor */
    --red-deep: #c93415;   /* red for button surfaces / text links (AA) */
    --yellow:   #f6ba2d;   /* sun — pop shadows, stickers */
    --sky:      #ccecf0;   /* cool ground */
    --sky-soft: #e6f5f7;   /* lighter sky */
    --plum:     #542943;   /* hover depth */
    --line:     #eadcbd;   /* hairline on cream */

    --font-body:    'Poppins', 'Segoe UI', sans-serif;
    --font-display: 'Young Serif', Georgia, serif;

    --pop: 6px;            /* resting pop-shadow offset */
    --pop-up: 10px;        /* lifted pop-shadow offset */
    --maxw: 1140px;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.1; font-weight: 400; }
.display { font-family: var(--font-display); }
.muted { color: var(--ink-soft); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

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

/* ---------- Announcement banner ---------- */
.announce {
    background: var(--red-deep);
    color: #fff8f2;
    text-align: center;
    padding: .6rem 1rem;
    font-size: .92rem;
    font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 245, 221, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: .55rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo img { height: 54px; width: auto; }
.site-header nav { margin-left: auto; }
.site-header nav ul { list-style: none; display: flex; gap: .1rem; }
.site-header nav a {
    display: block;
    padding: .5rem .85rem;
    font-weight: 600;
    font-size: .93rem;
    letter-spacing: .01em;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
}
.site-header nav a:hover { color: var(--red-deep); }
.site-header nav a.active { color: var(--green); border-bottom-color: var(--red); }

.lang-switch { display: flex; gap: .3rem; align-items: center; font-size: .84rem; font-weight: 700; color: var(--ink-soft); }
.lang-switch a { padding: .25rem .4rem; transition: color .15s; }
.lang-switch a.active { color: var(--red-deep); text-decoration: underline; text-underline-offset: 3px; }
.lang-switch a:hover { color: var(--red-deep); }

.nav-toggle { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .site-header nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 10px 24px rgba(14, 51, 46, .12);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
        margin-left: 0;
    }
    .site-header nav.open { max-height: 440px; }
    .site-header nav ul { flex-direction: column; padding: .75rem 1.25rem 1rem; gap: .25rem; }
    .site-header nav a { padding: .7rem .9rem; border-bottom: none; }
    .site-header nav a.active { color: var(--red-deep); }
}

/* ---------- Sections & titles ---------- */
.section { padding: 5rem 1.25rem; }
.section-tight { padding: 3.5rem 1.25rem; }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.narrow { max-width: 760px; }

.eyebrow {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: .7rem;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    letter-spacing: -.02em;
}
.section-title .accent { color: var(--red); font-style: italic; }
.section-sub { color: var(--ink-soft); max-width: 620px; margin: .8rem auto 0; }

/* ---------- Buttons — cut-paper pop ---------- */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    padding: .9rem 1.7rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform .15s ease, box-shadow .15s ease, background .2s, color .2s;
}
.btn-primary { background: var(--red-deep); color: #fff; box-shadow: 5px 5px 0 var(--yellow); }
.btn-primary:hover { background: var(--plum); transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--yellow); }
.btn-primary:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--yellow); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--green); color: var(--cream); border-color: var(--green); box-shadow: 5px 5px 0 var(--yellow); transform: translate(-2px, -2px); }
.btn-light { background: var(--paper); color: var(--ink); box-shadow: 5px 5px 0 var(--pine); }
.btn-light:hover { background: #fff; transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--pine); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 3.5rem 1.25rem 4.5rem;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5.2vw, 3.8rem);
    letter-spacing: -.025em;
    line-height: 1.02;
    margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--red); font-style: italic; }
.hero-sub { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.8rem; max-width: 46ch; }
.hero-facts { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.fact {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--sky);
    padding: .4rem .85rem;
}
.fact:nth-child(2) { background: var(--yellow); }
.fact:nth-child(3) { background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); }

.hero-visual { position: relative; }
.hero-visual::before {
    content: "";
    position: absolute;
    top: -34px; right: -26px;
    width: 190px; height: 190px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: .9;
    z-index: 0;
}
.arch {
    position: relative;
    z-index: 1;
    border-radius: 300px 300px 8px 8px;
    overflow: hidden;
    border: 6px solid var(--paper);
    box-shadow: 10px 10px 0 var(--green);
}
.arch img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; object-position: center 35%; }
.hero-chip {
    position: absolute;
    z-index: 2;
    left: -1.4rem;
    bottom: 1.6rem;
    background: var(--paper);
    box-shadow: 6px 6px 0 var(--red);
    padding: .95rem 1.15rem .95rem 1.35rem;
    border-left: 2px dashed rgba(22, 69, 63, .45);
    display: grid;
    gap: .3rem;
    transform: rotate(-1.2deg);
}
.hero-chip .chip-row { display: flex; align-items: baseline; gap: .6rem; font-size: .88rem; }
.hero-chip .chip-day {
    font-weight: 700;
    color: var(--red-deep);
    min-width: 3.4rem;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hero-chip .chip-place { font-weight: 600; }
.hero-chip .chip-hours { color: var(--ink-soft); font-size: .8rem; white-space: nowrap; }

.hero-stamp {
    position: absolute;
    z-index: 2;
    top: -18px; left: -14px;
    width: 84px; height: 84px;
    display: grid;
    place-items: center;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red-deep);
    background: rgba(255, 245, 221, .78);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.35;
    text-align: center;
    transform: rotate(-12deg);
}
.hero-stamp i { position: absolute; right: -8px; bottom: -6px; color: var(--yellow); font-size: 1.5rem; font-style: normal; }

/* ---------- Ticker — the joy strip ---------- */
.ticker {
    background: var(--red);
    overflow: hidden;
    padding: .7rem 0;
}
.ticker-track {
    display: flex;
    gap: 2.75rem;
    width: max-content;
    animation: ticker 32s linear infinite;
}
.ticker span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--cream);
    white-space: nowrap;
}
.ticker span::after { content: "✳"; margin-left: 2.75rem; color: var(--yellow); font-size: .9em; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- WO & WANN (lead green panel) ---------- */
.panel-wrap { padding: 4.5rem 1.25rem; }
.panel-green {
    max-width: var(--maxw);
    margin: 0 auto;
    background:
        radial-gradient(720px 380px at 90% -20%, rgba(119, 165, 93, .35), transparent 60%),
        linear-gradient(160deg, var(--green) 0%, var(--ink) 100%);
    color: rgba(255, 250, 240, .94);
    padding: 3.5rem 3rem;
    box-shadow: var(--pop-up) var(--pop-up) 0 var(--yellow);
}
.panel-green .eyebrow { color: var(--yellow); }
.panel-green .section-title { color: #fff8f0; }
.panel-head { text-align: center; margin-bottom: 2.5rem; }
.panel-sub { color: rgba(255, 250, 240, .8); max-width: 560px; margin: .8rem auto 0; font-size: .97rem; }

/* Location cards = tickets */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.loc-card {
    position: relative;
    background: var(--yellow);
    color: var(--ink);
    padding: 1.6rem 2.3rem 1.5rem 1.6rem;
    box-shadow: var(--pop) var(--pop) 0 var(--pine);
    transform: rotate(-.5deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.loc-card::after {
    content: "";
    position: absolute;
    top: 10px; right: 14px; bottom: 10px;
    border-right: 2px dashed rgba(22, 69, 63, .5);
}
.loc-card:nth-child(even) { background: var(--paper); transform: rotate(.5deg); }
.loc-card:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: var(--pop-up) var(--pop-up) 0 var(--pine); }
.loc-days {
    display: inline-block;
    background: var(--ink);
    color: var(--cream);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .32rem .8rem;
    margin-bottom: 1rem;
}
.loc-name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -.02em; color: var(--ink); margin-bottom: .35rem; }
.loc-hours { color: var(--ink); font-weight: 600; font-size: .95rem; }
.loc-addr { color: rgba(22, 69, 63, .75); font-size: .85rem; margin-top: .45rem; }

/* «Heute hier» — the day stamp on the location tickets. Reads the published
   schedule (stamped server-side); one rubber-stamp hit when the panel
   reveals, then stillness. */
.today-stamp {
    position: absolute;
    top: -.85rem;
    right: 1.4rem;
    z-index: 1;
    transform: rotate(6deg);
    background: var(--paper);
    color: var(--red-deep);
    border: 3px solid var(--red-deep);
    border-radius: 3px;
    box-shadow: 2px 3px 0 rgba(22, 69, 63, .28);
    font-weight: 800;
    font-size: .76rem;
    line-height: 1.3;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: center;
    padding: .36rem .7rem .32rem;
}
.today-stamp.is-next { color: var(--ink); border-color: var(--ink); letter-spacing: .09em; }
.today-stamp b { display: block; font-size: .92em; letter-spacing: .05em; }
html.anim .reveal.in .today-stamp { animation: stamp-hit .5s ease-out .35s both; }
@keyframes stamp-hit {
    0% { opacity: 0; transform: rotate(6deg) scale(2.2); }
    55% { opacity: 1; transform: rotate(6deg) scale(.92); }
    75% { transform: rotate(6deg) scale(1.06); }
    100% { transform: rotate(6deg) scale(1); }
}
.loc-route {
    display: inline-block;
    margin-top: .9rem;
    background: var(--ink);
    color: var(--cream);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    padding: .55rem 1.1rem;
    box-shadow: 3px 3px 0 rgba(22, 69, 63, .35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.loc-route:hover { background: var(--red-deep); color: var(--cream); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(22, 69, 63, .4); }
/* Kontakt page: quiet inline version, no animation. */
.today-mini {
    display: inline-block;
    font-style: normal;
    color: var(--red-deep);
    border: 2px solid var(--red-deep);
    border-radius: 2px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: .08rem .45rem;
    margin-left: .4rem;
    transform: rotate(-2deg);
    vertical-align: middle;
}
.today-mini.is-next { color: var(--ink-soft); border-color: var(--ink-soft); }

.panel-note { text-align: center; margin-top: 2.4rem; color: rgba(255, 250, 240, .85); font-size: .95rem; }
.panel-note a:hover { color: var(--yellow); }

/* ---------- Dish cards — cut-paper pop ---------- */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem; }
.dish-card {
    background: var(--paper);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--pop) var(--pop) 0 var(--yellow);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.dish-card:nth-child(3n+2) { box-shadow: var(--pop) var(--pop) 0 var(--red); transform: rotate(.4deg); }
.dish-card:nth-child(3n) { box-shadow: var(--pop) var(--pop) 0 var(--sky); }
.dish-card:hover { transform: rotate(0) translate(-4px, -4px); }
.dish-card:hover, .dish-card:nth-child(3n+2):hover, .dish-card:nth-child(3n):hover { box-shadow: var(--pop-up) var(--pop-up) 0 var(--green); }
.dish-media { overflow: hidden; }
.dish-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.dish-card:hover .dish-media img { transform: scale(1.05) rotate(-.6deg); }
.dish-body { padding: 1.05rem 1.15rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: .45rem; }
.dish-head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.dish-name { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; letter-spacing: -.01em; line-height: 1.25; }
.dish-price { font-family: var(--font-display); color: var(--red-deep); font-size: 1.05rem; white-space: nowrap; }
.dish-desc { font-size: .89rem; color: var(--ink-soft); flex: 1; }
.dish-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .2rem; }

/* Dietary tags — little stickers */
.tag {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .22rem .6rem;
}
.tag-veg    { color: #6b4a00; background: #fce9b5; }
.tag-vegan  { color: #1d5245; background: #d7ecd3; }
.tag-gluten { color: #135b66; background: var(--sky); }
.tag-meat   { color: #fff5dd; background: var(--plum); }
.section-cta { text-align: center; margin-top: 2.8rem; }

/* ---------- Story split ---------- */
.split {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}
.split .arch { max-width: 400px; box-shadow: 10px 10px 0 var(--red); }
.split .arch img { aspect-ratio: 4 / 4.8; }
.split-copy .section-title { margin-bottom: 1.2rem; }
.split-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.split-copy .lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}
.split-copy .btn { margin-top: .6rem; }

/* ---------- Catering band — the sun ---------- */
.band {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    overflow: hidden;
    background: var(--yellow);
    color: var(--ink);
    text-align: center;
    padding: 3.8rem 2rem;
    box-shadow: var(--pop-up) var(--pop-up) 0 var(--green);
}
.band::before {
    content: "";
    position: absolute;
    top: -130px; right: -110px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 26px rgba(231, 76, 49, .22), 0 0 0 52px rgba(231, 76, 49, .1);
}
.band > * { position: relative; }
.band .section-title { color: var(--ink); margin-bottom: .7rem; }
.band .eyebrow { color: var(--red-deep); }
.band p { max-width: 560px; margin: 0 auto 1.8rem; color: var(--ink); }
.band-cta { justify-content: center; }
.band .btn-light { background: var(--paper); box-shadow: 5px 5px 0 var(--pine); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--pine);
    color: rgba(255, 250, 240, .88);
    margin-top: 5rem;
    padding: 3.5rem 1.25rem 1.5rem;
}
.footer-grid {
    max-width: var(--maxw);
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer-col h3 { font-family: var(--font-display); color: var(--yellow); font-size: 1.05rem; margin-bottom: .35rem; }
.footer-col a { transition: color .15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-col .muted { color: rgba(255, 250, 240, .55); }
.footer-social { display: flex; gap: .7rem; margin-top: .5rem; }
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-bottom {
    max-width: var(--maxw);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 1.4rem;
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 250, 240, .6);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.footer-legal { display: flex; justify-content: center; gap: 1.4rem; }
.footer-legal a:hover { color: var(--yellow); }
.footer-credit a { color: rgba(255, 250, 240, .45); transition: color .2s; }
.footer-credit a:hover { color: var(--yellow); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 3.4rem 1.25rem 1.6rem;
    text-align: center;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    letter-spacing: -.025em;
}
.page-hero-title .accent { color: var(--red); font-style: italic; }
.page-hero-sub { color: var(--ink-soft); font-size: 1.06rem; margin: 1.1rem auto 0; max-width: 62ch; }

/* ---------- Wochenkarte (weekly, on the green panel) ---------- */
.weekly-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.weekly-card {
    background: var(--paper);
    color: var(--ink);
    padding: .8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    box-shadow: 4px 4px 0 var(--yellow);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.weekly-card:nth-child(even) { transform: rotate(.4deg); box-shadow: 4px 4px 0 var(--red); }
.weekly-card:hover { transform: rotate(0) translate(-2px, -2px); }
.weekly-thumb { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--cream); }
.weekly-name { font-weight: 600; color: var(--ink); flex: 1; }
.weekly-price { font-family: var(--font-display); color: var(--red-deep); white-space: nowrap; }

/* ---------- Full menu (Speisekarte) ---------- */
.menu-section { padding: 2.6rem 1.25rem 4.5rem; }
.menu-inner { max-width: var(--maxw); margin: 0 auto; }

/* Stamp-to-filter tickets */
.menu-filters { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin: 0 0 1rem; }
.filter-ticket {
    position: relative;
    overflow: hidden;
    font: inherit;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .6rem 1.1rem .75rem;
    border: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .2s, border-color .2s, color .2s;
}
.filter-ticket:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--sky); }
.filter-ticket.is-active { background: var(--green); border-color: var(--green); color: var(--cream); box-shadow: 4px 4px 0 var(--yellow); }
/* Tyre track: two offset tread bands along the bottom edge — the truck drove
   over the chosen ticket. Rolls in on stamp, stays while active. */
.filter-ticket::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: 2px;
    height: 8px;
    background:
        repeating-linear-gradient(90deg, rgba(14, 51, 46, .5) 0 6px, transparent 6px 12px) 0 0 / 100% 3px no-repeat,
        repeating-linear-gradient(90deg, rgba(14, 51, 46, .5) 0 6px, transparent 6px 12px) 6px 5px / 100% 3px no-repeat;
    opacity: 0;
    pointer-events: none;
}
.filter-ticket.is-active::after { opacity: 1; background-image:
        repeating-linear-gradient(90deg, rgba(255, 245, 221, .55) 0 6px, transparent 6px 12px),
        repeating-linear-gradient(90deg, rgba(255, 245, 221, .55) 0 6px, transparent 6px 12px); }
.filter-ticket.stamped { animation: stamp-hit .35s ease; }
.filter-ticket.stamped::after { animation: tyre-roll .5s ease-out; }
@keyframes stamp-hit {
    35% { transform: scale(.9) rotate(-1.5deg); }
    70% { transform: scale(1.05); }
}
@keyframes tyre-roll { from { transform: translateX(-108%); } }
.menu-count { text-align: center; color: var(--ink-soft); font-size: .9rem; margin: 0 0 1.6rem; }

.diet-legend { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0 0 3rem; }

.menu-cat { margin-bottom: 3.2rem; }
.menu-cat:last-of-type { margin-bottom: 0; }
.menu-cat-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.7rem; }
.menu-cat-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2rem); letter-spacing: -.02em; color: var(--ink); white-space: nowrap; }
.menu-cat-rule { flex: 1; height: 2px; background: linear-gradient(90deg, var(--red) 0 10%, var(--green) 10% 18%, transparent 18% 24%, var(--line) 24% 100%); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2.6rem; }
.menu-item {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 1.15rem;
    align-items: start;
    background: var(--paper);
    padding: .85rem;
    box-shadow: 4px 4px 0 var(--line);
    transition: transform .2s ease, box-shadow .2s ease;
}
.menu-item:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--yellow); }
.menu-thumb { width: 116px; height: 116px; object-fit: cover; }
.menu-item-body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.menu-item-head { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.menu-item-name { font-family: var(--font-display); font-weight: 400; font-size: 1.08rem; line-height: 1.3; }
.menu-item-price { font-family: var(--font-display); color: var(--red-deep); font-size: 1.02rem; white-space: nowrap; }
.menu-item-desc { font-size: .86rem; color: var(--ink-soft); }

.menu-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 3.4rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- About: values + soft CTA ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card {
    background: var(--paper);
    padding: 1.7rem 1.5rem;
    box-shadow: var(--pop) var(--pop) 0 var(--sky);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:nth-child(even) { transform: rotate(.4deg); box-shadow: var(--pop) var(--pop) 0 var(--yellow); }
.value-card:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: var(--pop-up) var(--pop-up) 0 var(--green); }
.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--ink);
    margin-bottom: .55rem;
    padding-top: .7rem;
    position: relative;
}
.value-card h3::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 34px; height: 4px;
    background: var(--red);
}
.value-card p { color: var(--ink-soft); font-size: .92rem; }

.cta-soft {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--sky-soft);
    padding: 3.2rem 2rem;
    box-shadow: var(--pop-up) var(--pop-up) 0 var(--yellow);
}
.cta-soft p { color: var(--ink-soft); max-width: 52ch; margin: .9rem auto 1.7rem; }

/* ---------- Contact ---------- */
.contact-layout {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr .9fr;
    gap: 3rem;
    align-items: start;
}
.contact-form-wrap {
    background: var(--paper);
    box-shadow: var(--pop) var(--pop) 0 var(--sky);
    padding: 2rem 2rem 2.2rem;
}
.contact-form .field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form label { font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: inherit;
    font-size: .96rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--line);
    padding: .7rem .85rem;
    transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 120, 96, .18);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { margin-top: .4rem; }
.form-hint { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; }

/* Honeypot — off-screen, never shown to real users (no inline style; CSP-safe). */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-message {
    padding: .9rem 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    font-size: .92rem;
}
.form-message.success { background: #d7ecd3; color: #1d5245; box-shadow: 3px 3px 0 var(--leaf); }
.form-message.error   { background: #fde3dc; color: #9c2a10; box-shadow: 3px 3px 0 var(--red); }

.contact-info { display: flex; flex-direction: column; gap: 1.6rem; }
.info-block {
    background: var(--sky-soft);
    padding: 1.5rem 1.6rem;
    box-shadow: var(--pop) var(--pop) 0 var(--yellow);
}
.info-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; color: var(--ink); }
.info-line { display: flex; flex-direction: column; margin-bottom: .8rem; }
.info-line:last-child { margin-bottom: 0; }
.info-label { font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red-deep); margin-bottom: .1rem; }
.info-line a { font-weight: 600; }
.info-line a:hover { color: var(--red-deep); }
.info-loc { display: flex; flex-direction: column; gap: .15rem; padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 2px dashed rgba(22, 69, 63, .3); }
.info-loc-days { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red-deep); }
.info-loc-name { font-size: 1.05rem; font-weight: 600; }
.info-map-link { color: var(--red-deep); font-size: .84rem; font-weight: 600; margin-top: .2rem; }
.info-map-link:hover { text-decoration: underline; }
.info-catering { margin-top: .2rem; }

/* ---------- Catering ---------- */
.occasion-row { justify-content: center; margin-top: 1.6rem; }

.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.pkg-card {
    background: var(--paper);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--pop) var(--pop) 0 var(--yellow);
    transform: rotate(-.35deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.pkg-card:nth-child(even) { box-shadow: var(--pop) var(--pop) 0 var(--red); transform: rotate(.35deg); }
.pkg-card:hover { transform: rotate(0) translate(-4px, -4px); box-shadow: var(--pop-up) var(--pop-up) 0 var(--green); }
.pkg-media { overflow: hidden; }
.pkg-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.pkg-card:hover .pkg-media img { transform: scale(1.05) rotate(-.6deg); }
.pkg-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.pkg-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.02em; color: var(--ink); }
.pkg-desc { font-size: .9rem; color: var(--ink-soft); }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin: .2rem 0 .3rem; }
.pkg-list li { position: relative; padding-left: 1.2rem; font-size: .92rem; }
.pkg-list li::before {
    content: "✳";
    position: absolute;
    left: 0; top: 0;
    color: var(--red);
    font-size: .75em;
    line-height: 2.2;
}
.pkg-body .dish-tags { margin-top: auto; padding-top: .4rem; }

.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.3rem; }
.addon-card {
    background: var(--paper);
    padding: 1.1rem 1.25rem 1.2rem;
    box-shadow: 4px 4px 0 var(--sky);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.addon-card:nth-child(even) { transform: rotate(.4deg); box-shadow: 4px 4px 0 var(--yellow); }
.addon-card:hover { transform: rotate(0) translate(-2px, -2px); box-shadow: 7px 7px 0 var(--green); }
.addon-thumb { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; margin-bottom: .7rem; border: 3px solid var(--cream); box-shadow: 3px 3px 0 var(--yellow); }
.addon-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-bottom: .35rem; }
.addon-name { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.addon-desc { font-size: .86rem; color: var(--ink-soft); }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin: 2.2rem 0 .7rem;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-soft); margin-bottom: .9rem; }
.legal ul { color: var(--ink-soft); margin: 0 0 1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; }
.legal a { color: var(--red-deep); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal-date { font-style: italic; margin-top: 2rem; }

/* ---------- 404 ---------- */
.notfound {
    max-width: 640px;
    margin: 0 auto;
    padding: 4.5rem 1.25rem 5rem;
    text-align: center;
}
.notfound-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 9rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--red);
    margin-bottom: .5rem;
}
.notfound-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .9rem; }
.notfound-sub { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 1.8rem; }
.notfound-cta { justify-content: center; }

/* ---------- Gallery ---------- */
.gallery-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.gallery-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 5px 5px 0 var(--yellow);
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:nth-child(3n+2) { box-shadow: 5px 5px 0 var(--sky); transform: rotate(.4deg); }
.gallery-item:nth-child(3n) { box-shadow: 5px 5px 0 var(--red); }
.gallery-item:hover { transform: rotate(0) translate(-3px, -3px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { text-align: center; margin: 3rem auto 0; }
.gallery-cta p { color: var(--ink-soft); margin-bottom: 1.1rem; }

@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Google reviews ---------- */
.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: var(--paper);
    padding: .5rem 1.15rem;
    margin-top: 1.2rem;
    font-size: .92rem;
    color: var(--ink-soft);
    box-shadow: 4px 4px 0 var(--yellow);
    transform: rotate(-.6deg);
}
.rating-pill strong { color: var(--ink); font-size: 1.02rem; }
.rating-stars { color: var(--red); letter-spacing: 1px; }

.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.6rem; }
.review-card {
    background: var(--paper);
    box-shadow: var(--pop) var(--pop) 0 var(--sky);
    padding: 1.4rem 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    position: relative;
    transform: rotate(-.4deg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:nth-child(even) { transform: rotate(.4deg); }
.review-card:hover { transform: rotate(0) translate(-3px, -3px); box-shadow: var(--pop-up) var(--pop-up) 0 var(--yellow); }
.review-top { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    background: var(--green);
}
.review-card:nth-child(4n+2) .review-avatar { background: var(--red); }
.review-card:nth-child(4n+3) .review-avatar { background: var(--plum); }
.review-card:nth-child(4n+4) .review-avatar { background: var(--leaf); }
.review-who { display: flex; flex-direction: column; gap: .1rem; }
.review-name { font-weight: 600; font-size: .95rem; }
.review-stars { color: var(--red); font-size: .82rem; letter-spacing: 1px; }
.review-text { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.review-src { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); opacity: .65; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Dish passports (click a dish photo → paper ticket lightbox) ---------- */
.passport-btn { display: block; width: 100%; padding: 0; border: none; background: none; cursor: zoom-in; font: inherit; }
.menu-item .passport-btn, .weekly-card .passport-btn, .addon-card .passport-btn { width: auto; flex-shrink: 0; }
.passport {
    border: none;
    padding: 0;
    background: transparent;
    width: min(92vw, 540px);
    overflow: visible;
}
.passport::backdrop { background: rgba(14, 51, 46, .62); }
.passport-inner { position: relative; background: var(--paper); box-shadow: 10px 10px 0 var(--yellow); }
.passport[open] .passport-inner { animation: passport-pop .22s ease; }
@keyframes passport-pop { from { transform: scale(.94); opacity: 0; } }
.passport-img { width: 100%; max-height: 56vh; object-fit: cover; display: block; }
.passport-ticket { padding: 1.15rem 1.35rem 1.35rem; border-top: 2px dashed rgba(22, 69, 63, .4); }
.passport-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: .35rem; }
.passport-desc { color: var(--ink-soft); font-size: .95rem; }
.passport-tags { margin-top: .7rem; }
.passport-close {
    position: absolute;
    z-index: 1;
    top: -14px; right: -14px;
    width: 40px; height: 40px;
    border: none;
    background: var(--red-deep);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--pine);
}
.passport-close:hover { background: var(--plum); }
.passport-prev, .passport-next {
    position: absolute;
    top: 42%;
    width: 44px; height: 44px;
    border: none;
    background: var(--paper);
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--pine);
}
.passport-prev { left: -16px; }
.passport-next { right: -16px; }
.passport-prev:hover, .passport-next:hover { background: var(--green); color: var(--cream); }
@media (max-width: 560px) {
    .passport-prev { left: 8px; }
    .passport-next { right: 8px; }
    .passport-prev, .passport-next { background: rgba(255, 250, 240, .92); }
    .passport-close { top: 8px; right: 8px; }
}

/* ---------- Scroll reveals (JS adds html.anim; CSP-safe) ---------- */
html.anim .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
html.anim .reveal.in { opacity: 1; transform: none; }
/* Staggered settle inside grids — cards arrive like flyers laid on a table. */
html.anim .dish-grid .reveal:nth-child(2),
html.anim .reviews-grid .reveal:nth-child(2) { transition-delay: .08s; }
html.anim .dish-grid .reveal:nth-child(3),
html.anim .reviews-grid .reveal:nth-child(3) { transition-delay: .16s; }
html.anim .dish-grid .reveal:nth-child(4),
html.anim .reviews-grid .reveal:nth-child(4) { transition-delay: .24s; }
html.anim .dish-grid .reveal:nth-child(5) { transition-delay: .32s; }
html.anim .dish-grid .reveal:nth-child(6) { transition-delay: .4s; }

/* Hero stamp wiggle — one playful ambient motion, nothing else moves uninvited. */
@keyframes gentle-wiggle { 50% { transform: rotate(-4deg); } }
.hero-stamp { animation: gentle-wiggle 6s ease-in-out infinite; }

/* ---------- The scroll truck — drives the bottom edge on every page ---------- */
.scroll-truck {
    position: fixed;
    bottom: -3px;
    left: 0;
    z-index: 60;
    width: 104px;
    display: block;
    opacity: 0;
    transition: opacity .4s ease;
    transform: translateX(var(--truck-x, 6px));
    will-change: transform;
}
.scroll-truck.on { opacity: 1; }
.scroll-truck svg { display: block; width: 100%; height: auto; }
.scroll-truck.rev svg { transform: scaleX(-1); }
.scroll-truck .wheel { transform-box: fill-box; transform-origin: center; }
.scroll-truck.driving .wheel { animation: wheel-spin .45s linear infinite; }
.scroll-truck.driving .truck-body { animation: truck-bounce .4s ease-in-out infinite; }
.scroll-truck:hover .truck-body, .scroll-truck:focus-visible .truck-body { animation: truck-hop .5s ease; }
.scroll-truck .exhaust circle { transform-box: fill-box; transform-origin: center; }
.scroll-truck.driving .exhaust circle:first-child { animation: exhaust-puff 1s ease-out infinite; }
.scroll-truck.driving .exhaust circle:last-child { animation: exhaust-puff 1s .45s ease-out infinite; }
.truck-bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px) rotate(-2deg);
    background: var(--paper);
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    white-space: nowrap;
    padding: .45rem .75rem;
    box-shadow: 4px 4px 0 var(--yellow);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.truck-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top-color: var(--paper);
}
.scroll-truck:hover .truck-bubble, .scroll-truck:focus-visible .truck-bubble {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(-2deg);
}
.scroll-truck.honk .truck-body { animation: truck-honk-hop .55s ease; }
.scroll-truck.honk .truck-bubble { opacity: 1; transform: translateX(-50%) translateY(0) rotate(-2deg); }
@keyframes wheel-spin { to { transform: rotate(360deg); } }
@keyframes truck-bounce { 50% { transform: translateY(-1.5px); } }
@keyframes truck-hop { 40% { transform: translateY(-7px) rotate(-2deg); } }
@keyframes truck-honk-hop {
    22% { transform: translateY(-7px) rotate(-2.5deg); }
    45% { transform: translateY(0) rotate(0); }
    68% { transform: translateY(-5px) rotate(2deg); }
}
@keyframes exhaust-puff {
    0%   { opacity: 0; transform: translate(2px, 2px) scale(.5); }
    25%  { opacity: .85; }
    100% { opacity: 0; transform: translate(-9px, -8px) scale(1.6); }
}
@media (max-width: 700px) { .scroll-truck { width: 80px; } .truck-bubble { left: 0; transform: translateX(0) translateY(6px) rotate(-2deg); } .scroll-truck:hover .truck-bubble, .scroll-truck:focus-visible .truck-bubble { transform: translateX(0) translateY(0) rotate(-2deg); } .truck-bubble::after { left: 30px; } }

/* ---------- Steam on dish photos ----------
   Visible, not subliminal: plays 3 rounds by itself when a card scrolls into
   view (phones have no hover), then runs while hovered on desktop. */
.dish-media, .pkg-media { position: relative; }
.dish-media::before, .dish-media::after,
.pkg-media::before, .pkg-media::after {
    content: "";
    position: absolute;
    bottom: 38%;
    left: 40%;
    width: 22px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255, 252, 245, .95), rgba(255, 252, 245, .35) 65%, transparent);
    filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.dish-media::after, .pkg-media::after { left: 56%; height: 40px; width: 17px; }
.dish-card.in .dish-media::before, .pkg-card.in .pkg-media::before { animation: steam 1.8s ease-out .4s 3; }
.dish-card.in .dish-media::after,  .pkg-card.in .pkg-media::after  { animation: steam 1.8s ease-out 1s 3; }
.dish-card:hover .dish-media::before, .pkg-card:hover .pkg-media::before { animation: steam 1.8s ease-out infinite; }
.dish-card:hover .dish-media::after,  .pkg-card:hover .pkg-media::after  { animation: steam 1.8s .6s ease-out infinite; }
@keyframes steam {
    0%   { opacity: 0; transform: translateY(14px) scale(.75); }
    25%  { opacity: .95; }
    100% { opacity: 0; transform: translateY(-52px) scale(1.35); }
}

/* ---------- Marker sweep under accent words ---------- */
.section-title .accent, .page-hero-title .accent, .hero h1 .accent {
    position: relative;
    z-index: 0;
}
.section-title .accent::after, .page-hero-title .accent::after, .hero h1 .accent::after {
    content: "";
    position: absolute;
    left: -.06em; right: -.06em; bottom: .04em;
    height: .16em;
    background: var(--yellow);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s ease .35s;
}
html:not(.anim) .section-title .accent::after,
html:not(.anim) .page-hero-title .accent::after,
html:not(.anim) .hero h1 .accent::after,
html.anim .reveal.in .section-title .accent::after,
html.anim .page-hero-title .accent::after,
html.anim .hero h1 .accent::after { transform: scaleX(1); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2.5rem; padding-bottom: 3.5rem; }
    .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
    .hero-visual::before { width: 140px; height: 140px; top: -24px; right: -14px; }
    /* On small screens the chip leaves the photo and sits below it in normal
       flow - absolutely positioned over the arch it covers the whole portrait. */
    .hero-chip {
        position: static;
        width: fit-content;
        margin: 1.2rem auto 0;
        transform: rotate(-1.2deg);
    }
    .hero-chip .chip-row { flex-wrap: wrap; }
    .hero-stamp { top: -14px; left: -8px; width: 72px; height: 72px; }
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .split .arch { margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .panel-green { padding: 2.5rem 1.5rem; }
    .panel-wrap { padding: 3.5rem 1rem; }
}
@media (max-width: 820px) {
    .menu-list { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 480px) {
    .section { padding: 3.5rem 1rem; }
    .hero h1 { font-size: clamp(2rem, 8.6vw, 2.6rem); }
    .btn { padding: .85rem 1.5rem; font-size: .92rem; }
    .band { padding: 3rem 1.4rem; }
    .band::before { width: 220px; height: 220px; top: -100px; right: -90px; }
    .menu-section { padding: 2rem 1rem 3.5rem; }
    .menu-thumb { width: 96px; height: 96px; }
    .menu-item { grid-template-columns: 96px 1fr; gap: .9rem; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 1.5rem 1.3rem 1.7rem; }
    .pkg-grid { grid-template-columns: 1fr; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
    html.anim .reveal { opacity: 1; transform: none; }
    .ticker { overflow-x: auto; }
    .ticker-track { animation: none; }
    .scroll-truck { display: none; }
    .section-title .accent::after, .page-hero-title .accent::after, .hero h1 .accent::after { transform: scaleX(1); }
}
