:root {
  /* Layout: jedna „stopa“ pro šířku a gutter (responzivní mřížka / 12 sloupců jako rytmus) */
  --container-max: 1360px;
  --grid-columns: 12;
  --grid-gutter: clamp(20px, 3.5vw, 32px);
  --grid-gap-lg: clamp(28px, 4vw, 48px);
  /* Referenční breakpointy (hodnoty v @media níže držte s tímto sladěné) */
  --bp-sm: 640px;
  --bp-md: 720px;
  --bp-nav: 820px;
  --bp-pillars: 820px;
  --bp-rating: 820px;
  --bp-story: 860px;
  --bp-menu: 860px;
  --bp-footer: 860px;
  --bp-visit: 900px;
  --bp-reviews: 980px;
  --bp-hero: 960px;

  /* Italian trattoria palette */
  --cream: #f7efe1;         /* paper / base */
  --cream-2: #efe4cf;       /* darker cream */
  --ink: #1a2e1f;           /* deep basil (near black, warm) */
  --ink-dim: #5a6a55;
  --green: #2f7a43;         /* Italian green */
  --green-deep: #235a32;
  --red: #c93a2a;            /* Italian red / tomato */
  --red-deep: #a22b1e;
  --white: #ffffff;
  --yellow: #e9b948;         /* cheese accent */
  --bg: var(--cream);
  --accent: var(--red);
  --line: rgba(26,46,31,.15);
  --shadow: 0 30px 80px -20px rgba(26,46,31,.25);
  --display: 'Anton', 'Archivo Black', Impact, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --text-body: 16px;
  --text-ingredients: 15px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--grid-gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

h1,h2,h3 { font-family: var(--display); font-weight: 400; letter-spacing: .01em; line-height: .9; margin: 0; text-transform: uppercase; }

/* ========== italian stripe bar ========== */
.stripe {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--green) 0 33.33%, var(--white) 33.33% 66.66%, var(--red) 66.66% 100%);
}
footer .stripe--footer {
  margin-top: 40px;
}

.rating-bar__cta {
  align-self: center;
  justify-self: end;
}
@media (max-width: 820px) {
  .rating-bar__cta {
    justify-self: stretch;
    text-align: center;
  }
}

.visit .vat-note {
  color: rgba(247,239,225,.4);
  font-size: 0.92em;
}

/* ========== NAV ========== */
nav.top {
  position: sticky;
  top: 0;
  z-index: 40;
  /* bez backdrop-filter — jinak position:fixed u .nav-drawer v některých prohlížečích
     bere jako containing block jen výšku lišty a položky menu zmizí */
  background: rgba(247, 239, 225, 0.97);
  border-bottom: 1px solid var(--line);
}
nav.top .wrap {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 24px);
  height: 76px;
  overflow: visible;
}
nav.top .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
nav.top .brand img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  display: block;
}
nav.top .brand .name {
  font-family: var(--display); font-size: 22px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  flex-shrink: 0;
  color: var(--ink);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
nav.top.is-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.top.is-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
nav.top.is-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-drawer {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.top ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
}
nav.top ul a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}
nav.top ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right .3s ease;
}
nav.top ul a:hover::after {
  right: 0;
}
nav.top ul a.is-active {
  color: var(--red);
}
nav.top ul a.is-active::after {
  right: 0;
}
@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }
  /* spodní rámeček + zaokrouhlení výšky lišty = bílá škvíra nad výsuvem */
  nav.top {
    border-bottom: none;
  }
  nav.top.is-open {
    z-index: 60;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  nav.top .wrap {
    justify-content: flex-start;
    position: relative;
    z-index: 50;
    height: 76px;
    min-height: 0;
    padding-block: 0;
  }
  nav.top .brand {
    gap: 14px;
  }
  nav.top .nav-drawer {
    position: fixed;
    /* top doplňuje nav-mobile.js (--nav-drawer-top) = spodní hrana .wrap ve viewportu; fallback pro úplný začátek stránky */
    top: var(--nav-drawer-top, calc(6px + 76px + env(safe-area-inset-top, 0px) - 1px));
    left: 0;
    right: 0;
    bottom: 0;
    flex: none;
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #2f7a43;
    border-top: none;
    box-shadow: none;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s;
  }
  nav.top.is-open .nav-drawer {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav.top ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 max(24px, env(safe-area-inset-bottom, 0px));
  }
  nav.top ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  nav.top ul li:last-child {
    border-bottom: none;
  }
  nav.top ul a {
    display: block;
    width: 100%;
    padding: clamp(18px, 5vw, 22px) max(var(--grid-gutter), env(safe-area-inset-left, 0px))
      clamp(18px, 5vw, 22px) max(var(--grid-gutter), env(safe-area-inset-right, 0px));
    font-size: 15px;
    letter-spacing: 0.09em;
    line-height: 1.45;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--cream);
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease;
  }
  nav.top ul a::after {
    display: none;
  }
  nav.top ul a:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: -2px;
    z-index: 1;
    position: relative;
  }
  /* aktivní řádek — <li> třída + :has(aria-current) (záloha), vždy !important */
  #site-nav-drawer li.nav-drawer__item--current,
  #site-nav-drawer ul > li:has(> a[aria-current="page"]) {
    background-color: #c93a2a !important;
  }
  #site-nav-drawer li.nav-drawer__item--current > a,
  #site-nav-drawer ul > li:has(> a[aria-current="page"]) > a {
    background-color: transparent !important;
    background-image: none !important;
    color: #fff !important;
    font-weight: 600;
  }
  #site-nav-drawer li.nav-drawer__item--current:hover,
  #site-nav-drawer ul > li:has(> a[aria-current="page"]):hover {
    background-color: var(--red-deep) !important;
  }
  #site-nav-drawer li.nav-drawer__item--current > a:hover,
  #site-nav-drawer ul > li:has(> a[aria-current="page"]) > a:hover {
    color: #fff !important;
  }
}
@media (max-width: 820px) and (hover: hover) {
  /* bez :not() by zelený hover přebil aktivní řádek (dotyk „drží“ hover i bez .is-active) */
  nav.top ul a:hover:not(.is-active):not([aria-current="page"]) {
    background: #3d9a55;
    color: var(--white);
  }
}
@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  nav.top .nav-drawer {
    transition: none;
  }
}

/* aktivní odkaz: inline barva z PHP; na desktopu zrušit (horizontální lišta) */
@media (min-width: 821px) {
  #site-nav-drawer li.nav-drawer__item--current {
    background-color: transparent !important;
  }
  #site-nav-drawer a.is-active,
  #site-nav-drawer a[aria-current="page"] {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--red) !important;
    font-weight: 500;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 72px 0 120px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    /* warm oven glow, right */
    radial-gradient(60% 80% at 88% 32%, rgba(233,140,48,.22), transparent 70%),
    /* soft basil halo, bottom-left */
    radial-gradient(50% 70% at 6% 92%, rgba(47,122,67,.16), transparent 72%),
    /* paper tone gradient */
    linear-gradient(180deg, #faf2e3 0%, #f2e7cf 100%);
}
/* subtle paper grain (svg noise) */
.hero .grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 .36  0 0 0 0 .28  0 0 0 0 .16  0 0 0 .18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
/* top arch / diners-menu style border */
.hero .arch {
  position: absolute; inset: 20px; z-index: 0; pointer-events: none;
  border: 1px solid rgba(26,46,31,.18);
  border-radius: 480px 480px 12px 12px;
}
.hero .arch::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed rgba(26,46,31,.15);
  border-radius: 470px 470px 6px 6px;
}
/* Giant ghost wordmark behind */
.hero .ghost-word {
  position: absolute; inset: auto 5% -3.5% 5%; z-index: 0; pointer-events: none;
  font-family: var(--serif); font-weight: 700; font-style: italic;
  font-size: clamp(198px, 28.8vw, 468px);
  line-height: .8; text-align: center;
  color: rgba(26,46,31,.032);
  letter-spacing: -.02em; text-transform: none;
}

.hero .inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--grid-gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-lg);
  align-items: center;
}
@media (max-width: 960px) {
  .hero .inner { grid-template-columns: minmax(0, 1fr); }
}

/* left */
.hero .eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-dim);
}
.hero .eyebrow-row .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.hero .eyebrow-row .flag { display: inline-flex; height: 12px; border: 1px solid var(--line); }
.hero .eyebrow-row .flag span {
  display: block;
  width: 8px;
  height: 100%;
}
.hero .eyebrow-row .flag span:nth-child(1) { background: var(--green); }
.hero .eyebrow-row .flag span:nth-child(2) { background: var(--white); }
.hero .eyebrow-row .flag span:nth-child(3) { background: var(--red); }
.hero .eyebrow-row__sep { opacity: 0.4; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: none;
  margin-top: 24px;
  color: var(--ink);
}
.hero h1 .acc { color: var(--red); font-style: italic; font-weight: 700; }
.hero h1 .green { color: var(--green); font-style: italic; font-weight: 700; }
.hero h1 .under {
  display: block;
  margin-top: clamp(14px, 2.6vw, 32px);
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}

.hero-voice {
  margin-top: clamp(12px, 2vw, 20px);
  max-width: min(36rem, 100%);
  margin-inline: auto;
  text-align: center;
}
.hero-voice__lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 1.9vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.hero-voice__pull {
  position: relative;
  margin: clamp(10px, 1.4vw, 14px) 0 0;
  padding: 0 clamp(12px, 3vw, 28px);
  border: 0;
  margin-inline: auto;
  max-width: min(26rem, 100%);
  text-align: center;
}
/* zúžené horní / spodní linky */
.hero-voice__pull::before,
.hero-voice__pull::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(11.5rem, 62%);
  height: 1px;
  background: rgba(26, 46, 31, 0.14);
  pointer-events: none;
}
.hero-voice__pull::before {
  top: 0;
}
.hero-voice__pull::after {
  bottom: 0;
}
.hero-voice__emph {
  position: relative;
  margin: 0 auto;
  max-width: min(22rem, 100%);
  padding: clamp(2.35rem, 5vw, 3rem) 0 clamp(2.1rem, 4.5vw, 2.75rem);
  font-family: var(--serif);
  font-size: clamp(20px, 4.2vw, 25px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.48;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  text-align: center;
  text-wrap: balance;
}
.hero-voice__emph::before,
.hero-voice__emph::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 5vw, 2.1rem);
  line-height: 1;
  color: var(--green);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}
.hero-voice__emph::before {
  content: "„";
  top: clamp(10px, 1.5vw, 16px);
}
.hero-voice__emph::after {
  content: "“";
  bottom: clamp(10px, 1.5vw, 16px);
}

.hero .chips {
  margin-top: clamp(16px, 2.4vw, 26px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero .chips span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
}
.hero .chips span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

.hero .ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px; font-weight: 600;
  text-decoration: none; font-size: 14px; letter-spacing: .04em;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  font-family: var(--body);
}
.btn.primary { background: var(--red); color: var(--white); }
.btn.primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn svg { width: 16px; height: 16px; }

.hero .ctas .btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero .ctas .btn.ghost {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.hero .ctas .btn.ghost:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* photo side */
.hero .photo-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 520px;
}
.hero .plate {
  position: relative;
  width: 100%; max-width: 560px; aspect-ratio: 1/1;
}
/* cream plate circle */
.hero .plate::before {
  content: ""; position: absolute; inset: 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 30%, #fffaf0, #e9dcc3 70%, #d6c3a0 100%);
  box-shadow: 0 40px 80px -20px rgba(26,46,31,.3), inset 0 -20px 40px rgba(214,195,160,.4);
}
.hero .plate::after {
  /* plate rim */
  content: ""; position: absolute; inset: 2%;
  border-radius: 50%;
  border: 14px solid #f7efe1;
  box-sizing: border-box;
  pointer-events: none;
}
.hero .plate > img:not(.orn) {
  position: relative; z-index: 2;
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(26,46,31,.35));
}

/* price stamp */
.hero .stamp {
  position: absolute; z-index: 3;
  top: 2%; right: -2%;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: grid; place-items: center; text-align: center;
  transform: rotate(-10deg);
  font-family: var(--display); font-size: 18px; letter-spacing: .04em;
  box-shadow: var(--shadow);
  line-height: 1; padding: 10px;
  border: 3px dashed rgba(255,255,255,.45);
  box-sizing: border-box;
}
.hero .stamp small { font-family: var(--mono); font-size: 10px; display: block; letter-spacing: .2em; margin-bottom: 4px; font-weight: 600; }
.hero .stamp b { font-family: var(--display); font-size: 40px; display: block; font-weight: 400; }
@media (max-width: 960px) {
  .hero .stamp {
    display: none;
  }
  .hero .since {
    display: none;
  }
}

/* SVG ornaments around the plate */
.hero .orn { position: absolute; z-index: 3; pointer-events: none; }
.hero .orn-leaf {
  bottom: -4%;
  left: -6%;
  width: clamp(96px, 14vw, 128px);
  max-width: 24%;
  height: auto;
  aspect-ratio: 1718 / 1712;
  object-fit: contain;
  transform: rotate(-18deg);
  transform-origin: 50% 70%;
  filter: drop-shadow(0 10px 12px rgba(26,46,31,.18));
}
.hero .orn-flour { top: 2%; left: 4%; mix-blend-mode: screen; opacity: .6; }

/* ribbon / since */
.hero .since {
  position: absolute; z-index: 3; left: -8px; bottom: 12%;
  background: var(--green); color: var(--white);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: none;
  padding: 8px 14px;
  transform: rotate(-90deg); transform-origin: left bottom;
  white-space: nowrap;
  line-height: 1.25;
}

/* marquee banner */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 6px solid var(--green);
  border-bottom: 6px solid var(--red);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll var(--marquee-duration, 45s) linear infinite;
  will-change: transform;
  font-family: var(--display);
  font-size: 28px; text-transform: uppercase; letter-spacing: .02em;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-shrink: 0;
}
.marquee-track span.sep { color: var(--red); }
.marquee-track span.basil { color: var(--green); }
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ========== SECTION SHELL ========== */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 24px);
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .section-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
  .section-head .num { justify-self: start; }
  .section-head .side { text-align: left; justify-self: start; }
}
.section-head h2 {
  font-family: var(--serif); font-weight: 600; text-transform: none; font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -.015em; line-height: .95;
}
.section-head h2 em { font-style: italic; color: var(--red); font-weight: 700; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========== REVIEWS ========== */
.reviews { background: var(--cream); }
.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}
.reviews-more .btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reviews-page .reviews--page {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.reviews-grid--page {
  margin-top: clamp(8px, 1.5vw, 16px);
}
.reviews-page__footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: clamp(40px, 5vw, 56px);
}
.rating-bar {
  display: grid; grid-template-columns: auto 1px 1fr auto; gap: 32px; align-items: center;
  padding: 28px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  margin-bottom: 48px;
}
@media (max-width: 820px) { .rating-bar { grid-template-columns: 1fr; gap: 20px; } .rating-divider { display: none; } }
.stars-big { display: flex; align-items: center; gap: 18px; }
.stars-big .stars { color: #e9b948; font-size: 24px; letter-spacing: 2px; }
.stars-big .score { font-family: var(--serif); font-weight: 700; font-size: 42px; line-height: 1; color: var(--ink); }
.stars-big .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); margin-top: 4px; }
.rating-divider { width: 1px; height: 56px; background: var(--line); }
.rating-stats { display: flex; gap: 36px; }
.rating-stats > div { display: flex; flex-direction: column; }
.rating-stats b { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--green); line-height: 1; }
.rating-stats span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); margin-top: 6px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(26,46,31,.25); }
.review .quote {
  position: absolute; top: 12px; right: 18px;
  font-family: var(--serif); font-weight: 700; font-size: 72px; line-height: 1;
  color: rgba(201,58,42,.15);
}
.review .stars { color: #e9b948; font-size: 15px; letter-spacing: 2px; }
.review p {
  margin: 0; font-family: var(--serif); font-size: var(--text-body); line-height: 1.55;
  color: var(--ink); font-weight: 400; text-wrap: pretty;
}
.review .who {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 12px;
}
.review .avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px; color: var(--white);
  flex-shrink: 0;
}
.review .who .meta { display: flex; flex-direction: column; line-height: 1.3; }
.review .who .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review .who .when { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); margin-top: 2px; }
.review .g-mark {
  position: absolute; bottom: 14px; right: 18px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-dim);
  display: flex; align-items: center; gap: 6px;
}
.review .g-mark .g {
  width: 14px; height: 14px; border-radius: 50%; background: conic-gradient(from 0deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
  display: inline-block;
}
.section-head h2 .bz { color: var(--green); font-weight: 700; font-style: italic; }
.section-head .num {
  font-family: var(--mono); color: var(--red); font-size: 12px; letter-spacing: .2em;
}
.section-head .side {
  font-family: var(--mono); color: var(--ink-dim); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; text-align: right;
}

/* Dvě pole (nadpis + side) — bez čísla 01 vlevo */
.section-head--simple {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(28px, 4vw, 40px);
}
@media (max-width: 640px) {
  .section-head--simple .side {
    text-align: left;
    justify-self: start;
  }
}

.page-index .section-head--simple h2 {
  font-size: clamp(36px, 5.5vw, 64px);
}

/* ========== STORY ========== */
section.story {
  padding-block: clamp(44px, 6vw, 76px);
}
.story .story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: center;
}
@media (max-width: 860px) {
  .story .story-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
.story-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: clamp(8px, 1.5vw, 16px) clamp(4px, 2vw, 12px) 12px;
  min-height: 0;
  box-sizing: border-box;
}
.story-intro__deco {
  position: absolute;
  inset: -8px -4% auto -4%;
  height: clamp(160px, 38vw, 240px);
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.story-deco-45 {
  position: absolute;
  right: 14%;
  top: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 18vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(47, 122, 67, 0.09);
  user-select: none;
}
.story-deco-45-unit {
  font-size: 0.26em;
  letter-spacing: 0.02em;
  vertical-align: 0.35em;
}
.story-deco-slice {
  position: absolute;
  left: 6%;
  bottom: -4%;
  width: clamp(112px, 24vw, 172px);
  height: auto;
  aspect-ratio: 373 / 353;
  object-fit: contain;
  opacity: 0.22;
  transform: rotate(-14deg);
  transform-origin: 30% 80%;
}
.story-lead-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(42rem, 100%);
  margin: 0 auto;
  padding: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.story-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 500;
  line-height: 1.58;
  color: var(--ink);
  max-width: none;
  text-align: center;
  text-wrap: pretty;
}
.story-lead + .story-lead {
  margin-top: clamp(14px, 2.2vw, 20px);
}
.story-lead strong {
  color: var(--red);
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.15;
}
.story-pizza-counter {
  margin: clamp(16px, 2.4vw, 22px) 0 0;
  width: 100%;
  max-width: none;
  padding: clamp(18px, 2.6vw, 24px) clamp(18px, 3vw, 26px) clamp(30px, 4vw, 38px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 239, 225, 0.55) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px -24px rgba(26, 46, 31, 0.2);
  position: relative;
  text-align: center;
}
.story-pizza-counter::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 4.5rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green) 0 36%, var(--white) 36% 64%, var(--red) 64% 100%);
  box-shadow: 0 1px 0 rgba(26, 46, 31, 0.06);
  pointer-events: none;
}
.story-pizza-counter__figure {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 14px;
  text-align: center;
}
.story-pizza-counter__figure--hero {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(6px, 1.2vw, 12px) clamp(10px, 2vw, 18px);
  max-width: 100%;
}
.story-pizza-counter__prefix {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  font-style: italic;
  color: var(--ink-dim);
}
.story-pizza-counter__figure--hero .story-pizza-counter__num {
  font-size: clamp(2.75rem, 9.5vw, 4.25rem);
}
.story-pizza-counter__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--green);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}
.story-pizza-counter__unit {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 18px);
  font-weight: 600;
  font-style: italic;
  color: var(--ink-dim);
}
.story-pizza-counter__km,
.story-pizza-counter__oven {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.85vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  text-wrap: pretty;
}
.story-pizza-counter__km strong,
.story-pizza-counter__oven strong {
  color: var(--red);
  font-weight: 700;
}
.story-pizza-counter__note {
  margin: 14px 0 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(26, 46, 31, 0.12);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--ink-dim);
  text-align: center;
  text-wrap: pretty;
}
.story-gallery-hint {
  margin: clamp(18px, 2.5vw, 26px) 0 0;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.story-gallery-hint a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 122, 67, 0.35);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.story-gallery-hint a:hover {
  color: var(--red);
  border-bottom-color: rgba(201, 58, 42, 0.45);
}
.story-gallery-hint--solo {
  margin-top: clamp(24px, 3.5vw, 40px);
}
@media (max-width: 860px) {
  .story-deco-45 {
    right: 10%;
    opacity: 0.85;
  }
}
.story-photo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vw, 36px);
  width: 100%;
}
.story-photo-copy {
  max-width: min(36rem, 100%);
  text-align: center;
}
/* Šířka textu = šířka fotky (max 480px); mono jako u galerijního odkazu */
.story-photo-copy--kicker {
  width: 100%;
  max-width: min(100%, 480px);
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}
.story-photo-copy__head {
  margin: 0 0 clamp(14px, 2.2vw, 20px);
  padding: 0 0 4px;
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.5;
  border-bottom: 1px solid rgba(35, 90, 50, 0.42);
  text-wrap: balance;
}
.story-photo-copy__head-strong {
  font-weight: 700;
}
.story-photo-copy__diplom-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease, filter 0.15s ease;
}
.story-photo-copy__diplom-link:hover {
  color: var(--red-deep);
}
.story-photo-copy__diplom-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 2px;
}
.story-photo-copy__text {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: none;
  color: var(--green-deep);
  text-wrap: pretty;
}
.story .photo {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: min(100%, 480px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--green-deep);
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(26, 46, 31, 0.08),
    0 24px 48px -12px rgba(26, 46, 31, 0.22);
}
.story .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  background: var(--green-deep);
}
.story .photo .tag {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.24em;
  color: var(--cream);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 20px 22px;
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}
.story .photo .tag span {
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* pillars */
.story .pillars {
  margin-top: clamp(32px, 4.5vw, 48px);
}
.pillars {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  position: relative;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 700; font-size: 26px; text-transform: none; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 10px;
}
.pillar p { color: var(--ink-dim); font-size: var(--text-body); line-height: 1.6; margin: 0; }

/* ========== MENU ========== */
.menu { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu .filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  padding: 10px 16px; border: 1px solid var(--line);
  background: transparent; color: var(--ink-dim); cursor: pointer;
  text-transform: uppercase; border-radius: 999px;
  transition: all .15s ease;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.active { background: var(--green); color: var(--white); border-color: var(--green); }

.menu .list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px;
}
@media (max-width: 860px) { .menu .list { grid-template-columns: 1fr; gap: 0; } }

.item {
  display: grid; grid-template-columns: 42px 1fr auto; gap: 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding .2s ease;
}
.item:hover { padding-left: 8px; }
.item .n { font-family: var(--mono); color: var(--red); font-size: 12px; letter-spacing: .1em; font-weight: 600; }
.item .body h4 {
  font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -.005em;
  text-transform: none; margin: 0 0 6px 0; color: var(--ink);
}
.item .body p {
  margin: 0;
  font-size: var(--text-ingredients);
  color: var(--ink-dim);
  line-height: 1.5;
}
.item .price {
  font-family: var(--display); color: var(--ink); font-size: 22px; letter-spacing: .02em;
  white-space: nowrap;
}
.menu-page .item .body h4 {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(16px, 2.2vw, 20px);
}

.menu .foot {
  margin-top: 48px; padding: 28px; background: var(--cream); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 20px;
  border-radius: 6px;
}
.menu .foot .small { color: var(--ink-dim); font-size: var(--text-body); line-height: 1.55; margin: 0; }
.menu .foot .foot-copy { max-width: 62ch; margin-inline: auto; }
.menu .foot .foot-copy-size {
  color: var(--red);
  font-weight: 700;
  font-size: 1.28em;
}
.menu .foot .btn {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* addons + alergeny (nabídka: 2 sloupce přídavky + 1 sloupec náhled s lightboxem) */
.addons {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.menu-sheet-block-title {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: none;
  font-size: clamp(28px, 3.2vw, 36px);
  margin: 0 0 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.menu-sheet-block-title em {
  font-style: italic;
  color: var(--green);
}
.menu-extras-layout {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.menu-extras-layout .addons {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.menu-extras-layout__addons {
  grid-column: span 2;
}
.menu-extras-layout .addon-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .menu-extras-layout {
    grid-template-columns: 1fr;
    margin-top: clamp(40px, 8vw, 56px);
    padding-top: clamp(28px, 5vw, 40px);
    gap: clamp(24px, 5vw, 36px);
  }
  .menu-extras-layout__addons {
    grid-column: span 1;
  }
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  border: none;
  overflow: visible;
}
@media (max-width: 680px) {
  .addon-grid,
  .menu-extras-layout .addon-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.addon {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: var(--text-body);
  background: var(--white);
}
@media (max-width: 520px) {
  .addon {
    padding: 14px 16px;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 8px;
  }
  .addon .price {
    margin-left: auto;
  }
}
.addon .name { color: var(--ink); font-size: var(--text-body); font-weight: 500; }
.addon .price {
  font-family: var(--mono);
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-teaser {
  padding: clamp(32px, 4vw, 52px) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) {
  .menu-teaser {
    padding: 32px 0;
  }
}
.menu-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 36%);
  gap: clamp(36px, 5.5vw, 72px);
  align-items: center;
}
@media (max-width: 720px) {
  .menu-teaser__grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 40px);
  }
}
.menu-teaser__copy {
  min-width: 0;
}
.menu-teaser__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 0.98;
  margin: 0 0 clamp(14px, 2.2vw, 22px);
  color: var(--ink);
}
.menu-teaser__title em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.menu-teaser__lead {
  max-width: 48ch;
  margin: 0 0 clamp(22px, 3vw, 32px);
  color: var(--ink-dim);
  font-size: var(--text-body);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .menu-teaser__copy {
    text-align: center;
  }
  .menu-teaser__actions {
    justify-content: center;
  }
}
.menu-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.menu-teaser__actions .btn {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.menu-teaser__actions .btn.ghost {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.menu-teaser__actions .btn.ghost:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.menu-teaser__visual {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow:
    0 1px 0 rgba(26, 46, 31, 0.06),
    0 28px 56px -32px rgba(26, 46, 31, 0.28);
}
.menu-teaser__visual-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.menu-teaser__visual-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 8px;
}
.menu-teaser__visual-link:hover img {
  opacity: 0.94;
}
.menu-teaser__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 0.2s ease;
}
@media (max-width: 720px) {
  .menu-teaser__visual {
    max-width: min(420px, 100%);
    justify-self: center;
    margin-inline: auto;
  }
}

/* Společná nadpisová lišta pod navigací (Nabídka, Fotogalerie, Recenze, Kontakt, …) */
.page-head {
  padding: clamp(36px, 5vw, 48px) 0 clamp(24px, 3.2vw, 32px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-head__crumb {
  margin: 0 0 clamp(12px, 1.8vw, 14px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.page-head__crumb a {
  color: var(--ink-dim);
  text-decoration: none;
  font-weight: 600;
}
.page-head__crumb a:hover { color: var(--red); }
.page-head__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -.02em;
  text-transform: none;
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}
.page-head__meta {
  margin: clamp(14px, 2vw, 18px) 0 0;
  max-width: 52ch;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ink-dim);
  line-height: 1.55;
}
section.menu.menu--standalone {
  padding-top: 56px;
  padding-bottom: 120px;
}
@media (max-width: 720px) {
  section.menu.menu--standalone {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.menu-page section.menu.menu--standalone {
  background: var(--cream);
  border-top: none;
  border-bottom: none;
}
.menu-page section.menu.menu--standalone > .wrap > .menu-sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3.5vw, 40px) clamp(18px, 3vw, 36px);
  box-shadow: 0 18px 48px -28px rgba(26, 46, 31, 0.14);
  overflow-x: hidden;
}
@media (max-width: 520px) {
  .menu-page section.menu.menu--standalone > .wrap > .menu-sheet {
    padding: clamp(16px, 4vw, 22px) clamp(12px, 3.5vw, 18px);
    border-radius: 6px;
  }
  .menu-sheet-block-title {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 14px;
  }
}
.menu-page .item {
  grid-template-columns: minmax(44px, 3.75rem) 1fr auto;
  align-items: baseline;
  gap: 16px;
}
.menu-page .item .n {
  font-family: var(--mono);
  color: var(--red);
  font-size: calc(24px * 0.8);
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 720px) {
  .menu-page .item .n {
    font-size: clamp(calc(18px * 0.8), 5.2vw, calc(22px * 0.8));
  }
}
.menu-allergens--column {
  margin: 0;
  max-width: none;
  min-width: 0;
}
@media (max-width: 960px) {
  .menu-allergens--column {
    width: 100%;
    max-width: 100%;
  }
  .menu-allergens__lightbox {
    max-width: min(100%, 520px);
    margin-inline: auto;
  }
}
.menu-allergens__lightbox {
  display: block;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--line);
  box-shadow: 0 12px 36px -18px rgba(26, 46, 31, 0.22);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.menu-allergens__lightbox:hover {
  border-color: rgba(26, 46, 31, 0.45);
  box-shadow: 0 16px 44px -16px rgba(26, 46, 31, 0.3);
}
.menu-allergens__lightbox:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.menu-allergens__thumb {
  display: block;
  background: var(--cream);
}
.menu-allergens__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.menu-allergens__hint {
  margin: 12px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  line-height: 1.45;
  text-align: center;
}

.gallery-page .gallery-section {
  padding: 22px 0 64px;
  background: var(--cream);
}
@media (max-width: 720px) {
  .gallery-page .gallery-section {
    padding: 18px 0 48px;
  }
}
.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 380px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-grid li {
  margin: 0;
}
.gallery-grid a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  line-height: 0;
}
.gallery-grid a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.04);
}
.gallery-empty {
  margin: 0;
  color: var(--ink-dim);
  font-size: var(--text-body);
}

.provoz-wrap {
  background: var(--cream);
  padding-bottom: 28px;
}
.provoz-page .provoz-wrap {
  padding-bottom: 0;
}
@media (max-width: 720px) {
  .provoz-wrap {
    padding-bottom: 20px;
  }
  .provoz-page .provoz-wrap {
    padding-bottom: 0;
  }
}
.provoz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 24px;
}
@media (max-width: 900px) {
  .provoz-grid {
    grid-template-columns: 1fr;
  }
}
.provoz-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 28px 32px;
}
.provoz-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 20px;
}
.provoz-kicker--map {
  margin-bottom: 10px;
}
.provoz-body {
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
}
.provoz-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.provoz-address {
  font-style: normal;
  margin: 0 0 20px;
  color: var(--ink);
}
.provoz-ico {
  margin: 0 0 20px;
  color: var(--ink-dim);
}
.provoz-dph {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95em;
}
.provoz-contact {
  margin: 0;
}
.provoz-contact a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}
.provoz-contact a:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
}
.provoz-label {
  color: var(--ink-dim);
  font-weight: 500;
}
.provoz-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body);
}
.provoz-hours th,
.provoz-hours td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  text-align: left;
  vertical-align: top;
}
.provoz-hours th {
  width: 42%;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.provoz-hours th::after {
  content: ':';
}
.provoz-hours td {
  color: var(--ink-dim);
  font-weight: 500;
}
.provoz-hours tr:last-child th,
.provoz-hours tr:last-child td {
  border-bottom: none;
}
.provoz-hours__row--today td,
.provoz-hours__row--today th {
  color: var(--red);
  font-weight: 700;
}
.provoz-hours__row--closed td {
  color: var(--ink-dim);
  opacity: 0.75;
}
.provoz-map-wrap {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 30px;
  overflow: visible;
}
.map-slot {
  min-height: 280px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}
.map-slot--with-map {
  padding: 0;
  border: none;
  min-height: 0;
  overflow: visible;
}
.provoz-page .map-slot--with-map {
  position: relative;
  z-index: 1;
}
.map-slot__maplink {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.map-slot__maplink:hover .map-slot__img {
  opacity: 0.96;
}
.map-slot__frame {
  position: relative;
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  aspect-ratio: 920 / 480;
  background: var(--cream);
  overflow: visible;
  border-radius: 10px;
}
.provoz-page .map-slot__frame {
  box-shadow: 0 1px 4px rgba(26, 46, 31, 0.07);
}
.provoz-page .map-slot__maplink {
  overflow: visible;
}
.map-slot__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 10px;
}
.map-slot__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.map-slot__pin-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, calc(-50% - clamp(34px, 7.5%, 52px)));
  padding: 7px 12px;
  font-family: var(--serif);
  font-size: clamp(12px, 1.65vw, 15px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
  color: var(--ink);
  background: rgba(247, 239, 225, 0.96);
  border: 1px solid rgba(26, 46, 31, 0.2);
  border-radius: 8px;
  box-shadow: 0 6px 20px -4px rgba(26, 46, 31, 0.22);
  pointer-events: none;
}
.map-slot__maplink:hover .map-slot__pin-label {
  background: var(--cream);
  border-color: rgba(26, 46, 31, 0.35);
}
.map-slot__text {
  margin: 0;
  color: var(--ink-dim);
  font-size: var(--text-body);
  max-width: 52ch;
}
.map-slot__text code {
  font-size: 0.9em;
}

/* ========== HOURS / CONTACT ========== */
.visit { background: var(--ink); color: var(--cream); }
.visit .section-head h2 { color: var(--cream); }
.visit .section-head h2 em { color: var(--red); }
.visit .section-head h2 .bz { color: var(--green); }
.visit .section-head .side { color: rgba(247,239,225,.6); }
.visit .grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .visit .grid { grid-template-columns: 1fr; } }
.visit .block h3 {
  font-family: var(--serif); font-weight: 700; text-transform: none; font-size: 28px; margin-bottom: 18px;
  color: var(--cream); border-bottom: 2px solid var(--green); padding-bottom: 12px; letter-spacing: -.01em;
}
.visit .hours { font-family: var(--mono); font-size: var(--text-body); line-height: 2.1; }
.visit .hours .row { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(247,239,225,.15); }
.visit .hours .row.today { color: var(--red); font-weight: 700; }
.visit .hours .row.closed { color: rgba(247,239,225,.4); }
.visit address { font-style: normal; font-size: var(--text-body); line-height: 1.75; color: var(--cream); }
.visit address a { color: var(--cream); text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 3px; }
.visit .phone-big {
  font-family: var(--display); font-size: 44px; letter-spacing: .01em;
  color: var(--cream); text-decoration: none; display: block; line-height: 1;
  margin-bottom: 10px;
}
.visit .phone-big:hover { color: var(--yellow); }
.visit .tip {
  margin-top: 22px; padding: 18px; background: rgba(247,239,225,.06); border-left: 3px solid var(--green);
}
.visit .tip .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,239,225,.6); }
.visit .tip .name { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 26px; margin-top: 6px; color: var(--yellow); }
.visit .tip .d { font-size: var(--text-body); color: rgba(247,239,225,.7); margin-top: 6px; line-height: 1.55; }

/* ========== FOOTER ========== */
footer#konec {
  scroll-margin-top: 88px;
}
footer {
  background: var(--cream-2);
  padding: 80px 0;
}
.provoz-page footer {
  padding-top: 48px;
  padding-bottom: 48px;
}
footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 860px) {
  footer .grid { grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 36px); }
}
@media (max-width: 640px) {
  footer .grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  footer .logo-row {
    justify-content: center;
  }
  footer .foot-lead {
    margin-inline: auto;
    max-width: 36ch;
  }
  footer .bottom {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 2px solid rgba(47, 122, 67, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  footer .bottom .foot-copy,
  footer .bottom .foot-credit {
    max-width: 100%;
  }
  footer {
    position: relative;
    padding: 52px 0 64px;
    box-shadow: 0 -20px 48px -28px rgba(26, 46, 31, 0.18);
  }
  /* italský pruh + lehký „rámeček“ patičky na mobilu */
  footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(
      90deg,
      var(--green) 0%,
      var(--green) 33.33%,
      var(--white) 33.33%,
      var(--white) 66.66%,
      var(--red) 66.66%,
      var(--red) 100%
    );
    pointer-events: none;
  }
  footer::after {
    content: "";
    position: absolute;
    left: var(--grid-gutter);
    right: var(--grid-gutter);
    top: 18px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(26, 46, 31, 0.12) 15%,
      rgba(26, 46, 31, 0.12) 85%,
      transparent
    );
    pointer-events: none;
  }
  footer .grid > .col {
    margin-top: 4px;
    padding-top: 28px;
    border-top: 1px dashed rgba(26, 46, 31, 0.18);
  }
}
footer h4 {
  font-family: var(--serif);
  font-size: clamp(13px, 1.35vw, 15px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 16px 0;
}
footer .logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
footer .logo-row img { height: 72px; width: 72px; object-fit: contain; display: block; }
footer .logo-row .name {
  font-family: var(--display); font-size: 26px; text-transform: uppercase; letter-spacing: .02em; color: var(--ink);
}
footer .col a { color: var(--ink); text-decoration: none; display: block; padding: 4px 0; font-size: var(--text-body); }
footer .foot-lead {
  color: var(--ink-dim);
  max-width: 40ch;
  font-size: var(--text-body);
  line-height: 1.55;
}
footer .col a:hover { color: var(--red); }
footer .bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-family: 'Archivo Narrow', var(--body), system-ui, sans-serif;
  font-size: clamp(12px, 2.4vw, 14px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--ink-dim);
  text-transform: none;
}
footer .bottom .foot-copy,
footer .bottom .foot-credit {
  margin: 0;
  white-space: normal;
  flex-shrink: 1;
  min-width: 0;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  text-align: center;
}
footer .bottom .foot-copy {
  letter-spacing: 0.03em;
}
footer .bottom .foot-credit {
  color: rgba(26, 46, 31, 0.55);
  font-weight: 400;
}
footer .bottom .foot-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .bottom .foot-credit a:hover {
  color: var(--red);
}

/* ========== CALL FAB ========== */
.fab {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 20px 40px -10px rgba(201, 58, 42, 0.55);
  animation: pulse 2s ease-in-out infinite;
}
.fab svg { width: 26px; height: 26px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,58,42,.55); }
  50% { box-shadow: 0 0 0 18px rgba(201,58,42,0); }
}

.fab-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  color: var(--cream);
  background: var(--green);
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 28px -8px rgba(26, 46, 31, 0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    background 0.15s ease,
    color 0.15s ease;
}
.fab-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-to-top.is-visible:hover {
  background: var(--red);
  color: var(--cream);
  transform: translateY(-3px);
}
.fab-to-top:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .fab-to-top {
    transition-duration: 0.01ms;
  }
  .fab-to-top.is-visible:hover {
    transform: none;
  }
}
.fab-to-top svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 480px) {
  .fab {
    left: max(16px, env(safe-area-inset-left, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
  .fab-to-top {
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
  }
}
