/* =========================================================
   Horoskopy lásky – hlavní styl
   Mobile-first. Bez externích fontů (rychlost, žádný FOUT).
   ========================================================= */

:root {
  --bg:        #100b21;
  --bg-2:      #17102e;
  --bg-3:      #1f1740;
  --line:      rgba(255, 255, 255, .11);
  --line-2:    rgba(255, 255, 255, .18);

  --text:      #ece9f7;
  --muted:     #b6aed2;

  --gold:      #f0c674;
  --gold-soft: #ffd98a;
  --violet:    #9b8cf5;
  --rose:      #f08fa8;

  --ink:       #14102a;   /* text na světlém/zlatém podkladu */

  --wrap:      1120px;
  --measure:   68ch;      /* max. šířka textového bloku */
  --radius:    16px;
  --radius-sm: 10px;

  --shadow:    0 18px 44px rgba(0, 0, 0, .38);
  --ease:      cubic-bezier(.22, .68, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* jemné hvězdné pozadí – čistě CSS, žádný JS ani obrázek */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1.6px 1.6px at 12% 18%,  rgba(255,255,255,.65), transparent 60%),
    radial-gradient(1.4px 1.4px at 78% 12%,  rgba(255,255,255,.50), transparent 60%),
    radial-gradient(1.6px 1.6px at 33% 62%,  rgba(255,255,255,.42), transparent 60%),
    radial-gradient(1.3px 1.3px at 88% 74%,  rgba(255,255,255,.55), transparent 60%),
    radial-gradient(1.5px 1.5px at 58% 34%,  rgba(255,255,255,.38), transparent 60%),
    radial-gradient(1.4px 1.4px at 22% 88%,  rgba(255,255,255,.45), transparent 60%);
  opacity: .5;
  animation: twinkle 7s var(--ease) infinite alternate;
}
@keyframes twinkle { from { opacity: .32; } to { opacity: .62; } }

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-underline-offset: .18em; }
a:hover { color: var(--gold-soft); }

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: .7rem 1.1rem; z-index: 100; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 6.2vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4.2vw, 2.15rem); margin-top: 2.2em; }
h3 { font-size: clamp(1.18rem, 3vw, 1.4rem); margin-top: 1.8em; }
h2:first-child, h3:first-child { margin-top: 0; }

p, ul, ol { margin: 0 0 1.15em; }
.prose { max-width: var(--measure); }
.prose li { margin-bottom: .45em; }
.lead { font-size: clamp(1.1rem, 2.6vw, 1.3rem); color: var(--muted); max-width: 62ch; }

strong { color: #fff; }
.muted { color: var(--muted); }

/* ---------- Hlavička ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 11, 33, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 66px; flex-wrap: wrap;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; color: var(--text); font-weight: 700;
  font-family: Georgia, serif; font-size: 1.2rem;
  min-height: 44px; padding: .2rem 0;
}
.brand-mark { color: var(--gold); display: flex; }
.brand-mark svg { transition: transform .5s var(--ease); }
.brand:hover .brand-mark svg { transform: rotate(72deg); }
.brand-text span { color: var(--gold); }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid var(--line-2); color: var(--text);
  padding: .6rem .85rem; border-radius: 10px; font: inherit; font-size: .95rem;
  cursor: pointer; min-height: 44px;
}
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars span {
  display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: none; width: 100%; }
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0 0 .75rem; padding: 0; display: grid; gap: .15rem; }
.site-nav a {
  display: block; padding: .8rem .6rem; text-decoration: none;
  color: var(--text); border-radius: 8px; font-weight: 600; font-size: .98rem;
}
.site-nav a:hover { background: var(--bg-3); color: var(--gold-soft); }
.site-nav a[aria-current="page"] { color: var(--gold); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; width: auto; }
  .site-nav ul { display: flex; gap: .2rem; margin: 0; }
  .site-nav a { padding: .5rem .7rem; }
}

/* ---------- Drobečková navigace ---------- */
.breadcrumbs { border-bottom: 1px solid var(--line); background: rgba(0,0,0,.16); }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: .4rem;
  margin: 0; padding: .7rem 0; font-size: .875rem; color: var(--muted);
}
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ---------- Sekce ---------- */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section--alt { background: linear-gradient(180deg, rgba(155,140,245,.07), rgba(155,140,245,0)); }
.section-head { max-width: 62ch; margin-bottom: 2.4rem; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .7rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.2rem, 10vw, 6.5rem) 0 clamp(2.5rem, 7vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}

/* --- dekorativní kosmická scéna --- */
.hero-art { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.orb { position: absolute; border-radius: 50%; filter: blur(60px); will-change: transform; }
.orb--violet {
  width: 42rem; height: 42rem; top: -17rem; right: -13rem; opacity: .55;
  background: radial-gradient(circle, var(--violet), transparent 66%);
  animation: drift-a 19s var(--ease) infinite alternate;
}
.orb--rose {
  width: 32rem; height: 32rem; bottom: -15rem; left: -11rem; opacity: .42;
  background: radial-gradient(circle, var(--rose), transparent 66%);
  animation: drift-b 24s var(--ease) infinite alternate;
}
.orb--gold {
  width: 22rem; height: 22rem; top: 32%; left: 42%; opacity: .2;
  background: radial-gradient(circle, var(--gold), transparent 68%);
  animation: drift-c 16s var(--ease) infinite alternate;
}
@keyframes drift-a { from { transform: translate3d(0,0,0) scale(1); }      to { transform: translate3d(-5rem, 3rem, 0) scale(1.16); } }
@keyframes drift-b { from { transform: translate3d(0,0,0) scale(1.1); }    to { transform: translate3d(4.5rem,-2.5rem,0) scale(1); } }
@keyframes drift-c { from { transform: translate3d(0,0,0) scale(.9); }     to { transform: translate3d(3rem, 2.5rem, 0) scale(1.25); } }

/* hvězdy */
.hero-stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-stars circle { animation: star-blink 3.6s ease-in-out infinite alternate; animation-delay: var(--d, 0s); }
@keyframes star-blink { from { opacity: .18; } to { opacity: 1; } }

/* zvěrokruh */
.hero-zodiac {
  position: absolute; top: 50%; right: -6rem; width: 30rem; height: 30rem;
  transform: translateY(-50%); opacity: .5;
}
@media (max-width: 999px) { .hero-zodiac { right: -9rem; top: 12%; width: 24rem; height: 24rem; opacity: .3; } }

.zw-spin { transform-origin: 160px 160px; animation: spin 150s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.zw-ring { fill: none; stroke: var(--gold); stroke-width: .8; opacity: .45; }
.zw-ring--inner { opacity: .22; }
.zw-ring--dashed { stroke-dasharray: 2 10; opacity: .5; }
.zw-tick { stroke: var(--gold); stroke-width: 1; opacity: .5; }
.zw-glyph {
  fill: var(--gold-soft); font-size: 15px; text-anchor: middle; dominant-baseline: central;
  opacity: .85; font-family: "Segoe UI Symbol", "Apple Symbols", serif;
}

.zw-constellation { opacity: .9; }
.zw-line {
  fill: none; stroke: var(--gold-soft); stroke-width: 1.1; opacity: .55;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  animation: draw 3.4s var(--ease) .5s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.zw-star {
  fill: #fff; opacity: 0;
  animation: pop 1s var(--ease) forwards, star-blink 3s ease-in-out 2s infinite alternate;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) + 1s);
}
@keyframes pop { from { opacity: 0; transform: scale(.2); } to { opacity: 1; transform: scale(1); } }

.zw-moon { opacity: .18; }
.zw-moon-disc { fill: var(--gold-soft); }
.zw-moon-cut  { fill: var(--bg); }

/* padající hvězdy */
.shooting-star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.25);
  opacity: 0;
}
.shooting-star::after {
  content: ""; position: absolute; top: 50%; right: 2px;
  width: 90px; height: 1px; transform: translateY(-50%);
  background: linear-gradient(270deg, rgba(255,255,255,.85), transparent);
}
.shooting-star--1 { top: 14%; left: 62%; animation: shoot 11s var(--ease) 3s infinite; }
.shooting-star--2 { top: 34%; left: 88%; animation: shoot 17s var(--ease) 9s infinite; }
@keyframes shoot {
  0%        { opacity: 0; transform: translate3d(0,0,0) rotate(18deg); }
  3%        { opacity: 1; }
  12%       { opacity: 0; transform: translate3d(-320px, 110px, 0) rotate(18deg); }
  100%      { opacity: 0; transform: translate3d(-320px, 110px, 0) rotate(18deg); }
}

.hero-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3.5rem; }
}
.hero h1 { margin-bottom: .45em; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold-soft) 10%, var(--rose) 45%, var(--violet) 70%, var(--gold-soft) 95%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 9s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-secondary { margin-top: 1.4rem; }
.hero-secondary a { font-weight: 600; display: inline-block; }
.hero-secondary a:hover { transform: translateX(3px); transition: transform .2s var(--ease); }

/* ---------- Nástup obsahu po načtení (bez JS) ---------- */
.rise { animation: rise-in .8s var(--ease) both; animation-delay: calc(var(--i, 0) * 110ms); }
@keyframes rise-in { from { opacity: 0; transform: translate3d(0, 22px, 0); } to { opacity: 1; transform: none; } }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 52px; padding: .85rem 1.6rem;
  border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 1.02rem;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(240, 198, 116, .26);
  position: relative; overflow: hidden;
}
/* přejezd lesku přes tlačítko */
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  left: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  will-change: transform;
  animation: sheen 5.5s var(--ease) 1.5s infinite;
}
/* pouze transform – nespouští přepočet layoutu, takže nulový vliv na CLS */
@keyframes sheen {
  0%        { transform: translateX(-260%) skewX(-18deg); }
  22%, 100% { transform: translateX(330%)  skewX(-18deg); }
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(240, 198, 116, .42); color: var(--ink); }
.btn-primary:active { transform: translateY(1px) scale(.99); }

.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); color: var(--text); transform: translateY(-2px); }

/* ---------- SMS CTA ---------- */
.cta {
  background: linear-gradient(150deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4.5vw, 2.5rem);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--violet));
}
.cta--block { margin: 3rem 0; }
.cta--inline { margin: 2.5rem 0; }
.cta-title { font-family: Georgia, serif; font-size: clamp(1.35rem, 3.6vw, 1.9rem); margin: 0 0 .5em; font-weight: 700; line-height: 1.25; }
.cta-title--hero { font-size: clamp(1.05rem, 2.6vw, 1.2rem); color: var(--muted); font-family: inherit; letter-spacing: .01em; }
.cta-lead { color: var(--muted); margin-bottom: 1.3rem; max-width: 56ch; }

.cta-pattern { font-size: 1.06rem; line-height: 1.75; margin-bottom: 1.4rem; }
.cta-pattern-strong {
  display: inline-block; margin: .35rem 0;
  font-size: clamp(1.08rem, 3.1vw, 1.35rem); color: var(--gold-soft);
  letter-spacing: .01em;
}
.cta-number {
  font-size: clamp(1.3rem, 4.4vw, 1.75rem); color: #fff;
  letter-spacing: .06em; white-space: nowrap;
}

.cta-actions { margin: 0 0 1.3rem; }
.cta-actions .btn { width: 100%; }
@media (min-width: 560px) { .cta-actions .btn { width: auto; min-width: 16rem; } }

/* jemný pulz pouze u primárního CTA v hero sekci */
.cta--hero .btn-primary { animation: soft-pulse 3.4s var(--ease) infinite; }
@keyframes soft-pulse {
  0%, 72%, 100% { box-shadow: 0 10px 26px rgba(240, 198, 116, .26); }
  86%           { box-shadow: 0 10px 30px rgba(240, 198, 116, .52); }
}

.cta-copy { display: grid; gap: .55rem; margin-bottom: 1.2rem; }
.copy-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem;
  background: rgba(0, 0, 0, .26); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .7rem .85rem;
}
.copy-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); flex: 0 0 auto; }
.copy-value { font-weight: 600; color: #fff; flex: 1 1 12rem; word-break: break-word; }
.copy-value--msg { font-weight: 500; font-size: .95rem; }
.btn-copy {
  flex: 0 0 auto; min-height: 40px; padding: .45rem .9rem;
  background: transparent; border: 1px solid var(--line-2); color: var(--text);
  border-radius: 999px; font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.btn-copy:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-copy.is-done { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.cta-note { font-size: .875rem; color: var(--muted); margin: 0; max-width: 60ch; }

/* ---------- Karty / mřížky ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
/* jemný světelný nádech, který se rozsvítí při najetí */
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(60% 55% at 50% 0%, rgba(240,198,116,.16), transparent 70%);
  transition: opacity .3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 198, 116, .38);
  box-shadow: 0 20px 46px rgba(0,0,0,.45), 0 0 0 1px rgba(240,198,116,.12);
}
.card:hover::before { opacity: 1; }
.card h3 { margin: 0 0 .5em; font-size: 1.18rem; }
.card p { margin: 0; color: var(--muted); font-size: .97rem; }
.card p + p { margin-top: .7em; }

.card-link { display: block; text-decoration: none; color: inherit; }
.card-link h3 { color: var(--gold); }
.card-link:hover h3 { color: var(--gold-soft); }
.card-more { display: inline-block; margin-top: .9em; color: var(--gold); font-weight: 600; font-size: .93rem; }
.card-link:hover .card-more::after { transform: translateX(3px); }
.card-more::after { content: " →"; display: inline-block; transition: transform .2s var(--ease); }

/* kroky */
.steps { counter-reset: krok; }
.step { position: relative; padding-left: 3.6rem; }
.step::before {
  counter-increment: krok; content: counter(krok);
  position: absolute; left: 1.5rem; top: 1.5rem;
  width: 2.1rem; height: 2.1rem; margin-left: -1.5rem;
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink); font-weight: 800; font-size: 1rem;
  font-family: Georgia, serif;
}

/* témata */
.topics { list-style: none; padding: 0; display: grid; gap: .7rem; }
@media (min-width: 700px) { .topics { grid-template-columns: repeat(2, 1fr); } }
.topics li {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; margin: 0; display: flex; gap: .7rem; align-items: baseline;
}
.topics li::before { content: "✦"; color: var(--gold); flex: 0 0 auto; }

/* věštkyně */
.vestkyne-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .vestkyne-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vestkyne-grid { grid-template-columns: repeat(3, 1fr); } }
.vestkyne-card { text-align: center; }
.vestkyne-portrait { width: 108px; margin: 0 auto 1.1rem; position: relative; }

/* skutečná fotografie (pokud ji provozovatel dodá) */
.vestkyne-photo {
  width: 108px; height: 108px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-2), 0 10px 24px rgba(0,0,0,.34);
}

/* dekorativní astrální emblém – náhrada, která se nevydává za fotku */
.emblem { width: 108px; height: 108px; overflow: visible; }
.emblem-orbit {
  transform-origin: 60px 60px;
  animation: spin var(--spin, 30s) linear infinite;
}
.emblem-ring { fill: none; stroke: var(--gold); stroke-width: 1; stroke-dasharray: 3 7; opacity: .55; }
.emblem-dot  { fill: var(--gold-soft); }
.emblem-disc { filter: drop-shadow(0 8px 18px rgba(0,0,0,.42)); }
.emblem-core { fill: #150f2b; opacity: .9; }
.emblem-initial {
  fill: var(--gold-soft); font-family: Georgia, serif; font-size: 34px; font-weight: 700;
  text-anchor: middle; dominant-baseline: central;
}
.emblem-glyph {
  fill: var(--gold); font-size: 13px; text-anchor: middle; opacity: .8;
  font-family: "Segoe UI Symbol", "Apple Symbols", serif;
}
.card:hover .emblem-disc { filter: drop-shadow(0 8px 26px hsl(45 90% 60% / .45)); }
.emblem-disc, .emblem-core { transition: filter .3s var(--ease); }

.vestkyne-card h3 { margin-bottom: .35em; }
.vestkyne-sms {
  margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--muted);
}
.vestkyne-sms strong { display: block; color: var(--gold-soft); font-size: 1rem; letter-spacing: .04em; }

/* FAQ */
.faq { max-width: var(--measure); }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-2); margin-bottom: .7rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.05rem 1.2rem; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; flex: 0 0 auto; transition: transform .22s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-soft); }
.faq-body { padding: 0 1.2rem 1.15rem; color: var(--muted); }
.faq-body p:last-child { margin-bottom: 0; }

/* citace / reference */
.quote {
  background: var(--bg-2); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: var(--radius-sm);
  padding: 1.4rem 1.5rem; margin: 0 0 1.25rem;
}
.quote p { margin-bottom: .8em; }
.quote p:last-of-type { margin-bottom: 0; }
.quote footer { margin-top: .9rem; font-size: .9rem; color: var(--muted); font-style: normal; }

/* upozornění */
.notice {
  background: rgba(155, 140, 245, .1); border: 1px solid rgba(155, 140, 245, .3);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem;
  font-size: .95rem; color: var(--muted); max-width: var(--measure);
}
.notice strong { color: var(--text); }

/* ---------- Patička ---------- */
.site-footer { border-top: 1px solid var(--line); background: #0b0718; margin-top: 3rem; padding: 3rem 0 6.5rem; }
@media (min-width: 900px) { .site-footer { padding-bottom: 3rem; } }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; } }
.footer-brand { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .6rem; }
.footer-sms { font-size: .95rem; color: var(--muted); }
.footer-sms strong { color: var(--gold-soft); }
.footer-note { font-size: .82rem; color: var(--muted); }
.footer-h { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin: 0 0 .9rem; font-family: inherit; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.footer-col a { color: var(--muted); text-decoration: none; display: block; padding: .6rem 0; min-height: 44px; font-size: .95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .84rem; color: var(--muted); }
.footer-bottom p { margin-bottom: .5em; }
.footer-partners a { color: var(--muted); }

/* ---------- Sticky CTA (mobil) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: .55rem .8rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(11, 7, 24, .95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; border-radius: 999px; text-decoration: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink); font-weight: 700;
}
.sticky-cta-num { letter-spacing: .06em; }
@media (min-width: 900px) { .sticky-cta { display: none !important; } }

/* ---------- Reveal animace (se stupňovaným zpožděním) ---------- */
.js .reveal { opacity: 0; transform: translate3d(0, 26px, 0) scale(.985); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
  }
  body::before { animation: none; opacity: .45; }
  /* dekorace zůstane statická, ale zachová si vzhled */
  .orb, .zw-spin, .emblem-orbit, .hero-stars circle, .hero h1 .accent { animation: none !important; }
  .btn-primary::after, .shooting-star { display: none; }
  .zw-line { stroke-dashoffset: 0; }
  .zw-star { opacity: 1; }
  .rise { animation: none; opacity: 1; transform: none; }
  .js .reveal { opacity: 1; transform: none; }
  .btn-primary:hover, .card:hover, .btn-ghost:hover, .hero-secondary a:hover { transform: none; }
}

/* ---------- Tisk ---------- */
@media print {
  .sticky-cta, .site-nav, .nav-toggle, .btn-copy { display: none !important; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
}
