/* ============================================================
   Pizza LaTina Chrast — stylesheet
   Vizuální identita: žlutá + černá + bílá (dle plakátu La Tina)
   ============================================================ */

:root {
    --accent: #fbc900;
    --accent-dark: #dfb200;
    --accent-deep: #a97f00; /* tmavá hořčicová pro drobný text na bílé */
    --bg: #ffffff;
    --panel: #ffffff;
    --panel-2: #f6f5f3;
    --line: #e8e6e2;
    --ink: #161311;
    --text: #33302c;
    --muted: #8b857d;
    --dark: #161311;
    --radius: 16px;
    --radius-lg: 26px;
    --maxw: 1160px;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    --shadow: 0 22px 45px -22px rgba(20, 16, 12, .30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
body {
    padding-top: 68px; /* místo pro fixní hlavičku */
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ---------- Display headings ---------- */
.display {
    font-weight: 900;
    font-size: clamp(2.2rem, 6.5vw, 4rem);
    line-height: .98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--ink);
}
.display--sm { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.display--center { text-align: center; }

.eyebrow {
    display: inline-block;
    font-weight: 800;
    font-size: .76rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 12px;
}

.section__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section__sub { margin-top: 16px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 800; font-size: .92rem; letter-spacing: .02em;
    text-transform: uppercase;
    padding: 14px 28px; border-radius: 999px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--ink); box-shadow: 0 14px 30px -12px rgba(251,201,0,.6); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--lg { padding: 17px 38px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: 0 10px 26px -18px rgba(20,16,12,.45); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 11px; line-height: 1; }
.logo__mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo__mark--photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); }
.logo__script { font-family: 'Yellowtail', cursive; font-weight: 400; font-size: 1.75rem; color: var(--ink); line-height: 1; }
.logo__script--light { color: var(--accent); font-size: 2rem; }
.logo__text { display: flex; flex-direction: column; }
.logo__main { font-weight: 900; font-size: 1.45rem; letter-spacing: .04em; color: var(--ink); }
.logo__main span { color: var(--accent); }
.logo__main--light { color: #fff; }
.logo__main--light span { color: var(--accent); }
.logo__sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--accent-deep); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; gap: 28px; }
.nav__link { font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; position: relative; padding: 4px 0; color: var(--ink); }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent); transition: width .2s ease; }
.nav__link:hover { color: var(--accent-deep); }
.nav__link:hover::after { width: 100%; }
.nav__link.is-current { color: var(--accent-deep); }
.nav__link.is-current::after { width: 100%; }
.nav__close { display: none; }
.header__tel {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 900; font-size: 1rem; color: var(--ink); white-space: nowrap;
    margin-left: auto; padding: 9px 18px; border-radius: 999px;
    background: var(--accent); box-shadow: 0 8px 20px -8px rgba(251,201,0,.9);
    transition: transform .15s ease, background .2s ease;
}
.header__tel .ico { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2.2; }
.header__tel:hover { background: var(--accent-dark); transform: translateY(-1px); color: var(--ink); }
.nav { margin-left: auto; }
.header__inner { gap: 18px; }
@media (min-width: 921px) { .nav__cta { display: none; } }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: var(--ink); border: 0; cursor: pointer; padding: 10px; border-radius: 10px; }
.nav__toggle span { width: 22px; height: 3px; background: #fff; border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    min-height: calc(100svh - 68px);
    display: flex; align-items: center;
    padding: 64px 0 0;
    background: var(--accent);
    overflow: hidden;
}
/* obří obrysový nápis v pozadí */
.hero::before {
    content: 'PIZZA';
    position: absolute; top: 50%; left: 32%; transform: translate(-50%, -50%);
    font-weight: 900; font-size: clamp(11rem, 26vw, 22rem); line-height: 1;
    color: transparent; -webkit-text-stroke: 2px rgba(22,19,17,.07);
    letter-spacing: .02em; pointer-events: none; white-space: nowrap;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
/* maskot: ostrý <img> ukotvený na spodní hranu sekce (bez upscalingu) */
.hero__mascot-wrap {
    position: absolute; right: 3%; bottom: 0; z-index: 1;
    height: min(94%, 860px); pointer-events: none;
}
.hero__mascot {
    display: block; height: 100%; width: auto;
}
/* komiksový „mráček" nad prsty opičáka — ve stylu ilustrace (tlustý černý obrys) */
.hero__bubble {
    position: absolute; top: -2%; right: 4%; width: clamp(150px, 15vw, 205px);
    z-index: 3; pointer-events: none;
    animation: bubbleFloat 3.4s ease-in-out infinite;
}
.hero__bubble-cloud { display: block; width: 100%; height: auto; filter: drop-shadow(0 12px 20px rgba(20,16,12,.22)); }
.hero__bubble-text {
    position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
    width: 72%; text-align: center;
    font-family: 'Yellowtail', cursive; font-weight: 400; color: var(--ink);
    font-size: clamp(1.1rem, 1.55vw, 1.65rem); line-height: 1.06;
}
@keyframes bubbleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.hero__content { max-width: 560px; }
.hero .eyebrow { color: var(--ink); }
.hero__script {
    font-family: 'Yellowtail', cursive; font-weight: 400;
    font-size: clamp(4.6rem, 12vw, 8.6rem);
    line-height: 1; color: var(--ink);
    margin-top: 4px;
}
.hero__cats {
    font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
    font-size: clamp(.86rem, 2vw, 1.05rem); color: var(--ink);
    margin-top: 10px;
}
.hero__tagline { margin: 18px 0 28px; font-weight: 500; font-size: clamp(1rem, 2.2vw, 1.18rem); color: rgba(22,19,17,.78); max-width: 420px; }
.hero__tagline strong { color: var(--ink); font-weight: 800; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__branches { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 4px; }
.hero__branch {
    font-family: var(--font); font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 999px; color: var(--ink);
    background: transparent; border: 1.5px solid var(--ink); transition: .2s;
}
.hero__branch span { transition: transform .2s ease; }
.hero__branch:hover { background: rgba(22,19,17,.06); }
.hero__branch:hover span { transform: translateX(3px); }
.hero__branch--active { background: var(--dark); border-color: var(--dark); color: #fff; }
.hero__branch--active:hover { background: #000; }
.hero__cta { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 14px 30px -12px rgba(22,19,17,.45); } 50% { box-shadow: 0 16px 42px -8px rgba(22,19,17,.6); } }

.hero__facts { display: flex; gap: 34px; margin-top: 36px; flex-wrap: wrap; }
.hero__facts li { font-size: .8rem; color: rgba(22,19,17,.65); text-transform: uppercase; letter-spacing: .06em; display: flex; flex-direction: column; gap: 2px; }
.hero__facts strong { font-weight: 900; font-size: 1.6rem; color: var(--ink); letter-spacing: 0; }


.hero__stamp {
    position: absolute; top: -12px; right: -6px;
    width: 106px; height: 106px; border-radius: 50%;
    background: var(--dark); color: #fff;
    display: grid; place-items: center; text-align: center;
    font-weight: 900; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; line-height: 1.3;
    box-shadow: 0 16px 32px -14px rgba(20,16,12,.6);
    transform: rotate(9deg);
}
.hero__stamp::after {
    content: ''; position: absolute; inset: 7px; border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,.5);
}

/* ---------- Tina ribbon ---------- */
.ribbon { background: var(--dark); color: #f3efe9; }
.ribbon__inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; padding: 12px 0; text-align: center; }
.ribbon p { font-weight: 600; font-size: .95rem; }
.ribbon__link { font-weight: 900; text-transform: uppercase; font-size: .85rem; letter-spacing: .04em; color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 1px; white-space: nowrap; }
.ribbon__link:hover { opacity: .75; }

/* ---------- Menu ---------- */
.menu { background: var(--bg); padding: 60px 0 30px; }
/* výrazný štítek „krabice zdarma", ať si toho zákazník hned všimne */
.menu__freebox {
    display: block; width: fit-content; max-width: min(90%, 440px);
    margin: 28px auto 4px; padding: 12px 26px; text-align: center;
    background: var(--accent); color: var(--ink);
    border-radius: 18px; border: none;
    font-weight: 800; font-size: clamp(.9rem, 1.5vw, 1.05rem);
    text-transform: uppercase; letter-spacing: .03em; line-height: 1.3;
    box-shadow: 0 12px 26px -12px rgba(20,16,12,.45);
}
.menu__freebox strong { font-weight: 900; white-space: nowrap; }
.menu__freebox-ico { margin-right: 8px; font-size: 1.35em; }
.menu__freebox[hidden] { display: none; }
/* dvojice štítků: krabice zdarma + půlená pizza */
.menu__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: stretch; margin: 28px auto 4px; }
.menu__badges[hidden] { display: none; }
.menu__badges .menu__freebox { margin: 0; }
.menu__freebox--half { background: var(--dark); color: #fff; }
.menu__freebox--half .menu__freebox-ico { font-weight: 900; color: var(--accent); }
/* na úvodu navazuje nabídka hned na žluté hero — bez velké mezery */
.hero + .menu { padding-top: 12px; }
/* obal filtru s náznakem, že se dá scrollovat doprava */
.menu__scroller { position: relative; }
.menu__scroller::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 8px; width: 64px;
    background: linear-gradient(90deg, rgba(255,255,255,0), var(--bg) 74%);
    pointer-events: none; opacity: 0; transition: opacity .2s ease; z-index: 1;
}
.menu__scroller__hint {
    position: absolute; top: calc(50% - 5px); right: 4px; transform: translateY(-50%);
    z-index: 2; display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 999px;
    background: #fff; color: var(--ink);
    border: 1px solid rgba(22,16,12,.12);
    box-shadow: 0 6px 18px -6px rgba(20,16,12,.45);
    opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.menu__scroller__hint svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.menu__scroller.can-scroll::after { opacity: 1; }
.menu__scroller.can-scroll .menu__scroller__hint { opacity: 1; animation: hintNudge 1.4s ease-in-out infinite; }
@keyframes hintNudge { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(3px); } }

/* filtr: jedna úhledná řada — na širších displejích vycentrovaná,
   na mobilu vodorovně scrollovatelná (rovně vedle sebe, nerozházené) */
.menu__tabs {
    display: flex; flex-direction: column; gap: 8px;
    width: min(100%, 460px); margin: 0 auto 18px; padding: 0;
}
.menu__tab {
    width: 100%; white-space: normal;
    font-family: var(--font); font-weight: 800; font-size: .86rem; text-transform: uppercase; letter-spacing: .03em;
    padding: 13px 22px; border-radius: 999px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--panel); color: var(--ink); border: 1px solid var(--ink); transition: .2s;
}
.menu__tab:hover { border-color: var(--accent); }
.menu__tab.is-active { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.menu__tab-count {
    font-size: .68rem; font-weight: 800; line-height: 1; color: var(--ink);
    background: rgba(36,26,18,.1); border-radius: 999px; padding: 4px 7px;
}
.menu__tab.is-active .menu__tab-count { background: rgba(0,0,0,.14); color: var(--ink); }

.menu__subtabs {
    display: flex; flex-wrap: nowrap; gap: 8px;
    width: fit-content; max-width: 100%; margin: 0 auto 34px;
    overflow-x: auto; overflow-y: hidden; padding: 2px 2px 8px;
    scrollbar-width: none; -ms-overflow-style: none;
}
.menu__subtabs::-webkit-scrollbar { display: none; }
.menu__subtabs:empty { margin: 4px auto 28px; }
.menu__subtab {
    flex: 0 0 auto; white-space: nowrap;
    font-family: var(--font); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em;
    padding: 8px 16px; border-radius: 999px; cursor: pointer;
    background: transparent; color: var(--ink); border: 1px solid var(--ink); transition: .2s;
}
.menu__subtab:hover { border-color: var(--accent-dark); }
.menu__subtab.is-active { background: var(--dark); border-color: var(--dark); color: #fff; }

/* menu karty — pizza vykukuje přes pravý okraj karty */
.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.menu-card {
    position: relative; overflow: hidden;
    background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 236px 26px 28px; /* vpravo rezervovaný prostor pro fotku */
    min-height: 208px;
    display: flex; align-items: center;
    box-shadow: 0 12px 28px -22px rgba(20,16,12,.35);
    transition: border-color .2s ease;
    animation: fadeUp .4s ease both;
}
.menu-card:hover { border-color: var(--accent); }
.menu-card__body { position: relative; z-index: 2; width: 100%; min-width: 0; }
.menu-card__name { font-weight: 800; font-size: clamp(1.3rem, 2.2vw, 1.65rem); color: var(--ink); line-height: 1.12; display: inline-block; }
.menu-card__name::after { content: ''; display: block; width: 100%; height: 4px; background: var(--accent); border-radius: 3px; margin-top: 9px; }
.menu-card__desc { font-size: .92rem; color: var(--muted); margin-top: 12px; }
.menu-card__allergens { color: #d62828; font-weight: 700; white-space: nowrap; }
.menu-card__num { color: var(--accent-dark); }
/* zvýraznění novinek v nabídce */
.menu-card--new { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(251,201,0,.45), 0 12px 28px -22px rgba(20,16,12,.35); }
.menu-card--new .menu-card__name { margin-top: 14px; }
.menu-card__new {
    position: absolute; top: 0; left: 0; z-index: 3;
    font-size: .64rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em;
    color: var(--ink); background: var(--accent);
    padding: 5px 13px 6px; border-radius: 0 0 14px 0;
    box-shadow: 0 6px 14px -8px rgba(20,16,12,.5);
}
.menu-card__prices { display: flex; gap: 16px; margin-top: 14px; }
.menu-card__prices span { font-weight: 800; font-size: 1.02rem; color: var(--ink); display: inline-flex; align-items: baseline; gap: 5px; }
.menu-card__prices small { font-weight: 600; font-size: .66rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.menu-card__box {
    display: inline-block; margin-top: 8px;
    font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
    color: var(--accent-dark);
}
.menu-card__tag {
    display: inline-block; margin-top: 11px;
    font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    color: #fff; background: var(--dark); padding: 4px 10px; border-radius: 6px;
}
.menu-card__tag--alt { color: var(--ink); background: var(--accent); }
.menu-card__photo {
    position: absolute; top: 50%; right: -66px; transform: translateY(-50%);
    width: 292px; height: 292px; pointer-events: none; z-index: 1;
    will-change: transform;
}
.menu-card__photo .pizza-svg { width: 100%; height: 100%; filter: drop-shadow(0 14px 22px rgba(20,16,12,.35)); opacity: 0; }
.menu-card__photo.no-photo .pizza-svg { opacity: 1; }
.menu-card__realphoto {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%; z-index: 2;
    box-shadow: 0 16px 28px rgba(20,16,12,.35);
    opacity: 0; transition: opacity .25s ease;
    will-change: transform;
}
.menu-card__realphoto.is-loaded { opacity: 1; }
/* přísady (toppings) — fotka jako výřez, splývá s bílou kartou */
.menu-card__photo--topping { right: -4px; width: 236px; height: 236px; }
.menu-card__realphoto--cut {
    border-radius: 0; box-shadow: none; object-fit: contain; background: transparent;
}

.menu-card--plain { padding: 24px 28px; min-height: 0; }
.menu-card--plain .menu-card__body { width: 100%; }
.menu__note { text-align: center; margin-top: 28px; font-size: .84rem; color: var(--muted); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Galerie (slider top pizzy) ---------- */
.gallery { background: linear-gradient(180deg, #fff 0%, #fdf3cf 100%); padding: 78px 0 64px; }
.gallery__wrap { position: relative; }
.gallery__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--accent); color: var(--ink);
    display: grid; place-items: center;
    box-shadow: 0 14px 30px -10px rgba(20,16,12,.45);
    transition: transform .18s ease, background .2s ease;
}
.gallery__arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.gallery__arrow:hover { transform: translateY(-50%) scale(1.1); background: var(--accent-dark); }
.gallery__arrow.is-off { opacity: 0; pointer-events: none; transform: translateY(-50%) scale(.8); }
.gallery__arrow { transition: transform .18s ease, background .2s ease, opacity .2s ease; }
.gallery__arrow--prev { left: 18px; }
.gallery__arrow--next { right: 18px; }
@media (max-width: 700px) { .gallery__arrow { width: 44px; height: 44px; } .gallery__arrow--prev { left: 8px; } .gallery__arrow--next { right: 8px; } }
.gallery__more { text-align: center; margin-top: 38px; }
.gallery__cta { box-shadow: 0 18px 34px -12px rgba(20,16,12,.55); }
.gallery__cta:hover { transform: translateY(-3px); box-shadow: 0 24px 42px -14px rgba(20,16,12,.6); }
.gallery__track {
    display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 6px 22px 22px; margin-top: 8px;
    scrollbar-width: thin; scrollbar-color: var(--accent) var(--line);
    -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar { height: 8px; }
.gallery__track::-webkit-scrollbar-track { background: var(--line); border-radius: 999px; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }
.gallery__item {
    position: relative; flex: 0 0 auto; width: min(320px, 78vw); scroll-snap-align: center;
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(to top, rgba(20,16,12,.9) 20%, transparent);
    color: #fff; padding: 44px 18px 18px;
}
.gallery__num {
    flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent); color: var(--ink);
    display: grid; place-items: center;
    font-family: 'Yellowtail', cursive; font-weight: 400; font-size: 1.5rem; line-height: 1;
    padding-bottom: 4px; /* opticky vycentrovat script číslici */
    box-shadow: 0 6px 16px -6px rgba(0,0,0,.6);
}
.gallery__badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--accent); color: var(--ink);
    font-weight: 900; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
    padding: 6px 13px; border-radius: 999px;
    box-shadow: 0 6px 16px -6px rgba(20,16,12,.5);
    animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
/* zvýraznění karet v sekci Novinky */
#novinky .gallery__item {
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 5px rgba(251,201,0,.16), 0 20px 40px -22px rgba(20,16,12,.4);
}
#novinky { background: linear-gradient(180deg, #fffdf4 0%, #fdeaa0 100%); }
.gallery__name {
    font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
    font-size: 1.12rem; line-height: 1.1;
}
.gallery__cap { display: grid; gap: 3px; min-width: 0; }
.gallery__ing {
    font-weight: 500; font-size: .74rem; line-height: 1.35;
    color: rgba(255,255,255,.82); text-transform: none; letter-spacing: 0;
}
.gallery__label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .18em; color: var(--accent); text-transform: uppercase; margin-bottom: 2px; }

/* ---------- Jak se k nám dostat + formulář (kontakt.html) ---------- */
.cesta { background: var(--panel-2); border-top: 1px solid var(--line); padding: 78px 0; }
.cesta__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; align-items: stretch; }
.cesta__map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.cesta__side { display: flex; flex-direction: column; gap: 16px; }
.cesta__photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.cesta__tips { display: grid; gap: 10px; }
.cesta__tips li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.cesta__tips .ico { margin-top: 4px; }
.cesta__side .btn { align-self: flex-start; }
@media (max-width: 860px) { .cesta__grid { grid-template-columns: 1fr; } .cesta__map iframe { min-height: 300px; } }

.formular { background: #fff; padding: 78px 0 90px; }
.form { max-width: 680px; margin-inline: auto; display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.form__field { display: grid; gap: 7px; }
.form__field span { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
.form__field input, .form__field textarea {
    font: inherit; color: var(--ink); background: #fff;
    border: 2px solid var(--line); border-radius: 14px; padding: 13px 16px;
    outline: 0; transition: border-color .2s ease, box-shadow .2s ease; resize: vertical;
}
.form__field input:focus, .form__field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(251,201,0,.18); }
.form__submit { text-align: center; margin-top: 6px; }

/* ---------- Nabídka: hledání + řazení ---------- */
.menu__controls { display: flex; gap: 12px; justify-content: center; align-items: stretch; flex-wrap: wrap; margin: 4px 0 28px; }
.menu__searchbox {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--ink); border-radius: 999px;
    padding: 11px 20px; width: min(400px, 100%);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.menu__searchbox:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(251,201,0,.18); }
.menu__searchbox .ico { stroke: var(--muted); width: 19px; height: 19px; }
.menu__searchbox input { border: 0; outline: 0; font: inherit; font-weight: 600; width: 100%; background: transparent; color: var(--ink); }
.menu__searchbox input::placeholder { color: var(--muted); font-weight: 500; }
.menu__searchbox input::-webkit-search-cancel-button { -webkit-appearance: none; }
.menu__clear {
    display: none; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
    border: 0; background: var(--line); color: var(--ink); cursor: pointer;
    place-items: center; transition: background .15s ease, transform .15s ease;
}
.menu__clear svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; }
.menu__clear:hover { background: var(--accent); transform: scale(1.1); }
.menu__searchbox.has-q .menu__clear { display: grid; }
.menu__sort {
    appearance: none; -webkit-appearance: none; cursor: pointer;
    font: inherit; font-weight: 700; font-size: .92rem; color: var(--ink);
    border: 1px solid var(--ink); border-radius: 999px;
    padding: 11px 44px 11px 20px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161311' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center / 15px;
    transition: border-color .2s ease;
}
.menu__sort:hover, .menu__sort:focus { border-color: var(--accent); outline: 0; }
.menu__empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 36px 0; font-weight: 600; }

/* ---------- Fotogrid (další fotky ve fotogalerii) ---------- */
.fotogrid { background: var(--panel-2); border-top: 1px solid var(--line); padding: 78px 0 90px; }
.fotogrid__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 10px;
}
.fotogrid__item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); background: #fff;
}
.fotogrid__item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; transition: transform .35s ease; }
.fotogrid__item:hover img { transform: scale(1.06); }
.fotogrid__item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(20,16,12,.78), transparent);
    color: #fff; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
    padding: 26px 12px 10px;
}
@media (max-width: 900px) { .fotogrid__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .fotogrid__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---------- Alergeny (sbalitelné) ---------- */
.alergeny { background: #fff; padding: 46px 0 56px; }
.alergeny__details { max-width: 620px; margin-inline: auto; }
.alergeny__toggle {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: fit-content; margin-inline: auto; cursor: pointer; list-style: none;
    padding: 13px 26px; border-radius: 999px;
    border: 2px solid var(--accent); background: var(--accent);
    font-weight: 800; text-transform: uppercase; font-size: .88rem; letter-spacing: .04em;
    color: var(--ink); user-select: none;
    box-shadow: 0 14px 30px -12px rgba(251,201,0,.6);
    transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.alergeny__toggle::-webkit-details-marker { display: none; }
.alergeny__toggle:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(251,201,0,.75); }
.alergeny__toggle .ico { stroke: currentColor; }
.alergeny__chev { transition: transform .25s ease; }
.alergeny__details[open] .alergeny__chev { transform: rotate(180deg); }
.alergeny__img { margin-top: 22px; }
.alergeny__img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ---------- USP (accent) ---------- */
.usp { position: relative; overflow: hidden; background: var(--accent); color: var(--ink); text-align: center; padding: 72px 0 0; }
.usp .container { padding-bottom: 72px; }
.usp .display { color: var(--ink); }
.usp__lead { max-width: 560px; margin: 16px auto 38px; color: rgba(22,19,17,.78); font-weight: 500; }
.usp__lead strong { color: var(--ink); font-weight: 800; }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 38px; }
.usp__card {
    background: rgba(0,0,0,.07); border: 1px solid rgba(0,0,0,.14);
    border-radius: var(--radius); padding: 26px 18px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    transition: transform .2s ease, background .2s ease;
}
.usp__card:hover { transform: translateY(-4px); background: rgba(0,0,0,.12); }
/* ---------- Dipy i na pizzu: pizza se scrollem rozletí na 4 kousky, text uvnitř ---------- */
.split { --p: 0; background: linear-gradient(180deg, #fdf3cf 0%, #fff 100%); padding: 82px 0 92px; overflow: hidden; }
.split__stage {
    position: relative; width: min(500px, 84vw); aspect-ratio: 1; margin-inline: auto;
    filter: drop-shadow(0 24px 38px rgba(20,16,12,.28));
}
/* čtvrtky jedné pizzy — --p 0 = celá pizza, 1 = rozletěné do rohů (řízeno scrollem) */
.split__q { position: absolute; width: 50%; height: 50%; display: block; will-change: transform; }
.split__q--tl { left: 0;  top: 0;    transform: translate(calc(var(--p) * -17%), calc(var(--p) * -17%)); }
.split__q--tr { right: 0; top: 0;    transform: translate(calc(var(--p) * 17%),  calc(var(--p) * -17%)); }
.split__q--bl { left: 0;  bottom: 0; transform: translate(calc(var(--p) * -17%), calc(var(--p) * 17%)); }
.split__q--br { right: 0; bottom: 0; transform: translate(calc(var(--p) * 17%),  calc(var(--p) * 17%)); }
/* text uprostřed — objeví se, jak se kousky rozjíždějí */
.split__center {
    position: absolute; left: 50%; top: 50%; z-index: 2;
    width: min(62%, 320px); transform: translate(-50%, -50%);
    display: grid; justify-items: center; gap: 11px; text-align: center;
    opacity: var(--p); pointer-events: auto;
}
.split__center::before {
    content: ''; position: absolute; left: 50%; top: 50%; z-index: -1;
    width: 165%; height: 155%; transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(253,247,232,.97) 42%, rgba(253,247,232,.8) 64%, transparent 82%);
}
.split__note { font-weight: 600; font-size: .9rem; color: var(--text); max-width: 24ch; }
@media (max-width: 620px) {
    .split { padding: 50px 0 58px; }
    .split__center h2 { font-size: 1.35rem; }
    .split__note { font-size: .78rem; }
    .split__center .btn { padding: 11px 18px; font-size: .74rem; }
}
@media (prefers-reduced-motion: reduce) { .split { --p: 1 !important; } }
.usp__card svg { width: 42px; height: 42px; color: var(--ink); margin-bottom: 4px; }
.usp__card strong { font-weight: 800; font-size: 1rem; }
.usp__card span { font-size: .82rem; color: rgba(22,19,17,.7); line-height: 1.45; }

/* kapající okraj žluté sekce (podle předlohy) */
.drip {
    height: 96px; margin-top: -2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='150'%3E%3Cg fill='%23fbc900'%3E%3Crect width='640' height='30'/%3E%3Ccircle cx='4' cy='30' r='19'/%3E%3Ccircle cx='35' cy='30' r='24'/%3E%3Ccircle cx='70' cy='30' r='19'/%3E%3Ccircle cx='101' cy='30' r='21'/%3E%3Ccircle cx='129' cy='30' r='14'/%3E%3Ccircle cx='155' cy='30' r='19'/%3E%3Ccircle cx='188' cy='30' r='21'/%3E%3Ccircle cx='215' cy='30' r='13'/%3E%3Ccircle cx='239' cy='30' r='16'/%3E%3Ccircle cx='261' cy='30' r='13'/%3E%3Ccircle cx='286' cy='30' r='24'/%3E%3Ccircle cx='324' cy='30' r='12'/%3E%3Ccircle cx='349' cy='30' r='18'/%3E%3Ccircle cx='378' cy='30' r='22'/%3E%3Ccircle cx='413' cy='30' r='22'/%3E%3Ccircle cx='441' cy='30' r='21'/%3E%3Ccircle cx='466' cy='30' r='20'/%3E%3Ccircle cx='491' cy='30' r='12'/%3E%3Ccircle cx='507' cy='30' r='15'/%3E%3Ccircle cx='529' cy='30' r='21'/%3E%3Ccircle cx='554' cy='30' r='24'/%3E%3Ccircle cx='589' cy='30' r='17'/%3E%3Ccircle cx='617' cy='30' r='21'/%3E%3Crect x='10' y='0' width='21' height='75.1' rx='10.5'/%3E%3Ccircle cx='20.5' cy='75.1' r='13.9'/%3E%3Crect x='43' y='0' width='20' height='82.5' rx='10.0'/%3E%3Ccircle cx='53.0' cy='82.5' r='12.5'/%3E%3Crect x='75' y='0' width='24' height='77.3' rx='12.0'/%3E%3Ccircle cx='87.0' cy='77.3' r='14.7'/%3E%3Crect x='118' y='0' width='13' height='59.5' rx='6.5'/%3E%3Ccircle cx='124.5' cy='59.5' r='8.5'/%3E%3Cellipse cx='124.5' cy='78' rx='3.4' ry='4.7'/%3E%3Crect x='150' y='0' width='19' height='54.4' rx='9.5'/%3E%3Ccircle cx='159.5' cy='54.4' r='13.6'/%3E%3Crect x='179' y='0' width='16' height='74.7' rx='8.0'/%3E%3Ccircle cx='187.0' cy='74.7' r='11.3'/%3E%3Cellipse cx='187.0' cy='99' rx='4.5' ry='6.2'/%3E%3Crect x='217' y='0' width='19' height='56.6' rx='9.5'/%3E%3Ccircle cx='226.5' cy='56.6' r='12.4'/%3E%3Crect x='254' y='0' width='18' height='60.0' rx='9.0'/%3E%3Ccircle cx='263.0' cy='60.0' r='11.0'/%3E%3Cellipse cx='263.0' cy='84' rx='4.4' ry='6.1'/%3E%3Crect x='285' y='0' width='15' height='80.9' rx='7.5'/%3E%3Ccircle cx='292.5' cy='80.9' r='10.1'/%3E%3Cellipse cx='292.5' cy='104' rx='4.0' ry='5.6'/%3E%3Crect x='325' y='0' width='15' height='122.1' rx='7.5'/%3E%3Ccircle cx='332.5' cy='122.1' r='8.9'/%3E%3Crect x='354' y='0' width='19' height='98.0' rx='9.5'/%3E%3Ccircle cx='363.5' cy='98.0' r='11.0'/%3E%3Crect x='389' y='0' width='13' height='84.9' rx='6.5'/%3E%3Ccircle cx='395.5' cy='84.9' r='9.1'/%3E%3Crect x='421' y='0' width='13' height='78.3' rx='6.5'/%3E%3Ccircle cx='427.5' cy='78.3' r='7.7'/%3E%3Crect x='447' y='0' width='13' height='70.3' rx='6.5'/%3E%3Ccircle cx='453.5' cy='70.3' r='7.7'/%3E%3Crect x='480' y='0' width='26' height='80.8' rx='13.0'/%3E%3Ccircle cx='493.0' cy='80.8' r='16.2'/%3E%3Cellipse cx='493.0' cy='108' rx='6.5' ry='8.9'/%3E%3Crect x='523' y='0' width='13' height='128.0' rx='6.5'/%3E%3Ccircle cx='529.5' cy='128.0' r='8.0'/%3E%3Crect x='550' y='0' width='22' height='105.8' rx='11.0'/%3E%3Ccircle cx='561.0' cy='105.8' r='15.2'/%3E%3Crect x='594' y='0' width='15' height='69.9' rx='7.5'/%3E%3Ccircle cx='601.5' cy='69.9' r='9.1'/%3E%3C/g%3E%3C/svg%3E") repeat-x top center;
    background-size: auto 100%;
}
.drip + .menu { padding-top: 0; }

/* ---------- About ---------- */
.about { background: var(--panel); padding: 84px 0; }
.about__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.about__inner--solo { grid-template-columns: 1fr; max-width: 720px; text-align: center; }
.about__inner--solo .about__list { max-width: 420px; margin-inline: auto; text-align: left; }
.about__inner--solo .about__list li { justify-content: flex-start; }
.about__visual { position: relative; }
.about__visual::before {
    content: ''; position: absolute; inset: 0;
    transform: translate(16px, 16px);
    border-radius: var(--radius-lg); border: 2px solid var(--accent);
    z-index: 0; pointer-events: none;
}
.about__photo {
    position: relative; z-index: 1;
    width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
    border-radius: var(--radius-lg); border: 0;
    box-shadow: 0 24px 50px -20px rgba(20,16,12,.35);
}
.about__stamp {
    position: absolute; bottom: 6px; right: 6px;
    width: 108px; height: 108px; border-radius: 50%;
    background: var(--accent); color: #fff;
    display: grid; place-items: center; text-align: center;
    font-weight: 900; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; line-height: 1.25;
    box-shadow: 0 14px 26px -12px rgba(20,16,12,.55);
    transform: rotate(-8deg);
}
.about__content p { color: var(--text); margin-top: 14px; }
.about__content strong { color: var(--accent-deep); font-weight: 800; }
.about__list { margin: 22px 0; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink); }
.about__list .ico { width: 21px; height: 21px; stroke: var(--accent-deep); }
.about__company { font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--accent) 0%, #ffe789 32%, #fff 78%); border-bottom: 1px solid var(--line); padding: 76px 0; }
.reviews__title { margin-bottom: 34px; }
.reviews__viewport { overflow: hidden; max-width: 720px; margin-inline: auto; }
.reviews__track { display: flex; transition: transform .5s ease; }
.review { min-width: 100%; text-align: center; padding: 0 14px; }
.review blockquote { font-size: clamp(1.1rem, 2.6vw, 1.4rem); font-weight: 600; font-style: italic; line-height: 1.5; color: var(--ink); }
.review figcaption { margin-top: 18px; }
.review figcaption strong { display: block; font-weight: 800; color: var(--accent-deep); }
.review figcaption span { font-size: .82rem; color: var(--muted); }
.reviews__stars { text-align: center; color: #f0a500; font-size: 1.35rem; letter-spacing: 4px; margin: -20px 0 30px; }
.reviews__stars span { display: block; letter-spacing: .04em; font-size: .85rem; color: var(--text); margin-top: 4px; }
.reviews__stars strong { font-weight: 900; color: var(--ink); }
.reviews__more { text-align: center; margin-top: 28px; }
.reviews__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.reviews__dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: #d9d6d1; cursor: pointer; transition: .2s; }
.reviews__dots button.is-active { background: var(--ink); transform: scale(1.2); }

/* ---------- Pobočky ---------- */
.pobocky { background: var(--bg); padding: 84px 0; }
.pobocky__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin-inline: auto; }
.branch { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: 0 12px 28px -22px rgba(20,16,12,.35); transition: transform .2s ease, border-color .2s ease; }
.branch:hover { transform: translateY(-5px); border-color: var(--accent); }
.branch--featured { border-color: var(--accent); }
.branch__tag { position: absolute; top: -13px; left: 28px; background: var(--accent); color: var(--ink); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 6px 13px; border-radius: 999px; }
.branch__tag--alt { background: var(--dark); color: #fff; }
.branch__name { font-weight: 900; font-size: 1.7rem; text-transform: uppercase; color: var(--ink); margin-top: 6px; }
.branch__city { color: var(--accent-deep); font-weight: 700; margin-bottom: 16px; }
.branch__info { display: grid; gap: 12px; margin-bottom: 18px; }
.branch__info li { color: var(--text); }
.branch__info a { color: var(--ink); font-weight: 800; }
.branch__map { font-weight: 800; color: var(--accent-deep); text-transform: uppercase; font-size: .85rem; letter-spacing: .03em; }
.branch__map:hover { text-decoration: underline; }
.branch__links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 2px; }
.muted { color: var(--muted); }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--panel); border-top: 1px solid var(--line); padding: 84px 0; }
.kontakt__panel {
    position: relative; overflow: hidden;
    background: var(--accent); border-radius: 34px;
    padding: 58px 44px 54px;
    box-shadow: 0 34px 70px -34px rgba(169,127,0,.65);
}
.kontakt__panel::before {
    content: 'PIZZA'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(-4deg);
    font-weight: 900; font-size: clamp(8rem, 22vw, 17rem); line-height: 1;
    color: transparent; -webkit-text-stroke: 2px rgba(22,19,17,.06);
    letter-spacing: .02em; pointer-events: none; white-space: nowrap;
}
.kontakt__panel > * { position: relative; }
.kontakt__head { margin-bottom: 36px; }
.kontakt__head .eyebrow { color: var(--ink); }
.kontakt__head .section__sub { color: rgba(22,19,17,.72); }
.kontakt__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 920px; margin-inline: auto; }
.kontakt__cta { text-align: center; margin-top: 30px; }
.kontakt__card { display: flex; gap: 14px; align-items: center; background: #fff; border: 0; padding: 18px 22px; border-radius: var(--radius); box-shadow: 0 16px 32px -20px rgba(20,16,12,.4); }
.kontakt__card > span { font-size: 1.5rem; }
.kontakt__card strong { display: block; color: var(--ink); }
.kontakt__card a { color: var(--ink); font-weight: 800; }
.kontakt__card div > span { color: var(--muted); }
.kontakt__hours { background: var(--dark); color: #eceae6; border-radius: var(--radius-lg); padding: 30px 28px; }
.kontakt__hours h3 { font-weight: 900; font-size: 1.5rem; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hours { display: grid; gap: 2px; margin-bottom: 22px; }
.hours li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; }
.hours--closed { color: var(--accent); font-weight: 700; }

/* ---------- Otevírací doba ---------- */
.oteviraci { background: #201a15; color: #eceae6; padding: 78px 0; }
.oteviraci .display { color: #fff; }
.oteviraci .eyebrow { color: var(--accent); }
.oteviraci__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin-inline: auto; }
.oteviraci__card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg); padding: 28px 26px;
}
.oteviraci__card h3 { font-weight: 900; font-size: 1.15rem; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.oteviraci__card .hours { margin-bottom: 16px; }
.oteviraci__card .hours li { border-color: rgba(255,255,255,.12); }
.oteviraci__tel { font-weight: 800; color: #fff; }
.oteviraci__tel:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #a9a49d; }
.footer__map { padding-top: 46px; }
.footer__map iframe {
    display: block; width: 100%; height: 340px; border: 0;
    border-radius: var(--radius-lg); filter: grayscale(.15);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,.6);
}
.footer__inner {
    display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px;
    padding-top: 52px; padding-bottom: 44px;
}
.footer .logo__script--light { font-size: 2.4rem; display: inline-block; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.footer__col p { font-size: .9rem; margin-top: 12px; line-height: 1.6; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { transition: color .18s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__quote { font-style: italic; color: #cfc9c0; max-width: 34ch; }
.footer__company { font-size: .82rem; color: #857f77; }
.footer__legal { font-size: .74rem; line-height: 1.55; color: #6f6a63; margin-top: 8px; max-width: 620px; }
.footer__contact li { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.footer__contact .ico { width: 18px; height: 18px; flex: 0 0 auto; stroke: var(--accent); fill: none; }
.footer__contact li:last-child .ico { fill: var(--accent); stroke: none; }
.footer__hours { list-style: none; }
.footer__hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .92rem; padding: 4px 0; }
.footer__hours li span:first-child { color: #fff; font-weight: 600; }
.footer__time { color: var(--accent); font-weight: 700; }
.footer__time--closed { color: #857f77; }
.footer__note { font-size: .82rem; color: #857f77; margin-top: 14px; line-height: 1.55; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
    display: grid; place-items: center; color: var(--accent);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.footer__social a svg { width: 20px; height: 20px; fill: currentColor; }
.footer__social a:nth-child(2) svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer__social a:hover { transform: translateY(-3px); background: var(--accent); color: var(--ink); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer__bottom p { font-size: .82rem; text-align: center; color: #7a756e; }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 12px 26px -8px rgba(251,201,0,.65); transition: transform .2s ease; }
.fab:hover { transform: scale(1.08); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
    /* karty už by byly moc úzké na text + fotku → jeden sloupec */
    .menu__grid { grid-template-columns: 1fr; }
    .usp__grid { grid-template-columns: repeat(2, 1fr); }
    /* mobil: text nahoře, opice ve flow pod ním — žlutá končí s fotkou */
    .hero { min-height: 0 !important; display: block; padding: 42px 0 0; }
    .hero::before { display: none; }
    .hero__content { max-width: 620px; margin-inline: auto; text-align: center; }
    .hero__tagline { margin-inline: auto; }
    .hero__actions, .hero__facts, .hero__branches { justify-content: center; }
    .hero__mascot-wrap {
        position: relative; right: auto; height: auto;
        width: min(420px, 88%); margin: -78px auto -2px;
    }
    .hero__mascot { width: 100%; height: auto; }
    .hero__bubble { top: 10%; right: -3%; width: clamp(112px, 31vw, 150px); }
    .hero + .menu { padding-top: 8px; }
}
@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .kontakt__cards { grid-template-columns: 1fr; }
    .oteviraci__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
    /* hamburger dřív, aby se odkazy v hlavičce nelámaly */
    .nav {
        position: fixed; top: 0; right: 0; bottom: 0; left: auto;
        height: 100vh; height: 100dvh; width: min(320px, 84vw);
        background: #fff; flex-direction: column; align-items: flex-start;
        padding: 80px 30px 30px; gap: 22px; transform: translateX(100%);
        transition: transform .3s ease; box-shadow: -20px 0 60px -20px rgba(20,16,12,.4);
        z-index: 999; overflow-y: auto;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 18px; width: 100%; }
    .nav__link { font-size: 1.05rem; }
    .nav__cta { width: 100%; }
    .nav__close { display: block; position: absolute; top: 20px; right: 22px; background: none; border: 0; color: var(--ink); font-size: 1.5rem; cursor: pointer; }
    .nav__toggle { display: flex; }
    /* telefon přisunout k burgeru (ne doprostřed) */
    .header__inner { justify-content: flex-start; gap: 10px; }
    .header__tel { margin-left: auto; }
}
@media (max-width: 760px) {
    .menu-card { min-height: 186px; padding: 24px 196px 24px 24px; }
    .menu-card__photo { width: 246px; height: 246px; right: -58px; }
    .menu-card__photo--topping { width: 196px; height: 196px; right: -2px; }
    .pobocky__grid { grid-template-columns: 1fr; }
    .ribbon__inner { flex-direction: column; gap: 6px; }
}
@media (max-width: 560px) {
    .header__tel span { display: none; }
    .menu { padding-top: 20px; }
    .section__head { margin-bottom: 32px; }
    .kontakt__panel { padding: 40px 22px 38px; border-radius: 26px; }
    .usp__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; }
    .hero { padding-top: 48px; }
    .hero__mascot-wrap { width: min(360px, 94%); margin-top: -66px; }
    .menu-card { min-height: 168px; padding: 20px 152px 20px 20px; }
    .menu-card__photo { width: 208px; height: 208px; right: -56px; }
    .menu-card__photo--topping { width: 150px; height: 150px; right: 0; }
    .menu-card__name { font-size: 1.22rem; }
    .menu-card__desc { font-size: .86rem; margin-top: 10px; }
    .menu-card__prices { gap: 12px; }
    .menu-card__prices span { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
}

/* ---------- Inline ikony (SVG místo emoji) ---------- */
.ico {
    width: 17px; height: 17px; flex-shrink: 0;
    fill: none; stroke: var(--accent-deep); stroke-width: 1.9;
    stroke-linecap: round; stroke-linejoin: round;
    vertical-align: -3px; display: inline-block;
}
.branch__info li { display: flex; align-items: flex-start; gap: 9px; }
.branch__info .ico { margin-top: 4px; }
.kontakt__ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(251,201,0,.22); flex-shrink: 0; }
.kontakt__ico .ico { width: 20px; height: 20px; vertical-align: 0; }
.hero__scroll .ico--chev { width: 30px; height: 30px; }
.fab .ico--fab { width: 26px; height: 26px; stroke: var(--ink); }

/* ============================================================
   VÝKON + ANIMACE + HOVER EFEKTY
   ============================================================ */

/* --- Hero: nástup obsahu při načtení --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}
.hero__content > * { animation: fadeUp .65s cubic-bezier(.2,.7,.25,1) both; }
.hero__content > :nth-child(1) { animation-delay: .05s; }
.hero__content > :nth-child(2) { animation-delay: .12s; }
.hero__content > :nth-child(3) { animation-delay: .19s; }
.hero__content > :nth-child(4) { animation-delay: .26s; }
.hero__content > :nth-child(5) { animation-delay: .33s; }
.hero__mascot { animation: fadeUp .8s cubic-bezier(.2,.7,.25,1) .2s both; }

/* --- Scroll reveal (třídu .reveal přidává JS, bez JS se nic neskrývá) --- */
.reveal.reveal {
    opacity: 0; transform: translateY(26px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.25,1);
    transition-delay: var(--rd, 0s);
}
.reveal.reveal.is-in { opacity: 1; transform: none; }

/* --- Hover blbosti --- */
/* USP karty: ikonka se protáhne */
.usp__card svg { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.usp__card:hover svg { transform: rotate(-8deg) scale(1.18); }

/* galerie & fotogrid: karta se nadzvedne */
.gallery__item { transition: transform .3s ease, box-shadow .3s ease; }
.gallery__item:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -18px rgba(20,16,12,.4); }
.gallery__num { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.gallery__item:hover .gallery__num { transform: scale(1.15) rotate(-6deg); }
.fotogrid__item { transition: transform .25s ease, box-shadow .25s ease; }
.fotogrid__item:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -16px rgba(20,16,12,.35); }

/* kontaktní karty */
.kontakt__card { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.kontakt__card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -20px rgba(20,16,12,.45); }
.kontakt__ico { transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .2s ease; }
.kontakt__card:hover .kontakt__ico { transform: rotate(-10deg) scale(1.12); background: var(--accent); }

/* otevírací doba */
.oteviraci__card { transition: border-color .25s ease, transform .25s ease; }
.oteviraci__card:hover { border-color: var(--accent); transform: translateY(-4px); }

/* pobočky: stín navíc */
.branch:hover { box-shadow: 0 24px 44px -22px rgba(20,16,12,.4); }

/* taby menu: drobný lift */
.menu__tab { transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.menu__tab:hover { transform: translateY(-2px); }

/* logo: opička zakývá */
.logo__mark--photo { transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo__mark--photo { transform: rotate(-10deg) scale(1.08); }

/* footer odkazy: posun doprava */
.footer__col ul a { transition: color .18s ease, padding-left .18s ease; }
.footer__col ul a:hover { padding-left: 5px; }

/* alergeny toggle: ikonka info zapulzuje */
.alergeny__toggle .ico:first-child { transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.alergeny__toggle:hover .ico:first-child { transform: scale(1.2); }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .gallery__item, .fotogrid__item, .kontakt__card, .oteviraci__card, .menu__tab { transition: none; }
    .gallery__badge { animation: none; }
}

/* ---------- Lightbox (rozkliknutí fotek v galerii) ---------- */
.gallery__item img.is-zoomable, .fotogrid__item img.is-zoomable { cursor: zoom-in; }
body.no-scroll { overflow: hidden; }
.lightbox {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    background: rgba(15,12,10,.93); backdrop-filter: blur(3px);
    animation: lbFade .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; max-width: 94vw; }
.lightbox__img {
    max-width: 94vw; max-height: 80vh; width: auto; height: auto;
    border-radius: 16px; object-fit: contain; background: #fff;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,.75);
}
.lightbox__cap { color: #fff; font-weight: 700; font-size: 1.05rem; text-align: center; }
.lightbox__btn {
    position: absolute; border: none; cursor: pointer; color: #fff;
    width: 52px; height: 52px; border-radius: 999px; line-height: 1;
    font-size: 1.9rem; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.14); transition: background .2s ease, transform .2s ease;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); transform: scale(1.06); }
.lightbox__close { top: 18px; right: 18px; font-size: 1.4rem; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 560px) {
    .lightbox__btn { width: 44px; height: 44px; font-size: 1.6rem; }
    .lightbox__close { font-size: 1.2rem; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
    .lightbox__cap { font-size: .95rem; }
}
