@charset "UTF-8";

/* =========================================================
   ŠNYT — vizuální styl
   Paleta: pouze #2E2218 (z loga) + #FFFFFF a jejich průhlednosti.
   Písmo:  Ultra (nadpisy, čísla) × Inter (text)
   ========================================================= */

/* ---------- fonty ---------- */
@font-face {
  font-family: 'Ultra';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ultra-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Ultra';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ultra-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- tokeny ---------- */
:root {
  --brown: #2e2218;
  --white: #ffffff;

  --ink: var(--brown);
  --ink-70: rgba(46, 34, 24, 0.7);
  --ink-muted: rgba(46, 34, 24, 0.68);
  --ink-30: rgba(46, 34, 24, 0.3);
  --ink-18: rgba(46, 34, 24, 0.18);
  --ink-10: rgba(46, 34, 24, 0.1);
  --ink-06: rgba(46, 34, 24, 0.06);

  --paper: #f7f4f1;
  --snow-80: rgba(255, 255, 255, 0.8);
  --snow-60: rgba(255, 255, 255, 0.6);
  --snow-24: rgba(255, 255, 255, 0.24);
  --snow-14: rgba(255, 255, 255, 0.14);

  --display: 'Ultra', 'Bookman Old Style', Georgia, serif;
  --text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --wrap: 1280px;
  --nav-h: 68px;

  --step: clamp(32px, 4.5vw, 64px); /* svislý rytmus sekcí */
}

/* ---------- základ ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.62;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto je nutné — v HTML mají obrázky rozměry kvůli rezervaci místa */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.6vw, 4.7rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.08; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

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

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brown); color: var(--white);
  padding: 10px 16px; font-weight: 600; text-decoration: none;
  transition: top 0.15s;
}
.skip:focus { top: 12px; }

/* ---------- opakující se prvky identity ---------- */

/* oválná kartuše — převzato z tvaru loga */
.oval {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.5em 1.15em 0.55em;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--text);
  font-size: clamp(0.63rem, 0.85vw, 0.73rem);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.oval--ring { position: relative; padding: 0.7em 1.5em 0.75em; }
.oval--ring::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.55;
}
.oval--solid {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* prostý textový štítek bez rámečku — pro popisky, které nemají působit jako tag */
.kicker {
  display: inline-block;
  font-family: var(--text);
  font-size: clamp(0.63rem, 0.85vw, 0.73rem);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.on-dark .kicker,
.s-dark .kicker {
  color: var(--snow-60);
}

/* tečka jako oddělovač uvnitř kartuše */
.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; flex: none; }

/* linka jako z jídelního lístku, s oválným uzlem uprostřed */
.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-18);
  margin: 0;
}
.rule::before, .rule::after {
  content: ''; height: 1px; background: currentColor; flex: 1;
}
.rule i {
  width: 16px; height: 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  flex: none;
}

/* nadpis sekce s pořadovým číslem */
.sec-head {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(18px, 2.4vw, 30px);
}
.sec-num {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  opacity: 0.62;
}
.sec-lead {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--ink-70);
}

/* tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border: 1.5px solid var(--brown);
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: transparent; color: var(--brown); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--brown); }
.btn--ghost:hover { background: var(--brown); color: var(--white); }

.on-dark .btn,
.s-dark .btn {
  background: var(--white); color: var(--brown); border-color: var(--white);
}
.on-dark .btn:hover,
.s-dark .btn:hover { background: transparent; color: var(--white); }
.on-dark .btn--ghost,
.s-dark .btn--ghost { background: transparent; color: var(--white); }
.on-dark .btn--ghost:hover,
.s-dark .btn--ghost:hover { background: var(--white); color: var(--brown); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* plochy sekcí */
.s { padding-block: var(--step); position: relative; }
.s-paper { background: var(--paper); }
.s-dark { background: var(--brown); color: var(--white); }
.s-dark .sec-lead { color: var(--snow-60); }
.s-dark .rule { color: var(--snow-24); }

/* ---------- navigace ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(46, 34, 24, 0.62), rgba(46, 34, 24, 0));
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav.is-solid {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 1px 0 var(--ink-18);
}
.nav.is-solid::before { opacity: 0; }

.nav__inner {
  position: relative;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
}

.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.nav__logo img { width: 46px; height: auto; }
.nav.is-solid .nav__logo img { filter: none; }
.nav__logo img { filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)); }
.nav__word {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__links {
  display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px);
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current='true']::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1.5px solid currentColor; border-radius: 999px;
  background: none; color: inherit; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 17px; height: 1.5px; background: currentColor;
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 17px; height: 1.5px; background: currentColor;
  transition: transform 0.22s ease, top 0.22s ease;
}
.nav__burger span::before { top: -5.5px; }
.nav__burger span::after { top: 5.5px; }
.nav__burger[aria-expanded='true'] span { background: transparent; }
.nav__burger[aria-expanded='true'] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded='true'] span::after { top: 0; transform: rotate(-45deg); }

/* mobilní menu */
.menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--brown); color: var(--white);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.15, 1), visibility 0.38s;
  overflow-y: auto;
}
.menu.is-open { transform: none; visibility: visible; }
.menu a {
  font-family: var(--display);
  font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  text-decoration: none;
  padding: 0.14em 0;
  border-bottom: 1px solid var(--snow-14);
}
.menu__foot { margin-top: auto; padding-top: 28px; display: grid; gap: 14px; }
.menu__foot .btn { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(540px, 88svh, 880px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(46, 34, 24, 0.9) 0%, rgba(46, 34, 24, 0.55) 38%, rgba(46, 34, 24, 0.12) 66%, rgba(46, 34, 24, 0.38) 100%),
    linear-gradient(to right, rgba(46, 34, 24, 0.62) 0%, rgba(46, 34, 24, 0.18) 46%, rgba(46, 34, 24, 0) 72%);
}
.hero__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: calc(var(--nav-h) + 36px) var(--gutter) clamp(34px, 5vw, 64px);
  display: grid; gap: clamp(16px, 2.1vw, 26px);
  justify-items: start;
}
.hero h1 { max-width: 14ch; text-shadow: 0 2px 26px rgba(46, 34, 24, 0.4); }
.hero__lead {
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  color: var(--snow-80);
}

/* stavový pruh v hero */
.status {
  display: inline-flex; align-items: stretch;
  border: 1.5px solid var(--snow-24);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(46, 34, 24, 0.34);
  overflow: hidden;
  align-self: start;
}
.status__cell { padding: 0.85em 1.4em; display: grid; gap: 3px; align-content: center; }
.status__cell + .status__cell { border-left: 1.5px solid var(--snow-24); }
.status__k {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--snow-60);
}
.status__v { font-family: var(--display); font-size: clamp(1rem, 1.7vw, 1.32rem); line-height: 1; }
.status__v small { font-family: var(--text); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(38px, 6vw, 74px);
  display: grid; justify-items: center; gap: 10px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--snow-60);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 48px; background: currentColor; opacity: 0.5;
  animation: drop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drop {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

/* ---------- DNES VAŘÍME ---------- */

/* Přepínače dávají smysl jen se zapnutým JS. Bez něj se vypíše celý týden. */
.daytabs {
  display: none; flex-wrap: wrap; gap: 6px;
  border-bottom: 1px solid var(--ink-18);
  padding-bottom: 14px; margin-bottom: 26px;
}
.js .daytabs { display: flex; }
.daytab {
  appearance: none; background: none; cursor: pointer;
  border: 1.5px solid transparent; border-radius: 999px;
  padding: 0.5em 1em;
  font-family: var(--text); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.daytab:hover { color: var(--ink); border-color: var(--ink-18); }
.daytab[aria-selected='true'] { background: var(--brown); color: var(--white); border-color: var(--brown); }
.daytab__date { font-weight: 500; opacity: 0.85; margin-left: 0.45em; }

.board { display: grid; gap: 0; }
.board__day + .board__day { margin-top: clamp(34px, 5vw, 56px); }
.js .board__day { display: none; margin-top: 0; }
.js .board__day.is-active { display: block; animation: fade 0.35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.board__daylabel {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 14px;
}
.board__daylabel span { font-family: var(--text); font-weight: 500; opacity: 0.55; margin-left: 0.4em; font-size: 0.8em; }

.board__soup {
  display: grid; gap: 4px;
  padding-bottom: 22px; margin-bottom: 6px;
  border-bottom: 2px solid var(--ink);
}
.board__soup .kicker { align-self: start; margin-bottom: 8px; }
.board__soup h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); }

.dish {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0 clamp(12px, 1.6vw, 20px);
  padding: clamp(14px, 1.6vw, 19px) 0;
  border-bottom: 1px solid var(--ink-18);
}
.dish__n {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 0.9;
  color: var(--ink-30);
  min-width: 1.1em;
}
/* stálý lístek jídla nečísluje — prázdná buňka se má srazit */
.dish__n:empty { min-width: 0; }
.dish__name {
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.dish__meta {
  grid-column: 2 / -1;
  font-size: 0.78rem; color: var(--ink-muted); margin-top: 4px;
}
.dish__price {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  white-space: nowrap;
}
.dish__price small { font-family: var(--text); font-size: 0.6em; font-weight: 600; margin-left: 0.2em; }

/* tečkovaná vodicí linka jako v tištěném lístku */
.leader__fill {
  flex: 1;
  border-bottom: 1.5px dotted var(--ink-30);
  transform: translateY(-0.28em);
  min-width: 18px;
}
.s-dark .leader__fill { border-bottom-color: var(--snow-24); }

.board__empty { padding: 34px 0; }

/* ---------- fotografické pásy ---------- */
.band { position: relative; overflow: hidden; }
.band img { width: 100%; height: clamp(340px, 62vh, 660px); object-fit: cover; }
.band__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(24px, 4vw, 54px) var(--gutter);
  color: var(--white);
  background: linear-gradient(to top, rgba(46, 34, 24, 0.8), rgba(46, 34, 24, 0));
}
.band__cap-inner { max-width: var(--wrap); margin-inline: auto; display: grid; gap: 12px; }
.band__cap h2 { font-size: clamp(1.6rem, 4vw, 3.1rem); max-width: 18ch; }

/* trojice fotek s popiskami */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 22px);
}
.trio figure { margin: 0; display: grid; gap: 12px; }
.trio img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.trio figcaption {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
}
.trio figure:nth-child(2) { margin-top: clamp(20px, 4vw, 56px); }
.s-dark .trio figcaption { color: var(--snow-60); }

/* ---------- SALONEK ---------- */
.salonek {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.salonek__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.salonek__text { display: grid; gap: clamp(14px, 1.6vw, 20px); }
.salonek__text p { max-width: 46ch; color: var(--ink-muted); font-size: 1.02rem; }

/* ---------- STÁLÉ MENU ---------- */
.perm { display: grid; gap: clamp(28px, 4vw, 52px); }
.cats {
  display: none; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--ink-18); padding-bottom: 16px;
}
.js .cats { display: flex; }
.cat {
  appearance: none; background: none; cursor: pointer;
  border: 1.5px solid var(--ink-18); border-radius: 999px;
  padding: 0.6em 1.15em;
  font-family: var(--text); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted);
  transition: 0.16s;
}
.cat:hover { color: var(--ink); border-color: var(--ink); }
.cat[aria-selected='true'] { background: var(--brown); color: var(--white); border-color: var(--brown); }

.perm__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.perm__group + .perm__group { margin-top: clamp(34px, 5vw, 56px); }
.js .perm__group { display: none; margin-top: 0; }
.js .perm__group.is-active { display: block; animation: fade 0.35s ease; }
.perm__group h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.perm__groupnote {
  font-size: 0.88rem; color: var(--ink-muted); max-width: 56ch;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}
.perm__subhead {
  font-family: var(--text); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted);
  margin: 0 0 4px;
}
.perm__list { display: grid; }
/* Nápoje — tabulka na dva sloupce, ať to formátem sedí s tím, jak to
   vypadalo na fotce lístku */
.perm__cols { column-count: 2; column-gap: clamp(28px, 4vw, 56px); }
.perm__subgroup { break-inside: avoid; margin-bottom: clamp(20px, 2.6vw, 28px); }
.perm__aside { position: sticky; top: calc(var(--nav-h) + 28px); display: grid; gap: 14px; }
/* pevný poměr stran, ať fotka při přepnutí kategorie neposkočí layoutem */
.perm__aside .frame { aspect-ratio: 4 / 5; overflow: hidden; }
.perm__aside .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.2s ease;
}
.perm__caption {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
}
.allergens { font-size: 0.72rem; color: var(--ink-muted); letter-spacing: 0.02em; }

/* ---------- PIVO ---------- */
.beer { display: grid; gap: clamp(20px, 2.6vw, 32px); }
.beer__lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); color: var(--snow-80); max-width: 42ch; }

/* harmonika stylů čepování */
.pourstyles { border-top: 1px solid var(--snow-14); margin-top: 4px; max-width: 640px; }
.acc { border-bottom: 1px solid var(--snow-14); }
.acc summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  font-family: var(--display); font-size: 1.05rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: '+'; font-family: var(--text); font-size: 1.2rem; color: var(--snow-60); flex: none;
}
.acc[open] summary::after { content: '−'; }
.acc p { color: var(--snow-80); font-size: 0.9rem; max-width: 56ch; padding-bottom: 14px; }

.taps {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
  margin-top: 4px; max-width: 920px;
  border-top: 1px solid var(--snow-14);
}
.tap {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 18px;
  padding: 13px 0; border-bottom: 1px solid var(--snow-14);
  align-items: baseline; align-content: start;
}
.tap__name { font-size: 1.05rem; font-weight: 600; }
.tap__meta { font-size: 0.8rem; color: var(--snow-60); grid-column: 1 / -1; }
.tap__prices { display: flex; gap: 16px; font-family: var(--display); font-size: 0.95rem; white-space: nowrap; }
.tap__prices b { font-weight: 400; }
.tap__desc { grid-column: 1 / -1; font-size: 0.86rem; color: var(--snow-60); max-width: 56ch; margin-top: 2px; }

/* ---------- AKCE ---------- */
.event {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(0px, 3vw, 48px);
  align-items: stretch;
}
.event__media { position: relative; overflow: hidden; min-height: 320px; }
.event__media img { width: 100%; height: 100%; object-fit: cover; }

/* plakát */
.poster {
  background: var(--brown); color: var(--white);
  padding: clamp(30px, 4vw, 56px);
  display: grid; gap: clamp(16px, 2vw, 26px);
  align-content: center;
  position: relative;
  border-radius: 0;
}
.poster::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid var(--snow-24);
  border-radius: 18px;
  pointer-events: none;
}
.poster__date {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.9;
}
.poster__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.02;
}
.poster__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 0.9rem; color: var(--snow-80); }
.poster__facts span { display: inline-flex; align-items: center; gap: 0.5em; }
.poster__resv { font-size: 0.92rem; color: var(--snow-80); }
.poster__resv a { color: var(--white); text-decoration: underline; text-underline-offset: 0.2em; }

/* ---------- OTEVÍRACÍ DOBA + KONTAKT ---------- */
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
.hours { display: grid; }
.hours__row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 18px; padding: clamp(10px, 1.3vw, 15px) 0;
  border-bottom: 1px solid var(--ink-18);
}
.hours__row:first-child { border-top: 1px solid var(--ink-18); }
.hours__row.is-today { border-bottom-color: var(--ink); }
.hours__day { font-size: 0.98rem; font-weight: 500; display: flex; align-items: center; gap: 12px; }
.hours__time { font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.22rem); }
.hours__row.is-today .hours__day { font-weight: 700; }
.hours__row.is-today .hours__time { position: relative; }
.hours__note { font-size: 0.85rem; color: var(--ink-muted); margin-top: 18px; }

.contact { display: grid; gap: clamp(20px, 2.4vw, 28px); }
.contact__grid { display: grid; gap: 18px; }
.contact__item { display: grid; gap: 3px; }
.contact__k {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__v { font-size: 1.06rem; font-weight: 500; }
.contact__v a { text-decoration: none; border-bottom: 1.5px solid var(--ink-30); }
.contact__v a:hover { border-bottom-color: var(--ink); }
/* Štítek pro nevyplněný údaj. Bere barvu z okolí, takže funguje
   na světlém i tmavém pozadí bez zvláštních výjimek. */
.todo {
  font-family: var(--text); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: inherit; opacity: 0.62;
  border: 1px dashed currentColor; border-radius: 999px;
  padding: 0.25em 0.7em; display: inline-block;
}

/* mapa — načte se až po kliknutí */
/* ---------- FOOTER ---------- */
.foot { background: var(--brown); color: var(--white); padding-top: var(--step); overflow: hidden; }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 0.7fr));
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.foot__brand { display: grid; gap: 18px; justify-items: start; }
.foot__brand img { width: 128px; }
.foot__claim { font-family: var(--display); font-size: 1.05rem; }
.foot h4 {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--snow-60); margin: 0 0 14px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 0.94rem; }
.foot a { text-decoration: none; }
.foot a:hover { text-decoration: underline; text-underline-offset: 4px; }
.foot__hours { font-size: 0.9rem; color: var(--snow-80); display: grid; gap: 6px; }
.foot__hours span { display: flex; justify-content: space-between; gap: 16px; max-width: 240px; }

/* velký ŠNYT jako plakát */
.foot__word {
  font-family: var(--display);
  font-size: clamp(4.5rem, 22vw, 19rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-align: center;
  padding-inline: var(--gutter);
  color: var(--white);
  margin-bottom: -0.09em;
  user-select: none;
}
/* Lišta překrývá spodek obřího nápisu — ten je záměrně oříznutý jako plakát. */
.foot__bottom {
  position: relative;
  z-index: 1;
  background: var(--brown);
  box-shadow: 0 -1px 0 var(--snow-14);
  padding: 20px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: 0.78rem; color: var(--snow-60);
}
.foot__bottom > * { max-width: var(--wrap); }

/* ---------- mobilní CTA lišta ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: var(--brown); color: var(--white);
  padding: 8px max(8px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.cta-bar.is-visible { transform: none; }
.cta-bar__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.cta-bar a {
  display: grid; place-items: center;
  min-height: 46px; padding: 8px 4px; text-decoration: none;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: 999px;
}
.cta-bar a:active { border-color: var(--snow-24); }

/* ---------- odhalování při scrollu ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: 0.08s; }
.rv-2 { transition-delay: 0.16s; }
.rv-3 { transition-delay: 0.24s; }

/* pomalé přiblížení fotky */
.zoom { overflow: hidden; }
.zoom img { transform: scale(1.045); transition: transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.zoom.in img { transform: scale(1); }

/* dokreslující se linka */
.draw { transform: scaleX(0); transform-origin: left; transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }
.draw.in { transform: scaleX(1); }

/* ---------- responzivita ---------- */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
}

@media (max-width: 900px) {
  :root { --step: clamp(28px, 6vw, 48px); }

  .perm__body, .visit, .event, .salonek, .taps {
    grid-template-columns: minmax(0, 1fr);
  }
  .perm__cols { column-count: 1; }
  .perm__aside { position: static; }
  .event__media { min-height: 240px; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
  .cta-bar { display: block; }
  body { padding-bottom: 0; }
  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  .trio { grid-template-columns: 1fr; }
  .trio figure:nth-child(2) { margin-top: 0; }

  /* Hero musí na malém displeji vejít do prvního pohledu:
     zbývá claim, jedna informace o otevírací době a tlačítka.
     Polední doba i rezervace jsou hned v dalších sekcích a ve spodní liště. */
  h1 { font-size: clamp(2.05rem, 8.4vw, 2.9rem); }
  .hero { min-height: 0; }
  .hero__inner { padding-bottom: 30px; gap: 14px; }
  .hero__lead { font-size: 0.99rem; }
  .status { align-self: stretch; }
  .status__cell { flex: 1; }
  .status__cell:nth-child(n + 2) { display: none; }

  .dish { grid-template-columns: auto 1fr; }
  .dish__price { grid-column: 2; justify-self: start; margin-top: 6px; }
  .leader__fill { display: none; }
  .foot__grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
}

/* ---------- tisk ---------- */
@media print {
  .nav, .menu, .cta-bar, .hero__scroll, .band, .trio, .map { display: none !important; }
  body { color: #000; }
  .s-dark { background: #fff; color: #000; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- omezený pohyb ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .zoom img { transform: none; }
  .draw { transform: none; }
}
