/* ════════════════════════════════════════════════════════════════════
   Biograf Jan Svěrák — modern art-house cinema design
   Krémový papír + hluboká černá + burgundy akcent.
   Typografie: Instrument Serif (italika) + Inter Tight + JetBrains Mono.
   ════════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter+Tight:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Paleta */
  --paper:     #f1ede2;
  --paper-2:   #e8e2d2;
  --paper-3:   #ddd3bd;
  --ink:       #0a0908;
  --ink-2:     #1a1715;
  --ink-soft:  #4a423c;
  --ink-mute:  #8a8278;
  --line:      #c9bea6;
  --line-soft: #ddd3bd;
  --accent:    #8b2c1a;
  --accent-2:  #6e1f10;
  --accent-3:  #c2410c;
  --gold:      #c9a96a;
  --ok:        #3a6b30;
  --warn:      #b85c1a;
  --ko:        #a8473b;

  --font-display: "Instrument Serif", "Cormorant Garamond", "Georgia", serif;
  --font-sans:    "Inter Tight", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --max: 1340px;
  --gutter: clamp(20px, 4vw, 56px);
  --logo-h: 48px;
  --hdr-h: calc(var(--logo-h) + 36px);
}

/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: 1; color: var(--ink); }
p { margin: 0; }

/* Mono (data, tagy) */
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  padding: 14px 22px;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
  border-radius: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn__arrow { transition: transform 0.18s ease; display: inline-flex; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--accent); }
.btn--ghost   { color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent  { background: var(--accent); color: var(--paper); }
.btn--accent:hover { background: var(--accent-2); }
.btn--warn    { background: var(--warn); color: var(--paper); }
.btn--warn:hover { background: #944611; }
.btn--inverse { background: var(--paper); color: var(--ink); }
.btn--inverse:hover { background: var(--accent); color: var(--paper); }
.btn--disabled{ background: var(--paper-2); color: var(--ink-mute); cursor: not-allowed; }
.btn--disabled:hover { transform: none; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.link-arrow:hover { gap: 12px; color: var(--accent); border-bottom-color: var(--accent); }

/* Tagy */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 9px;
  background: var(--paper-2);
  color: var(--ink-soft);
  border-radius: 0;
}
.tag--accent { background: var(--accent); color: var(--paper); }

/* ════════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════════ */
.hdr {
  position: sticky; top: 0; z-index: 80;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, padding 0.2s ease;
}
.hdr.is-scrolled {
  background: rgba(241, 237, 226, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr__top { padding: 18px var(--gutter); }
.hdr.is-scrolled .hdr__top { padding: 12px var(--gutter); }
.hdr__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hdr__logo {
  color: var(--ink);
  display: inline-block;
  transition: transform 0.2s ease;
}
.hdr__logo img {
  height: var(--logo-h);
  width: auto;
  transition: height 0.2s ease;
}
.hdr.is-scrolled .hdr__logo img { height: 36px; }

.hdr__nav {
  display: flex; align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  padding: 10px 14px;
  position: relative;
  transition: color 0.18s ease;
  cursor: pointer;
}
.nav-link:hover { color: var(--accent); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent);
}
.nav-link--shop {
  margin-left: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-weight: 500;
}
.nav-link--shop:hover { background: var(--accent); color: var(--paper); }
/* Active state on the shop button — keep white text on dark bg */
.nav-link--shop.is-active { color: var(--paper); background: var(--accent); }
.nav-link--shop.is-active::after { display: none; }

/* Pět švestek CTA v menu — identický s Astro Header */
.nav-link--ps {
  margin-right: 4px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.nav-link--ps:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.nav-link--ps.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.nav-link--ps.is-active::after { display: none; }
.nav-link--ps::after { display: none !important; }
.nav-link__ps-dot {
  width: 7px; height: 7px;
  background: var(--paper);
  border-radius: 50%;
  flex-shrink: 0;
  animation: ps-pulse 1.8s ease-in-out infinite;
}
.nav-link--ps:hover .nav-link__ps-dot { background: var(--accent); }
.nav-link__ps-text { line-height: 1; }
.nav-link__ps-text em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}
@keyframes ps-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}
.nav-link__chev { font-size: 9px; opacity: 0.7; transition: transform 0.18s ease; }

.nav-item { position: relative; }
.nav-item.is-open .nav-link__chev { transform: rotate(180deg); }
.nav-dd {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 90;
}
.nav-dd--right { left: auto; right: 0; }
.nav-item.is-open .nav-dd {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dd a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  transition: background 0.14s ease, color 0.14s ease;
}
.nav-dd a:hover { background: var(--paper-2); color: var(--accent); }

.hdr__right { display: flex; align-items: center; gap: 8px; }
.hdr__cart {
  position: relative;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.hdr__cart:hover { background: var(--ink); color: var(--paper); }
.hdr__cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  min-width: 16px; height: 16px;
  padding: 0 3px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
}
.hdr__burger {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 10px; width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.hdr__burger span { display: block; width: 18px; height: 2px; background: var(--ink); }

.hdr__mobile {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.hdr__mobile a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 16px;
  font-weight: 500;
}
.hdr__mobile-group { display: flex; flex-direction: column; padding: 4px 0; }
.hdr__mobile-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  padding: 14px 0 4px;
}
.hdr__mobile-lang {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--line-soft);
}
.hdr__mobile-lang .hdr__lang-btn { padding: 6px 10px; font-size: 13px; }
.hdr__mobile-group a { padding: 10px 0 10px 16px; }

/* ════════════════════════════════════════════════════════════════════
   SECTION HEAD
   ════════════════════════════════════════════════════════════════════ */
.sec-head { margin-bottom: 48px; max-width: 800px; }
.sec-head__row {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 18px;
}
.sec-head__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.sec-head__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.sec-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.sec-head__title em { font-style: italic; }
.sec-head__kicker {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════
   HOMEPAGE — HERO (Tmavomodrý svět kniha)
   ════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero__copy { max-width: 720px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero__tag::before {
  content: ""; width: 32px; height: 1px; background: var(--accent);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 36px;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__title q {
  display: block;
  margin-bottom: 12px;
  quotes: none;
}
.hero__title q + q { font-size: 0.62em; line-height: 1.08; color: var(--ink-soft); margin-top: 14px; }
.hero__title q + q + q { font-size: 0.62em; }
.hero__big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(50px, 8vw, 124px);
  line-height: 0.92;
  color: var(--ink);
  display: block;
  margin: 24px 0 32px;
  letter-spacing: -0.02em;
}
.hero__line {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
  font-style: normal;
}
.hero__line em { font-style: italic; color: var(--accent); }

.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}

.hero__poster {
  position: relative;
}
.hero__poster .ph {
  aspect-ratio: 3 / 4;
  box-shadow: 0 40px 80px -30px rgba(10, 8, 8, 0.5),
              0 16px 32px -20px rgba(139, 44, 26, 0.35);
}
.hero__poster-meta {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  letter-spacing: -0.01em;
}
.marquee__sep {
  margin: 0 0 0 36px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  color: var(--accent-3);
  vertical-align: middle;
}
.marquee__link {
  cursor: pointer;
  transition: color 0.18s ease;
  display: inline-block;
}
.marquee__link:hover { color: var(--accent-3); }
.marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════════
   FINDOU FEATURED — sekce na homepage (tmavá, dramatická)
   ════════════════════════════════════════════════════════════════════ */
.findou-feat {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 9vw, 120px) var(--gutter);
}
.findou-feat__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.findou-feat__copy { max-width: 600px; }
.findou-feat .eyebrow { color: var(--accent-3); }
.findou-feat__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin: 16px 0 32px;
}
.findou-feat__title strong { font-weight: 400; font-style: normal; color: var(--paper); }
.findou-feat__lead {
  font-size: 18px;
  color: rgba(241, 237, 226, 0.78);
  margin-bottom: 32px;
  line-height: 1.55;
}
.findou-feat__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.findou-feat__visual .ph {
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

/* ════════════════════════════════════════════════════════════════════
   FILMOGRAFIE GRID — letterbox stills
   ════════════════════════════════════════════════════════════════════ */
.filmgrid {
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.filmgrid__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.filmgrid__head .sec-head { margin-bottom: 0; }
.filmgrid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.filmcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.filmcard:hover { transform: translateY(-3px); }
.filmcard__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.filmcard__media .ph { width: 100%; height: 100%; }
.filmcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 8, 0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 18px;
}
.filmcard__year-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.filmcard__body {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.filmcard__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 400;
}
.filmcard__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-mute);
}

/* ════════════════════════════════════════════════════════════════════
   SHOP GRID — featured products
   ════════════════════════════════════════════════════════════════════ */
.shop {
  background: var(--paper-2);
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop__inner { max-width: var(--max); margin: 0 auto; }
.shop__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.shop__head .sec-head { margin-bottom: 0; }
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.product {
  display: flex; flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.product__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-3);
  transition: transform 0.2s ease;
}
.product:hover .product__media { transform: translateY(-3px); }
.product__title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
}
.product__price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════════
   PLACEHOLDERS
   ════════════════════════════════════════════════════════════════════ */
.ph { width: 100%; height: 100%; background: var(--ink); overflow: hidden; }
.ph svg { width: 100%; height: 100%; display: block; }
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--still { aspect-ratio: 16 / 9; }
.ph--poster { aspect-ratio: 2 / 3; }
.ph--book { aspect-ratio: 3 / 4; }
.ph--stage { aspect-ratio: 4 / 3; }
.ph--product { aspect-ratio: 3 / 4; }

/* ════════════════════════════════════════════════════════════════════
   AVAIL CHIPS (volno / posl / vyprodáno)
   ════════════════════════════════════════════════════════════════════ */
.avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 0;
  white-space: nowrap;
  text-transform: uppercase;
}
.avail__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.avail--volno     { color: var(--ok);   background: rgba(58, 107, 48, 0.12); }
.avail--posledni  { color: var(--warn); background: rgba(184, 92, 26, 0.14); }
.avail--vyprodano { color: var(--ko);   background: rgba(168, 71, 59, 0.13); }

/* ════════════════════════════════════════════════════════════════════
   FINDOU — SUBPAGE
   ════════════════════════════════════════════════════════════════════ */
.f-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 9vw, 120px) var(--gutter) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.f-hero__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.f-hero__copy { max-width: 660px; }
.f-hero__crumb {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.f-hero__crumb::before { content: ""; width: 24px; height: 1px; background: var(--accent-3); }
.f-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 8.5vw, 140px);
  line-height: 0.88;
  color: var(--paper);
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.f-hero__title strong { font-style: normal; font-weight: 400; }
.f-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(241, 237, 226, 0.78);
  margin-bottom: 28px;
  max-width: 56ch;
}
.f-hero__credits {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 237, 226, 0.18);
}
.f-hero__credits > div { display: flex; flex-direction: column; gap: 4px; }
.f-hero__credits dt {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(241, 237, 226, 0.5);
}
.f-hero__credits dd {
  font-family: var(--font-display);
  font-size: 19px; font-style: italic; color: var(--paper); margin: 0;
}
.f-hero__visual .ph {
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

/* Findou about - long text */
.f-text {
  padding: clamp(70px, 9vw, 110px) var(--gutter);
  max-width: 920px; margin: 0 auto;
}
.f-text__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.f-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 68ch;
}

/* Termíny */
.terms {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid var(--line);
}
.terms__head { margin-bottom: 32px; }
.terms__filters {
  display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.terms__filter { display: flex; flex-direction: column; gap: 10px; }
.terms__filter-lbl {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.terms__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 7px 14px;
  font-size: 13px; font-weight: 500;
  transition: all 0.16s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.terms__legend {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.legend { display: inline-flex; align-items: center; gap: 8px; }
.legend__dot { width: 8px; height: 8px; border-radius: 50%; }
.legend__dot--volno     { background: var(--ok); }
.legend__dot--posledni  { background: var(--warn); }
.legend__dot--vyprodano { background: var(--ko); }

.show-list { list-style: none; padding: 0; margin: 0; }
.show {
  display: grid;
  grid-template-columns: 120px 110px 1.2fr 1.2fr 230px;
  gap: 24px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.16s ease;
}
.show:hover { background: var(--paper-2); }
.show--vyprodano { opacity: 0.55; }
.show--vyprodano:hover { background: transparent; }
.show__date {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 0.9;
}
.show__day {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.show__month {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.show__year {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-top: 4px;
}
.show__weekday {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.show__time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
}
.show__venue {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 2px;
  line-height: 1.15;
}
.show__city {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.show__avail {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.show__capacity { display: flex; flex-direction: column; gap: 4px; width: 100%; max-width: 180px; }
.show__bar {
  height: 3px; background: var(--line-soft);
  overflow: hidden; width: 100%;
}
.show__bar span {
  display: block; height: 100%;
  background: var(--ink);
  transition: width 0.3s ease;
}
.show--posledni .show__bar span { background: var(--warn); }
.show__capacity-text {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.show__cta { justify-self: end; }
.show-list__empty {
  padding: 48px 12px;
  text-align: center;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--line);
}
.terms__note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  font-size: 14px;
  color: var(--ink-soft);
}
.terms__note a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Tady mohou být placeholdery vyznačené */
.is-placeholder {
  color: var(--ink-mute);
  font-style: italic;
}

/* ════════════════════════════════════════════════════════════════════
   SUBPAGES (Biografie, Branický zázrak, Ocenění, Kontakty, Press, Filmy, Projekce)
   ════════════════════════════════════════════════════════════════════ */
.sub-hero {
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}
.sub-hero__inner { max-width: var(--max); margin: 0 auto; }
.sub-hero__crumb {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.sub-hero__crumb::before { content: ""; width: 24px; height: 1px; background: var(--accent); }
.sub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.sub-hero__title em { font-style: italic; }
.sub-hero__lead {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.3;
}

/* Kompaktní varianta — pro WC stránky (kosik, pokladna, muj-ucet).
   Menší padding a menší titul aby cart neplaval v prázdném místě.
   Bez border-bottom — jinak mezi sub-hero a nadpisem sekce je čára navíc
   (Gideon 1.7. večer). */
.sub-hero--compact {
  padding: clamp(28px, 3.5vw, 48px) var(--gutter) clamp(20px, 2.5vw, 32px);
  border-bottom: 0;
}
.sub-hero--compact .sub-hero__title {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
}
.sub-hero--compact .sub-hero__crumb {
  margin-bottom: 14px;
}
.sub-hero--compact .sub-hero__lead {
  margin-top: 14px;
  font-size: clamp(16px, 1.6vw, 20px);
}

/* Filmy / Filmografie page */
.filmpage {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
}

/* Bio */
.bio {
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.bio__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.bio__portrait { position: sticky; top: 120px; align-self: start; }
.bio__portrait .ph { aspect-ratio: 4/5; margin-bottom: 24px; }
.bio__facts { margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.bio__facts > div { display: flex; flex-direction: column; gap: 4px; }
.bio__facts dt {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.bio__facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.bio__text .bio__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  margin-bottom: 32px;
  color: var(--ink);
}
.bio__text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 32px 0 16px;
  color: var(--ink);
}
.bio__text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 68ch;
}

/* Kontakt cards */
.contact { padding: clamp(60px, 8vw, 100px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-card h3 { font-size: 26px; font-family: var(--font-display); }
.contact-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.contact-card__dl { margin: 8px 0 0; display: flex; flex-direction: column; gap: 12px; }
.contact-card__dl > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; }
.contact-card__dl dt {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-card__dl dd { margin: 0; font-size: 15px; color: var(--ink); font-family: var(--font-display); font-style: italic; }
.contact-card__dl a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.ftr {
  background: var(--ink);
  color: rgba(241, 237, 226, 0.7);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
}
.ftr__big {
  max-width: var(--max); margin: 0 auto 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241, 237, 226, 0.15);
}
.ftr__logo img { height: 56px; }
.ftr__claim {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  color: var(--paper);
  letter-spacing: -0.01em;
  max-width: 18ch;
  text-align: right;
}
.ftr__claim em { font-style: italic; color: var(--accent-3); }

.ftr__cols {
  padding: 0 var(--gutter);
}
.ftr__cols-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ftr__col h4 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 18px;
}
.ftr__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(241, 237, 226, 0.75);
  transition: color 0.16s ease;
  text-decoration: none;
}
.ftr__col a:hover { color: var(--paper); }
/* Reset bullet pointy pokud nějaké zbyly */
.ftr__col ul, .ftr__col li { list-style: none; padding: 0; margin: 0; }
.ftr__col li::before, .ftr__col li::marker { content: none; }
.ftr__news, .ftr__news-lead {
  font-size: 13px;
  color: rgba(241, 237, 226, 0.6);
  margin: 0 0 14px;
  line-height: 1.5;
}
.ftr__form {
  display: flex;
  border-bottom: 1px solid rgba(241, 237, 226, 0.3);
}
.ftr__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--paper);
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}
.ftr__form input::placeholder { color: rgba(241, 237, 226, 0.4); }
.ftr__form button {
  background: transparent;
  border: 0;
  color: var(--accent-3);
  font-size: 20px;
  padding: 0 4px;
}
.ftr__form button:hover { color: var(--paper); }

.ftr__bot {
  margin-top: 48px;
  padding: 28px var(--gutter) 0;
  border-top: 1px solid rgba(241, 237, 226, 0.12);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(241, 237, 226, 0.45);
}
.ftr__bot-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.ftr__social { display: flex; gap: 16px; }
.ftr__social a {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: rgba(241, 237, 226, 0.7);
  transition: color 0.16s ease;
}
.ftr__social a:hover { color: var(--accent-3); }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .hdr__mobile { display: flex; }
  :root { --logo-h: 42px; }

  .hero__grid,
  .findou-feat__inner,
  .f-hero__inner,
  .bio__inner {
    grid-template-columns: 1fr;
  }
  .hero__poster { max-width: 420px; }
  .filmgrid__list { grid-template-columns: 1fr 1fr; }
  .shop__grid { grid-template-columns: 1fr 1fr; }

  .ftr__cols-inner { grid-template-columns: 1fr 1fr; }
  .ftr__big { flex-direction: column; align-items: flex-start; }
  .ftr__claim { text-align: left; }

  .show {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "date when"
      "date where"
      "avail avail"
      "cta cta";
    row-gap: 12px;
    padding: 24px 8px;
  }
  .show__date { grid-area: date; }
  .show__when { grid-area: when; }
  .show__where { grid-area: where; }
  .show__avail { grid-area: avail; flex-direction: row; align-items: center; gap: 16px; flex-wrap: wrap; }
  .show__capacity { max-width: 220px; }
  .show__cta { grid-area: cta; justify-self: start; }
  .show__day { font-size: 44px; }

  .bio__portrait { position: static; max-width: 320px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; --logo-h: 36px; }
  .filmgrid__list { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr 1fr; }
  .marquee__item { font-size: 22px; }
}
