/* =============================================================
   Příběh utajené královny – vizuální systém
   -------------------------------------------------------------
   DVĚ PÍSMA
     EB Garamond ........... nadpisy, citáty, jména (display)
       – nízký kontrast tahů, takže zůstává čitelný i v malém
         stupni; české diakritice sedí bez kompromisů
     Jost .................. text, popisky, tlačítka, navigace
   ČTYŘI BARVY
     pergamen (světlé pozadí) · inkoust (text a tmavý sokl)
     karmín (pečeť – akcent)  · zlato (vlasové linky, ornamenty)
   ============================================================= */

/* ── Tokeny ─────────────────────────────────────────────────── */
:root {
  /* 1 – pergamen: dva odstíny jednoho světlého podkladu */
  --ivory:        #FCFAF6;
  --parchment:    #F4EDE1;
  /* 2 – inkoust */
  --ink:          #2B211B;
  /* 3 – karmín (pečetní vosk z plakátu) */
  --crimson:      #8E2233;
  --crimson-deep: #6E1927;
  /* 4 – zlato (jen ornament, nikdy drobný text) */
  --gold:         #B08D46;

  /* Odvozené odstíny */
  --ink-80:   rgba(43,33,27,.80);
  --ink-62:   rgba(43,33,27,.62);
  --ink-45:   rgba(43,33,27,.45);
  --line:     rgba(43,33,27,.13);
  --line-2:   rgba(43,33,27,.07);
  --line-gold:rgba(176,141,70,.42);
  --gold-soft:rgba(176,141,70,.16);
  --ivory-70: rgba(252,250,246,.70);
  --ivory-45: rgba(252,250,246,.45);

  /* Míry */
  --nav-height: 48px;
  --frame-pad:  .55rem;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --shadow-sm:  0 10px 26px -20px rgba(43,33,27,.5);
  --shadow-md:  0 22px 48px -28px rgba(43,33,27,.45);
  --shadow-lg:  0 40px 80px -40px rgba(43,33,27,.5);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.78;
  background: var(--ivory);
  color: var(--ink-80);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
::selection { background: var(--crimson); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Typografie ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, .serif {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
p + p { margin-top: 1.15rem; }
em { font-style: italic; }

/* Nadpis sekce */
.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 400;
  margin-bottom: .35rem;
}
.section-title em { color: var(--crimson); }

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-62);
  max-width: 62ch;
  margin: .9rem auto 0;
  line-height: 1.8;
}
.text-left .section-subtitle,
.section-subtitle.is-left { margin-left: 0; }

/* Nadřazený štítek – kapitálky */
.eyebrow, .hero-label, .page-hero-eyebrow, .playbill-eyebrow,
.creator-role, .act-number, .footer-heading, .tl-year {
  font-family: 'Jost', sans-serif;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--crimson);
  line-height: 1.5;
}

/* ── Vlasové linky a ornamenty ──────────────────────────────── */
.rule, .gold-line {
  width: 68px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem auto;
  border: 0;
}
.rule--left, .gold-line-left {
  margin-left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Linka s kosočtvercem uprostřed */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; margin: 1.5rem auto;
  color: var(--gold);
}
.ornament::before, .ornament::after { content: ''; height: 1px; width: clamp(40px, 8vw, 96px); }
.ornament::before { background: linear-gradient(90deg, transparent, var(--line-gold)); }
.ornament::after  { background: linear-gradient(90deg, var(--line-gold), transparent); }
.ornament > span {
  width: 5px; height: 5px; flex: none;
  background: var(--gold); transform: rotate(45deg);
}
.ornament--left { justify-content: flex-start; margin-left: 0; }
.ornament--left::before { display: none; }

/* ── Kontejnery a sekce ─────────────────────────────────────── */
.container    { max-width: 1220px; margin: 0 auto; padding: 0 2.25rem; }
.container-sm { max-width:  780px; margin: 0 auto; padding: 0 2.25rem; }

.section { padding: clamp(4.5rem, 8.5vw, 7.5rem) 0; background: var(--ivory); }
.section-tight-top { padding-top: clamp(2rem, 3.2vw, 3rem); }
/* Jediné dva podklady na celém webu – pergamen světlý / pergamen teplý */
.section-dark,
.section-light   { background: var(--ivory); }
.section-smoke,
.section-parchment { background: var(--parchment); }




.section-head { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.section-head .section-subtitle { margin-bottom: 0; }
.section-head--left { text-align: left; }
.section-head--left .section-subtitle { margin-left: 0; }

/* ── Rámečky pro obrázky ────────────────────────────────────── */
/* .frame – pasparta s dvojitou vlasovou linkou (portréty, listy, dokumenty) */
.frame {
  position: relative;
  display: block;
  background: var(--ivory);
  padding: var(--frame-pad);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.frame::after {
  content: ''; position: absolute; z-index: 2; pointer-events: none;
  inset: calc(var(--frame-pad) - 3px);
  border: 1px solid rgba(176,141,70,.28);
}
.frame img { width: 100%; display: block; }
.frame--link { cursor: pointer; }
.frame--link:hover,
.frame--link:focus-visible {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-md);
}

/* .tile – bezrámový výřez s vlasovou linkou (mřížky fotografií) */
.tile {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--parchment);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.tile img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.tile::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(252,250,246,.35);
  transition: box-shadow .45s var(--ease);
}
.tile:hover, .tile:focus-visible {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
}
.tile:hover img, .tile:focus-visible img { transform: scale(1.045); }

/* ── Tlačítka ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
  font-family: 'Jost', sans-serif;
  font-size: .715rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.05rem 2.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  position: relative;
  white-space: nowrap;
  transition: background-color .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
}

/* Primární – karmínová pečeť */
.btn-primary, .btn-gold, .btn-wine, .btn-crimson {
  background: var(--crimson);
  color: var(--ivory);
  border-color: var(--crimson);
}
.btn-primary:hover, .btn-gold:hover, .btn-wine:hover, .btn-crimson:hover {
  background: var(--crimson-deep);
  border-color: var(--crimson-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(142,34,51,.6);
}

/* Sekundární – vlasový obrys */
.btn-outline, .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover, .btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* Varianty na tmavém soklu */
.on-ink .btn-outline, .on-ink .btn-ghost {
  color: var(--ivory); border-color: rgba(252,250,246,.28);
}
.on-ink .btn-outline:hover, .on-ink .btn-ghost:hover {
  background: var(--ivory); color: var(--ink); border-color: var(--ivory);
}

.btn-lg { padding: 1.2rem 2.8rem; font-size: .75rem; }
.btn-sm { padding: .7rem 1.5rem;  font-size: .66rem; letter-spacing: .16em; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* Ikona vstupenky – jedno místo pro celý web (nahrazuje emoji) */
.btn-ticket::before {
  content: '';
  width: 15px; height: 15px; flex: none;
  background: currentColor;
  -webkit-mask: var(--ticket-svg) center/contain no-repeat;
          mask: var(--ticket-svg) center/contain no-repeat;
}
:root {
  --ticket-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5V6.5a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v2a2.5 2.5 0 0 0 0 7v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2a2.5 2.5 0 0 0 0-7Z'/%3E%3Cpath d='M14 6v2M14 11v2M14 16v2'/%3E%3C/svg%3E");
}

/* Textový odkaz se šipkou */
.link-arrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Jost', sans-serif;
  font-size: .74rem; font-weight: 500;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--crimson);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow::after {
  content: ''; width: 22px; height: 1px; background: currentColor;
  transition: width .3s var(--ease);
}
.link-arrow:hover { gap: .9rem; color: var(--crimson-deep); }
.link-arrow:hover::after { width: 30px; }

/* ── Navigace ───────────────────────────────────────────────── */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  background: #FCFAF6;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.navbar.scrolled {
  background: var(--ivory);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px -18px rgba(43,33,27,.5);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; }

/* Menu je vždy viditelné se solidním pozadím */
.home .navbar:not(.scrolled) {
  background: var(--ivory);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav-logo {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: .005em;
  white-space: nowrap;
}
.nav-logo span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .55rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-45);
  margin: .25rem 0 0;
}

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  position: relative;
  font-size: .745rem; font-weight: 400;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-62);
  padding: .15rem 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--crimson);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { padding: .35rem 0.95rem; font-size: .62rem; letter-spacing: .15em; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px 4px; }
.hamburger span {
  display: block; width: 24px; height: 1px; background: var(--ink);
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobilní menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1001;
  background: var(--ivory);
  flex-direction: column; align-items: flex-start; justify-content: center;
  gap: .35rem; padding: 5rem 2rem 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 400; line-height: 1.5;
  color: var(--ink);
  opacity: 0; transform: translateY(16px);
  animation: menuItemIn .45s var(--ease) forwards;
  transition: color .25s var(--ease);
}
.mobile-menu a:not(.btn):hover { color: var(--crimson); }
.mobile-menu .btn { width: 100%; margin-top: 2rem; padding: 1.15rem; }
.mobile-menu a:nth-child(2) { animation-delay: .04s; }
.mobile-menu a:nth-child(3) { animation-delay: .09s; }
.mobile-menu a:nth-child(4) { animation-delay: .14s; }
.mobile-menu a:nth-child(5) { animation-delay: .19s; }
.mobile-menu a:nth-child(6) { animation-delay: .24s; }
.mobile-menu-close {
  position: absolute; top: 1.4rem; right: 1.6rem;
  width: 42px; height: 42px; font-size: 1.35rem;
  color: var(--ink-45); transition: color .25s var(--ease);
}
.mobile-menu-close:hover { color: var(--crimson); }
@keyframes menuItemIn { to { opacity: 1; transform: translateY(0); } }

/* Lepivé CTA na mobilu */
.sticky-cta {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 998;
  background: var(--crimson); padding: .95rem 1.5rem; justify-content: center;
  box-shadow: 0 -8px 30px -20px rgba(43,33,27,.8);
}
.sticky-cta a {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--ivory); font-size: .74rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
}

/* ── Hero (úvodní stránka) ──────────────────────────────────── */
/* Jediný hero na webu. Vizuál je sám o sobě světlý (pergamenové
   dopisy vlevo, portrét vpravo) – text sedí na jeho světlé půlce
   pod jemným pergamenovým závojem.                              */
/* Vyplní celou obrazovku na všech zařízeních. svh = malý viewport,
   takže na mobilu nic nepřečnívá pod lištu prohlížeče.            */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 2rem) 0 3rem;
  background: var(--ivory);
}
.hero > .container { width: 100%; position: relative; z-index: 2; }

.hero-bg-img, .hero-media {
  position: absolute; top: var(--nav-height); right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: 46% 25%;
  background-repeat: no-repeat;
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* Závoj je jen tak silný, aby text držel – obraz zůstává čitelný.
   Radiál navíc prosvětlí jen místo, kde text leží přes pečeť.     */
.hero-overlay, .hero-veil {
  position: absolute; top: var(--nav-height); right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(ellipse 42% 42% at 17% 60%, rgba(252,250,246,.42), transparent 72%),
    linear-gradient(95deg,
      rgba(252,250,246,.74) 0%,
      rgba(252,250,246,.56) 24%,
      rgba(252,250,246,.30) 42%,
      rgba(252,250,246,.08) 60%,
      rgba(252,250,246,0)   76%),
    linear-gradient(to bottom, rgba(252,250,246,.42) 0%, rgba(252,250,246,0) 13%);
}
/* Teplý nádech, aby fotka a pergamen ladily */
.hero-grain {
  position: absolute; top: var(--nav-height); right: 0; bottom: 0; left: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 78% 50%, rgba(244,237,225,.22), transparent 70%);
  mix-blend-mode: multiply; opacity: .5;
}

.hero-content, .hero-inner {
  position: relative; z-index: 2;
  max-width: 34rem;
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
}
/* Světelná svatozář místo tmavého stínu – drží text nad fotkou,
   aniž by ji ztmavovala */
.hero-label, .hero-title, .hero-subtitle {
  text-shadow: 0 1px 14px rgba(252,250,246,.92), 0 0 34px rgba(252,250,246,.75);
}
.hero-label {
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.hero-subtitle {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
  max-width: 70ch;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.hero-title em { font-weight: 500; color: var(--crimson); }
.hero-rule {
  width: 78px; height: 1px; margin: 0 0 1.2rem;
  background: linear-gradient(90deg, var(--gold), rgba(176,141,70,0));
}
.hero-lead {
  font-size: clamp(.95rem, 1.05vw, 1.02rem);
  line-height: 1.8;
  color: var(--ink-80);
  max-width: 30rem;
  margin-bottom: 1.9rem;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: .85rem; flex-wrap: wrap;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-45);
}
.hero-meta i { display: block; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }

@media (max-width: 1024px) {
  .hero-bg-img, .hero-media { background-position: 56% 35%; }
  .hero-overlay, .hero-veil {
    background:
      linear-gradient(95deg,
        rgba(252,250,246,.82) 0%, rgba(252,250,246,.66) 34%,
        rgba(252,250,246,.36) 58%, rgba(252,250,246,.08) 80%, rgba(252,250,246,0) 100%),
      linear-gradient(to bottom, rgba(252,250,246,.45) 0%, rgba(252,250,246,0) 14%);
  }
}
@media (max-width: 720px) {
  /* Text držíme dole, aby neležel přes tvář Karoliny výš v záběru */
  .hero { padding: calc(var(--nav-height) + 1.5rem) 0 2.5rem; align-items: flex-end; }
  .hero-bg-img, .hero-media { background-position: 55% 35%; }
  .hero-overlay, .hero-veil {
    background:
      linear-gradient(to bottom,
        rgba(252,250,246,.5) 0%, rgba(252,250,246,.62) 40%, rgba(252,250,246,.72) 100%);
  }
  .hero-content, .hero-inner { max-width: none; }
  .hero-label {
    font-size: .68rem;
    letter-spacing: .2em;
  }
  .hero-subtitle {
    font-size: .88rem;
    line-height: 1.44;
  }
  .hero-actions { width: 100%; justify-content: flex-start; }
  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    max-width: 140px;
    padding: .45rem .85rem;
    font-size: .52rem;
    line-height: 1;
    letter-spacing: .2em;
  }
}
@media (max-width: 640px) {
  .hero-label {
    font-size: .64rem;
    letter-spacing: .18em;
  }
  .hero-subtitle {
    font-size: .82rem;
    line-height: 1.42;
  }
  .hero-actions .btn {
    max-width: 130px;
    padding: .4rem .8rem;
    font-size: .48rem;
    line-height: 1;
    letter-spacing: .16em;
  }
  .nav-logo { font-size: .9rem; }
  .nav-logo span { font-size: .52rem; }
}

/* ── Záhlaví podstránek ─────────────────────────────────────── */
/* Bez fotografie – hero patří jen na úvod. Podstránky otevírá
   klidný pergamenový pás, který nezdržuje cestu k obsahu.        */
.page-head, .page-hero, .caroline-hero {
  position: relative; overflow: hidden;
  background: var(--parchment);
  padding: calc(var(--nav-height) + clamp(3.5rem, 7vw, 6rem)) 0 clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
  border-bottom: 1px solid var(--line-2);
  min-height: 0;
  display: block;
}
/* Světelná aura + jemná zlatá zrnitost */
.page-head::before, .page-hero::before, .caroline-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%,   rgba(252,250,246,.95), transparent 70%),
    radial-gradient(ellipse 45% 60% at 50% 120%, rgba(176,141,70,.10),  transparent 70%);
}
.page-head .container, .page-hero .container, .caroline-hero .container { position: relative; z-index: 1; }
.page-head h1, .page-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 500; line-height: 1.06;
  letter-spacing: -.015em;
  margin: .6rem 0 0;
  color: var(--ink);
}
.page-hero-eyebrow {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--crimson);
  margin-bottom: .9rem;
  text-shadow: 0 1px 14px rgba(252,250,246,.92), 0 0 34px rgba(252,250,246,.75);
}
.page-head-lead, .page-hero p:not(.page-hero-eyebrow) {
  font-size: 1.05rem; line-height: 1.85;
  color: var(--ink-62);
  max-width: 56ch; margin: 0 auto;
}
/* Skryjeme staré fotopozadí podstránek – jednotný podklad */
.page-hero-bg, .page-hero-overlay,
.caroline-hero-bg, .caroline-hero-overlay { display: none; }

/* Citát v záhlaví stránky o Karolině */
.caroline-hero-quote {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  font-style: italic; font-weight: 400;
  line-height: 1.4; color: var(--ink);
  max-width: 22ch; margin: 1.1rem auto 0;
}
.caroline-hero-content { position: relative; z-index: 1; }
.scroll-indicator { display: none; }

/* ── Citát ──────────────────────────────────────────────────── */
.quote-section {
  background: var(--ivory);
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  position: relative;
}
/* Citát je vysazený jako tištěné motto – bez dekorací navíc,
   uvozovky nese samotný text a ornament ho zdola uzavírá. */
.quote-text {
  position: relative;
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-style: italic; font-weight: 400;
  line-height: 1.45; letter-spacing: -.01em;
  color: var(--ink);
  max-width: 27ch; margin: 0 auto;
}
@media (max-width: 640px) { .quote-text { font-size: clamp(1.3rem, 6vw, 1.8rem); max-width: none; } }

/* ── Hrajeme od září 2026 ───────────────────────────────────── */
.playbill {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--parchment);
}
.playbill-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 50% 40%, rgba(252,250,246,.9), transparent 72%),
    radial-gradient(ellipse 40% 55% at 8% 105%, rgba(176,141,70,.13), transparent 72%),
    radial-gradient(ellipse 40% 55% at 94% -5%, rgba(142,34,51,.06), transparent 70%);
}
.playbill-card {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.playbill-card::before {
  content: ''; position: absolute; inset: 9px; pointer-events: none;
  border: 1px solid rgba(176,141,70,.22);
}
.playbill-corner {
  position: absolute; width: 16px; height: 16px; z-index: 2;
  border: 1px solid var(--gold);
}
.playbill-corner--tl { top: 15px; left: 15px;  border-right: 0; border-bottom: 0; }
.playbill-corner--tr { top: 15px; right: 15px; border-left: 0;  border-bottom: 0; }
.playbill-corner--bl { bottom: 15px; left: 15px;  border-right: 0; border-top: 0; }
.playbill-corner--br { bottom: 15px; right: 15px; border-left: 0;  border-top: 0; }

.playbill-eyebrow { margin-bottom: 1rem; }
.playbill-title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 400; font-style: italic;
  line-height: 1.05; color: var(--ink);
}
.playbill-title span { font-style: normal; font-weight: 400; color: var(--crimson); }
.playbill-rule {
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  margin: 1.5rem 0 1.2rem; color: var(--gold);
}
.playbill-rule::before, .playbill-rule::after { content: ''; height: 1px; width: 76px; }
.playbill-rule::before { background: linear-gradient(90deg, transparent, var(--line-gold)); }
.playbill-rule::after  { background: linear-gradient(90deg, var(--line-gold), transparent); }
.playbill-rule span { font-size: .7rem; line-height: 1; }
.playbill-venue {
  font-size: .78rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-62); margin-bottom: 2.3rem;
}
@media (max-width: 560px) { .playbill-rule::before, .playbill-rule::after { width: 44px; } }

/* ── Video ──────────────────────────────────────────────────── */
.video-section { padding: clamp(4.5rem, 8.5vw, 7.5rem) 0; padding-bottom: clamp(2.5rem, 4.5vw, 3.5rem); }
.video-wrapper {
  position: relative; padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--parchment);
  border: 1px solid var(--line-gold);
  padding-top: 0;
  box-shadow: var(--shadow-md);
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background-size: cover; background-position: center;
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,33,27,.45), rgba(43,33,27,.12));
  transition: background .4s var(--ease);
}
.video-placeholder:hover::before { background: linear-gradient(to top, rgba(43,33,27,.3), rgba(43,33,27,.04)); }
.video-placeholder .play-btn {
  position: relative; z-index: 1;
  width: 84px; height: 84px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,250,246,.92);
  border: 1px solid rgba(252,250,246,.9);
  box-shadow: 0 16px 40px -16px rgba(43,33,27,.7);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.video-placeholder .play-btn svg { fill: var(--crimson); margin-left: 3px; transition: fill .35s var(--ease); }
.video-placeholder:hover .play-btn { transform: scale(1.08); background: var(--crimson); }
.video-placeholder:hover .play-btn svg { fill: var(--ivory); }

/* ── Mřížky fotografií ──────────────────────────────────────── */
.stage-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stage-gallery .sg-item { aspect-ratio: 3/2; }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.photo-grid-item { aspect-ratio: 4/3; }
.photo-grid--stage .photo-grid-item { aspect-ratio: 3/2; }
.photo-grid-item img { object-position: center center; }

/* Focení na zámku – na výšku i na šířku v jedné mřížce, proto čtverec */
.photo-grid--square .photo-grid-item { aspect-ratio: 1; }
/* Výřez mírně nad středem – u celofigurových snímků drží tváře v obraze */
.photo-grid--square .photo-grid-item img { object-position: center 32%; }

/* Historická galerie – portréty v paspartě */
.historical-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hist-item img { aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.hist-item figcaption {
  padding: .8rem .2rem 0; font-size: .78rem; line-height: 1.5;
  color: var(--ink-45); text-align: center;
}

/* Kostýmní listy a návrhy scény – dva a dva */
.design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 840px; margin: 0 auto;
  justify-items: center;
}
.design-item { margin: 0; width: 100%; max-width: 380px; }
.design-item figcaption {
  padding: .85rem .2rem 0;
  font-size: .76rem; line-height: 1.5; letter-spacing: .02em;
  color: var(--ink-45); text-align: center;
  transition: color .35s var(--ease);
}
.design-item { cursor: pointer; }
.design-item:hover .frame,
.design-item:focus-visible .frame {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: var(--shadow-md);
}
.design-item:hover figcaption { color: var(--ink-62); }
.design-item:focus-visible { outline: none; }
.design-item:focus-visible .frame { outline: 2px solid var(--crimson); outline-offset: 3px; }

@media (max-width: 1024px) {
  .historical-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .stage-gallery, .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 640px) {
  .stage-gallery, .photo-grid { grid-template-columns: 1fr; }
  .historical-gallery { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .design-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Karty článků – dvě na řádek ────────────────────────────── */
.article-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1040px; margin: 0 auto;
}
.article-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.85rem, 3vw, 2.5rem);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.article-card::before {
  content: ''; position: absolute; inset: 0 auto auto 0; height: 2px; width: 100%;
  background: var(--crimson);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.article-card:hover, .article-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
}
.article-card:hover::before, .article-card:focus-visible::before { transform: scaleX(1); }

.article-source {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .64rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 1.1rem;
}
.article-source::after { content: ''; width: 18px; height: 1px; background: var(--line-gold); }

.article-card h3, .article-title {
  font-size: clamp(1.28rem, 1.75vw, 1.5rem);
  font-weight: 400; line-height: 1.25;
  color: var(--ink); margin-bottom: .95rem;
}
.article-card p, .article-excerpt {
  font-size: .95rem; line-height: 1.8;
  color: var(--ink-62); margin-bottom: 1.9rem;
}
.article-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* ── Rozdělená sekce (text + mapa) ──────────────────────────── */
.section-split .split-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.map-card {
  overflow: hidden; min-height: 400px;
  background: var(--ivory);
  padding: var(--frame-pad);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-md);
}
.map-embed { position: relative; width: 100%; height: 100%; min-height: 388px; overflow: hidden; }
.map-iframe { width: 100%; height: 100%; min-height: 388px; border: 0; display: block; }

/* Placeholder, který mapu nahrazuje, dokud na ni návštěvník neklikne:
   statický náhled okolí (dlaždice OpenStreetMap uložené u nás) je ztónovaný
   do pergamenu, aby prozradil místo, ale nekřičel barvami. */
.map-placeholder {
  position: relative; overflow: hidden;
  width: 100%; height: 100%; min-height: 388px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.75rem 1.5rem; text-align: center;
  background: var(--parchment);
  color: var(--ink-62);
}
.map-preview {
  position: absolute; inset: -5%;
  width: 110%; height: 110%; max-width: none;
  object-fit: cover; object-position: center;
  filter: sepia(.34) saturate(.66) contrast(1.02) brightness(.99) blur(1px);
  opacity: .95;
  transition: filter .45s var(--ease), opacity .45s var(--ease), transform .6s var(--ease);
}
.map-placeholder::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(115% 95% at 50% 50%, rgba(244,237,225,0) 35%, rgba(244,237,225,.5) 100%),
    linear-gradient(to top, rgba(43,33,27,.08), rgba(43,33,27,0));
  transition: opacity .45s var(--ease);
}
.map-placeholder:hover .map-preview,
.map-placeholder:focus-visible .map-preview {
  filter: sepia(.3) saturate(.6) contrast(1.03) brightness(1) blur(0);
  opacity: 1; transform: scale(1.015);
}
.map-placeholder:hover::after,
.map-placeholder:focus-visible::after { opacity: .6; }

/* Štítek nad náhledem – drží text čitelný, ať je pod ním cokoli */
.map-placeholder-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.35rem 1.5rem 1.3rem;
  background: rgba(252,250,246,.92);
  border: 1px solid var(--line-gold);
  box-shadow: 0 18px 44px -26px rgba(43,33,27,.55);
  transition: background-color .35s var(--ease);
}
@supports (backdrop-filter: blur(4px)) {
  .map-placeholder-body { background: rgba(252,250,246,.78); backdrop-filter: blur(5px); }
}
.map-placeholder:hover .map-placeholder-body { background: rgba(252,250,246,.94); }
.map-placeholder .map-pin {
  color: var(--crimson); margin-bottom: .85rem;
  transition: transform .35s var(--ease);
}
.map-placeholder:hover .map-pin { transform: translateY(-3px); }
.map-placeholder-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem; color: var(--ink);
}
.map-placeholder-sub { font-size: .9rem; letter-spacing: .04em; }
.map-placeholder-cta {
  margin-top: 1.15rem; padding: .5rem 1.4rem;
  font-size: .78rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--crimson);
  background: var(--ivory-70);
  border: 1px solid var(--line-gold);
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.map-placeholder:hover .map-placeholder-cta { background: var(--crimson); color: var(--ivory); }
.map-placeholder-note {
  margin-top: 1.1rem; max-width: 28ch;
  font-size: .76rem; line-height: 1.55; color: var(--ink-45);
}
/* Povinné uvedení zdroje dlaždic náhledu */
.map-attrib {
  position: absolute; right: .5rem; bottom: .4rem; z-index: 2;
  padding: .12rem .45rem;
  font-size: .62rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-45); background: rgba(252,250,246,.72);
  border: 0; text-decoration: none;
}
.map-attrib:hover { color: var(--crimson); }
@media (prefers-reduced-motion: reduce) {
  .map-preview { transition: none; }
}

/* ── Obsazení ───────────────────────────────────────────────── */
/* Vždy dva herci na řádek */
.cast-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 780px; margin: 0 auto;
}
.cast-card-wrapper {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.cast-card-wrapper.visible { opacity: 1; transform: translateY(0); }
.cast-card { background: none; border: 0; }
.cast-card .frame { margin-bottom: 1.1rem; }
.cast-card img { aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.cast-card-info { padding: 0; text-align: center; }
.cast-actor {
  font-family: 'EB Garamond', serif;
  font-size: 1.26rem; font-weight: 500; line-height: 1.3;
  color: var(--ink);
}
.cast-character {
  font-size: .7rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--crimson); margin-top: .5rem; line-height: 1.6;
}

/* ── Inscenační tým ─────────────────────────────────────────── */
.credits-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.credits-table { max-width: 620px; }
/* Funkce vlevo, jméno vpravo – mezi nimi jen vzduch, žádné tečky */
.credit-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.5rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-2);
}
.credit-row:first-child { border-top: 1px solid var(--line-2); }
.credit-role {
  flex: none;
  font-size: .68rem; font-weight: 400;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-45);
}
.credit-dots { display: none; }
.credit-name {
  font-family: 'EB Garamond', serif;
  font-size: 1.14rem; font-weight: 500; color: var(--ink);
  text-align: right;
}
.credit-row-secondary .credit-name { font-weight: 400; color: var(--ink-62); }
.credit-placeholder { font-style: italic; color: var(--ink-45) !important; }
@media (max-width: 860px) {
  .credits-layout { grid-template-columns: 1fr; }
  .credit-role { min-width: 130px; }
  .credit-name { font-size: 1.06rem; }
}

/* ── Anotace / text ─────────────────────────────────────────── */
.annotation { margin-top: 1.75rem; }
.annotation p { font-size: 1.03rem; line-height: 1.92; color: var(--ink-80); }
.annotation p em { font-family: 'EB Garamond', serif; font-style: italic; color: var(--ink); }
/* Perex serifem – jen tam, kde je první odstavec krátký (opt-in) */
.annotation--intro p:first-of-type {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.25rem, 1.85vw, 1.55rem);
  font-style: italic; font-weight: 400; line-height: 1.5;
  color: var(--ink);
}
.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.2rem);
  line-height: 1.9; color: var(--ink-80);
}

/* Dvousloupcový blok text + obraz */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.25rem, 5vw, 4.5rem); align-items: center;
}
.feature-grid .frame img { aspect-ratio: 1; object-fit: cover; }

/* ── Časová osa ─────────────────────────────────────────────── */
.timeline-section { padding: clamp(4.5rem, 8.5vw, 7.5rem) 0; }
.timeline { position: relative; max-width: 940px; margin: 3.5rem auto 0; padding: 1rem 0 3rem; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 0;
  transform: translateX(-50%);
  background: transparent;
}
.timeline-progress {
  position: absolute; left: 50%; top: 0; width: 2px; height: 0;
  transform: translateX(-50%);
  background: var(--crimson);
  box-shadow: 0 0 0 1px rgba(142,34,51,.18);
  z-index: 1; pointer-events: none; will-change: height;
}
.timeline-item { display: flex; align-items: flex-start; width: 100%; margin-bottom: 3rem; position: relative; }
.tl-right .tl-spacer, .tl-left .tl-spacer { flex: 0 1 50%; }
.tl-right .timeline-content, .tl-left .timeline-content { flex: 0 1 50%; }
.tl-spacer { flex-shrink: 0; }

.tl-dot-wrap {
  width: 44px; height: 44px; z-index: 2; position: absolute;
  left: 50%; top: 0; transform: translateX(-50%);
}
.tl-dot {
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--ivory);
  border: 1px solid var(--crimson);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.timeline-item.visible .tl-dot { background: var(--crimson); box-shadow: 0 0 0 5px var(--ivory), 0 0 0 6px rgba(142,34,51,.2); }
.mood-love .tl-dot, .mood-betrayal .tl-dot { border-color: var(--crimson); }
.timeline-item.visible.mood-love .tl-dot,
.timeline-item.visible.mood-betrayal .tl-dot { background: var(--crimson); }

.timeline-content {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 1.75rem 1.9rem;
  opacity: 0;
  box-shadow: var(--shadow-sm);
  transition: opacity .7s var(--ease), transform .7s var(--ease),
              border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tl-right .timeline-content { transform: translateX(24px); margin-left: auto; }
.tl-left  .timeline-content { transform: translateX(-24px); margin-right: auto; }
.timeline-item.visible .timeline-content { opacity: 1; transform: translateX(0); }
.timeline-content:hover { border-color: var(--crimson); box-shadow: var(--shadow-md); }

.tl-year { display: block; margin-bottom: .55rem; }
.tl-title {
  font-size: 1.38rem; font-weight: 400; line-height: 1.3;
  color: var(--ink); margin-bottom: .75rem;
}
.tl-location {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-45); margin-bottom: .9rem;
}
.tl-text { font-size: .95rem; line-height: 1.82; color: var(--ink-62); }

.tl-media { margin: 0 0 1.35rem; cursor: zoom-in; }
.tl-media .tl-media-frame { position: relative; }
.tl-media img {
  width: 100%; height: 320px; display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover; object-position: center 18%;
  transition: filter .45s var(--ease);
}
.tl-media:hover .frame {
  border-color: var(--crimson);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tl-media:hover img { filter: brightness(1.04); }
.tl-media figcaption {
  padding: .85rem .15rem 0;
  font-size: .72rem; line-height: 1.55; color: var(--ink-45);
}
.tl-media:focus-visible { outline: none; }
.tl-media:focus-visible .frame { outline: 2px solid var(--crimson); outline-offset: 3px; }
.tl-media-zoom {
  position: absolute; top: 8px; right: 8px;
  z-index: 3; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(252,250,246,.92); border: 1px solid var(--line-gold);
  color: var(--crimson); font-size: .72rem;
  opacity: 0; transition: opacity .3s var(--ease);
}
.tl-media:hover .tl-media-zoom { opacity: 1; }

@media (max-width: 768px) {
  .timeline::before, .timeline-progress { left: 14px; }
  .timeline-item, .tl-right, .tl-left { flex-direction: column; padding-left: 2.75rem; }
  .tl-dot-wrap { position: absolute; left: 14px; top: 0; width: 28px; height: 28px; transform: translateX(-50%); }
  .tl-spacer { display: none; }
  .tl-right .timeline-content, .tl-left .timeline-content { transform: translateX(18px); margin: 0; }
  .timeline-item.visible .timeline-content { transform: translateX(0); }
  .tl-media img { height: 260px; aspect-ratio: 3 / 4; }
}

/* ── Tmavý sokl: CTA (jediný tmavý blok na stránce) ─────────── */
.cta-banner, .cta-band {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--ivory-70);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 90% at 50% 110%, rgba(176,141,70,.16), transparent 70%),
    radial-gradient(ellipse 60% 70% at 50% -20%, rgba(142,34,51,.22), transparent 72%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-headline {
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  font-weight: 400; color: var(--ivory);
  max-width: 27ch; margin: 0 auto;
}
.cta-subline {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-45); margin: 1.4rem 0 2.4rem;
}
.cta-banner .btn-primary, .cta-banner .btn-gold,
.cta-banner .btn-wine, .cta-banner .btn-crimson {
  background: var(--crimson); border-color: var(--crimson); color: var(--ivory);
}
.cta-banner .btn-primary:hover, .cta-banner .btn-gold:hover,
.cta-banner .btn-wine:hover, .cta-banner .btn-crimson:hover {
  background: var(--ivory); border-color: var(--ivory); color: var(--ink);
}
.cta-banner .btn-outline, .cta-banner .btn-ghost {
  color: var(--ivory); border-color: rgba(252,250,246,.28);
}
.cta-banner .btn-outline:hover, .cta-banner .btn-ghost:hover {
  background: var(--ivory); color: var(--ink); border-color: var(--ivory);
}

/* ── Tiráž na pergamenu ─────────────────────────────────────────
   Tmavý sokl končí CTA – patička je světlá, aby tmavá zůstala
   rezervovaná jedinému místu, které má konvertovat. Tři úrovně
   textu (ink / ink-80 / ink-62) a dvě linky, nic víc.            */
.footer {
  position: relative;
  background: var(--parchment);
  color: var(--ink-80);
  padding: 0 0 clamp(1.5rem, 2.5vw, 2rem);
  font-size: .9rem;
}
/* Zlacená hrana na švu mezi tmavým CTA a tiráží – na světlém
   podkladu musí být sytější než vlasové linky uvnitř sekcí,
   jinak se v tom kontrastním švu úplně ztratí.                   */
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,141,70,.8) 20%, rgba(176,141,70,.8) 80%, transparent);
}
.footer .container { position: relative; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.25rem);
}

/* Značka */
.footer .nav-logo {
  font-size: 1.4rem; font-weight: 500; color: var(--ink);
  line-height: 1.2; white-space: normal;
}
.footer .nav-logo span {
  font-size: .56rem; letter-spacing: .3em;
  color: var(--ink-45); margin-top: .55rem;
}
/* Jediný ornament v tiráži – krátká zlatá linka pod logem */
.footer-brand .nav-logo::after {
  content: ''; display: block; width: 46px; height: 1px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--gold), rgba(176,141,70,0));
}
.footer-brand p {
  font-size: .855rem; line-height: 1.9;
  color: var(--ink-80);
  margin: 1.4rem 0 0; max-width: 42ch;
}

.footer-socials { display: flex; gap: .6rem; margin-top: 1.75rem; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink-62);
  transition: color .3s var(--ease), border-color .3s var(--ease),
              background-color .3s var(--ease), transform .3s var(--ease);
}
/* Karmín jako pečeť – zlatá plocha je na pergamenu kalná */
.footer-socials a:hover {
  color: var(--ivory); background: var(--crimson); border-color: var(--crimson);
  transform: translateY(-2px);
}

/* Sloupce – nadpisy dědí .eyebrow (karmín, kapitálky), bez podtržení */
.footer-heading {
  margin-bottom: 1.4rem;
  font-size: .855rem;
}

.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links a {
  position: relative; display: inline-block;
  font-size: .855rem; color: var(--ink-80);
  transition: color .25s var(--ease);
}
.footer-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer-links a:hover { color: var(--ink); }
.footer-links a:hover::after { transform: scaleX(1); }

.footer-brand p,
.footer-venue,
.footer-support {
  font-size: .855rem;
}

/* Premiéra – datum a místo mají stejný font a velikost */
.footer-date,
.footer-venue {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: .855rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-80);
}
.footer-date {
  margin: 0;
}
.footer-venue {
  margin-top: .5rem;
}

/* Poděkování a copyright pod sebou – copyright vlevo, podpora v malém textu */
.footer-bottom {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .45rem;
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line);
}

.cast-thanks a {
  color: var(--crimson);
  text-decoration: none;
  border-bottom: 1px solid rgba(142,34,51,.28);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.cast-thanks a:hover {
  color: var(--crimson-deep);
  border-bottom-color: var(--crimson-deep);
}
.footer-support {
  font-size: .72rem; line-height: 1.4;
  color: var(--ink-62); margin: 0;
}
.footer-support a,
.footer-support .about-trigger {
  color: var(--crimson);
  border-bottom: 1px solid rgba(142,34,51,.28);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer-support a:hover,
.footer-support .about-trigger:hover { color: var(--crimson-deep); border-bottom-color: var(--crimson-deep); }
/* Spouštěč modalu je <button>, aby fungovala klávesnice – musí ale
   vypadat jako okolní text, ne jako tlačítko */
.footer-support .about-trigger { font: inherit; padding: 0; }

.footer-copyright {
  display: flex; align-items: center; gap: .7rem; flex: none;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-45); margin: 0;
}
.footer-copyright::before {
  content: ''; width: 4px; height: 4px; flex: none;
  background: var(--gold); transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.75rem 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 58ch; }
}
@media (max-width: 620px)  {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand p { max-width: none; }
}

/* ── Lightbox (světlý) ──────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(252,250,246,.975);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%; max-height: 82vh;
  background: var(--ivory);
  padding: .7rem;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-45);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.lightbox-close {
  top: 1.5rem; right: 1.75rem;
  width: 44px; height: 44px; font-size: 1.2rem;
  border: 1px solid var(--line);
}
.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; font-size: 2rem; line-height: 1;
  border: 1px solid var(--line);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  color: var(--crimson); border-color: var(--crimson);
}
.lightbox-caption {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  max-width: 60ch; padding: 0 4rem; text-align: center;
  font-size: .8rem; line-height: 1.6; color: var(--ink-45);
}
.lightbox-caption:empty { display: none; }
@media (max-width: 640px) {
  .lightbox { padding: 1rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-prev { left: .25rem; } .lightbox-next { right: .25rem; }
}

/* ── Nástup při scrollu ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responzivita ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-grid, .section-split .split-grid { grid-template-columns: 1fr; }
  .feature-grid .frame { max-width: 520px; margin: 0 auto; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --nav-height: 54px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .container, .container-sm { padding: 0 1.5rem; }
}
@media (max-width: 780px) {
  .article-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
  .lightbox, .mobile-menu { padding-bottom: 5rem; }
}

  /* ── Photo modal for obsazeni images ───────────────────────────────── */
  .photo-modal {
    display: none; position: fixed; inset: 0; z-index: 2200;
    background: rgba(12,12,12,0.78);
    align-items: center; justify-content: center; padding: 2.25rem;
  }
  .photo-modal .photo-modal-inner {
    position: relative; max-width: 95%; max-height: 95%;
    display: flex; align-items: center; justify-content: center;
  }
  .photo-modal .photo-modal-img {
    max-width: 92vw; max-height: 88vh; width: auto; height: auto;
    background: var(--ivory); padding: .5rem; border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-lg); display: block;
  }
  .photo-modal .photo-modal-close {
    position: absolute; top: -12px; right: -12px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--ivory); color: var(--ink-62); display: flex;
    align-items: center; justify-content: center; font-size: 1rem;
  }
  .photo-modal.hidden { display: none; }
  .photo-modal:not(.hidden) { display: flex; }
  .cast-photo { cursor: zoom-in; }

  @media (max-width: 640px) {
    .photo-modal { padding: 1rem; }
    .photo-modal .photo-modal-img { max-width: 96vw; max-height: 80vh; }
  }

/* ── Modal „O tomto webu“ ───────────────────────────────────── */
/* Obsah se skládá v js/app.js, aby existoval jen jednou pro celý web.
   Spouští ho odkaz „nezávislou podporou“ v patičce. */
.about-modal {
  display: none; position: fixed; inset: 0; z-index: 2400;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(43,33,27,.62);
}
.about-modal.open { display: flex; }

.about-modal-inner {
  position: relative;
  display: flex; flex-direction: column;
  width: min(640px, 100%);
  max-height: min(84vh, 100%);
  background: var(--ivory);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}
/* Scrolluje jen obsah, zavírací křížek zůstává na místě */
.about-modal-body {
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: clamp(1.75rem, 4.5vw, 2.85rem);
}
.about-modal-close {
  position: absolute; top: .5rem; right: .6rem; z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink-45);
  transition: color .25s var(--ease);
}
.about-modal-close:hover { color: var(--crimson); }

.about-modal-title {
  font-size: clamp(1.5rem, 4.2vw, 1.95rem);
  margin-top: .3rem; padding-right: 2rem;
}
.about-modal-sub { font-size: 1.12rem; margin: 1.9rem 0 .5rem; }
.about-modal-body .rule--left { margin: 1rem 0 1.4rem; }
.about-modal-body p { font-size: .93rem; line-height: 1.75; color: var(--ink-80); }
.about-modal-body strong { color: var(--ink); font-weight: 500; }
.about-modal-body a {
  color: var(--crimson);
  border-bottom: 1px solid rgba(142,34,51,.28);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.about-modal-body a:hover { color: var(--crimson-deep); border-bottom-color: var(--crimson-deep); }

.about-modal-list {
  margin-top: .9rem; display: grid; gap: .6rem;
  font-size: .88rem; line-height: 1.65; color: var(--ink-62);
}
.about-modal-list li { position: relative; padding-left: 1.1rem; }
.about-modal-list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg);
}

/* Na mobilu karta u spodního okraje – blíž palci, ale s viditelným
   okrajem kolem dokola, aby okno nepůsobilo jako celá obrazovka */
@media (max-width: 560px) {
  .about-modal { padding: 1rem; align-items: flex-end; }
  .about-modal-inner {
    width: 100%;
    max-height: 72vh;
    margin-bottom: env(safe-area-inset-bottom);
  }
  .about-modal-body { padding: 1.75rem 1.35rem 2rem; }
  .about-modal-title { font-size: 1.42rem; }
  .about-modal-sub { font-size: 1.02rem; margin-top: 1.5rem; }
}
