/* ============================================================
   SABOO.CZ — redesign (vícestránkový)
   Paleta původního webu: tomato #ff6347 · green #88bb3b · cyan #1ab9ca
   Font: Montserrat
   ============================================================ */

:root {
  --tomato: #ff6347;
  --green: #88bb3b;
  --cyan: #1ab9ca;
  --ink: #000000;
  --gray: #7d7e82;
  --bg: #ffffff;
  --bg-soft: #fbfbfb;
  --font: 'Montserrat', sans-serif;
  --radius: 18px;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--ink); }

img { max-width: 100%; display: block; }

a { color: var(--tomato); transition: color 0.2s; }
a:hover, a:focus { color: var(--cyan); }

/* ============ HLAVIČKA ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #efefef;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}

.site-logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}

.site-logo:hover { color: var(--ink); }

.site-logo span { color: var(--tomato); }

.site-logo__knir {
  height: 30px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.site-logo:hover .site-logo__knir { transform: rotate(-6deg) scale(1.08); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  white-space: nowrap;
}

.site-nav .ext {
  font-size: 0.72em;
  font-weight: 700;
  color: var(--cyan);
  margin-left: 0.18em;
  vertical-align: 0.15em;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

.site-nav a.is-active { color: #5d8422; }

.site-nav .nav-btn {
  background: var(--green);
  color: var(--ink);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.site-nav .nav-btn::after { display: none; }

.site-nav .nav-btn:hover {
  background: var(--cyan);
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO (homepage) ============ */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}

.hero--video {
  position: relative;
  max-width: none;
  min-height: calc(100vh - 62px);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--bg);
}

.hero__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* světlý překryv, ať text zůstane čitelný */
.hero__video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 4rem 1.5rem;
}

.hero h1 {
  font-family: 'Annie Use Your Telescope', cursive;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 .accent { color: var(--tomato); }

.hero .subtitle {
  margin-top: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--gray);
}

.hero .subtitle strong { color: var(--ink); }

.hero-line {
  margin: 1.4rem auto 0;
  max-width: 34rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.hero__sipka {
  display: block;
  width: 110px;
  margin: 2.5rem auto 0;
  cursor: pointer;
}

/* ============ HVĚZDOMAT SPOTLIGHT ============ */
.hvezdomat {
  position: relative;
  background: #0d0d12;
  color: #fff;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}

.hvezdomat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 25%, rgba(255,255,255,0.9) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 28% 70%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(2px 2px at 45% 15%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 62% 55%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(2px 2px at 78% 30%, rgba(255,255,255,0.9) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 88% 75%, rgba(255,255,255,0.7) 50%, transparent 51%),
    radial-gradient(2px 2px at 8% 85%, rgba(255,255,255,0.6) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 55% 88%, rgba(255,255,255,0.8) 50%, transparent 51%),
    radial-gradient(2.5px 2.5px at 35% 40%, rgba(255,255,255,0.5) 50%, transparent 51%),
    radial-gradient(2px 2px at 93% 12%, rgba(255,255,255,0.8) 50%, transparent 51%);
  animation: twinkle 3.5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes twinkle {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.hvezdomat__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hvezdomat__badge {
  display: inline-block;
  background: var(--tomato);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  transform: rotate(-2deg);
}

.hvezdomat__text h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hvezdomat__text h2 .star { color: var(--tomato); }

.hvezdomat__text h2 .h2-sub {
  display: inline-block;
  font-size: 0.5em;
  margin-top: 0.4rem;
  color: var(--cyan);
}

.hvezdomat__text .tagline {
  margin-top: 0.8rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cyan);
}

.hvezdomat__text .desc {
  margin-top: 1rem;
  color: #b9bcc4;
  max-width: 30rem;
  font-size: 1.05rem;
}

.hvezdomat__text .desc a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--tomato);
}

.hvezdomat__text .desc a:hover { color: var(--cyan); }

.hvezdomat__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hvezdomat__cta .btn--tomato {
  font-size: 1.1rem;
  padding: 1rem 2.6rem;
  box-shadow: 0 0 35px rgba(255, 99, 71, 0.45);
}

.hvezdomat__cta .www {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px dashed rgba(255,255,255,0.4);
}

.hvezdomat__cta .www:hover { color: var(--cyan); border-color: var(--cyan); }

.hvezdomat__anim {
  width: 100%;
  max-width: 460px;
  justify-self: center;
  filter: drop-shadow(0 0 45px rgba(26, 185, 202, 0.25));
}

@media (max-width: 880px) {
  .hvezdomat__inner { grid-template-columns: 1fr; }
  .hvezdomat__anim { order: -1; max-width: 320px; }
  .hvezdomat__text { text-align: center; }
  .hvezdomat__text .desc { margin-left: auto; margin-right: auto; }
  .hvezdomat__cta { justify-content: center; }
}

/* ============ HOMEPAGE SEKCE ============ */
.home-section {
  padding: 4.5rem 1.5rem;
}

.home-section:nth-of-type(even) { background: var(--bg-soft); }

.home-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.home-section--flip .home-section__inner .home-section__anim { order: 2; }

.home-section__anim {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: center;
}

/* živé hodiny překryté přes ciferník v pisu.json animaci */
.pisu-clock {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.pisu-clock .hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
}

.pisu-clock .dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.home-section__text h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.home-section__text h2 a {
  color: inherit;
  text-decoration: none;
}

.home-section__text h2 a:hover { color: var(--tomato); }

.home-section__text .tagline {
  margin-top: 0.7rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.home-section__text .desc {
  margin-top: 1rem;
  color: var(--gray);
  max-width: 30rem;
}

/* barevné akcenty sekcí — točí se tomato / green / cyan */
.accent-tomato .tagline { color: var(--tomato); }
.accent-green .tagline { color: var(--green); }
.accent-cyan .tagline { color: var(--cyan); }

/* Lottie tlačítko */
.lottie-btn {
  display: block;
  width: 290px;
  max-width: 100%;
  margin-top: 1.4rem;
  cursor: pointer;
}

/* ============ PODSTRÁNKY ============ */
.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero--center {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero h1 { color: var(--ink); }

.page-hero h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 5px;
  border-radius: 3px;
  margin-top: 0.9rem;
  background: var(--green);
}

.page-hero--center h1::after { margin-left: auto; margin-right: auto; }

.page-hero .lead {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 38rem;
}

.page-hero .lead strong { color: #5d8422; }

.page-hero__anim {
  position: relative;
  max-width: 380px;
  width: 100%;
  justify-self: center;
}

.page-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.page-section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.page-section h2 .dot { color: var(--tomato); }

.page-section .intro {
  color: var(--gray);
  max-width: 42rem;
  margin-bottom: 2.2rem;
}

.page-section .intro strong { color: #5d8422; }

/* ============ KARTY (filmy, crafty…) ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

.info-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p { color: var(--gray); font-size: 0.98rem; }

.info-card .badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}

.badge--tomato { background: rgba(255, 99, 71, 0.12); color: var(--tomato); }
.badge--green { background: rgba(136, 187, 59, 0.16); color: #5d8422; }
.badge--cyan { background: rgba(26, 185, 202, 0.13); color: #0e8494; }

/* film s plakátem */
.film-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.2rem;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.film-featured img { width: 100%; height: 100%; object-fit: cover; }

.film-featured__body { padding: 2rem 2rem 2rem 0; }

.film-featured__body h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.6rem; }

.film-featured__body p { color: var(--gray); }

/* ============ GALERIE (maluju) ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: 1px solid #efefef;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery__item figcaption {
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-top: 3px solid var(--green);
}

/* ============ FEJETONY (píšu) ============ */
.fejetony {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.8rem;
  counter-reset: fejeton;
}

.fejetony li {
  list-style: none;
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}

.fejetony li:hover {
  background: rgba(136, 187, 59, 0.15);
  transform: translateX(4px);
}

.fejetony li .num {
  color: var(--tomato);
  font-weight: 800;
  margin-right: 0.5rem;
}

/* formáty knihy */
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.4rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.format-card {
  text-align: center;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.format-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.format-card .anim { width: 90px; height: 90px; margin: 0 auto 0.6rem; }
.format-card .anim svg { width: 100% !important; height: 100% !important; }

.format-card p { font-weight: 700; font-size: 0.95rem; }

/* ============ STATISTIKY ============ */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 2.5rem 0;
}

.stat__num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tomato);
  line-height: 1;
}

.stat:nth-child(2) .stat__num { color: var(--green); }
.stat:nth-child(3) .stat__num { color: var(--cyan); }

.stat__label { color: var(--gray); font-weight: 600; margin-top: 0.3rem; }

/* ============ KONTAKT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.contact-card .label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tomato);
}

.contact-card:nth-child(2) .label { color: var(--green); }
.contact-card:nth-child(3) .label { color: var(--cyan); }
.contact-card:nth-child(4) .label { color: var(--gray); }

.contact-card .value {
  display: block;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
}

/* ============ ZAKONČENÍ STRÁNKY ============ */
.page-end {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 2.5rem 1.5rem 4rem;
  border-top: 1px solid #efefef;
  font-size: 1.1rem;
  text-align: center;
}

.page-end a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

/* ============ TLAČÍTKA ============ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn--green {
  background: var(--green);
  color: var(--ink);
}

.btn--green:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-3px);
}

.btn--tomato {
  background: var(--tomato);
  color: #fff;
}

.btn--tomato:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-3px);
}

.btn--outline {
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

/* ============ PATIČKA ============ */
.site-footer {
  border-top: 1px solid #efefef;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}

.site-footer a { font-weight: 600; text-decoration: none; color: #6a9a2a; }

.site-footer .footer-links { margin-top: 0.6rem; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox__caption {
  color: #fff;
  font-weight: 600;
  margin-top: 1rem;
}

.lightbox__close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: 2rem;
  line-height: 1;
  background: var(--tomato);
  color: #fff;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.lightbox__close:hover { background: var(--cyan); transform: rotate(90deg); }

/* ============ FEJETON ČLÁNEK ============ */
.fejeton-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.fejeton-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tomato);
  margin-bottom: 0.8rem;
}

.fejeton-article h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.fejeton-cover {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 2.2rem;
  border-radius: var(--radius);
}

.fejeton-body p { margin-bottom: 1.3rem; }

.fejeton-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.fejeton-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid #efefef;
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.fejeton-nav a { text-decoration: none; }

.fejeton-nav__all {
  background: var(--bg-soft);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  color: var(--ink);
}

.fejeton-nav__all:hover { background: rgba(136, 187, 59, 0.2); color: var(--ink); }

/* ============ FEJETONY GRID (píšu) ============ */
.fejeton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
}

.fejeton-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 14px;
  padding: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fejeton-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}

.fejeton-card img {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.fejeton-card .num {
  color: #6a9a2a;
  font-weight: 800;
  margin-right: 0.35rem;
}

.fejeton-card .t {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}

/* ============ VIDEA ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}

.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.35s ease;
}

.video-embed:hover img { opacity: 1; transform: scale(1.04); }

.video-embed .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 99, 71, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}

.video-embed:hover .play {
  background: var(--cyan);
  transform: translate(-50%, -50%) scale(1.12);
}

.video-embed .play::after {
  content: '';
  border-style: solid;
  border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0.7rem 0.2rem 0;
}

.video-item p.video-desc {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0.25rem 0.2rem 0;
}

/* ============ FOTO GRID ============ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform 0.25s, box-shadow 0.25s;
}

.photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-soft);
}

/* akcentovaná fotka (kontakt) — v heru vedle textu */
.contact-photo {
  margin: 0;
  width: 100%;
  max-width: 460px;
  justify-self: center;
}

.contact-photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.contact-photo figcaption {
  margin-top: 0.9rem;
  text-align: center;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============ INSPIRACE / MEDAILONKY ============ */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.duo-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.duo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.duo-card figcaption {
  padding: 0.9rem 1.2rem;
  font-weight: 700;
}

/* ============ LOGA KLUBŮ ============ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.logo-strip img {
  height: 64px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}

.logo-strip img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.07);
}

.logo-strip .logo-strip__text {
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: #7d7e82;
  text-decoration: none;
  opacity: 0.75;
  transition: color 0.25s, opacity 0.25s, transform 0.25s;
}

.logo-strip .logo-strip__text:hover {
  color: var(--tomato);
  opacity: 1;
  transform: scale(1.07);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1120px) {
  .site-nav { gap: 0.85rem; }
  .site-nav a { font-size: 0.88rem; }
  .site-nav .nav-btn { padding: 0.45rem 0.95rem; }
}

@media (max-width: 880px) {
  .home-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-section--flip .home-section__inner .home-section__anim { order: 0; }
  .home-section__anim { max-width: 320px; }
  .home-section__text { text-align: center; }
  .home-section__text .desc { margin-left: auto; margin-right: auto; }
  .lottie-btn { margin-left: auto; margin-right: auto; }

  .page-hero { grid-template-columns: 1fr; text-align: center; }
  .page-hero h1::after { margin-left: auto; margin-right: auto; }
  .page-hero .lead { margin-left: auto; margin-right: auto; }
  .page-hero__anim { max-width: 280px; }

  .film-featured { grid-template-columns: 1fr; }
  .film-featured__body { padding: 0 2rem 2rem; }
}

@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: 62px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid #efefef;
    padding: 1.5rem;
    gap: 1.2rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .site-nav.is-open { transform: translateY(0); }
  .site-nav a { font-size: 0.95rem; }

  .burger { display: flex; }

  .hero { padding-top: 4rem; }
}
