/* ═══════════════════════════════════════════════════════════════
   krokovy-dcery.css – Krokovy dcery · Scroll-snap presentation
   Standalone page. Only navbar.css + contact.css are inherited.
   Palette: midnight purple (#07060e) · moonsilver (#c4b8e0)
            Kazi-green (#5daa78) · Teta-flame (#c89050) · Libuše-violet (#9478d4)
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:       #07060e;
  --moon:     #c4b8e0;
  --kazi:     #5daa78;
  --teta:     #c89050;
  --libuse:   #9478d4;
  --text:     #ece8f5;
  --muted:    rgba(236,232,245,0.70);
  --ease-out: cubic-bezier(.14,.85,.2,1);
}

/* ── Base reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rubik", sans-serif;
  opacity: 0;
  transition: opacity .6s ease;
  overflow: hidden;
}

body.loaded { opacity: 1; }

h1, h2, h3 { font-family: "Cinzel", serif; margin: 0; }
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════════════════════════
   MOON ENTRY VEIL
   Full-screen dark overlay with a glowing moon disc.
   Fades out after page load via JS (.kd-veil--gone class).
══════════════════════════════════════════════════════════════ */
.kd-veil {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #07060e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.4s ease .3s, visibility 1.4s ease .3s;
}

.kd-veil.kd-veil--gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.kd-moon {
  position: relative;
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 36%,
    rgba(238,230,255,0.92) 0%,
    rgba(192,174,242,0.52) 46%,
    rgba(148,120,218,0.16) 72%,
    transparent 88%
  );
  box-shadow:
    0 0  58px rgba(170,148,238,0.68),
    0 0 125px rgba(130,105,218,0.36),
    0 0 225px rgba(90,68,192,0.18);
  animation: kdMoonPulse 3.2s ease-in-out infinite;
}

/* Subtle shadow side of moon */
.kd-moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 68% 34%,
    rgba(14,8,38,0.40) 0%,
    transparent 56%
  );
}

@keyframes kdMoonPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

/* ── Fixed background layers ─────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50%  0%,  rgba(118,88,202,.13), transparent 42%),
    radial-gradient(circle at 18% 62%,  rgba(68,48,162,.07),  transparent 48%),
    radial-gradient(circle at 82% 36%,  rgba(98,68,192,.06),  transparent 50%),
    linear-gradient(180deg, #060510, #040310);
}

.bg-fog {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 55% 22%, rgba(148,120,218,.09), transparent 52%),
    radial-gradient(circle at 28% 70%, rgba(78,58,162,.06),   transparent 58%);
  filter: blur(28px);
  opacity: .85;
  animation: kdFogDrift 30s ease-in-out infinite;
}

@keyframes kdFogDrift {
  0%, 100% { transform: translate3d( 0,    0, 0) scale(1.02); }
  50%       { transform: translate3d(-1.5%, 1.2%, 0) scale(1.05); }
}

#moonCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .75;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 38%, rgba(0,0,0,.70) 100%);
}

.bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .18;
}

/* ── Deck (scroll container) ─────────────────────────────────── */
.deck {
  position: fixed;
  inset: 0;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  z-index: 5;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.deck::-webkit-scrollbar { display: none; }

/* ── Slides ──────────────────────────────────────────────────── */
.slide {
  position: relative;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Reveal animation ────────────────────────────────────────── */
.rblock {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition:
    opacity   .85s var(--ease-out) var(--rd, 0s),
    transform .85s var(--ease-out) var(--rd, 0s),
    filter    .85s var(--ease-out) var(--rd, 0s);
}

.slide.is-active .rblock {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ── Chapter tag (shared small label) ───────────────────────── */
.chapter-tag {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(.72rem, .72vw + .30rem, .86rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(196,184,224,.58);
  margin-bottom: 14px;
}

.chapter-tag--kazi   { color: rgba(93,170,120,.74); }
.chapter-tag--teta   { color: rgba(200,144,80,.74);  }
.chapter-tag--libuse { color: rgba(148,120,212,.84); }

/* ══════════════════════════════════════════════════════════════
   SLIDE 0 · PROLOG
   Moon glow, title, three sister orbs.
══════════════════════════════════════════════════════════════ */
.s-prolog {
  flex-direction: column;
  text-align: center;
}

.s-prolog__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-prolog__eyebrow {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(.70rem, .65vw + .28rem, .84rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(196,184,224,.40);
  margin-bottom: 22px;
}

.s-prolog__title {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.6rem, 7vw, 7rem);
  letter-spacing: .04em;
  line-height: 1.05;
  color: var(--moon);
  text-shadow:
    0 0  75px rgba(148,120,218,.62),
    0 0 185px rgba(100,75,198,.32),
    0 20px 80px rgba(0,0,0,.80);
}

.s-prolog__rule {
  width: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--moon), transparent);
  margin: 28px auto 32px;
  opacity: .42;
}

/* Three sister orbs */
.s-prolog__sisters {
  display: flex;
  gap: clamp(20px, 3.5vw, 42px);
  margin-bottom: 28px;
}

.sister-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.sister-orb::before {
  content: "";
  display: block;
  width:  clamp(54px, 8vw, 82px);
  height: clamp(54px, 8vw, 82px);
  border-radius: 50%;
  border: 1.5px solid currentColor;
  box-shadow: 0 0 20px currentColor, inset 0 0 16px rgba(255,255,255,0.05);
  opacity: .68;
  transition: transform .4s ease, opacity .4s ease;
}

.sister-orb:hover::before {
  transform: scale(1.14);
  opacity: 1;
}

.orb-kazi   { color: var(--kazi);   }
.orb-teta   { color: var(--teta);   }
.orb-libuse { color: var(--libuse); }

.orb-name {
  font-family: "Cinzel", serif;
  font-size: clamp(.80rem, .80vw + .40rem, 1.02rem);
  letter-spacing: .14em;
  color: var(--text);
}

.orb-title {
  font-size: clamp(.68rem, .65vw + .28rem, .80rem);
  color: var(--muted);
  font-style: italic;
  letter-spacing: .06em;
}

.s-prolog__sub {
  font-size: clamp(1rem, .98vw + .48rem, 1.20rem);
  color: var(--muted);
  letter-spacing: .06em;
  margin: 0;
}

.s-prolog__cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: "Cinzel", serif;
  font-size: .75rem;
  letter-spacing: .22em;
  color: rgba(196,184,224,.36);
  animation: kdCueFloat 2.6s ease-in-out infinite 2.5s;
}

@keyframes kdCueFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   SHARED: Ghost slide numerals
   Each sister's slide uses her accent colour.
══════════════════════════════════════════════════════════════ */
.s-krok__ghost,
.s-kazi__ghost,
.s-teta__ghost,
.s-libuse__ghost,
.s-prorocvi__ghost {
  position: absolute;
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(14rem, 32vw, 31rem);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -.02em;
  transition: color 1.2s ease;
  z-index: 1;
}

/* Krok (I) – moonsilver, right side behind castle */
.s-krok__ghost {
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(196,184,224,.028);
}
.slide.is-active .s-krok__ghost { color: rgba(196,184,224,.048); }

/* Kazi (II) – herb green, right */
.s-kazi__ghost {
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(93,170,120,.028);
}
.slide.is-active .s-kazi__ghost { color: rgba(93,170,120,.050); }

/* Teta (III) – fire gold, left */
.s-teta__ghost {
  left: -4vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200,144,80,.028);
}
.slide.is-active .s-teta__ghost { color: rgba(200,144,80,.052); }

/* Libuše (IV) – violet, left */
.s-libuse__ghost {
  left: -4vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(148,120,215,.028);
}
.slide.is-active .s-libuse__ghost { color: rgba(148,120,215,.058); }

/* Prophecy (V) – violet, right */
.s-prorocvi__ghost {
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(148,120,215,.028);
}
.slide.is-active .s-prorocvi__ghost { color: rgba(148,120,215,.055); }

/* ══════════════════════════════════════════════════════════════
   SLIDE 1 · KROK
   Text left, castle-on-hill SVG right.
══════════════════════════════════════════════════════════════ */
.s-krok {
  justify-content: flex-start;
  padding-left: clamp(5%, 8vw, 12%);
}

.s-krok__scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 88%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s var(--ease-out) .12s,
              transform 1.4s var(--ease-out) .12s;
}
.slide.is-active .s-krok__scene { opacity: 1; transform: translateY(0); }

.s-krok__content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.s-krok__heading {
  font-size: clamp(2.4rem, 4vw + .6rem, 4.6rem);
  color: var(--moon);
  text-shadow: 0 0 52px rgba(196,184,226,.30);
  margin-bottom: 18px;
}

.s-krok__body {
  font-size: clamp(.98rem, .92vw + .54rem, 1.16rem);
  line-height: 1.74;
  color: rgba(236,232,245,.88);
  margin: 0 0 16px;
}

.s-krok__aside {
  font-size: clamp(.88rem, .82vw + .42rem, 1.04rem);
  color: rgba(196,184,224,.62);
  font-style: italic;
  line-height: 1.62;
  margin: 0 0 14px;
}

.s-krok__source {
  font-family: "Cinzel", serif;
  font-size: clamp(.68rem, .62vw + .28rem, .80rem);
  letter-spacing: .18em;
  color: rgba(196,184,224,.34);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE 2 · KAZI
   Herb-forest SVG left, text right.
══════════════════════════════════════════════════════════════ */
.s-kazi {
  justify-content: flex-end;
  padding-right: clamp(5%, 8vw, 12%);
}

.s-kazi__scene {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 90%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s var(--ease-out) .12s,
              transform 1.4s var(--ease-out) .12s;
}
.slide.is-active .s-kazi__scene { opacity: 1; transform: translateY(0); }

.s-kazi__content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.s-kazi__heading {
  font-size: clamp(2.4rem, 4vw + .6rem, 4.6rem);
  color: var(--kazi);
  text-shadow: 0 0 52px rgba(93,170,120,.32);
  margin-bottom: 10px;
}

.s-kazi__intro {
  font-family: "Cinzel", serif;
  font-size: clamp(.88rem, .82vw + .42rem, 1.04rem);
  letter-spacing: .12em;
  color: rgba(93,170,120,.74);
  margin: 0 0 18px;
}

.s-kazi__body {
  font-size: clamp(.98rem, .92vw + .54rem, 1.16rem);
  line-height: 1.74;
  color: rgba(236,232,245,.88);
  margin: 0 0 18px;
}

.s-kazi__aside {
  font-size: clamp(.90rem, .84vw + .44rem, 1.06rem);
  color: rgba(93,170,120,.68);
  font-style: italic;
  line-height: 1.62;
  border-left: 2px solid rgba(93,170,120,.30);
  padding-left: 16px;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE 3 · TETA
   Fire SVG fills bg. Text left. Ghost right.
══════════════════════════════════════════════════════════════ */
.s-teta {
  flex-direction: column;
  align-items: flex-start;
  padding-left:  clamp(5%, 8vw, 12%);
  padding-right: clamp(5%, 8vw, 12%);
}

.s-teta__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.8s var(--ease-out) .05s;
}
.slide.is-active .s-teta__scene { opacity: 1; }

.s-teta__inner {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.s-teta__heading {
  font-size: clamp(2.4rem, 4vw + .6rem, 4.6rem);
  color: var(--teta);
  text-shadow: 0 0 52px rgba(200,144,80,.34);
  margin-bottom: 10px;
}

.s-teta__intro {
  font-family: "Cinzel", serif;
  font-size: clamp(.88rem, .82vw + .42rem, 1.04rem);
  letter-spacing: .12em;
  color: rgba(200,144,80,.74);
  margin: 0 0 22px;
}

.s-teta__divider {
  width: 68px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,144,80,.55), transparent);
  margin: 0 0 22px;
}

.s-teta__quote {
  font-family: "Cinzel", serif;
  font-size: clamp(1.02rem, .98vw + .56rem, 1.24rem);
  line-height: 1.72;
  color: rgba(236,232,245,.90);
  font-style: italic;
  border-left: 2px solid rgba(200,144,80,.38);
  padding-left: 18px;
  margin: 0 0 14px;
}

.s-teta__attr {
  font-family: "Cinzel", serif;
  font-size: clamp(.68rem, .62vw + .28rem, .80rem);
  letter-spacing: .18em;
  color: rgba(200,144,80,.46);
  margin: 0 0 22px;
}

.s-teta__caption {
  font-size: clamp(.98rem, .92vw + .54rem, 1.16rem);
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE 4 · LIBUŠE
   Text left, cliff-vision SVG right.
══════════════════════════════════════════════════════════════ */
.s-libuse {
  justify-content: flex-start;
  padding-left: clamp(5%, 8vw, 12%);
}

.s-libuse__scene {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 92%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s var(--ease-out) .12s,
              transform 1.4s var(--ease-out) .12s;
}
.slide.is-active .s-libuse__scene { opacity: 1; transform: translateY(0); }

.s-libuse__content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.s-libuse__heading {
  font-size: clamp(2.4rem, 4vw + .6rem, 4.6rem);
  color: var(--libuse);
  text-shadow: 0 0 56px rgba(148,120,215,.38);
  margin-bottom: 10px;
}

.s-libuse__intro {
  font-family: "Cinzel", serif;
  font-size: clamp(.88rem, .82vw + .42rem, 1.04rem);
  letter-spacing: .12em;
  color: rgba(148,120,215,.76);
  margin: 0 0 18px;
}

.s-libuse__body {
  font-size: clamp(.98rem, .92vw + .54rem, 1.16rem);
  line-height: 1.74;
  color: rgba(236,232,245,.88);
  margin: 0 0 14px;
}

.s-libuse__aside {
  font-size: clamp(.90rem, .84vw + .44rem, 1.06rem);
  color: rgba(148,120,215,.68);
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SLIDE 5 · PROROCTVÍ PRAHY
   City silhouette fills bg. Centered dramatic quote.
══════════════════════════════════════════════════════════════ */
.s-prorocvi {
  flex-direction: column;
  text-align: center;
  padding: 0 clamp(20px, 8vw, 100px);
}

.s-prorocvi__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.8s var(--ease-out);
}
.slide.is-active .s-prorocvi__scene { opacity: 1; }

.s-prorocvi__inner {
  max-width: 860px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s-prorocvi__quote { margin: 10px 0 28px; }

.prorocvi-line {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.8rem, 4.8vw + .5rem, 5.4rem);
  line-height: 1.22;
  color: var(--libuse);
  text-shadow:
    0 0  58px rgba(148,120,218,.58),
    0 0 140px rgba(100,75,202,.26);
  margin: 0;
}

.s-prorocvi__attr {
  font-family: "Cinzel", serif;
  font-size: clamp(.70rem, .65vw + .30rem, .84rem);
  letter-spacing: .20em;
  color: rgb(214, 198, 255);
  margin: 0 0 22px;
}

.s-prorocvi__epilog {
  font-size: clamp(.96rem, .90vw + .52rem, 1.14rem);
  line-height: 1.74;
  color: var(--muted);
  font-style: italic;
  max-width: 560px;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   KONTAKTY slide — override contact.css height:auto
══════════════════════════════════════════════════════════════ */
.slide.kontakty {
  height: 100vh;
  align-items: center;
  justify-content: center;
}

/* ── Side progress dots ──────────────────────────────────────── */
.progress-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.pn-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,184,224,.38);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}

.pn-dot:hover { border-color: rgba(196,184,224,.82); transform: scale(1.3); }

.pn-dot.is-active {
  background: var(--moon);
  border-color: var(--moon);
  box-shadow: 0 0 9px rgba(196,184,224,.55);
  transform: scale(1.18);
}

/* Tooltip on hover */
.pn-dot::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cinzel", serif;
  font-size: .70rem;
  letter-spacing: .12em;
  color: rgba(196,184,224,.90);
  white-space: nowrap;
  background: rgba(7,6,14,.86);
  border: 1px solid rgba(196,184,224,.22);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.pn-dot:hover::after { opacity: 1; }

/* ── Navbar custom ───────────────────────────────────────────── */
.navbar {
  z-index: 1000;
  background-color: rgba(10,8,22,.68);
}

.navbar.scrolled { background-color: rgba(10,8,22,.32); }

.nav-links a:hover { background: rgba(148,120,218,.18); }

@media (max-width: 1100px) {
  .nav-links {
    background-color: rgba(7,6,14,.96);
    border-bottom: 1px solid rgba(148,120,218,.12);
  }
}

/* ── Contact custom ──────────────────────────────────────────── */
.kontakty-dotaznik textarea {
  background: rgba(15,12,32,.60);
  border: 1px solid rgba(148,120,218,.28);
  color: var(--text);
}

.kontakty-dotaznik textarea:focus {
  box-shadow: 0 0 0 6px rgba(148,120,218,.14);
}

.kontakty-dotaznik button {
  background: rgba(148,120,218,.88);
  color: #0b0818;
}

.kontakty-dotaznik button:hover { background: rgba(168,140,238,.96); }

.form-status { color: rgba(196,184,224,.85); }

.ornament-frame {
  border: 1px solid rgba(148,120,218,.40);
  background: rgba(0,0,0,.38);
  animation: kdBorderGlow 5s linear infinite;
}

.ornament-frame::before,
.ornament-frame::after {
  border: 1px solid rgba(148,120,218,.48);
}

@keyframes kdBorderGlow {
  0%   { box-shadow: 0 0 10px rgba(148,120,218,.18), inset 0 0 10px rgba(148,120,218,.12); }
  50%  { box-shadow: 0 0 24px rgba(148,120,218,.42), inset 0 0 18px rgba(148,120,218,.24); }
  100% { box-shadow: 0 0 10px rgba(148,120,218,.18), inset 0 0 10px rgba(148,120,218,.12); }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .s-krok,
  .s-libuse {
    justify-content: center;
    padding: 0 clamp(20px, 6vw, 40px);
  }

  .s-kazi {
    justify-content: center;
    padding: 0 clamp(20px, 6vw, 40px);
  }

  .s-krok__scene,
  .s-kazi__scene,
  .s-libuse__scene { display: none; }

  .s-krok__ghost,
  .s-teta__ghost,
  .s-libuse__ghost {
    font-size: clamp(10rem, 38vw, 18rem);
    left: -6vw;
    right: auto;
  }

  .s-kazi__ghost,
  .s-prorocvi__ghost {
    font-size: clamp(10rem, 38vw, 18rem);
    right: -6vw;
    left: auto;
  }

  .s-teta {
    padding-left:  clamp(20px, 5vw, 36px);
    padding-right: clamp(20px, 5vw, 36px);
  }

  .progress-nav { right: 10px; }
}

@media (max-width: 480px) {
  .s-krok__ghost,
  .s-kazi__ghost,
  .s-teta__ghost,
  .s-libuse__ghost,
  .s-prorocvi__ghost { display: none; }

  .s-prolog__sisters {
    gap: 14px;
  }

  .sister-orb::before {
    width:  52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
