/* =============================================================================
   Kouzelná Linka — landing "Štědrovečerní noc" (v2 po feedbacku)
   Hero = ten moment, kdy dítě zvedne telefon. Malované postavy, ručně psané
   akcenty (Caveat), Fraunces jako vypravěčský serif, tichá noc na závěr.
   Mobile-first; breakpointy 701px (tablet) a 1024px (desktop).
   ============================================================================= */

body.page-home {
  --display-font: 'Fraunces', Georgia, serif;
  --hand-font: 'Caveat', 'Segoe Script', cursive;

  /* noc */
  --ln-night: #0b1712;          /* smrková noc — tmavé sekce */
  --ln-night-2: #12241b;        /* zvednuté plochy na noci */
  --ln-hero-dark: #221409;      /* teplá hnědá čerň navazující na fotku holčičky */
  --ln-footer: #1a0f0a;         /* --zs-cosy-1, kvůli plynulému napojení finále */

  /* světlo */
  --ln-cream: #fdf6e8;
  --ln-cream-2: #f7ead0;
  --ln-paper: #fffdf6;
  --ln-card: #fffbf2;

  /* akcenty */
  --ln-gold: #e8b931;
  --ln-gold-soft: #f3cf76;
  --ln-gold-deep: #b9892a;
  --ln-red: #dc2d31;
  --ln-red-deep: #b61e2b;
  --ln-green: #2d7d46;

  /* text */
  --ln-ink: #2d1810;
  --ln-muted: #6b4f3a;
  --ln-light: #fdf3dd;
  --ln-light-muted: rgba(253, 243, 221, .72);
  --ln-line: rgba(45, 24, 16, .12);

  margin: 0;
  color: var(--ln-ink);
  background: var(--ln-cream);
}

body.page-home main { overflow-x: clip; padding-bottom: 0; }
body.page-home .zs-container { width: min(100% - 2.5rem, var(--zs-container)); margin-inline: auto; padding-inline: 0; }
body.page-home h1,
body.page-home h2,
body.page-home h3,
body.page-home p { margin-top: 0; }
body.page-home h1,
body.page-home h2 { font-family: var(--display-font); font-weight: 600; }
body.page-home h3 { font-family: var(--zs-font-heading); }
body.page-home svg { stroke-linecap: round; stroke-linejoin: round; }

/* Nav CTA zůstává červená i na page-home */
body.page-home .zs-btn-nav {
  color: #fff !important;
  background: linear-gradient(135deg, #dc2d31, #b61e2b);
  border-color: #dc2d31;
  box-shadow: 0 8px 24px rgba(188, 30, 42, .3);
}
body.page-home .zs-btn-nav:hover { color: #fff !important; background: #a91c27; border-color: #a91c27; }

/* Průhledná hlavička nad hero fotkou, po scrollu ztmavne */
body.page-home .zs-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(8, 10, 9, .55), rgba(8, 10, 9, 0));
  border-bottom: 0;
  box-shadow: none;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
body.page-home .zs-header.is-scrolled {
  background: rgba(10, 17, 13, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(254, 243, 226, .08);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}
/* Otevřené menu: hlavička musí být plná, aby logo a křížek zůstaly viditelné */
body.page-home.menu-open .zs-header {
  background: rgba(10, 17, 13, .98);
  border-bottom: 1px solid rgba(254, 243, 226, .08);
  transition: background .35s ease, box-shadow .35s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}


/* ---------------------------------------------------------------------------
   Sdílený jazyk sekcí
   --------------------------------------------------------------------------- */
.section { position: relative; padding: 4.6rem 0; }
.section-heading { max-width: 720px; margin: 0 auto 2.4rem; text-align: center; }
.section-heading h2 {
  margin-bottom: .85rem;
  font-size: clamp(2.05rem, 7.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.section-heading > p:last-child { color: var(--ln-muted); font-size: 1.02rem; line-height: 1.65; text-wrap: pretty; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .8rem;
  color: #ad2427;
  font-family: var(--zs-font-heading);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section-label::before,
.section-label::after { content: ''; width: 22px; height: 1px; background: currentColor; opacity: .55; }
.section-label-light { color: var(--ln-gold-soft); }
.section-heading.on-dark h2 { color: var(--ln-light); }
.section-heading.on-dark h2 em { font-style: italic; color: var(--ln-gold-soft); }
.section-heading.on-dark > p:last-child { color: var(--ln-light-muted); }

.animate-on-scroll { opacity: 1; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.animate-on-scroll.visible { opacity: 1; transform: none; }

#how,
#price,
#faq,
#characters { scroll-margin-top: calc(var(--zs-header-h) + 1rem); }
.anchor-target { position: absolute; }

.text-link { color: var(--ln-gold-soft); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(243, 207, 118, .45); padding-bottom: 1px; transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: #fff; border-color: #fff; }

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */
.hero { position: relative; background: var(--ln-hero-dark); color: var(--ln-light); }
.hero-scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 28px 70px rgba(18, 11, 7, .38);
}
.hero-photo { position: absolute; inset: 0; z-index: -3; }
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 18%; }
/* Fotka má dole vlastní čerň — od ~72 % ji přetíráme plnou teplou hnědou,
   aby text neseděl na černé (mobil). Desktop má vlastní shade níže. */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(44, 27, 13, .45) 0%, rgba(44, 27, 13, 0) 22%, rgba(44, 27, 13, .35) 42%, rgba(44, 27, 13, .88) 58%, #2c1b0d 72%, #2c1b0d 100%);
}
.snow-canvas { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100svh;
  padding-top: calc(var(--zs-header-h) + 1rem);
  padding-bottom: 3.4rem;
  text-align: center;
}

.hero-kicker {
  margin-bottom: .35rem;
  color: var(--ln-gold-soft);
  font-family: var(--hand-font);
  font-size: clamp(1.5rem, 5.6vw, 1.9rem);
  font-weight: 600;
  transform: rotate(-2deg);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.hero h1 {
  margin-bottom: .9rem;
  font-size: clamp(2.55rem, 10.4vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .55);
  text-wrap: balance;
}
.hero-title-line { display: block; }
.hero-caller-name {
  font-style: italic;
  color: var(--ln-gold);
  transition: opacity .3s ease, filter .3s ease;
}
body.hero-caller-fading .hero-caller-name { opacity: 0; filter: blur(4px); }

.hero-subtitle {
  max-width: 34ch;
  margin: 0 auto 1.35rem;
  color: rgba(253, 243, 221, .88);
  font-size: 1.02rem;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
  text-wrap: pretty;
}

.hero-actions { display: flex; justify-content: center; width: 100%; }
.hero-cta {
  display: inline-flex;
  min-height: 60px;
  width: min(100%, 340px);
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e03135, #bd1e2e);
  color: #fff !important;
  font-family: var(--zs-font-heading);
  font-size: 1.04rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(190, 28, 42, .45), inset 0 1px rgba(255, 255, 255, .25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hero-cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .2s ease; }
.hero-cta:hover { transform: translateY(-2px); background: linear-gradient(135deg, #ed373a, #a91a27); box-shadow: 0 20px 46px rgba(190, 28, 42, .55), inset 0 1px rgba(255, 255, 255, .25); }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-copy .hero-note { margin: 1rem 0 0; color: rgba(253, 243, 221, .68); font-size: .8rem; font-weight: 600; text-shadow: 0 1px 8px rgba(0, 0, 0, .5); }

/* Na mobilu necháváme první dojem čistý — velké CTA přebírá sticky lišta */
@media (max-width: 700px) {
  .hero-actions { display: none; }
  .hero-copy .hero-note { margin-top: .35rem; }
}

/* Příchozí hovor — bublina, která odscrolluje na ukázky */
.hero-call-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: min(100%, 330px);
  margin: .25rem auto 1.1rem;
  padding: .62rem .68rem;
  border: 1px solid rgba(243, 207, 118, .38);
  border-radius: 999px;
  background: rgba(12, 18, 14, .66);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
  color: var(--ln-light);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hero-call-chip:hover { transform: translateY(-2px); border-color: rgba(243, 207, 118, .65); box-shadow: 0 22px 52px rgba(0, 0, 0, .55); }
.hero-call-chip:active { transform: scale(.985); }

.chip-avatar { position: relative; flex: none; width: 52px; height: 52px; }
.chip-avatar::before,
.chip-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(232, 185, 49, .55);
  animation: chip-ring 2.6s ease-out infinite;
  pointer-events: none;
}
.chip-avatar::after { animation-delay: 1.3s; }
@keyframes chip-ring {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.65); opacity: 0; }
}
.chip-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 2px solid var(--ln-gold);
  box-shadow: 0 0 22px rgba(232, 185, 49, .35);
  object-fit: cover;
  transition: opacity .3s ease;
}
body.hero-caller-fading .chip-avatar img { opacity: 0; }

.chip-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.chip-copy small { color: rgba(253, 243, 221, .66); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chip-copy strong { font-family: var(--zs-font-heading); font-size: 1.04rem; font-weight: 700; line-height: 1.2; transition: opacity .3s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.hero-caller-fading .chip-copy strong { opacity: 0; }

.chip-answer {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, #37b45f, #23854a);
  box-shadow: 0 0 0 6px rgba(55, 180, 95, .16), 0 10px 22px rgba(35, 133, 74, .5);
  animation: chip-pulse 2s ease-in-out infinite;
}
@keyframes chip-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(55, 180, 95, .18), 0 10px 22px rgba(35, 133, 74, .5); }
  50% { box-shadow: 0 0 0 11px rgba(55, 180, 95, .07), 0 10px 22px rgba(35, 133, 74, .5); }
}
.chip-answer svg { width: 21px; height: 21px; }
.chip-answer .chip-phone-symbol { fill: #fff; stroke: none; }

/* ---------------------------------------------------------------------------
   POSTAVY A UKÁZKY
   --------------------------------------------------------------------------- */
.voices-section {
  padding-top: 4.2rem;
  background:
    radial-gradient(circle at 8% 20%, rgba(188, 139, 48, .12), transparent 22rem),
    radial-gradient(circle at 92% 80%, rgba(35, 61, 42, .09), transparent 24rem),
    linear-gradient(180deg, var(--ln-cream), #f8eedc);
}

.voice-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .48rem;
  max-width: 980px;
  margin: 0 auto 1rem;
}
.voice-tab {
  --voice-tab-accent: #ae7d25;
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: .48rem;
  padding: .55rem .5rem;
  overflow: hidden;
  border: 1px solid rgba(93, 65, 39, .18);
  border-radius: 16px;
  background: rgba(255, 252, 245, .74);
  color: var(--ln-muted);
  font-family: var(--zs-font-heading);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(45, 24, 16, .05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.voice-tab-red { --voice-tab-accent: #bd2932; }
.voice-tab-burgundy { --voice-tab-accent: #7b2930; }
.voice-tab img {
  width: 36px;
  height: 36px;
  display: block;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(45, 24, 16, .16);
}
.voice-tab > span { display: grid; min-width: 0; gap: .08rem; }
.voice-tab strong { overflow: hidden; color: var(--ln-ink); font-size: .7rem; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.voice-tab small { display: none; overflow: hidden; color: var(--ln-muted); font-family: var(--zs-font-body); font-size: .68rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.voice-tab > i {
  position: absolute;
  right: .5rem;
  bottom: .42rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9cbb5;
  box-shadow: 0 0 0 3px rgba(217, 203, 181, .2);
}
.voice-tab:hover { transform: translateY(-2px); border-color: rgba(93, 65, 39, .38); }
.voice-tab.is-active {
  border-color: color-mix(in srgb, var(--voice-tab-accent) 72%, #fff);
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(45, 24, 16, .11), inset 0 -3px var(--voice-tab-accent);
}
.voice-tab.is-active > i { background: var(--voice-tab-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--voice-tab-accent) 18%, transparent); }
.voice-tab:focus-visible { outline: 3px solid rgba(184, 136, 43, .26); outline-offset: 3px; }

.voice-stage { max-width: 1080px; margin-inline: auto; }
.voice-card {
  --voice-accent: #d7ab50;
  --voice-accent-soft: #fff2ca;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(201, 157, 64, .34);
  border-radius: 28px;
  background: #18281d;
  box-shadow: 0 34px 72px rgba(45, 24, 16, .19), 0 0 0 6px rgba(255, 255, 255, .38);
}
.voice-card-red { --voice-accent: #e35a5d; --voice-accent-soft: #ffe1dd; }
.voice-card-burgundy { --voice-accent: #d68a8d; --voice-accent-soft: #f4dddd; }
.voice-card.is-active { display: grid; }

.voice-portrait { position: relative; min-height: 330px; aspect-ratio: 1 / .88; overflow: hidden; background: #132019; }
.voice-portrait::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 32%, rgba(255, 226, 157, .13), transparent 32%);
}
.voice-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 23, 18, 0) 46%, rgba(11, 23, 18, .78) 88%, rgba(11, 23, 18, .88) 100%);
}
.voice-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 20%; }
.voice-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  z-index: 2;
  margin: 0;
  padding: .4rem .78rem;
  border: 1px solid rgba(243, 207, 118, .5);
  border-radius: 999px;
  background: rgba(11, 23, 18, .64);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--voice-accent-soft);
  font-family: var(--zs-font-heading);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.voice-call-status {
  position: absolute;
  z-index: 2;
  left: 1.05rem;
  bottom: 4.5rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .025em;
}
.voice-call-status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #56c879;
  box-shadow: 0 0 0 5px rgba(86, 200, 121, .16);
}
.voice-name {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: .9rem;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(2rem, 7.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .55);
}

.voice-body {
  position: relative;
  padding: 1.35rem 1.2rem 1.45rem;
  overflow: hidden;
  color: #fffaf0;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--voice-accent) 16%, transparent), transparent 17rem),
    linear-gradient(145deg, #203524, #14231a 72%);
}
.voice-body::after {
  content: '✦';
  position: absolute;
  right: 1rem;
  top: .65rem;
  color: color-mix(in srgb, var(--voice-accent) 25%, transparent);
  font-size: 4.8rem;
  line-height: 1;
  pointer-events: none;
}
.voice-overline {
  position: relative;
  z-index: 1;
  margin: 0 0 .45rem;
  color: var(--voice-accent);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.voice-tagline { position: relative; z-index: 1; margin: 0 0 1rem; color: rgba(255, 250, 240, .82); font-size: .94rem; line-height: 1.56; }

.voice-player {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .95rem;
  padding: .9rem 1rem;
  border: 1px solid color-mix(in srgb, var(--voice-accent) 54%, #fff);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8e9, #fdf1d7);
  box-shadow: 0 8px 24px rgba(45, 24, 16, .08);
}
.voice-play {
  flex: none;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, #f3cf7d, var(--voice-accent));
  box-shadow: 0 10px 22px color-mix(in srgb, var(--voice-accent) 42%, transparent);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.voice-play:hover { transform: scale(1.06); box-shadow: 0 12px 28px color-mix(in srgb, var(--voice-accent) 58%, transparent); }
.voice-play:active { transform: scale(.95); }
.voice-play svg { display: block; }
.voice-play .pause-symbol { display: none; }
.voice-player.is-playing .voice-play .play-symbol { display: none; }
.voice-player.is-playing .voice-play .pause-symbol { display: block; }

.voice-player-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .3rem; }
.voice-player-top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.voice-player-label { color: var(--ln-ink); font-size: .95rem; font-weight: 800; }
.voice-player.is-playing .voice-player-label { color: #865b16; }
.voice-time { flex: none; color: var(--ln-muted); font-size: .78rem; font-weight: 700; font-variant-numeric: tabular-nums; }

.voice-wave { display: flex; align-items: center; gap: 3px; height: 26px; }
.voice-wave i { flex: 1; min-width: 2px; border-radius: 3px; background: var(--voice-accent); opacity: .45; height: 32%; transform-origin: center; transition: opacity .25s ease; }
.voice-wave i:nth-child(6n+1) { height: 34%; }
.voice-wave i:nth-child(6n+2) { height: 68%; }
.voice-wave i:nth-child(6n+3) { height: 48%; }
.voice-wave i:nth-child(6n+4) { height: 90%; }
.voice-wave i:nth-child(6n+5) { height: 58%; }
.voice-wave i:nth-child(6n+6) { height: 40%; }
.voice-player.is-playing .voice-wave i { opacity: 1; animation: voice-wave .75s ease-in-out infinite; }
.voice-wave i:nth-child(4n+2) { animation-delay: .11s; }
.voice-wave i:nth-child(4n+3) { animation-delay: .22s; }
.voice-wave i:nth-child(4n+4) { animation-delay: .33s; }
.voice-wave i:nth-child(5n+3) { animation-delay: .18s; }
@keyframes voice-wave {
  0%, 100% { transform: scaleY(.45); }
  50% { transform: scaleY(1.55); }
}
.voice-progress { height: 5px; border-radius: 5px; background: rgba(45, 24, 16, .12); overflow: hidden; }
.voice-progress span { display: block; width: 0; height: 100%; border-radius: 5px; background: linear-gradient(90deg, #d8ad4c, var(--voice-accent)); transition: width .2s linear; }
.voice-player.is-error { border-color: rgba(220, 45, 49, .45); }

.voice-listen-for {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .42rem;
  margin: .72rem 0 0;
  padding: 0;
  list-style: none;
}
.voice-listen-for li {
  position: relative;
  padding-left: .85rem;
  color: rgba(255, 250, 240, .72);
  font-size: .66rem;
  line-height: 1.35;
}
.voice-listen-for li::before { content: ''; position: absolute; left: 0; top: .42em; width: 5px; height: 5px; border-radius: 50%; background: var(--voice-accent); }

.voice-actions { position: relative; z-index: 1; display: grid; gap: .6rem; margin-top: 1.05rem; }
.voice-cta {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e03135, #bd1e2e);
  color: #fff !important;
  font-family: var(--zs-font-heading);
  font-size: .98rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(190, 28, 42, .38), inset 0 1px rgba(255, 255, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.voice-cta svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .2s ease; }
.voice-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(190, 28, 42, .5), inset 0 1px rgba(255, 255, 255, .22); }
.voice-cta:hover svg { transform: translateX(4px); }
.voice-more {
  justify-self: center;
  color: var(--voice-accent);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 137, 42, .4);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.voice-more:hover { color: #fff5dd; border-color: #fff5dd; }

@media (max-width: 700px) {
  .voice-portrait {
    height: clamp(250px, 73vw, 280px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .voice-badge {
    top: .7rem;
    left: .7rem;
    padding: .32rem .62rem;
    font-size: .58rem;
  }
  .voice-call-status {
    left: .85rem;
    bottom: 3.65rem;
    font-size: .65rem;
  }
  .voice-name {
    left: .9rem;
    right: .9rem;
    bottom: .7rem;
    font-size: 1.75rem;
  }
  .voice-body { padding: .9rem .95rem 1rem; }
  .voice-body::after { font-size: 3.3rem; }
  .voice-overline { margin-bottom: .3rem; font-size: .6rem; }
  .voice-tagline { margin-bottom: .65rem; font-size: .84rem; line-height: 1.4; }
  .voice-player {
    gap: .6rem;
    padding: .58rem .7rem;
    border-radius: 16px;
  }
  .voice-play { width: 46px; height: 46px; }
  .voice-play svg { width: 20px; height: 20px; }
  .voice-player-main { gap: .2rem; }
  .voice-player-label { font-size: .82rem; }
  .voice-time { font-size: .7rem; }
  .voice-wave { height: 18px; gap: 2px; }
  .voice-progress { height: 4px; }
  .voice-listen-for { gap: .3rem; margin-top: .5rem; }
  .voice-listen-for li { padding-left: .65rem; font-size: .6rem; line-height: 1.3; }
  .voice-listen-for li::before { width: 4px; height: 4px; }
  .voice-actions { gap: .38rem; margin-top: .7rem; }
  .voice-cta { min-height: 48px; padding: .7rem 1.1rem; font-size: .88rem; }
  .voice-more { font-size: .78rem; }
}

/* ---------------------------------------------------------------------------
   JAK TO FUNGUJE + DOPIS
   --------------------------------------------------------------------------- */
.how-section {
  background:
    radial-gradient(rgba(45, 24, 16, .085) 1px, transparent 1.3px) 0 0 / 24px 24px,
    var(--ln-paper);
}
.how-section .section-heading { margin-bottom: 2rem; }

.how-layout { display: grid; gap: 2.4rem; max-width: 980px; margin-inline: auto; }
.how-steps { list-style: none; margin: 0; padding: 0; }
.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ln-line);
}
.how-step:last-child { border-bottom: 0; }
.how-num {
  color: var(--ln-gold-deep);
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  padding-top: .15rem;
  min-width: 2.6rem;
}
.how-label {
  margin: 0 0 .3rem;
  color: var(--ln-gold-deep);
  font-family: var(--zs-font-heading);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.how-step h3 { margin: 0 0 .3rem; font-size: 1.14rem; font-weight: 800; }
.how-text { margin: 0; color: var(--ln-muted); font-size: .95rem; line-height: 1.6; }

.how-letter {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  padding: 2rem 1.6rem 1.4rem;
  background: #fffdf4;
  border: 1px solid #e9dcb8;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(45, 24, 16, .13);
  transform: rotate(-1.4deg);
}
.how-letter::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  width: 112px;
  height: 26px;
  background: rgba(232, 185, 49, .38);
  border-radius: 3px;
  transform: translateX(-50%) rotate(1.6deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}
.how-letter-hand { margin: 0; color: #3a3128; font-family: var(--hand-font); font-size: 1.6rem; font-weight: 500; line-height: 1.4; }
.how-letter .how-letter-caption { margin: .9rem 0 0; color: var(--ln-muted); font-size: .8rem; }

/* ---------------------------------------------------------------------------
   CENÍK — jmenovky na dárcích
   --------------------------------------------------------------------------- */
.pricing-section { background: var(--ln-cream-2); }
.pricing-grid { display: grid; gap: 1.5rem; max-width: 900px; margin-inline: auto; }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.35rem 1.5rem;
  background: linear-gradient(165deg, #fbf3e0, #f6ead2);
  border: 1px solid rgba(45, 24, 16, .14);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(45, 24, 16, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(45, 24, 16, .16); }
/* dárková stuha přes horní hranu karty */
.price-ribbon {
  position: absolute;
  top: -7px;
  left: 1.5rem;
  width: 36px;
  height: 62px;
  background: linear-gradient(180deg, #e8434a, #b61e2b);
  border-radius: 3px 3px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 13px), 0 100%);
  box-shadow: 0 8px 16px rgba(45, 24, 16, .28);
}
.price-ribbon::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 50%;
  width: 1.5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .3);
}
.price-card.featured {
  background: #fffdf6;
  border: 2px solid var(--ln-gold);
  box-shadow: 0 26px 56px rgba(185, 137, 42, .24);
}
.price-card.featured .price-ribbon { background: linear-gradient(180deg, #f0c765, #c99a2e); }
.price-card.featured:hover { transform: translateY(-3px); }
.price-flag {
  position: absolute;
  top: -13px;
  right: 1.2rem;
  margin: 0;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e03135, #bd1e2e);
  color: #fff;
  font-family: var(--zs-font-heading);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(190, 28, 42, .4);
}
.price-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: .75rem; margin-bottom: .9rem; padding-left: 2.9rem; }
.price-top > div { min-width: 0; }
.price-for { margin: 0 0 .15rem; color: var(--ln-muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.price-top h3 { margin: 0; font-family: var(--display-font); font-size: clamp(1.35rem, 2.5vw, 1.7rem); font-weight: 600; }
.price { margin: 0; color: var(--ln-red); font-family: var(--zs-font-heading); font-weight: 800; font-size: 1.05rem; white-space: nowrap; }
.price strong { font-size: clamp(1.9rem, 3.5vw, 2.3rem); letter-spacing: -.02em; }

.price-card ul { list-style: none; margin: 0 0 1.2rem; padding: .9rem 0 0; border-top: 1px dashed rgba(45, 24, 16, .22); display: grid; gap: .5rem; }
.price-card li { display: flex; align-items: flex-start; gap: .55rem; font-size: .92rem; font-weight: 600; }
.price-card li svg { flex: none; width: 16px; height: 16px; margin-top: 2px; fill: none; stroke: var(--ln-green); stroke-width: 2.6; }
.price-card li strong { font-weight: 800; }

.price-cta {
  display: flex;
  min-height: 56px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e03135, #bd1e2e);
  color: #fff !important;
  font-family: var(--zs-font-heading);
  font-size: .98rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(190, 28, 42, .35), inset 0 1px rgba(255, 255, 255, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(190, 28, 42, .48), inset 0 1px rgba(255, 255, 255, .22); }
.price-cta.secondary {
  background: transparent;
  border: 2px solid var(--ln-red);
  color: var(--ln-red) !important;
  box-shadow: none;
}
.price-cta.secondary:hover { background: rgba(220, 45, 49, .06); transform: translateY(-2px); }
.price-cta span { transition: transform .2s ease; }
.price-cta:hover span { transform: translateX(3px); }

.pricing-section .pricing-note {
  max-width: 640px;
  margin: 1.7rem auto 0;
  color: var(--ln-muted);
  font-size: .88rem;
  line-height: 1.6;
  text-align: center;
}
.pricing-pay { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .55rem; margin: .9rem 0 0; }
.pricing-pay > span { color: var(--ln-muted); font-size: .78rem; font-weight: 700; margin-right: .2rem; }

/* ---------------------------------------------------------------------------
   PRO RODIČE
   --------------------------------------------------------------------------- */
.parents-section {
  background:
    radial-gradient(ellipse 110% 60% at 50% -10%, rgba(232, 185, 49, .14), transparent 55%),
    linear-gradient(180deg, #13271d, var(--ln-night));
  color: var(--ln-light);
}
.parents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  max-width: 900px;
  margin-inline: auto;
}
.parent-tile {
  padding: 1.05rem 1rem;
  border: 1px solid rgba(253, 243, 221, .12);
  border-radius: 18px;
  background: rgba(253, 243, 221, .05);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.parent-tile:hover { border-color: rgba(243, 207, 118, .4); background: rgba(253, 243, 221, .08); transform: translateY(-2px); }
.parent-tile h3 { margin: 0 0 .3rem; color: #fff; font-size: .95rem; font-weight: 800; }
.parent-tile p { margin: 0; color: var(--ln-light-muted); font-size: .82rem; line-height: 1.55; }
.parents-section .parents-link { margin: 1.6rem 0 0; text-align: center; }

/* ---------------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------------- */
.faq-section { background: var(--ln-paper); }
.faq-layout { display: grid; gap: 1.8rem; }
.faq-heading { text-align: center; max-width: 640px; margin-inline: auto; }
.faq-heading h2 { margin-bottom: .8rem; font-size: clamp(1.9rem, 6.4vw, 2.7rem); line-height: 1.08; letter-spacing: -.028em; text-wrap: balance; }
.faq-heading > p:last-child { color: var(--ln-muted); font-size: .95rem; }
.faq-heading a { color: #ad2427; font-weight: 700; }

.faq { display: grid; gap: .65rem; max-width: 760px; margin-inline: auto; width: 100%; }
.faq-item { border: 1px solid var(--ln-line); border-radius: 16px; background: #fff; box-shadow: 0 6px 18px rgba(45, 24, 16, .05); overflow: hidden; }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: none;
  color: var(--ln-ink);
  font-family: var(--zs-font-body);
  font-size: .98rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-q svg { flex: none; width: 18px; height: 18px; fill: none; stroke: #ad2427; stroke-width: 2.4; transition: transform .25s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.15rem 1.05rem;
  color: var(--ln-muted);
  font-size: .92rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: #ad2427; font-weight: 700; }

/* ---------------------------------------------------------------------------
   FINÁLE — tichá noc (plynule přechází do patičky)
   --------------------------------------------------------------------------- */
.final-cta { position: relative; overflow: hidden; color: var(--ln-light); text-align: center; }
.final-bg {
  position: absolute;
  inset: 0;
  background: url('/images/night-village.webp') center 74% / cover no-repeat;
  transform: scale(1.02);
}
.final-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 14, 18, .68) 0%, rgba(7, 14, 18, .16) 30%, rgba(7, 14, 18, .18) 58%, rgba(20, 13, 9, .78) 86%, var(--ln-footer) 100%);
}
.final-cta-inner { position: relative; z-index: 2; padding: 4.6rem 0 5.2rem; }
.final-kicker {
  margin-bottom: .4rem;
  color: var(--ln-gold-soft);
  font-family: var(--hand-font);
  font-size: clamp(1.5rem, 5.4vw, 1.9rem);
  font-weight: 600;
  transform: rotate(-1.6deg);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .6);
}
.final-cta h2 {
  margin-bottom: .9rem;
  font-size: clamp(2.2rem, 8.2vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .6);
  text-wrap: balance;
}
.final-cta p { max-width: 34ch; margin: 0 auto 1.7rem; color: rgba(253, 243, 221, .85); font-size: 1rem; line-height: 1.6; text-shadow: 0 2px 12px rgba(0, 0, 0, .55); }
.final-btn {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(160deg, #f3cf76, #d9a637);
  color: #33250a !important;
  font-family: var(--zs-font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(232, 185, 49, .38), inset 0 1px rgba(255, 255, 255, .5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.final-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .2s ease; }
.final-btn:hover { transform: translateY(-2px); box-shadow: 0 22px 54px rgba(232, 185, 49, .5), inset 0 1px rgba(255, 255, 255, .5); }
.final-btn:hover svg { transform: translateX(4px); }
.final-cta small { display: block; margin-top: .9rem; color: rgba(253, 243, 221, .66); font-size: .8rem; font-weight: 600; }

/* Garland pruh mezi finále a patičkou na home rušil noční přechod */
body.page-home .footer-garland { display: none; }

/* ---------------------------------------------------------------------------
   Sticky mobilní CTA (partial z layoutu) — jen viditelnost
   --------------------------------------------------------------------------- */
@media (max-width: 700px) {
  body.page-home .sticky-mobile-cta { transform: translateY(110%); opacity: 0; pointer-events: none; transition: transform .22s var(--zs-ease), opacity .22s var(--zs-ease); }
  body.page-home.sticky-cta-visible .sticky-mobile-cta { transform: none; opacity: 1; pointer-events: auto; }
}

/* ---------------------------------------------------------------------------
   Tablet ≥ 701px
   --------------------------------------------------------------------------- */
@media (min-width: 701px) {
  .section { padding: 5.6rem 0; }

  .hero-photo img { object-position: center 30%; }
  .hero-inner { min-height: 88vh; padding-bottom: 4rem; }
  .hero-subtitle { max-width: 44ch; }

  .voice-tabs { gap: .72rem; margin-bottom: 1.15rem; }
  .voice-tab { grid-template-columns: 46px minmax(0, 1fr) 12px; gap: .72rem; min-height: 70px; padding: .58rem .72rem; }
  .voice-tab img { width: 46px; height: 46px; }
  .voice-tab strong { font-size: .86rem; }
  .voice-tab small { display: block; }
  .voice-tab > i { position: static; width: 8px; height: 8px; }

  .voice-card.is-active { grid-template-columns: 45% 1fr; align-items: stretch; }
  .voice-portrait { height: 100%; aspect-ratio: auto; min-height: 545px; }
  .voice-portrait::after { background: linear-gradient(180deg, rgba(11, 23, 18, 0) 46%, rgba(11, 23, 18, .76) 86%, rgba(11, 23, 18, .91) 100%); }
  .voice-body { display: flex; flex-direction: column; justify-content: center; padding: 1.9rem 2rem; }
  .voice-tagline { font-size: 1rem; }
  .voice-player { margin-top: 5rem; }
  .voice-listen-for li { font-size: .7rem; }
  .voice-actions { grid-template-columns: auto auto; align-items: center; justify-content: start; gap: 1.1rem; }
  .voice-cta { display: inline-flex; padding-inline: 1.8rem; }
  .voice-more { justify-self: start; }

  .how-layout { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .how-letter { margin-inline: 0; }

  .pricing-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .price-card { display: grid; grid-template-rows: subgrid; grid-row: span 3; row-gap: 0; }
  .price-top { align-self: end; }
  .pricing-note { margin-top: 2rem; }

  .parents-grid { grid-template-columns: repeat(4, 1fr); }

  .final-cta-inner { padding: 5.6rem 0 6.2rem; }
}

/* ---------------------------------------------------------------------------
   Desktop ≥ 1024px
   --------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .hero-scene { border-radius: 0 0 34px 34px; }
  /* Keep the photograph on the same centered grid as the copy on wide screens. */
  .hero-photo,
  .hero-shade {
    width: min(100% - 2.5rem, var(--zs-container));
    margin-inline: auto;
  }
  .hero-photo {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(34, 20, 9, .92) 0%, rgba(34, 20, 9, .62) 32%, rgba(34, 20, 9, .08) 58%, rgba(34, 20, 9, 0) 72%),
      linear-gradient(180deg, rgba(34, 20, 9, .38) 0%, rgba(34, 20, 9, 0) 30%, rgba(34, 20, 9, .12) 62%, rgba(34, 20, 9, .8) 88%, #221409 100%);
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: min(84vh, 780px);
    padding-top: calc(var(--zs-header-h) + 1.5rem);
    padding-bottom: 2rem;
    text-align: left;
  }
  .hero-copy { max-width: 640px; }
  .hero-kicker { transform: rotate(-2deg) translateX(-4px); }
  .hero h1 { font-size: clamp(3.3rem, 4.4vw, 4.4rem); }
  .hero-subtitle { margin-inline: 0; max-width: 46ch; }
  .hero-call-chip { margin: .45rem 0 1.5rem; width: 350px; }
  .hero-actions { justify-content: flex-start; }
  .hero-cta { width: auto; padding-inline: 2rem; }
  .hero-copy .hero-note { margin-top: 1.2rem; font-size: .82rem; }

  .voices-section { padding-top: 3.8rem; }
  .voice-body { padding: 2.25rem 2.45rem; }

  .faq-layout { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 3rem; }
  .faq-heading { position: sticky; top: calc(var(--zs-header-h) + 2rem); text-align: left; margin-inline: 0; }
  .faq-heading .section-label { justify-content: flex-start; }
  .faq { margin-inline: 0; }

  .final-cta-inner { padding: 6.2rem 0 6.8rem; }
  .final-bg { background-position: center 86%; }
}

/* ---------------------------------------------------------------------------
   Šetrné animace
   --------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { transform: none; transition: none; }
  .chip-avatar::before,
  .chip-avatar::after,
  .chip-answer,
  .voice-card.is-active,
  .voice-wave i { animation: none; }
  .hero-caller-name,
  .chip-copy strong,
  .chip-avatar img { transition: none; }
  .hero-cta,
  .voice-cta,
  .price-cta,
  .final-btn,
  .parent-tile,
  .price-card,
  .voice-play { transition: none; }
}
