/* =====================================================================
   Patapuf Bar — preview (redesign ve stylu nočního klubu)
   Samostatný stylesheet (nesdílí se s živými stránkami).
   ===================================================================== */

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

:root {
  --bg:        #0d0d10;
  --bg-soft:   #141417;
  --card:      #161619;
  --card-2:    #1d1d21;
  --line:      rgba(245,245,247,.08);
  --line-2:    rgba(245,245,247,.14);

  --ink:       #f4f4f5;
  --muted:     #b6b6bc;
  --muted-2:   #71717a;

  --pink:      #ffffff;
  --violet:    #d4d4d8;
  --grad:      linear-gradient(90deg, #ffffff 0%, #d4d4d8 100%);
  --grad-diag: linear-gradient(125deg, #ffffff 0%, #d4d4d8 100%);

  --font-display: 'Raleway', 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 1200px;
  --nav-h: 84px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

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

.skiplink {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: #000; color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skiplink:focus { left: 0; }

/* Thin gradient accent line at very top */
.led-strip { position: fixed; left: 0; right: 0; height: 3px; z-index: 120;
  background: linear-gradient(90deg,#ffffff,#d4d4d8,#bdbdbd,#ffffff);
  background-size: 300% 100%; animation: ledflow 9s linear infinite; }
.led-strip--top { top: 0; }
.led-strip--bottom { display: none; }
@keyframes ledflow { to { background-position: 300% 0; } }

/* =====================================================================
   NAV — centered logo, split menu
   ===================================================================== */
.nav {
  position: fixed; inset: 3px 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s ease, height .35s ease, box-shadow .35s ease, backdrop-filter .35s;
}
.nav.is-scrolled {
  height: 66px;
  background: rgba(10,10,13,.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 18px 40px -28px rgba(0,0,0,.9);
}
.nav__inner {
  width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}

.nav__menu {
  display: contents;
}
.nav__menu .nav__group {
  display: flex; align-items: center; gap: 28px;
}
.nav__menu .nav__group--left  { justify-content: flex-start; grid-column: 1; }
.nav__menu .nav__group--right { justify-content: flex-end; grid-column: 3; }
.nav__menu a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,245,247,.78); position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__menu a:hover { color: #f4f4f5; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad); transition: width .25s ease;
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--grad); color: #14141a !important;
  padding: 11px 20px !important; border-radius: 12px;
  box-shadow: 0 10px 28px -12px rgba(0,0,0,.8);
}
.nav__cta::after { display: none; }
.nav__cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

.nav__brand { justify-self: center; grid-column: 2; grid-row: 1; display: flex; align-items: center; }
.nav__brand-img { height: 46px; width: auto; transition: height .35s ease; }
.nav.is-scrolled .nav__brand-img { height: 38px; }

/* status badge — sits at far right of left group on desktop via order trick; here we float it */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11.5px; letter-spacing: .04em;
  color: var(--muted); white-space: nowrap;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #888; box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
.status--open .status__dot { background: #fff; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.55);} 70%{box-shadow:0 0 0 7px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.nav__burger {
  justify-self: end; grid-column: 3; display: none;
  width: 44px; height: 44px; background: transparent; border: 0; position: relative; z-index: 95;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #f4f4f5; border-radius: 2px;
  transition: transform .3s, opacity .2s;
}
.nav__burger span:nth-child(1){ top: 15px; }
.nav__burger span:nth-child(2){ top: 21px; }
.nav__burger span:nth-child(3){ top: 27px; }
.nav.is-open .nav__burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2){ opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobilní menu — fullscreen overlay (samostatný, mimo .nav) */
.mnav {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(10,10,13,.98);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s ease, visibility 0s linear .35s;
  overflow-y: auto; overscroll-behavior: contain;
}
.mnav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .35s ease; }
/* Otevřené mobilní menu — zámek scrollu webu pod ním */
html.is-menu-open, html.is-menu-open body { overflow: hidden; height: 100%; }
.mnav__close {
  position: absolute; top: 14px; right: 16px; width: 46px; height: 46px;
  background: transparent; border: 0; color: #f4f4f5; font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.mnav__list { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mnav__list a {
  font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,245,247,.85); padding: 12px 0; transition: color .2s;
}
.mnav__list a:hover, .mnav__list a:active { color: #fff; }
.mnav__cta { background: var(--grad); color: #14141a !important; padding: 12px 28px !important; border-radius: 12px; margin-top: 14px; }
@media (min-width: 941px) { .mnav { display: none; } }

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 11px; border: 0; line-height: 1;
  transition: transform .2s, filter .2s, box-shadow .25s, border-color .2s, color .2s;
}
.btn--primary {
  background: var(--grad); color: #14141a;
  box-shadow: 0 14px 40px -14px rgba(0,0,0,.75);
  padding-right: 7px;
}
.btn--primary .btn__arrow {
  display: inline-grid; place-items: center; width: 29px; height: 29px; border-radius: 50%;
  background: rgba(0,0,0,.14); font-size: 14px;
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn--lg { padding: 15px 7px 15px 24px; font-size: 12.5px; }
.btn--ghost {
  background: transparent; color: #f4f4f5; border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--violet); color: #f4f4f5; background: rgba(0,0,0,.08); }

/* =====================================================================
   SECTION scaffolding + centered header
   ===================================================================== */
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 90px 0; }

/* =====================================================================
   PROMO BANNER — sezónní upoutávka (Studentské středy) pod hero
   ===================================================================== */
.promo-banner { padding: 48px 0 0; }
.promo-banner__card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px;
  padding: 26px 32px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background:
    linear-gradient(125deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 55%),
    var(--card);
  box-shadow: 0 26px 60px -38px rgba(0,0,0,.9);
}
.promo-banner__card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad);
}
.promo-banner__day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 84px; padding: 12px 16px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: rgba(255,255,255,.03); text-align: center;
}
.promo-banner__day-dow {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink); line-height: 1;
}
.promo-banner__day-label {
  margin-top: 6px; font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-2);
}
.promo-banner__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}
.promo-banner__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad);
}
.promo-banner__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.05;
  letter-spacing: -.01em; text-transform: uppercase; color: var(--ink);
}
.promo-banner__sub {
  margin-top: 9px; color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 54ch;
}
.promo-banner__cta { justify-self: end; }
@media (max-width: 720px) {
  .promo-banner { padding-top: 36px; }
  .promo-banner__card { grid-template-columns: auto 1fr; gap: 18px; padding: 20px; }
  .promo-banner__cta { grid-column: 1 / -1; justify-self: stretch; }
  .promo-banner__cta .btn { width: 100%; justify-content: center; }
}

.section--purple { background: none; }
.section--photo { background-size: cover; background-position: center; position: relative; }
.section--photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 12, .96), rgba(12, 12, 15, .92));
}
.section--photo > .container { position: relative; z-index: 1; }

.section__head { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section__head--left { text-align: left; margin-left: 0; }

.mark { display: inline-flex; margin-bottom: 18px; }
.mark svg { width: 30px; height: 30px; }

.section__eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.04;
  letter-spacing: -.01em; text-transform: uppercase; color: #f4f4f5;
}
.section__title em { font-style: normal; color: var(--ink); }
.section__lead {
  margin-top: 18px; color: var(--muted); font-size: 16px; line-height: 1.7;
}
.section__note {
  margin-top: 34px; text-align: center; color: var(--muted-2); font-size: 14px;
  display: flex; gap: 8px; justify-content: center;
}
.section__note-mark { color: var(--pink); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  position: relative; padding-top: var(--nav-h); overflow: hidden;
  background: #0d0d10;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(75% 60% at 50% 40%, rgba(10,10,13,.05), rgba(10,15,13,.05) 75%, #0d0d10 100%),
    linear-gradient(181deg, rgba(10,10,13,.55) 0%, rgba(10,10,13,.2) 35%, rgba(10,10,13,.95) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; width: 100%; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .26em; text-transform: uppercase; color: rgba(245,245,247,.85);
  margin-bottom: 26px;
}
.hero__eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 11vw, 8rem); line-height: .92;
  letter-spacing: -.02em; text-transform: uppercase; color: #f4f4f5;
  text-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--ink); }
.hero__amp { color: var(--pink); -webkit-text-fill-color: initial; }

.hero__lead {
  margin: 28px auto 0; max-width: 560px; color: rgba(245,245,247,.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.6;
}
.hero__lead-soft { color: rgba(245,245,247,.55); }

.hero__cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__meta {
  margin-top: 64px; display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(245,245,247,.12); padding-top: 28px; max-width: 760px;
  margin-inline: auto;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 5px; text-align: center; }
.hero__meta-label { font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.hero__meta-value { font-size: 14px; color: rgba(245,245,247,.82); }

/* =====================================================================
   DRINKY — menu grid
   ===================================================================== */
.drink-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 56px;
}
.drink {
  position: relative; padding: 26px 26px 24px; border: 1px solid var(--line);
  border-radius: 12px; background: linear-gradient(180deg, var(--card), rgba(18,21,42,.4));
  transition: transform .3s, border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.drink::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--grad); opacity: 0; transition: opacity .3s;
}
.drink:hover { transform: translateY(-4px); border-color: var(--line-2);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.6); }
.drink:hover::before { opacity: 1; }
.drink__num {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; color: var(--muted); margin-bottom: 12px;
}
.drink__num sup { font-size: .7em; }
.drink__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #f4f4f5;
  display: flex; align-items: baseline; gap: 12px;
}
.drink__name::after { content: ""; flex: 1; border-bottom: 1px dotted rgba(245,245,247,.22); transform: translateY(-4px); }
.drink__desc { margin-top: 8px; color: var(--muted); font-size: 14.5px; }
.drink__foot { margin-top: 14px; }
.drink__price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--ink);
}
.drink__edge { display: none; }

/* =====================================================================
   MENU — kategorizovaný nápojový lístek
   ===================================================================== */
.menu { columns: 2; column-gap: 64px; }
.menu-cat {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  display: inline-block; width: 100%; margin: 0 0 38px;
}
.menu-cat__title {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2);
}
.menu-list { display: flex; flex-direction: column; gap: 13px; }
.menu-item { min-width: 0; }
.menu-item__row { display: flex; align-items: baseline; gap: 10px; }
.menu-item__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: #f4f4f5; line-height: 1.25;
}
.menu-item__dots {
  flex: 1 1 auto; min-width: 16px; align-self: stretch;
  border-bottom: 1px dotted rgba(245,245,247,.22); transform: translateY(-5px);
}
.menu-item__price {
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  color: var(--ink); white-space: nowrap;
}
.menu-item__ing {
  margin: 4px 0 0; color: var(--muted-2); font-size: 13px; line-height: 1.45; max-width: 92%;
}
@media (max-width: 720px) {
  .menu { columns: 1; }
  .menu-cat { margin-bottom: 30px; }
}

/* ---- Teaser lístku na homepage ---- */
.menu-teaser {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 760px; margin: 0 auto;
}
.menu-teaser__chip {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: .08em; color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 6px;
  background: rgba(255,255,255,.02);
}
.menu-teaser__cta { text-align: center; margin-top: 42px; }
.menu-teaser__note {
  margin: 22px auto 0; max-width: 520px;
  color: var(--muted-2); font-size: 13.5px; line-height: 1.6;
}

/* ---- Samostatná stránka lístku /preview/listek/ ---- */
.listek-page { padding-top: calc(var(--nav-h) + 64px); }
.listek-page__back { margin-top: 22px; }
.listek-page__back a,
.footer__reg a {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .06em; color: var(--muted);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.listek-page__back a:hover,
.footer__reg a:hover { color: var(--ink); border-bottom-color: var(--line-2); }

/* =====================================================================
   PROGRAM — event rows / cards
   ===================================================================== */
.program-list { display: grid; gap: 16px; }
.program-list--cols { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.program-list--cols .program-row { grid-template-columns: 84px 1fr auto; gap: 18px; padding: 18px 20px; }
.program-list--cols .program-row__day { font-size: 1.8rem; }
@media (max-width: 720px) { .program-list--cols { grid-template-columns: 1fr; } }
.program-more { display: none; }
@media (max-width: 720px) {
  .program-list--cols.is-collapsed .program-row:nth-child(n+5) { display: none; }
  .program-more { display: flex; margin: 18px auto 0; }
}
.program-row {
  --ev-c: #d4d4d8;
  display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 28px;
  padding: 22px 26px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--card); position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.program-row::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: #fff;
}
.program-row--featured {
  border-color: rgba(245,245,247,.30);
  background: linear-gradient(180deg, rgba(245,245,247,.08), var(--card) 55%);
  box-shadow: 0 0 0 1px rgba(245,245,247,.08), 0 24px 54px -32px rgba(0,0,0,.75);
}
.program-row--featured::before { width: 6px; box-shadow: 0 0 24px rgba(255,255,255,.55); }
.program-row:hover { transform: translateY(-3px); border-color: var(--line-2);
  box-shadow: 0 28px 56px -38px rgba(0,0,0,.7); }
.program-row__date {
  display: grid; justify-items: center; gap: 2px; padding: 10px 0; border-radius: 12px;
  background: rgba(245,245,247,.03); border: 1px solid var(--line);
}
.program-row__day { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; line-height: 1; color: #f4f4f5; }
.program-row__month { font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.program-row__top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.program-row__cat {
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
  color: #f4f4f5; background: rgba(245,245,247,.1);
  border: 1px solid rgba(245,245,247,.28);
}
.program-row__tip {
  font-family: var(--font-display); font-weight: 800; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; padding: 4px 11px; border-radius: 6px;
  background: var(--grad); color: #14141a;
}
.program-row__weekday { font-size: 13px; color: var(--muted); text-transform: capitalize; }
.program-row__time { font-size: 13px; color: var(--muted-2); }
.program-row__title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: #f4f4f5; }
.program-row__sub { margin-top: 5px; color: var(--muted); font-size: 14px; }
.program-row__prices { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.program-row__price {
  display: inline-flex; gap: 6px; align-items: baseline; padding: 5px 12px; border-radius: 6px;
  background: rgba(245,245,247,.04); border: 1px solid var(--line); font-size: 13px;
}
.program-row__price-label { color: var(--muted); }
.program-row__price-amount { font-family: var(--font-display); font-weight: 700; color: #f4f4f5; }
.program-row__link {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: #14141a; padding: 12px 18px; border-radius: 12px;
  background: var(--grad); box-shadow: 0 12px 30px -16px rgba(0,0,0,.8);
  transition: transform .2s, filter .2s;
}
.program-row__link:hover { transform: translateY(-2px); filter: brightness(1.08); }
.program-row__link--mute { background: none; box-shadow: none; padding: 0; width: 0; }

/* =====================================================================
   O BARU — about (two col on purple)
   ===================================================================== */
.about-layout {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.about-figure { position: relative; }
.about-figure img {
  width: 100%; border-radius: 12px; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.8);
}
.about-figure::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px;
  border: 1px solid rgba(245,245,247,.12); pointer-events: none;
}
.about-figure__badge {
  position: absolute; left: -22px; bottom: 30px; background: var(--grad);
  padding: 18px 24px; border-radius: 12px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
  text-align: center;
}
.about-figure__badge b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #14141a; line-height: 1; }
.about-figure__badge span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(0,0,0,.62); }

.about-grid__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.06; text-transform: uppercase;
  letter-spacing: -.01em; color: #f4f4f5;
}
.about-grid__title em { font-style: normal; color: var(--ink); }
.about-grid__body { margin-top: 22px; }
.about-grid__body p { color: rgba(245,245,247,.78); margin-bottom: 16px; }
.about-grid__sig { font-family: var(--font-display); font-weight: 700; color: var(--ink) !important; letter-spacing: .04em; }

/* =====================================================================
   AKCE U NÁS — services-style tiles
   ===================================================================== */
.pe-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pe-tile {
  padding: 32px 28px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--card); transition: transform .3s, border-color .3s, background .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.pe-tile:hover { transform: translateY(-4px); border-color: var(--line-2);
  background: var(--card-2); box-shadow: 0 34px 64px -42px rgba(0,0,0,.7); }
.pe-tile__icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.18));
  border: 1px solid var(--line-2); margin-bottom: 20px; font-size: 22px; color: #f4f4f5;
}
.pe-tile__num {
  position: absolute; top: 22px; right: 26px; font-family: var(--font-display);
  font-weight: 800; font-size: 2.4rem; color: rgba(245,245,247,.05);
}
.pe-tile__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #f4f4f5; }
.pe-tile__desc { margin-top: 10px; color: var(--muted); font-size: 14.5px; }

.pe-perks {
  margin-top: 30px; padding: 30px 32px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(245,245,247,.02);
}
.pe-perks__lead { font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.pe-perks__list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 32px; }
.pe-perks__list li { position: relative; padding-left: 26px; color: rgba(245,245,247,.82); }
.pe-perks__list li::before {
  content: "✦"; position: absolute; left: 0; top: 0; color: var(--violet);
}
.pe-cta { margin-top: 36px; text-align: center; }

/* =====================================================================
   VISIT — hours / address / contact columns
   ===================================================================== */
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.visit-block {
  padding: 30px 30px 34px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--card);
}
.visit-block__label {
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 18px;
}
.hours-list__row {
  display: flex; justify-content: space-between; gap: 12px; padding: 11px 0;
  border-bottom: 1px solid var(--line); font-size: 15px;
}
.hours-list__row:last-child { border-bottom: 0; }
.hours-list__day { color: rgba(245,245,247,.85); }
.hours-list__time { color: var(--muted); }
.hours-list__row.is-accent .hours-list__day { color: #f4f4f5; font-weight: 600; }
.hours-list__row.is-accent .hours-list__time { color: var(--ink); font-weight: 700; }
.hours-list__row.is-closed { opacity: .55; }

.visit-address { font-style: normal; color: rgba(245,245,247,.85); line-height: 1.8; margin-bottom: 18px; }
.visit-link {
  display: inline-flex; align-items: center; gap: 8px; color: #f4f4f5; font-size: 15px;
  padding: 8px 0; transition: color .2s;
}
.visit-link span:last-child { color: var(--pink); }
.visit-link:hover { color: var(--pink); }
.visit-map {
  margin-top: 18px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-2);
}
.visit-map iframe {
  display: block; width: 100%; height: 220px; border: 0;
  filter: grayscale(.4) contrast(1.05);
}
.visit-contact { display: flex; flex-direction: column; gap: 4px; }
.visit-socials { margin-top: 18px; display: flex; gap: 16px; }
.visit-socials a { font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.visit-socials a:hover { color: var(--violet); }

/* =====================================================================
   REZERVACE — form
   ===================================================================== */
.reserve-form { max-width: 760px; margin: 0 auto; }
.reserve-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; min-width: 0; }
.field__label { font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; min-width: 0; max-width: 100%; background: rgba(245,245,247,.04); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 15px 16px; color: #f4f4f5; font-family: var(--font-body); font-size: 15px;
  transition: border-color .2s, background .2s;
}
/* iOS: date input se jinak roztahuje na vlastní min-šířku a rozbíjí layout */
.field input[type="date"] { -webkit-appearance: none; appearance: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--violet); background: rgba(0,0,0,.06);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  -webkit-appearance: none; appearance: none; cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%239a9a9f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field select option { background: #14141a; color: #f4f4f5; }
/* Kalendář (input type=date) na tmavém pozadí */
.field input[type="date"] { color-scheme: dark; cursor: pointer; }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.65); cursor: pointer; }

/* Poptávkový formulář v sekci soukromých akcí */
.pe-form { max-width: 760px; margin: 56px auto 0; }
.pe-form__lead { text-align: center; color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 30px; }
.pe-form__lead a { color: #f4f4f5; border-bottom: 1px solid var(--line-2); transition: color .2s, border-color .2s; }
.pe-form__lead a:hover { color: var(--pink); border-bottom-color: var(--pink); }
.pe-form .reserve-form__footer { justify-content: center; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.reserve-form__footer { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 10px; }
.reserve-form__legal { color: var(--muted-2); font-size: 12.5px; max-width: 420px; }
.reserve-form__status, .form__status { margin-top: 18px; font-size: 14.5px; min-height: 1.4em; }
.form__status.is-success { color: #fff; }
.form__status.is-error { color: #fff; font-weight: 600; }
.reserve-form.is-loading { opacity: .7; pointer-events: none; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { padding: 76px 0 34px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.4fr; gap: 44px; }
.footer__logo { height: 46px; width: auto; margin-bottom: 20px; }
.footer__tagline { color: var(--muted); font-size: 14px; line-height: 1.65; max-width: 260px; }
.footer__socials { display: flex; gap: 18px; margin-top: 22px; }
.footer__socials a { font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.footer__socials a:hover { color: var(--ink); }
.footer__label { font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer__links a:hover { color: var(--ink); }
.footer__contact { display: flex; flex-direction: column; gap: 9px; }
.footer__contact a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer__contact a:hover { color: var(--ink); }
.footer__contact address { font-style: normal; color: var(--muted); font-size: 14px; line-height: 1.7; margin-top: 4px; }
.footer__legal { color: var(--muted); font-size: 13.5px; line-height: 1.85; }
.footer__legal b { color: var(--ink); font-weight: 600; }
.footer__bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; }
.footer__bottom span { color: var(--muted-2); font-size: 12.5px; }
.footer__reg { flex: 1 1 auto; text-align: center; min-width: 240px; }
.footer__city { font-family: var(--font-display); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); font-size: 13px; }
.footer__madeby { margin-top: 18px; text-align: center; color: var(--muted-2); font-size: 12px; letter-spacing: .02em; }
.footer__madeby a { color: var(--muted); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.footer__madeby a:hover { color: var(--ink); border-bottom-color: var(--line-2); }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__reg { text-align: left; }
}

/* =====================================================================
   REVEAL animation
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .led-strip { animation: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 940px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__brand { justify-self: start; grid-column: 1; }
  .nav__burger { display: block; }
  .status { display: none; }
  .nav__menu { display: none; }   /* desktopové menu skryté — na mobilu používáme .mnav overlay */

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { max-width: 440px; margin-inline: auto; }
  .hero__meta { gap: 28px; }
}
@media (max-width: 720px) {
  .section { padding: 58px 0; }
  /* Menší tlačítka na mobilu (rezervace apod.) */
  .btn { padding: 13px 18px; font-size: 11.5px; gap: 10px; }
  .btn--lg { padding: 15px 7px 15px 20px; font-size: 12px; }
  .btn--primary { padding-right: 6px; }
  .btn--primary .btn__arrow { width: 28px; height: 28px; font-size: 13px; }
  .hero__title { font-size: clamp(3.8rem, 16vw, 6rem); }
  /* Teaser lístku — na mobilu jen 4 hlavní kategorie, pak tlačítko na lístek */
  .menu-teaser__chip:nth-child(n+5) { display: none; }
  .menu-teaser__cta { margin-top: 28px; }
  .drink-grid { grid-template-columns: 1fr; gap: 14px; }
  /* Soukromé akce — freeMode carousel (nativní horizontální touch scroll, bez snapu) */
  .pe-grid {
    display: flex; grid-template-columns: none;
    overflow-x: auto; gap: 14px;
    margin-inline: -24px; padding: 4px 24px 14px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .pe-grid::-webkit-scrollbar { display: none; }
  .pe-tile { flex: 0 0 80%; }
  .pe-perks__list { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .program-row { grid-template-columns: 64px 1fr; gap: 18px; }
  .program-row__day { font-size: 1.6rem; }
  .program-row__link { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
  .reserve-form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__meta { flex-direction: column; gap: 18px; }
  .about-figure__badge { left: 50%; transform: translateX(-50%); }
}


/* =====================================================================
   Plynulý přechod mezi stránkami — View Transitions (PJAX)
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation-duration: .38s; animation-timing-function: ease; }
}


/* =====================================================================
   Lenis — smooth scroll
   ===================================================================== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }


/* =====================================================================
   GALERIE — full-bleed nekonečný marquee + freeMode drag
   ===================================================================== */
.gallery { padding: 90px 0 100px; overflow: hidden; }
.gallery__head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.gallery__viewport { width: 100%; overflow: hidden; }
.gallery__track {
  display: flex; gap: 16px; width: max-content;
  will-change: transform; cursor: grab; touch-action: pan-y; user-select: none;
}
.gallery__track.is-dragging { cursor: grabbing; }
.gallery__item {
  flex: 0 0 auto; width: 360px; height: 460px;
  border-radius: 12px; overflow: hidden; background: var(--card); border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none; -webkit-user-drag: none; user-select: none;
}
@media (max-width: 600px) {
  .gallery { padding: 50px 0 60px; }
  .gallery__item { width: 260px; height: 195px; }
}

/* =====================================================================
   POPUP — potvrzení poptávky + animace nalévání panáka
   ===================================================================== */
.pour-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.pour-modal[hidden] { display: none; }
.pour-modal__backdrop {
  position: absolute; inset: 0; background: rgba(8,8,11,.74);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s ease;
}
.pour-modal.is-open .pour-modal__backdrop { opacity: 1; }
.pour-modal__card {
  position: relative; z-index: 1; width: min(420px, 100%); text-align: center;
  background: linear-gradient(180deg, #17171c, #101013);
  border: 1px solid var(--line-2); border-radius: 22px;
  padding: 38px 32px 32px; box-shadow: 0 30px 90px -28px rgba(0,0,0,.9);
  transform: translateY(16px) scale(.96); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.pour-modal.is-open .pour-modal__card { transform: none; opacity: 1; }
.pour-modal__close {
  position: absolute; top: 10px; right: 14px; width: 36px; height: 36px;
  background: transparent; border: 0; color: var(--muted); font-size: 26px; line-height: 1;
  cursor: pointer; border-radius: 10px; transition: color .2s, background .2s;
}
.pour-modal__close:hover { color: #fff; background: rgba(255,255,255,.06); }
.pour-modal__title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: .01em; color: var(--ink); margin-top: 6px;
}
.pour-modal__text { color: var(--muted); margin-top: 10px; line-height: 1.65; font-size: 15px; }
.pour-modal__ok { margin-top: 26px; }

/* --- Stage s panákem --- */
.pour { position: relative; width: 120px; height: 150px; margin: 4px auto 20px; }
/* láhev/odměrka nahoře (jen náznak — zdroj proudu) */
.pour__bottle {
  position: absolute; top: 0; left: 50%; width: 34px; height: 20px;
  transform: translateX(-50%) rotate(38deg); transform-origin: bottom left;
  background: linear-gradient(180deg, rgba(245,245,247,.22), rgba(245,245,247,.08));
  border: 1px solid var(--line-2); border-radius: 4px 4px 8px 8px; opacity: 0;
}
/* proud nalévaného panáka */
.pour__stream {
  position: absolute; top: 20px; left: 50%; width: 4px; height: 70px;
  transform: translateX(-50%) scaleY(0); transform-origin: top center;
  background: linear-gradient(180deg, rgba(240,184,96,0), #f0b860 30%, #e0a94e);
  border-radius: 3px; opacity: 0;
}
/* sklenička (panák) */
.pour__glass {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 80px; overflow: hidden;
  border: 3px solid rgba(245,245,247,.55); border-top: 0;
  border-radius: 7px 7px 16px 16px;
  background: linear-gradient(120deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  box-shadow: inset 0 0 14px rgba(255,255,255,.06);
}
.pour__liquid {
  position: absolute; left: 0; right: 0; bottom: 0; height: 0;
  background: linear-gradient(180deg, #f3bf6b, #cf832c);
  box-shadow: inset 0 5px 8px -4px rgba(255,255,255,.55);
}
.pour__liquid::before {
  content: ""; position: absolute; top: -3px; left: 0; right: 0; height: 6px;
  background: rgba(255,247,232,.85); border-radius: 50%;
}

/* spuštění animací při otevření */
.pour-modal.is-open .pour__bottle { animation: pour-bottle 2.2s ease both; }
.pour-modal.is-open .pour__stream { animation: pour-stream 2.2s ease both; }
.pour-modal.is-open .pour__liquid { animation: pour-fill 2.2s cubic-bezier(.3,.6,.4,1) both; }
.pour-modal.is-open .pour__glass  { animation: pour-cheers 2.2s ease both; }

@keyframes pour-bottle {
  0%   { opacity: 0; transform: translateX(-50%) rotate(10deg); }
  14%  { opacity: 1; transform: translateX(-50%) rotate(38deg); }
  70%  { opacity: 1; transform: translateX(-50%) rotate(38deg); }
  85%, 100% { opacity: 0; transform: translateX(-50%) rotate(10deg); }
}
@keyframes pour-stream {
  0%, 10%  { transform: translateX(-50%) scaleY(0); opacity: 0; transform-origin: top center; }
  20%      { opacity: 1; }
  34%      { transform: translateX(-50%) scaleY(1); opacity: 1; transform-origin: top center; }
  66%      { transform: translateX(-50%) scaleY(1); opacity: 1; transform-origin: bottom center; }
  80%, 100%{ transform: translateX(-50%) scaleY(0); opacity: 0; transform-origin: bottom center; }
}
@keyframes pour-fill {
  0%, 22% { height: 0; }
  78%     { height: 72%; }
  86%     { height: 66%; }   /* drobné usazení hladiny */
  100%    { height: 70%; }
}
@keyframes pour-cheers {
  0%, 82% { transform: translateX(-50%) rotate(0); }
  90%     { transform: translateX(-50%) rotate(-7deg); }
  96%     { transform: translateX(-50%) rotate(4deg); }
  100%    { transform: translateX(-50%) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pour-modal__card, .pour-modal__backdrop { transition: none; }
  .pour-modal.is-open .pour__bottle,
  .pour-modal.is-open .pour__stream,
  .pour-modal.is-open .pour__glass { animation: none; }
  .pour-modal.is-open .pour__bottle,
  .pour-modal.is-open .pour__stream { opacity: 0; }
  .pour-modal.is-open .pour__liquid { animation: none; height: 70%; }
}

/* =====================================================================
   GALERIE — klikací fotky + lightbox se stažením originálu
   ===================================================================== */
.gallery__hint { text-align: center; color: var(--muted-2); font-size: 13px; margin: 0 0 22px; }
.gallery__item { cursor: zoom-in; }
.gallery__item:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

html.is-lightbox-open { overflow: hidden; height: 100%; }
html.is-lightbox-open body { overflow: hidden; }

.lightbox { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 28px; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(6,6,9,.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity .3s ease;
}
.lightbox.is-open .lightbox__backdrop { opacity: 1; }
.lightbox__stage {
  position: relative; z-index: 1; max-width: min(1000px, 92vw);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transform: scale(.96); opacity: 0; transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
}
.lightbox.is-open .lightbox__stage { transform: none; opacity: 1; }
.lightbox__img {
  max-width: 100%; max-height: 74vh; border-radius: 12px; display: block;
  box-shadow: 0 30px 90px -24px rgba(0,0,0,.9); background: #111;
}
.lightbox__bar { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.lightbox__caption { color: var(--muted); font-size: 14px; }
.lightbox__counter { color: var(--muted); font-size: 13px; letter-spacing: .08em; font-variant-numeric: tabular-nums; opacity: .8; }
.lightbox__counter:empty { display: none; }
.lightbox__download .btn__arrow { background: rgba(0,0,0,.14); }
/* Tlačítko Sdílet (Web Share) — sekundární vzhled vedle stažení */
.lightbox__share { background: rgba(255,255,255,.1); color: #f4f4f5; border: 1px solid rgba(255,255,255,.2); }
.lightbox__share:hover { background: rgba(255,255,255,.18); }
.lightbox__share[hidden] { display: none; }
.lightbox__share-ico { display: inline-block; vertical-align: middle; }
/* Sdílet + Stáhnout vedle sebe */
.lightbox__actions { display: flex; align-items: center; gap: 10px; }
.lightbox__dl--short { display: none; }
/* Spolehlivý swipe v lightboxu na dotyku (browser si gesta nebere) */
.lightbox__stage, .lightbox__img, .lightbox__backdrop { touch-action: none; }
/* Mobil: kratší text stažení + menší tlačítka vedle sebe */
@media (max-width: 560px) {
  .lightbox__bar { gap: 10px; }
  .lightbox__actions { gap: 8px; }
  .lightbox__dl--full { display: none; }
  .lightbox__dl--short { display: inline; }
  .lightbox .btn { padding: 10px 14px; font-size: 11px; gap: 8px; letter-spacing: .07em; }
  .lightbox__download .btn__arrow { width: 24px; height: 24px; font-size: 12px; }
}
.lightbox__close {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.18); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; font-size: 30px; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.18); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
@media (max-width: 600px) {
  .lightbox { padding: 14px; }
  .lightbox__img { max-height: 64vh; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 26px; }
  .lightbox__nav--prev { left: 6px; }
  .lightbox__nav--next { right: 6px; }
  .lightbox__close { top: 10px; right: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox__backdrop, .lightbox__stage { transition: none; }
}

/* ===== Alba (homepage sekce + /galerie/ + stránka alba) ===== */
.albums-home__more { text-align: center; margin-top: 40px; }
.album-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.album-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: linear-gradient(180deg, var(--card), rgba(18,21,42,.4));
  text-decoration: none; color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.album-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 24px 50px -30px rgba(0,0,0,.9); }
.album-card__cover { position: relative; aspect-ratio: 4 / 3; background: var(--bg-soft); overflow: hidden; }
.album-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.album-card:hover .album-card__cover img { transform: scale(1.04); }
.album-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; font-size: 48px; color: var(--muted-2); }
.album-card__body { padding: 16px 18px 18px; }
.album-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0; line-height: 1.25; }
.album-card__meta { margin: 8px 0 0; color: var(--muted-2); font-size: 13px; letter-spacing: .02em; }

.gallery-index .album-cards { margin-top: 8px; }

/* Stránka jednoho alba */
.album-page__back { margin-top: 22px; }
.album-page__back a { color: var(--muted); text-decoration: none; font-size: 14px; letter-spacing: .04em; }
.album-page__back a:hover { color: #f4f4f5; }
.album-page__hint { text-align: center; color: var(--muted-2); font-size: 14px; margin: 0 0 26px; }
.album-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.album-photos__item {
  margin: 0; cursor: zoom-in; border-radius: 10px; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--bg-soft); transition: transform .2s ease;
}
.album-photos__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-photos__item:hover { transform: translateY(-3px); }
.album-photos__item:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; }

@media (max-width: 560px) {
  .album-cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .album-photos { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ===== Poznámka o ochraně soukromí u galerie ===== */
.gallery-privacy { text-align: center; color: var(--muted-2); font-size: 13px; line-height: 1.6; margin: 28px auto 0; max-width: 620px; }
.gallery-privacy a { color: var(--muted); }
.gallery-privacy a:hover { color: #f4f4f5; }

/* ===== Právní stránka (zásady ochrany OÚ) ===== */
.container--narrow { max-width: 780px; }
.legal { margin-top: 8px; color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.legal h2 { font-family: var(--font-display); font-weight: 700; color: #f4f4f5; font-size: 20px; margin: 34px 0 10px; }
.legal h3 { color: #f4f4f5; font-size: 16px; margin: 20px 0 6px; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 12px; padding-left: 20px; }
.legal li { margin: 4px 0; }
.legal a { color: var(--violet); text-decoration: underline; }
.legal strong { color: #f4f4f5; }
.legal__effective { margin-top: 28px; color: var(--muted-2); font-size: 13.5px; font-style: italic; }
