/* =========================================================
   InnerDance — innerdance.cz
   Hluboká modř + zlatá · hlubina moře se setkává s kosmem
   ========================================================= */

:root {
  --navy-950: #030a15;
  --navy-900: #040c1a;
  --navy-850: #061223;
  --navy-800: #08192f;
  --navy-700: #0d2340;
  --navy-600: #123253;
  --sea-500: #1b5a7a;
  --sea-400: #2f89a8;
  --cyan-glow: rgba(64, 196, 216, 0.30);
  --sea-glow: rgba(46, 128, 170, 0.34);
  --violet-glow: rgba(78, 64, 150, 0.28);

  --gold-400: #d4af37;
  --gold-300: #e6c66e;
  --gold-200: #f2e0a6;
  --gold-glow: rgba(212, 175, 55, 0.5);
  --gold-soft: rgba(212, 175, 55, 0.14);

  --text: #eef4fb;
  --text-muted: #aec2d8;
  --text-dim: #7d95ad;

  --maxw: 1160px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--navy-900);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.2px; }

.kicker, .section-kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold-300);
  margin-bottom: 1rem;
}
.center .section-kicker, .section-head .section-kicker { display: inline-block; }

.section-title { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--text); margin-bottom: 1.4rem; }
.lead { font-size: 1.2rem; color: var(--text-muted); }
.section-sub { color: var(--text-muted); margin-top: -0.6rem; }
p { color: var(--text-muted); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
.muted-note { font-size: .95rem; color: var(--text-dim); }

.text-link { color: var(--gold-300); text-decoration: none; border-bottom: 1px solid var(--gold-soft); transition: border-color .3s; }
.text-link:hover { border-color: var(--gold-300); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2rem;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.18em; text-decoration: none;
  border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: all .35s var(--ease); position: relative;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  color: var(--navy-900); box-shadow: 0 8px 30px rgba(212,175,55,0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 42px rgba(212,175,55,0.42); }
.btn-ghost { background: transparent; border-color: rgba(212,175,55,0.4); color: var(--gold-200); }
.btn-ghost:hover { border-color: var(--gold-300); background: var(--gold-soft); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: background .4s, padding .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(4, 12, 26, 0.82); backdrop-filter: blur(14px);
  padding: 10px 0; box-shadow: 0 1px 0 rgba(212,175,55,0.12);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--gold-300); }
.brand-mark { width: 34px; height: 34px; flex: none; color: var(--gold-300); overflow: visible; }
.brand-mark circle { vector-effect: non-scaling-stroke; }
.brand-text { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.5px; color: var(--text); font-weight: 500; }
.brand-accent { color: var(--gold-300); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.04em; transition: color .3s; position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold-300); transition: width .3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--text); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.3rem; border: 1px solid rgba(212,175,55,0.45); border-radius: 100px;
  color: var(--gold-200) !important;
}
.nav-cta:hover { background: var(--gold-soft); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 101; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-300); border-radius: 2px; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 150px;
  background:
    radial-gradient(1100px 700px at 50% 8%, var(--navy-700) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-850) 55%, var(--navy-900) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

/* Polární záře / energetické mlhoviny */
.aurora { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; mix-blend-mode: screen; will-change: transform; }
.aurora-1 { top: -8%; left: 8%; width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, var(--sea-glow) 0%, transparent 68%); animation: float1 20s ease-in-out infinite; }
.aurora-2 { top: 22%; right: 4%; width: 40vw; height: 40vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 68%); animation: float2 26s ease-in-out infinite; }
.aurora-3 { bottom: 4%; left: 30%; width: 38vw; height: 38vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%); animation: float3 23s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6%,5%) scale(1.15); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-7%,4%) scale(0.92); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%,-6%) scale(1.12); } }

/* Warp — let vesmírem (hvězdy proudící ze středu ven) */
.warp { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; pointer-events: none; }

/* Jemné bodové světlo v pozadí — cíl, ke kterému se letí (rozostřené, širší dosah) */
.hero-light {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(66vw, 640px); height: min(66vw, 640px); border-radius: 50%; z-index: 1;
  background: radial-gradient(circle,
    rgba(255,253,247,0.82) 0%,
    rgba(255,249,232,0.40) 13%,
    rgba(248,233,186,0.20) 30%,
    rgba(212,175,55,0.08) 50%,
    transparent 75%);
  filter: blur(28px); pointer-events: none;
  animation: heroBreathe 9s ease-in-out infinite;
}

/* Semeno života (Seed of Life) — jemně dýchající mandala */
.hero-seed {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(200px, 40vw, 560px); height: clamp(200px, 40vw, 560px);
  z-index: 1; pointer-events: none;
  color: rgba(230,198,110,0.24);
  animation: seedBreathe 9s ease-in-out infinite;
}
.hero-seed svg { width: 100%; height: 100%; display: block; overflow: visible; }
.hero-seed circle { vector-effect: non-scaling-stroke; }
@keyframes seedBreathe {
  0%, 100% { transform: translate(-50%,-50%) scale(0.95); opacity: .3; }
  50%      { transform: translate(-50%,-50%) scale(1.04); opacity: .5; }
}
@keyframes heroBreathe {
  0%, 100% { transform: translate(-50%,-50%) scale(0.94); opacity: .62; }
  50%      { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}

/* Dýchání — jemné zvětšení a zjasnění (zlatá koule v sekci Zážitek) */
@keyframes breathe { 0%,100% { transform: scale(0.94); opacity: .6; } 50% { transform: scale(1.08); opacity: 1; } }

/* Stoupající částice (bioluminiscence) */
.hero-particles { position: absolute; inset: 0; }
.hero-particles .dot { position: absolute; border-radius: 50%; background: var(--gold-300); opacity: 0; animation: rise linear infinite; box-shadow: 0 0 6px rgba(230,198,110,.7); }
@keyframes rise {
  0% { transform: translateY(20px); opacity: 0; }
  15% { opacity: .55; } 85% { opacity: .35; }
  100% { transform: translateY(-92vh); opacity: 0; }
}

.hero-content { position: relative; z-index: 3; text-align: center; }
.hero-title {
  font-size: clamp(3.2rem, 11vw, 7.6rem); font-weight: 400; letter-spacing: 1px;
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-200) 135%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0.4rem 0 1.4rem; text-shadow: 0 0 60px rgba(212,175,55,0.12);
}
.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.32rem); color: #dbe6f2; font-weight: 300;
  max-width: 660px; margin: 0 auto 2.4rem; line-height: 1.9;
  text-shadow: 0 1px 3px rgba(3,10,21,0.85), 0 2px 26px rgba(3,10,21,0.7);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.hero-waves { position: absolute; bottom: -1px; left: 0; width: 100%; height: 190px; z-index: 2; }
.hero-waves .wave { fill: var(--navy-900); }
.hero-waves .wave-1 { opacity: .4; animation: drift 14s ease-in-out infinite; }
.hero-waves .wave-2 { opacity: .7; animation: drift 11s ease-in-out infinite reverse; }
.hero-waves .wave-3 { opacity: 1; animation: drift 18s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-28px); } }

/* ---------- Sekce ---------- */
.section { position: relative; padding: clamp(72px, 11vw, 130px) 0; overflow: hidden; }
.section-alt { background: linear-gradient(180deg, var(--navy-850), var(--navy-900)); }
.section-alt::before, .section-contact::before {
  content: ""; position: absolute; top: 10%; left: -10%; width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, var(--sea-glow) 0%, transparent 70%); filter: blur(60px); opacity: .5; pointer-events: none;
}
.section-alt::after {
  content: ""; position: absolute; bottom: 6%; right: -8%; width: 40vw; height: 40vw; max-width: 460px; max-height: 460px;
  background: radial-gradient(circle, var(--violet-glow) 0%, transparent 72%); filter: blur(60px); opacity: .45; pointer-events: none;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head .section-kicker { margin-bottom: .8rem; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-text .btn { margin-top: 1.6rem; }

/* Měkké světlo s dýchajícími kruhy (vizuál v sekci Zážitek — laděno do hero) */
.soft-scene {
  position: relative; width: 100%; max-width: 400px; aspect-ratio: 1; margin: 0 auto;
  display: grid; place-items: center;
}
.soft-scene .soft-light {
  position: absolute; width: 66%; height: 66%; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,253,247,0.72) 0%,
    rgba(248,233,186,0.28) 22%,
    rgba(212,175,55,0.10) 46%,
    transparent 72%);
  filter: blur(16px); animation: breathe 9s ease-in-out infinite;
}
.soft-scene .soft-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(212,175,55,0.2);
  animation: ringBreathe 9s ease-in-out infinite;
}
.soft-scene .soft-ring:nth-child(2) { width: 44%; height: 44%; border-color: rgba(230,198,110,0.3); }
.soft-scene .soft-ring:nth-child(3) { width: 70%; height: 70%; animation-delay: .6s; }
.soft-scene .soft-ring:nth-child(4) { width: 96%; height: 96%; border-color: rgba(212,175,55,0.12); animation-delay: 1.2s; }

/* Video ukázka (sekce Zážitek) — organický tvar */
.video-organic { position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1080 / 610; }
.video-organic::before {
  content: ""; position: absolute; inset: -12%; z-index: -1;
  background: radial-gradient(circle at 40% 35%, var(--sea-glow), transparent 62%);
  filter: blur(30px); opacity: .7;
  border-radius: 60% 40% 55% 45% / 55% 52% 48% 45%;
  animation: blobMorph 18s ease-in-out infinite;
}
.exp-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 62% 38% 56% 44% / 58% 54% 46% 42%;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  animation: blobMorph 18s ease-in-out infinite;
}

.media-frame {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-600));
  border: 1px solid rgba(212,175,55,0.16);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4); position: relative;
}
.media-frame-portrait { aspect-ratio: 4/5; }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--sea-glow), transparent 60%); opacity: .5;
}
.frame-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 26%; display: block; }
.media-frame.has-photo::after { opacity: .16; mix-blend-mode: overlay; }

/* Organický (oblázkový) tvar fotky */
.media-organic {
  position: relative; width: 100%; max-width: 400px; margin: 0 auto;
  aspect-ratio: 1 / 1.06; padding: 0;
}
.media-organic::before {
  content: ""; position: absolute; inset: -12%; z-index: -1;
  background: radial-gradient(circle at 40% 35%, var(--sea-glow), transparent 62%);
  filter: blur(30px); opacity: .7;
  border-radius: 60% 40% 55% 45% / 55% 52% 48% 45%;
  animation: blobMorph 18s ease-in-out infinite;
}
.media-organic img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 24%; display: block;
  border-radius: 62% 38% 55% 45% / 55% 52% 48% 45%;
  border: 1px solid rgba(212,175,55,0.32);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  animation: blobMorph 18s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 62% 38% 55% 45% / 55% 52% 48% 45%; }
  33%      { border-radius: 48% 52% 40% 60% / 58% 44% 56% 42%; }
  66%      { border-radius: 55% 45% 58% 42% / 44% 58% 42% 56%; }
}
.media-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--gold-300); }
.media-placeholder svg { width: 64px; opacity: .55; }
.media-placeholder::after { content: attr(data-label); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); }

.quote {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-200);
  border-left: 2px solid var(--gold-400); padding-left: 1.4rem; margin-top: 1.8rem; line-height: 1.4;
}

/* Kroky */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  padding: 2rem 1.6rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.12);
  transition: transform .4s var(--ease), border-color .4s, background .4s, box-shadow .4s;
}
.step:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.38); background: rgba(212,175,55,0.04); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-400); opacity: .7; display: block; margin-bottom: .6rem; }
.step h3 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--text); }
.step p { font-size: .95rem; }

/* Seznam s pomlčkami (Zážitek) */
.dash-list { list-style: none; display: grid; gap: .7rem; margin: 1.1rem 0; }
.dash-list li { position: relative; padding-left: 1.5rem; color: var(--text-muted); }
.dash-list li::before { content: "〜"; position: absolute; left: 0; top: 0; color: var(--gold-300); }

/* 3 kroky (Princip) */
.steps.three { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }

/* Karty (K čemu to pomáhá / dřívější „Co prožiješ“) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cards.benefits { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.cards.benefits .feel-card { text-align: left; }
.cards.moznosti .feel-card { text-align: left; display: flex; flex-direction: column; }
.price { margin-top: auto; padding-top: 1.3rem; font-family: var(--serif); font-size: 1.6rem; color: var(--gold-200); }
.price span { font-family: var(--sans); font-size: .82rem; color: var(--text-dim); letter-spacing: .04em; }
.moznosti-note { text-align: center; color: var(--text-dim); font-size: .92rem; line-height: 1.6; max-width: 720px; margin: 2.2rem auto 0; }
.feel-card {
  padding: 2.2rem 1.8rem; border-radius: var(--radius); text-align: center;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(212,175,55,0.14);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.feel-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.4); box-shadow: 0 24px 48px rgba(0,0,0,0.35); }
.feel-ico {
  display: inline-grid; place-items: center; width: 62px; height: 62px; margin-bottom: 1rem;
  border-radius: 50%; font-size: 1.7rem; color: var(--gold-200);
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 70%);
  border: 1px solid rgba(212,175,55,0.3);
}
.feel-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: .5rem; }
.feel-card p { font-size: .95rem; }

/* Sedm vln vaší proměny */
.waves { list-style: none; display: grid; gap: 1rem; max-width: 900px; margin: 0 auto; }
.wave-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
  padding: 1.7rem 1.9rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.14);
  transition: transform .4s var(--ease), border-color .4s, background .4s, box-shadow .4s;
}
.wave-item:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.38); background: rgba(212,175,55,0.04); box-shadow: 0 20px 44px rgba(0,0,0,0.32); }
.wave-ico { width: 64px; height: 64px; flex: none; display: grid; place-items: center; }
.wave-ico img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wave-body h3 { font-size: 1.4rem; color: var(--text); margin-bottom: .8rem; display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.wave-body h3 span { font-family: var(--serif); color: var(--gold-400); font-size: 1.15rem; opacity: .85; }
.wave-body ul { list-style: none; display: grid; gap: .5rem; }
.wave-body ul li { position: relative; padding-left: 1.4rem; color: var(--text-muted); font-size: 1rem; }
.wave-body ul li::before { content: "〜"; position: absolute; left: 0; top: 0; color: var(--gold-300); }

/* Citát */
.quote-band { text-align: center; }
.quote-hero {
  position: relative; overflow: hidden; text-align: center;
  display: grid; place-items: center;
  min-height: clamp(640px, 112vh, 1040px);
  padding: clamp(60px, 10vw, 120px) 0;
  background: #040c1a url("hvezdna-obloha.jpg") center 66% / cover no-repeat;
}
.quote-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(4,12,26,0.66) 0%, rgba(4,12,26,0.34) 42%, rgba(4,12,26,0.58) 100%);
}
.quote-hero .container { margin-top: -6vh; }
.quote-hero .container { position: relative; z-index: 1; }
.quote-hero .big-quote { color: #f4ead0; text-shadow: 0 2px 30px rgba(0,0,0,0.7); }
.big-quote {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.05rem);
  line-height: 1.45; color: var(--gold-200); max-width: 880px; margin: 0 auto;
}

/* Účinky */
.effects { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2.5rem; max-width: 860px; margin: 0 auto; }
.effects li { display: flex; align-items: center; gap: 1rem; font-size: 1.08rem; color: var(--text); padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.effect-ico { color: var(--gold-300); font-size: 1.4rem; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.12); border-radius: 14px; padding: 0 1.5rem; transition: border-color .3s; }
.faq-item[open] { border-color: rgba(212,175,55,0.32); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-size: 1.12rem; font-family: var(--serif); color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-300); font-size: 1.5rem; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 1.4rem; }
.faq-body p { font-size: 1rem; }

/* Recenze */
.reviews-head { margin-top: 4.5rem; margin-bottom: 2.5rem; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.review {
  margin: 0; padding: 1.6rem; border-radius: 14px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.14);
  transition: transform .35s var(--ease), border-color .35s;
}
.review:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.34); }
.review blockquote { margin: 0 0 1rem; font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--gold-200); line-height: 1.42; }
.review figcaption { color: var(--text-dim); font-size: .85rem; letter-spacing: .05em; }
.reviews-more { margin-top: 1.8rem; }

/* Kontakt */
.section-contact { background: radial-gradient(900px 500px at 50% 0%, var(--navy-700), var(--navy-900)); }

/* Kontaktní formulář */
.contact-form { max-width: 620px; margin: 2.6rem auto 0; text-align: left; }
.contact-form .hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.field label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.field label .opt { text-transform: none; letter-spacing: 0; font-size: .92em; opacity: .8; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--text);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.22);
  border-radius: 12px; padding: .85rem 1rem; transition: border-color .3s, background .3s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold-300); background: rgba(255,255,255,0.05);
}
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.consent { display: flex; gap: .7rem; align-items: flex-start; margin: .2rem 0 1.5rem; cursor: pointer; }
.consent input { margin-top: .15rem; accent-color: var(--gold-400); flex: none; width: 17px; height: 17px; }
.consent span { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.consent a { color: var(--gold-300); }
.contact-form .btn { width: 100%; }
.contact-form .btn[disabled] { opacity: .6; cursor: default; transform: none; }
.form-status { margin: 1rem 0 0; min-height: 1.2em; font-size: .95rem; text-align: center; }
.form-status.ok { color: #a4e2b6; }
.form-status.err { color: #f0acac; }
.contact-or { margin: 3rem 0 1.4rem; color: var(--text-dim); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; text-align: center; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 720px; margin: 2.6rem auto 2rem; }
.contact-card {
  display: flex; flex-direction: column; gap: .35rem; text-decoration: none;
  padding: 1.4rem 1.6rem; border-radius: 14px; text-align: left;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.14);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.4); background: rgba(212,175,55,0.05); }
.contact-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); }
.contact-value { font-family: var(--serif); font-size: 1.25rem; color: var(--gold-200); }

.locations-kicker { margin-top: 3rem; margin-bottom: 1.2rem; display: inline-block; }
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 720px; margin: 0 auto; }
.location {
  text-align: left; padding: 1.3rem 1.5rem; border-radius: 14px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.14);
}
.loc-label { display: block; color: var(--gold-200); font-family: var(--serif); font-size: 1.15rem; margin-bottom: .4rem; }
.loc-value { display: block; color: var(--text-muted); font-size: .92rem; line-height: 1.5; }
.loc-map { display: block; width: 100%; height: 170px; border: 0; border-radius: 10px; margin-top: 1rem; }
.loc-maplink { display: inline-block; margin-top: .7rem; font-size: .8rem; letter-spacing: .04em; color: var(--gold-300); text-decoration: none; }
.loc-maplink:hover { color: var(--gold-200); }
.online-note {
  display: flex; gap: 1rem; align-items: flex-start; text-align: left;
  max-width: 720px; margin: 1rem auto 0; padding: 1.3rem 1.5rem; border-radius: 14px;
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.22);
}
.online-ico { font-size: 1.5rem; flex: none; line-height: 1.3; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); padding: 60px 0 34px; border-top: 1px solid rgba(212,175,55,0.1); }
.footer-wrap { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; }
.footer-brand p { margin-top: .6rem; color: var(--text-dim); font-size: .92rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color .3s; }
.footer-nav a:hover { color: var(--gold-300); }
.footer-fine { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; text-align: left; }
.footer-fine p { font-size: .8rem; color: var(--text-dim); margin: 0; }
.disclaimer { max-width: 760px; }

/* ---------- Cookie lišta ---------- */
.cookie-bar {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(140%);
  z-index: 200; width: min(680px, calc(100% - 32px));
  background: rgba(4, 12, 26, 0.95); backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.28); border-radius: 16px;
  padding: 1.2rem 1.4rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  transition: transform .5s var(--ease), opacity .5s; opacity: 0;
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-bar p { margin: 0; font-size: .88rem; color: var(--text-muted); flex: 1 1 300px; }
.cookie-bar a { color: var(--gold-300); text-decoration: underline; }
.cookie-bar .btn { padding: .65rem 1.5rem; }
.cookie-actions { display: flex; gap: .6rem; flex: none; }
@media (max-width: 560px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; } }

/* ---------- Přepínač ambientní hudby ---------- */
.sound-toggle {
  position: fixed; left: 20px; bottom: 20px; z-index: 200;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: rgba(4,12,26,0.72); backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.35);
  transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
}
.sound-toggle:hover { border-color: var(--gold-300); transform: translateY(-2px); background: rgba(4,12,26,0.9); }
.sound-toggle.playing { border-color: var(--gold-300); box-shadow: 0 0 18px rgba(212,175,55,0.3); }
.sound-bars { display: flex; align-items: center; gap: 3px; height: 18px; }
.sound-bars i { width: 3px; height: 6px; background: var(--gold-300); border-radius: 2px; transition: height .3s; }
.sound-toggle.playing .sound-bars i { animation: eq 1.1s ease-in-out infinite; }
.sound-toggle.playing .sound-bars i:nth-child(2) { animation-delay: .18s; }
.sound-toggle.playing .sound-bars i:nth-child(3) { animation-delay: .36s; }
.sound-toggle.playing .sound-bars i:nth-child(4) { animation-delay: .54s; }
@keyframes eq { 0%, 100% { height: 6px; } 50% { height: 18px; } }
@media (max-width: 560px) { .sound-toggle { width: 46px; height: 46px; left: 16px; bottom: 16px; } }

/* ---------- Reveal animace ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 80vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: rgba(4, 12, 26, 0.98); backdrop-filter: blur(18px);
    padding: 2rem 2.4rem; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.45);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  #ester .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .effects, .contact-grid, .locations, .steps, .cards,
  .cards.benefits, .cards.moznosti, .steps.three { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}
